:root {
  --navy: #0b1226;
  --navy-2: #121a3a;
  --indigo: #1a237e;
  --indigo-soft: #2a348f;
  --lime: #c8f04d;
  --lime-deep: #b6e02a;
  --yellow: #ffe566;
  --white: #ffffff;
  --off: #f5f7fb;
  --muted: #5c6578;
  --text: #1c2438;
  --line: rgba(18, 26, 58, 0.1);
  --shadow: 0 18px 50px rgba(11, 18, 38, 0.12);
  --radius: 22px;
  --header-h: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, calc(100% - 2rem));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--lime);
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(200, 240, 77, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--lime-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(200, 240, 77, 0.38);
}

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.8rem;
  font-size: 0.92rem;
}

.nav-cta {
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
}

.text-link {
  color: var(--indigo);
  font-weight: 600;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lime);
  background: rgba(200, 240, 77, 0.12);
  border: 1px solid rgba(200, 240, 77, 0.28);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.badge-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: transparent;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.6rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--off), #eef1f8);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.section-head p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 38, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(11, 18, 38, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--white);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--lime);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 0%, #24306a 0%, var(--navy) 55%, #070b18 100%);
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  max-width: 12ch;
}

.hero .lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-meta {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.blob-1 {
  width: 180px;
  height: 180px;
  background: #9be64a;
  top: -40px;
  left: -30px;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 140px;
  height: 140px;
  background: #c8f04d;
  right: 8%;
  top: 12%;
  animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 220px;
  height: 120px;
  background: #7ad63a;
  bottom: -30px;
  left: 30%;
  border-radius: 60% 40%;
  animation: float 9s ease-in-out infinite;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 40%, black 20%, transparent 75%);
  opacity: 0.45;
}

.product-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: float 6.5s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-frame img,
.showcase-visual img {
  width: 100%;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.trust {
  background: var(--white);
  padding: 2.5rem 0;
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(11, 18, 38, 0.16);
}

.trust-card h2 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.trust-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 240, 77, 0.22);
  color: var(--indigo);
  margin-bottom: 0.8rem;
}

.check svg {
  width: 18px;
  height: 18px;
}

.benefit-grid,
.formula-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card,
.formula-card,
.reason {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 18, 38, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover,
.formula-card:hover,
.reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef6c8, #f7f8fc);
  color: var(--indigo);
  margin-bottom: 1rem;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
}

.card h3,
.formula-card h3,
.reason h3,
.step h3 {
  font-size: 1.25rem;
}

.card p,
.formula-card p,
.reason p,
.step p {
  color: var(--muted);
}

.formula-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.formula-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
}

.step-num {
  display: block;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--indigo);
  margin-bottom: 0.8rem;
}

.showcase {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 55%, #0b1226 100%);
  color: var(--white);
  padding: 5rem 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase h2,
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.showcase-tagline {
  font-size: 1.2rem;
  color: var(--lime);
  font-weight: 600;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
}

.showcase-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

tbody th {
  font-weight: 600;
  color: var(--navy);
}

.yes {
  display: inline-block;
  background: rgba(200, 240, 77, 0.28);
  color: var(--navy);
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.acc-item h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.2rem;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.acc-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transition: transform 0.25s var(--ease);
}

.acc-icon::after {
  transform: rotate(90deg);
}

.acc-item.is-open .acc-icon::after {
  transform: rotate(0deg);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel > * {
  overflow: hidden;
}

.acc-panel p {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.final-cta {
  background: radial-gradient(800px 400px at 50% 0%, #2a348f, var(--navy));
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.final-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin-inline: auto;
}

.final-cta .btn {
  margin: 1.4rem 0 1rem;
}

.fine-print {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer {
  background: #070b18;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand {
  margin-top: 0.8rem;
  max-width: 36ch;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: var(--lime);
}

.legal-block {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h2 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.legal-block p {
  font-size: 0.88rem;
  max-width: 80ch;
}

.disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 90ch;
}

.copyright {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-visible {
  animation-play-state: running;
}

.benefit-grid .card:nth-child(2),
.formula-grid .formula-card:nth-child(2),
.trust-grid .trust-card:nth-child(2) {
  animation-delay: 0.08s;
}

.benefit-grid .card:nth-child(3),
.formula-grid .formula-card:nth-child(3),
.trust-grid .trust-card:nth-child(3) {
  animation-delay: 0.16s;
}

.benefit-grid .card:nth-child(4),
.formula-grid .formula-card:nth-child(4),
.trust-grid .trust-card:nth-child(4) {
  animation-delay: 0.24s;
}

.benefit-grid .card:nth-child(5) {
  animation-delay: 0.32s;
}

.benefit-grid .card:nth-child(6) {
  animation-delay: 0.4s;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .showcase-grid,
  .trust-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .formula-grid,
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(11, 18, 38, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.4rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-cta {
    width: 100%;
  }

  .benefit-grid,
  .formula-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .btn-lg {
    width: 100%;
    min-height: 56px;
  }

  .section {
    padding: 3.8rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .product-frame,
  .blob {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
