:root {
  --navy: #080d2d;
  --navy-soft: #0d143d;
  --cream: #f7f5ee;
  --white: #ffffff;
  --slate: #58637a;
  --line: #dfe3ea;
  --blue: #2f7df6;
  --gold: #f5aa16;
  --gold-light: #ffc54f;
  --green: #25d366;
  --shadow: 0 20px 55px rgba(8, 13, 45, 0.1);
  --radius: 1rem;
  --max: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 56rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 13, 45, 0.95);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links > a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0.6rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  color: var(--navy);
  background: var(--gold);
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 28px rgba(245, 170, 22, 0.26);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: 46rem;
  place-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
  color: var(--white);
  background:
    radial-gradient(ellipse 75% 55% at 50% -15%, rgba(47, 125, 246, 0.32), transparent 65%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(245, 170, 22, 0.15), transparent 70%),
    var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 62rem;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: #7db0ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(47, 125, 246, 0.38);
  border-radius: 999px;
  background: rgba(47, 125, 246, 0.14);
}

.eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Syne, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 58rem;
  margin: 0 auto 1.5rem;
  font-size: clamp(2.55rem, 8vw, 5.25rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 48rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.trust-line {
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-light {
  background: var(--cream);
}

.section-intro {
  max-width: 47rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-intro h2,
.final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.45rem);
  font-weight: 900;
}

.section-intro > p:last-child,
.align-left > p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.align-left {
  margin: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8, 13, 45, 0.02);
}

.card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  transform-origin: left;
  transition: transform 220ms ease;
}

.card:hover::after {
  transform: scaleX(1);
}

.card-number {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--blue);
  background: #eaf2ff;
  font-weight: 900;
}

.card h3,
.why-grid h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.card p,
.why-grid p {
  margin: 0 0 1.1rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.text-link {
  color: #1764dc;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-navy .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.problem-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.problem-list li {
  min-height: 8.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.problem-list strong,
.problem-list span {
  display: block;
}

.problem-list strong {
  margin-bottom: 0.45rem;
}

.problem-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid li {
  padding: 1.35rem;
  border-top: 2px solid var(--line);
}

.process-grid > li > span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-grid h3 {
  min-height: 2.6em;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.process-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.section-video {
  color: var(--white);
  background: var(--navy-soft);
}

.section-video .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.video-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: #02030a;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 9;
}

.video-facade {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(47, 125, 246, 0.35), transparent 50%),
    linear-gradient(135deg, #0d143d, #05081e);
  cursor: pointer;
}

.video-facade strong,
.video-facade small {
  display: block;
  text-align: left;
}

.video-facade strong {
  font-size: clamp(1rem, 3vw, 1.35rem);
}

.video-facade small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.55);
}

.play-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 0 0.7rem rgba(245, 170, 22, 0.13);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-packages {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(47, 125, 246, 0.16), transparent 35%),
    var(--navy);
}

.section-packages .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
}

.package {
  display: flex;
  min-width: 0;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  flex-direction: column;
  grid-column: span 2;
}

.package.featured {
  position: relative;
  color: var(--navy);
  background: var(--gold);
}

.package-wide {
  grid-column: span 3;
}

.package-badge {
  align-self: flex-start;
  margin: -0.5rem 0 1rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-audience {
  min-height: 1.5em;
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .package-audience,
.featured .price-note {
  color: rgba(8, 13, 45, 0.6);
}

.package h3 {
  min-height: 2.2em;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.price {
  margin: 0;
  font-size: 2.65rem;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.price span {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-note {
  margin: -0.2rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.package ul {
  margin: 0 0 2rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  flex: 1;
}

.featured ul {
  border-color: rgba(8, 13, 45, 0.16);
}

.package li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.featured li {
  color: rgba(8, 13, 45, 0.78);
}

.package li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.featured li::before {
  color: var(--navy);
}

.package-question {
  min-height: 2.75rem;
  margin-top: 0.7rem;
  align-content: center;
  color: #8fc1ff;
  font-size: 0.85rem;
  font-weight: 750;
  text-align: center;
}

.package-question.dark {
  color: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-grid article {
  padding: 1.6rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.why-grid p {
  margin: 0;
}

.section-faq {
  background: #eceff5;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid #d7dce6;
  border-radius: 0.85rem;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  min-height: 3.5rem;
  padding: 1.15rem 3.3rem 1.15rem 1.25rem;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  color: var(--blue);
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--slate);
}

.final-cta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  color: var(--white);
  background:
    radial-gradient(ellipse at 50% 0, rgba(47, 125, 246, 0.3), transparent 60%),
    var(--navy);
  text-align: center;
}

.final-cta p:not(.kicker) {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.footer {
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.6);
  background: #05091f;
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 64rem) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package {
    grid-column: span 3;
  }

  .package-wide {
    grid-column: span 3;
  }
}

@media (max-width: 48rem) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.38rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.38rem) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 4.25rem 0 auto;
    display: none;
    max-height: calc(100vh - 4.25rem);
    padding: 1rem;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    min-height: 3.25rem;
    padding: 0.85rem 0.75rem;
  }

  .hero {
    min-height: 43rem;
  }

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

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-list li {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 38rem) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .hero {
    min-height: 41rem;
    padding-top: 7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .card-grid,
  .process-grid,
  .why-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package,
  .package-wide {
    grid-column: auto;
  }

  .card,
  .package {
    padding: 1.4rem;
  }

  .process-grid h3 {
    min-height: 0;
  }

  .video-facade {
    padding: 1rem;
    flex-direction: column;
  }

  .video-facade strong,
  .video-facade small {
    text-align: center;
  }

  .play-icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
