:root {
  --font-primary: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ink: #06111f;
  --ink-2: #0d1b2f;
  --text: #172033;
  --muted: #657086;
  --soft-muted: #8390a5;
  --blue: #0071e3;
  --blue-2: #2aa8ff;
  --blue-dark: #0059b8;
  --cyan: #78d9ff;
  --cream: #f8fbff;
  --surface: #f5f7fb;
  --white: #ffffff;
  --line: rgba(23, 32, 51, 0.10);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.10);
  --shadow-strong: 0 34px 90px rgba(7, 17, 31, 0.18);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--surface); }
body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 113, 227, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--surface) 42%, #ffffff 100%);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.65);
  outline-offset: 4px;
  border-radius: 12px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 20px; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 255, 0.80);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
.nav-links a { transition: color 180ms ease, transform 180ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(0, 113, 227, 0.24);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.mobile-contact {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 113, 227, 0.20);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

@media (min-width: 821px) {
  .nav-links a[aria-current="page"] {
    position: relative;
  }

  .nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), #b44cff);
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  display: grid;
  align-items: center;
  padding: 92px 0 82px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(66, 173, 255, 0.30), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(98, 210, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #020814 0%, #07111f 45%, #0f2138 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.30), transparent 62%);
  opacity: 0.85;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 82%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.eyebrow,
.kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}
.hero .eyebrow { color: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 920px;
  font-size: clamp(40px, 6.1vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.062em;
  color: var(--ink);
  text-wrap: balance;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--ink);
}
p { color: var(--muted); }

.lead {
  max-width: 780px;
  color: rgba(245, 250, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  will-change: transform;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.30);
}
.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.final-card .button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
}
.image-shell {
  position: absolute;
  inset: 20px 0 0 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  background: #0c1626;
}
.image-shell img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
}
.hero-slide.is-active { opacity: 1; }
.image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.08), rgba(3, 8, 18, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.22), transparent 32%);
}
.slider-controls {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}
.slider-arrow,
.slider-dot {
  appearance: none;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: transparent;
}
.slider-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  opacity: 0.86;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.slider-arrow:hover { background: rgba(255,255,255,0.10); opacity: 1; transform: translateY(-1px); }
.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 180ms ease, background 180ms ease;
}
.slider-dot.is-active {
  width: 24px;
  background: var(--cyan);
}
.floating-panel {
  position: absolute;
  z-index: 3;
  max-width: 330px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(6, 17, 31, 0.64);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.panel-top {
  top: 0;
  left: 0;
  right: 168px;
  max-width: 360px;
  padding: 22px;
}
.panel-top strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.panel-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 850;
}
.panel-bottom {
  right: 0;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.4;
}
.signal-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.18);
}

.section { padding: clamp(70px, 8vw, 104px) 0; }
.section-header {
  max-width: 790px;
  margin-bottom: 34px;
}
.section-header p { font-size: 17px; }

.snapshot { background: linear-gradient(180deg, #fff 0%, #f6f9fe 100%); }
.snapshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}
.snapshot-grid p { font-size: 17px; }
.intelligence-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.intelligence-strip article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    radial-gradient(circle at top right, rgba(0,113,227,0.12), transparent 38%);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
}
.intelligence-strip span,
.card-icon,
.pathway span,
.comparison-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.09);
  font-size: 12px;
  font-weight: 850;
}
.intelligence-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.intelligence-strip p { margin-bottom: 0; font-size: 14px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.problem-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  transition: transform 220ms ease, opacity 220ms ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.12);
}
.problem-card:hover::after { transform: scale(1.35); opacity: 0.8; }
.problem-card p { margin-bottom: 0; }

.scope-section {
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 113, 227, 0.35), transparent 30%),
    linear-gradient(135deg, #07111f, #0d1b2f 58%, #111d31);
}
.scope-section h2,
.scope-section h3 { color: #fff; }
.scope-section p { color: rgba(245, 250, 255, 0.72); }
.scope-section .kicker { color: var(--cyan); }

.tabs-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}
.tab-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.tab-button:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.tab-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}
.tab-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-button.is-active .tab-icon { background: rgba(255, 255, 255, 0.16); }
.tab-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.92), rgba(42, 168, 255, 0.44));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.22);
}
.tab-panels {
  min-height: 420px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(42, 168, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}
.tab-panel { animation: panelIn 260ms ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
}
.tab-panel p {
  max-width: 780px;
  font-size: 17px;
}
.tab-panel ul {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.tab-panel li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}
.tab-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(120, 217, 255, 0.12);
}

.before-after { background: #fff; }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.comparison-card {
  padding: clamp(26px, 5vw, 44px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.08);
}
.comparison-card ul,
.audience-list,
.readiness-board {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.comparison-card li,
.audience-list li,
.readiness-board span {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 18px;
  background: rgba(245, 247, 251, 0.90);
  color: var(--muted);
  font-weight: 650;
}
.comparison-card li::before,
.audience-list li::before,
.readiness-board span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}
.strong-card {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(42, 168, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #07111f, #10233d);
  border-color: rgba(255, 255, 255, 0.12);
}
.strong-card h3 { color: #fff; }
.strong-card li { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.78); }
.strong-card span { color: var(--cyan); background: rgba(120, 217, 255, 0.12); }

.preopening-feature {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faff, #ffffff);
}
.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
  padding: clamp(28px, 6vw, 62px);
  border-radius: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 113, 227, 0.36), transparent 32%),
    linear-gradient(135deg, #06111f, #0f2138 62%, #102944);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.feature-card h2 { color: #fff; }
.feature-card p { color: rgba(245, 250, 255, 0.76); }
.feature-card .kicker { color: var(--cyan); }
.readiness-board {
  margin: 0;
}
.readiness-board span {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.readiness-board span::before { background: var(--cyan); }

.audience-section { background: #fff; }
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.audience-list {
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.pathway-section {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.pathway {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pathway article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
}
.pathway p { margin-bottom: 0; font-size: 14px; }

.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.06);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 22px;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: 84px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 113, 227, 0.16), transparent 32%),
    #f5f7fb;
}
.final-card {
  max-width: 980px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}
.final-card p { max-width: 750px; }

.site-footer {
  border-top: 1px solid rgba(245, 245, 247, 0.12);
  background: #000000;
  color: rgba(245, 245, 247, 0.62);
  padding: 24px 16px;
  font-size: 12px;
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: start;
  gap: 16px;
}

.site-footer strong {
  display: block;
  color: #f5f5f7;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 6px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
  color: rgba(245, 245, 247, 0.62);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-links a {
  color: rgba(245, 245, 247, 0.78);
  font-weight: 700;
}

.footer-links a:hover {
  color: #f5f5f7;
  text-decoration: underline;
}

.footer-note {
  text-align: right;
  color: rgba(245, 245, 247, 0.62);
  line-height: 1.45;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  cursor: pointer;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid,
  .snapshot-grid,
  .feature-card,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 480px; max-width: 680px; }
  .intelligence-strip,
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .tabs-shell { grid-template-columns: 1fr; }
  .tab-list {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tab-list::-webkit-scrollbar { display: none; }
  .tab-button { text-align: center; white-space: nowrap; }
  .pathway { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  /* Keep backgrounds full-width, but pull all content into the same comfortable inner lane as the homepage. */
  .container { width: min(calc(100% - clamp(48px, 12vw, 72px)), var(--container)); }
  .site-header { background: rgba(251, 253, 255, 0.92); }
  .nav {
    width: min(100% - 32px, var(--container));
    min-height: 64px;
  }
  .brand-logo { width: 32px; height: 32px; }
  .brand { font-size: 14px; }
  .nav-actions { display: inline-flex; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 14px;
  }
  .nav-cta { justify-content: center; margin-top: 4px; }

  .hero { padding: 54px 0 50px; }
  h1 { font-size: clamp(33px, 8.6vw, 44px); line-height: 1.12; letter-spacing: -0.034em; }
  h2 { letter-spacing: -0.052em; }
  .lead { font-size: 16px; line-height: 1.58; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .button { width: 100%; min-height: 54px; }
  .hero-tags { gap: 8px; }
  .hero-tags span { font-size: 11px; }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
    max-width: 680px;
    transform-style: flat;
  }
  .image-shell {
    position: relative;
    inset: auto;
    min-height: 390px;
    border-radius: 30px;
    order: 2;
  }
  .image-shell img { min-height: 390px; }
  .panel-top {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
    order: 1;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(6, 17, 31, 0.78);
  }
  .panel-top strong { font-size: 18px; }
  .slider-controls {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    order: 3;
    margin-top: 2px;
  }
  .panel-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    order: 4;
    padding: 14px 16px;
  }

  .section { padding: 68px 0; }
  .intelligence-strip,
  .problem-grid,
  .comparison-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }
  .tabs-shell { gap: 14px; }
  .tab-panels { min-height: auto; border-radius: 30px; }
  .comparison-card,
  .feature-card,
  .final-card { border-radius: 30px; }
  .pathway { grid-template-columns: 1fr; }
  .pathway article { min-height: auto; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 56px), var(--container)); }
  .brand span { font-size: 13px; }
  .nav { width: min(100% - 28px, var(--container)); }
  .nav-actions { gap: 10px; }
  .mobile-contact { min-height: 34px; padding: 0 14px; font-size: 12px; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 15px; }
  .hero { padding-top: 46px; }
  .hero-visual { min-height: auto; }
  .image-shell { min-height: 330px; border-radius: 26px; }
  .image-shell img { min-height: 330px; }
  .panel-top { padding: 16px; }
  .panel-bottom { font-size: 12px; }
  .slider-controls { padding: 9px 12px; }
  .tab-icon { width: 24px; height: 24px; border-radius: 9px; }
  .intelligence-strip article,
  .problem-card,
  .pathway article { padding: 20px; border-radius: 24px; }
  .tab-button { min-height: 48px; padding: 0 14px; font-size: 13px; }
  .tab-panels { padding: 24px; }
  .comparison-card li,
  .audience-list li,
  .readiness-board span { padding-right: 12px; }
  .scroll-top { width: 42px; height: 42px; }
}

/* Footer alignment fix: match homepage footer and keep mobile stacking clean */
@media (max-width: 820px) {
  .footer-inner { width: min(calc(100% - clamp(48px, 12vw, 72px)), var(--container)); }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .container,
  .footer-inner {
    width: min(calc(100% - 40px), var(--container));
  }
}
