:root {
  --primary-text: #1a1a1a;
  --secondary-text: #4a4a4a;
  --tertiary-text: #7a7a7a;
  --accent-blue: #0057cc;
  --accent-bright: #0066dd;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --border-light: #e8e8e8;
  --success: #10b981;
}
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  color: var(--primary-text);
  background: var(--white);
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  overflow-x: hidden;
}

.btn-primary-h {
  background-color: var(--accent-blue);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-h:hover {
  background-color: var(--accent-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 87, 204, 0.2);
}
.btn-secondary-h {
  background-color: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary-h:hover {
  background-color: rgba(0, 87, 204, 0.05);
  color: var(--accent-bright);
}

section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}
section:nth-of-type(even) {
  background: var(--light-bg);
}
.section-gray {
  background: var(--light-bg) !important;
}
.section-white {
  background: var(--white) !important;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-text);
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
}
.section-header p {
  color: var(--secondary-text);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.hero {
  padding: 90px 0 100px;
  background: var(--white);
  text-align: center;
}
@media (min-width: 900px) {
  .hero {
    padding: 110px 0 120px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 50px 0 60px;
  }
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-text);
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}
.hl-accent {
  color: var(--accent-blue);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hs-item {
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background 0.2s;
}
.hs-item:last-child {
  border-right: none;
}
.hs-item:hover {
  background: rgba(0, 87, 204, 0.03);
}
.hs-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hs-lbl {
  font-size: 0.64rem;
  color: var(--tertiary-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ABOUT */
.about-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-block h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 1rem;
}
.about-block p {
  color: var(--secondary-text);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.intro-trust {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-top: 0.5rem;
}

.intro-box {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 32px 28px;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .intro-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.intro-aws-logo {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-aws-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.intro-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.intro-content p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.video-section {
  background: #f2f4f7; 
}

.video-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 50, 150, 0.13);
  border: 1px solid var(--border-light);
  background: #000;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vc-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease;
}
.vc-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 3;
  transition: opacity 0.4s;
}

.vc-bottom {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 5;
}
.vc-bottom strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
}

.play-btn {
  position: relative;
  z-index: 5;
  width: 80px;
  height: 80px; 
  background: rgba(255, 255, 255, 0.18);
  border: 2.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}
.video-card:hover .play-btn {
  background: var(--accent-blue);
  border-color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(0, 87, 204, 0.18);
}
.play-btn svg {
  transform: translateX(2px);
} 

.video-card.playing .vc-thumb,
.video-card.playing .vc-dim,
.video-card.playing .play-btn,
.video-card.playing .vc-bottom {
  opacity: 0;
  pointer-events: none;
}

.video-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-text);
  margin-bottom: 1rem;
}
.video-info p {
  color: var(--secondary-text);
  line-height: 1.8;
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #00a8ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 87, 204, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.why-card:hover {
  border-color: rgba(0, 87, 204, 0.35);
  box-shadow:
    0 12px 36px rgba(0, 87, 204, 0.12),
    0 2px 8px rgba(0, 87, 204, 0.06);
  transform: translateY(-6px);
}
.why-card:hover::after {
  transform: scaleX(1);
}
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 87, 204, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}
.why-card:hover .why-icon {
  background: var(--accent-blue);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 204, 0.28);
}
.why-icon svg {
  transition: stroke 0.25s ease;
}
.why-card:hover .why-icon svg {
  stroke: #fff !important;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}
.why-card:hover h4 {
  color: var(--accent-blue);
}
.why-card p {
  font-size: 0.87rem;
  color: var(--secondary-text);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

.sku-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.sku-card:hover {
  border-color: rgba(0, 87, 204, 0.3);
  box-shadow: 0 8px 28px rgba(0, 87, 204, 0.1);
  transform: translateY(-4px);
}
.sku-header {
  background: linear-gradient(135deg, var(--accent-blue), #0066dd);
  padding: 18px 20px;
}
.sku-header h4 {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}
.sku-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin: 4px 0 0;
}
.sku-body {
  padding: 1.25rem 1.5rem;
}
.sku-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sku-body ul li {
  font-size: 0.84rem;
  color: var(--secondary-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.sku-body ul li:last-child {
  border-bottom: none;
}
.li-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.topo-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.topo-card:hover {
  border-color: rgba(0, 87, 204, 0.3);
  box-shadow: 0 8px 28px rgba(0, 87, 204, 0.1);
  transform: translateY(-4px);
}
.topo-num {
  width: 36px;
  height: 36px;
  background: var(--accent-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.topo-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}
.topo-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.65;
  margin: 0;
}

.arch-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(0, 50, 150, 0.08);
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.05),
    rgba(0, 87, 204, 0.02)
  );
}
.arch-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.arch-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tertiary-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 0.75rem;
}
.arch-detail {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}
.arch-detail h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.6rem;
}
.arch-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.arch-detail ul li {
  font-size: 0.85rem;
  color: var(--secondary-text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.arch-detail ul li:last-child {
  border-bottom: none;
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .case-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .case-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.case-stat {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.3s ease;
}
.case-stat:hover {
  border-color: rgba(0, 87, 204, 0.3);
  box-shadow: 0 6px 20px rgba(0, 87, 204, 0.1);
  transform: translateY(-3px);
}
.case-stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.case-stat-lbl {
  font-size: 0.7rem;
  color: var(--tertiary-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.challenge-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}
.challenge-box h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.challenge-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.challenge-box ul li {
  font-size: 0.85rem;
  color: var(--secondary-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.5;
}
.challenge-box ul li:last-child {
  border-bottom: none;
}

.quote-block {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.06),
    rgba(0, 87, 204, 0.02)
  );
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 2rem 0;
}
.quote-block p {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary-text);
  line-height: 1.75;
  margin: 0 0 0.5rem;
}
.quote-block cite {
  font-size: 0.82rem;
  color: var(--tertiary-text);
  font-weight: 600;
  font-style: normal;
}

.feat-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.feat-table thead tr {
  background: var(--accent-blue);
  color: white;
}
.feat-table thead th {
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}
.feat-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.feat-table tbody tr:last-child {
  border-bottom: none;
}
.feat-table tbody tr:hover {
  background: rgba(0, 87, 204, 0.03);
}
.feat-table tbody td {
  padding: 12px 18px;
  font-size: 0.87rem;
  color: var(--secondary-text);
}
.feat-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-text);
}
.check-yes {
  color: var(--success);
  font-size: 1.1rem;
}
.check-no {
  color: #e53e3e;
  font-size: 1.1rem;
}

.mitigation-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mitigation-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-blue), #00a8ff);
}
.mitigation-card:hover {
  border-color: rgba(0, 87, 204, 0.25);
  box-shadow: 0 8px 24px rgba(0, 87, 204, 0.09);
  transform: translateY(-3px);
}
.mitigation-card h5 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.mitigation-card .challenge-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tertiary-text);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.mitigation-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.65;
  margin: 0;
  padding-left: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-blue);
}
.timeline-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.timeline-item h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 3px;
}
.timeline-item p {
  font-size: 0.83rem;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.55;
}

.comparepad-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.comparepad-card:hover {
  border-color: rgba(0, 87, 204, 0.3);
  box-shadow: 0 8px 28px rgba(0, 87, 204, 0.09);
  transform: translateY(-4px);
}
.comparepad-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}
.comparepad-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.65;
  margin: 0;
}

.cap-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cap-pill {
  background: rgba(0, 87, 204, 0.07);
  border: 1px solid rgba(0, 87, 204, 0.15);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-box {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.07),
    rgba(0, 87, 204, 0.03)
  );
  border: 2px solid rgba(0, 87, 204, 0.14);
  border-radius: 14px;
  padding: 56px 40px;
  text-align: center;
}
.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-box p {
  color: var(--secondary-text);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 87, 204, 0.07);
  border: 1px solid rgba(0, 87, 204, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin: 4px;
}
