/* =====================================================================
   crisport.ia — V5 · based on the V4 "Simplified AI" design system
   Light surface base · Midnight navy + Electric cyan · Glassmorphic accents
   Type: Hanken Grotesk (display) · Inter (body) · Geist (labels/UI)
   ===================================================================== */

:root {
  /* Surfaces (light) */
  --surface: #f7f9fb;
  --surface-dim: #d8dadc;
  --surface-bright: #ffffff;
  --surface-lowest: #ffffff;
  --surface-low: #f2f4f6;
  --surface-container: #eceef0;
  --surface-high: #e6e8ea;
  --surface-highest: #e0e3e5;

  /* Ink */
  --on-surface: #191c1e;
  --on-surface-variant: #44464f;
  --outline: #757780;
  --outline-variant: #c4c6d0;

  /* Brand: midnight navy */
  --navy: #00081e;
  --navy-1: #001233;
  --navy-2: #001e4d;
  --navy-3: #042a66;
  --navy-soft: #7187bc;
  --on-navy-container: #7187bc;
  --inverse-primary: #afc6fe;

  /* Brand: electric cyan */
  --cyan: #00f0ff;
  --cyan-2: #00dbe9;
  --cyan-3: #00eefc;
  --teal-ink: #006970; /* accessible cyan for light backgrounds */

  --error: #ba1a1a;

  /* Tokens */
  --container: 1200px;
  --font: "Inter", system-ui, Arial, sans-serif;
  --display: "Hanken Grotesk", "Inter", sans-serif;
  --label: "Geist", "Inter", ui-monospace, monospace;

  --r-sm: 0.25rem;
  --r: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(0, 8, 30, 0.06);
  --shadow: 0 18px 44px rgba(0, 8, 30, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 8, 30, 0.22);
  --glow-cyan: 0 0 0 8px rgba(0, 240, 255, 0.18);
  --glow-cyan-strong: 0 8px 30px rgba(0, 222, 233, 0.45);

  /* Neural network background pattern (dots) */
  --neural-dot: radial-gradient(circle, rgba(0, 222, 233, 0.10) 1px, transparent 1.4px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 4rem 0;
}

/* Section surface variants (alternating light rhythm) */
.section-dark {
  background: var(--surface);
}

.section-darker {
  background: var(--surface-low);
}

.section-light {
  background: var(--surface-lowest);
}

.section-heading {
  margin-bottom: 2.5rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--navy);
}

.section-heading-left {
  text-align: left;
}

.section-heading .accent,
.accent {
  color: var(--teal-ink);
}

.section-cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.8rem;
  border: 0;
  border-radius: var(--r-full);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

/* Primary: electric cyan with navy ink */
.btn-green {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-2) 100%);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0, 222, 233, 0.32);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan-strong), var(--glow-cyan);
}

/* Outline / ghost: navy on light, cyan-aware */
.btn-outline {
  background: transparent;
  color: var(--navy-2);
  border: 2px solid var(--outline-variant);
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-2);
  color: var(--teal-ink);
  box-shadow: var(--glow-cyan);
}

.btn-lg {
  min-height: 58px;
  padding: 1.05rem 2.2rem;
  font-size: 15px;
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-launch-glow {
  border-color: var(--cyan-2);
  animation: launch-border-glow 1.65s ease-in-out infinite;
}

.btn-launch-glow:hover {
  animation-play-state: paused;
}

.btn-launch-glow strong {
  color: var(--navy);
  font-weight: 800;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
}

.btn-shine:hover::after {
  left: 130%;
}

/* "Active" pulse for primary CTAs */
.btn-green.btn-lg {
  animation: cta-pulse 2.6s var(--ease) infinite;
}

.btn-green.btn-lg:hover {
  animation: none;
}

/* =====================================================================
   Floating Instagram
   ===================================================================== */
.float-instagram {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  height: 56px;
  width: 56px;
  padding: 0;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  box-shadow: 0 12px 30px rgba(0, 8, 30, 0.35), inset 0 0 0 1px rgba(0, 240, 255, 0.35);
  overflow: hidden;
  transition: width 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.float-instagram svg {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  padding: 15px;
  fill: var(--cyan);
}

.float-label {
  white-space: nowrap;
  color: #fff;
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.float-instagram:hover {
  width: 226px;
  padding-right: 1.25rem;
  box-shadow: var(--glow-cyan-strong), inset 0 0 0 1px rgba(0, 240, 255, 0.6);
}

.float-instagram:hover .float-label {
  opacity: 1;
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.92);
  border-bottom: 1px solid var(--outline-variant);
  backdrop-filter: blur(18px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-stuck {
  background: rgba(247, 249, 251, 0.8);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--outline-variant);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.logo {
  font-family: var(--label);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
}

.logo-bracket {
  color: var(--teal-ink);
}

.logo-text {
  margin-inline: 0.25rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(0, 124, 135, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 36, 70, 0.08);
}

.menu-toggle__line {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.site-header.menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  font-size: 0.98rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease);
}

.site-header.menu-open .header-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.header-nav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.8rem;
  border-radius: 0.9rem;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.header-nav a:hover {
  background: rgba(0, 219, 233, 0.1);
  color: var(--teal-ink);
}

.header-nav .header-nav-cta {
  justify-content: center;
  margin-top: 0.25rem;
  color: var(--navy);
}

.header-cta {
  display: none;
}

/* =====================================================================
   Hero
   ===================================================================== */
.section-hero {
  padding: 2.5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(0, 222, 233, 0.16), transparent 60%),
    var(--neural-dot) 0 0 / 26px 26px,
    linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -12%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 720px;
  max-height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid rgba(0, 222, 233, 0.5);
  border-radius: var(--r-full);
  background: rgba(0, 240, 255, 0.08);
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-ink);
}

.pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 0 0 rgba(0, 222, 233, 0.55);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-photo {
  width: min(100%, 24rem);
  margin: 0 auto 1.5rem;
  border-radius: var(--r-xl);
  padding: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--navy-2) 75%);
  overflow: hidden;
  box-shadow: var(--glow-cyan);
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--r-xl) - 0.25rem);
  object-fit: contain;
}

.hero-title {
  max-width: 28ch;
  margin: 0 auto 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 5.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero-title .accent {
  background: linear-gradient(120deg, var(--teal-ink), var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .accent-pulse {
  animation: hero-accent-pulse 1.55s ease-in-out infinite;
}

.hero-lead {
  max-width: 46rem;
  margin: 0 auto 2rem;
  color: var(--on-surface-variant);
  font-size: clamp(1.16rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-launch-card {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  width: min(100%, 42rem);
  margin: -0.5rem auto 1.3rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(0, 124, 135, 0.18);
  border-left: 4px solid var(--cyan-2);
  border-radius: 1.25rem;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.12), rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(0, 36, 70, 0.1), 0 0 22px rgba(0, 219, 233, 0.1);
  text-align: left;
}

.hero-launch-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.34);
  border-radius: 1rem;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 8, 30, 0.18);
}

.hero-launch-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.hero-launch-offer {
  margin: 0;
  color: var(--navy-2);
  font-family: var(--label);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.hero-launch-offer strong {
  color: var(--teal-ink);
  font-weight: 800;
}

.offer-discount-highlight {
  color: var(--cyan-2);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(0, 222, 233, 0.28);
}

@media (max-width: 420px) {
  .hero-launch-card {
    grid-template-columns: 4.6rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.5rem 0.58rem;
    border-radius: 1.05rem;
  }

  .hero-launch-offer {
    font-size: 0.82rem;
  }
}

.offer-countdown {
  width: min(100%, 31rem);
  margin: 0 auto 1.95rem;
  color: var(--navy-2);
  text-align: center;
}

.offer-countdown__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-ink);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-countdown__time {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 0;
}

.offer-countdown__time > span {
  display: grid;
  gap: 0.05rem;
  padding: 0.62rem 0.35rem;
  border-right: 0;
}

.offer-countdown__time > span:last-child {
  border-right: 0;
}

.offer-countdown__time strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.62rem;
  line-height: 1;
}

.offer-countdown__time small {
  color: var(--on-surface-variant);
  font-family: var(--label);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.offer-countdown--dark {
  margin-inline: 0;
  color: #fff;
}

.offer-countdown--dark .offer-countdown__time strong,
.offer-countdown--dark .offer-countdown__label {
  color: var(--cyan);
}

.offer-countdown--dark .offer-countdown__time small {
  color: rgba(255, 255, 255, 0.65);
}

.offer-countdown--card {
  width: 100%;
  margin-bottom: 1rem;
}

.offer-countdown--card .offer-countdown__time strong {
  font-size: 1.26rem;
}

.offer-countdown.is-ended {
  padding-block: 0.65rem;
  border-block: 1px solid rgba(0, 219, 233, 0.32);
}

.hero-price {
  margin: 0 auto 1.25rem;
  color: var(--navy-2);
  font-family: var(--label);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.hero-price strong {
  color: var(--teal-ink);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.price-old {
  font-size: 1.3em;
  text-decoration: line-through;
  opacity: 0.72;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-actions .btn {
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-products-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy-2);
  font-family: var(--label);
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 0.28rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-products-link:hover {
  color: var(--teal-ink);
  transform: translateX(3px);
}

.hero-note {
  margin-bottom: 2.5rem;
  color: var(--on-surface-variant);
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-device {
  position: relative;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 2.1rem 0.6rem 0.6rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--navy-1), var(--navy));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.28);
  pointer-events: none;
}

.hero-device-bar {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.hero-device-bar i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-device-bar i:first-child {
  background: var(--cyan);
}

.hero-device img {
  width: 100%;
  border-radius: var(--r);
}

/* =====================================================================
   Band (promise) — dark navy module
   ===================================================================== */
.section-band {
  padding: 3.25rem 0;
  background:
    var(--neural-dot) 0 0 / 24px 24px,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: #fff;
  text-align: center;
}

.band-inner h2 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.band-inner > p {
  max-width: 54rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.band-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.band-stat {
  display: grid;
  gap: 0.15rem;
  padding: 0 1.25rem;
  position: relative;
}

.band-stat + .band-stat::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 240, 255, 0.3);
}

.band-num {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
}

.band-cap {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================================
   Card grids
   ===================================================================== */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

/* Feature cards */
.feature-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  background: var(--surface-lowest);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-2);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: var(--r-full);
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 222, 233, 0.4);
  color: var(--teal-ink);
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(0, 240, 255, 0.2);
  box-shadow: var(--glow-cyan);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.feature-card p {
  color: var(--on-surface-variant);
  font-size: 0.96rem;
}

.feature-card-accent {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: transparent;
  color: #fff;
}

.feature-card-accent h3 {
  color: #fff;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card-accent .feature-icon {
  background: rgba(0, 240, 255, 0.16);
  color: var(--cyan);
}

/* Benefit cards */
.benefit-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  background: var(--surface-lowest);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-2);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-num {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cyan-2);
  -webkit-text-stroke: 0.5px rgba(0, 105, 112, 0.4);
}

.benefit-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
}

.benefit-card p {
  color: var(--on-surface-variant);
  font-size: 0.96rem;
}

/* =====================================================================
   Split
   ===================================================================== */
.split-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  color: var(--on-surface-variant);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.14);
  border: 1px solid rgba(0, 222, 233, 0.4);
  color: var(--teal-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.split-visual img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow);
}

/* =====================================================================
   Narrow / quote — navy glass module
   ===================================================================== */
.section-narrow {
  text-align: center;
}

.quote-block {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--r-xl);
  background:
    var(--neural-dot) 0 0 / 22px 22px,
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.quote-block .section-heading {
  color: #fff;
}

.prose-center {
  max-width: 46rem;
  margin-inline: auto;
  color: var(--on-surface-variant);
  text-align: center;
}

.quote-block .prose-center {
  color: rgba(255, 255, 255, 0.85);
}

.quote-block .prose-center strong {
  color: var(--cyan);
}

.prose {
  margin-bottom: 1rem;
  color: var(--on-surface-variant);
}

.prose strong,
.prose-center strong {
  color: var(--navy);
}

.intro-muted {
  margin-bottom: 2rem;
}

/* =====================================================================
   Testimonials
   ===================================================================== */
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  max-width: 56rem;
  margin-inline: auto;
}

.slider-track {
  display: grid;
  min-height: 0;
}

.testimonial-card {
  grid-area: 1 / 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 2rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  background: var(--surface-lowest);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  color: var(--cyan-2);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.5;
  height: 1.5rem;
}

.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--on-surface);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.16);
  border: 1px solid rgba(0, 222, 233, 0.4);
  color: var(--teal-ink);
  font-weight: 700;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--outline-variant);
  border-radius: 50%;
  background: var(--surface-lowest);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.slider-btn:hover {
  border-color: var(--cyan-2);
  color: var(--teal-ink);
  transform: scale(1.08);
  box-shadow: var(--glow-cyan);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  background: var(--outline-variant);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.slider-dot.is-active {
  background: var(--cyan-2);
  transform: scale(1.25);
}

@media (max-width: 620px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.4rem;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .slider-btn {
    grid-row: 2;
    justify-self: center;
  }

  .slider-prev {
    margin-right: 3.5rem;
  }

  .slider-next {
    margin-left: 3.5rem;
    margin-top: -3.875rem;
  }
}

/* =====================================================================
   Mentor
   ===================================================================== */
.mentor-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.mentor-photo {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: var(--r-xl);
  padding: 5px;
  background: linear-gradient(145deg, var(--cyan), var(--navy-2) 75%);
  box-shadow: var(--shadow);
}

.mentor-photo img {
  width: 100%;
  border-radius: var(--r-lg);
}

/* =====================================================================
   Products
   ===================================================================== */
.product-grid {
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  background: var(--surface-lowest);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-2);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.product-card-primary {
  border-color: transparent;
  background:
    var(--neural-dot) 0 0 / 22px 22px,
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.product-card-primary h3,
.product-card-primary .product-launch-offer,
.product-card-primary .product-price {
  color: #fff;
}

.product-card-primary .price-old {
  color: rgba(255, 255, 255, 0.55);
}

.launch-price .price-old {
  color: rgba(255, 255, 255, 0.55);
}

.product-card-primary .product-desc,
.product-card-primary .product-points li,
.product-card-primary .offer-countdown__time small {
  color: rgba(255, 255, 255, 0.82);
}

.product-card-primary .product-points li::before,
.product-card-primary .product-launch-offer strong,
.product-card-primary .product-price strong,
.product-card-primary .offer-countdown__label,
.product-card-primary .offer-countdown__time strong {
  color: var(--cyan);
}

/* Featured: deep navy with neural watermark */
.product-card-featured {
  border-color: var(--outline-variant);
  background: var(--surface-lowest);
  box-shadow: var(--shadow-sm);
  color: var(--on-surface);
}

.product-visual {
  margin: -2rem -1.6rem 1.25rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.18), transparent 70%);
}

.product-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}

.product-tag {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.32rem 0.85rem;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--navy);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-tag-soft {
  background: rgba(0, 240, 255, 0.14);
  border: 1px solid rgba(0, 222, 233, 0.4);
  color: var(--teal-ink);
}

.product-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.product-card-primary h3 {
  color: #fff;
}

.product-card-featured h3 {
  color: var(--navy);
}

.product-desc {
  margin-bottom: 1.1rem;
  color: var(--on-surface-variant);
  font-size: 0.96rem;
}

.product-card-featured .product-desc {
  color: var(--on-surface-variant);
}

.product-points {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.product-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
}

.product-card-featured .product-points li {
  color: var(--on-surface-variant);
}

.product-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-ink);
  font-weight: 700;
}

.product-card-featured .product-points li::before {
  color: var(--teal-ink);
}

.product-card .btn {
  margin-top: auto;
}

.product-price {
  margin: auto 0 0.65rem;
  color: var(--navy-2);
  font-family: var(--label);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-price strong {
  color: var(--teal-ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
}

.product-launch-offer {
  margin: auto 0 0.9rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--cyan-2);
  color: var(--navy-2);
  font-family: var(--label);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-launch-offer strong {
  color: var(--teal-ink);
  font-weight: 800;
}

/* =====================================================================
   Guarantee
   ===================================================================== */
.guarantee-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 222, 233, 0.45);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--surface-lowest) 0%, rgba(0, 240, 255, 0.08) 100%);
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.16);
  border: 1px solid rgba(0, 222, 233, 0.5);
  color: var(--teal-ink);
  font-size: 1.6rem;
  font-weight: 700;
}

.guarantee-box h3 {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.guarantee-box p {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-wrap {
  max-width: 800px;
}

.section-heading-dark {
  color: var(--navy);
}

.faq-subtitle {
  margin: -1.75rem 0 2rem;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-md);
  background: var(--surface-lowest);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item[open] {
  border-color: var(--cyan-2);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-mark {
  position: relative;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  background: var(--teal-ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.faq-mark::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-mark::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] .faq-mark::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--on-surface-variant);
}

.faq-item a {
  color: var(--teal-ink);
  font-weight: 600;
}

/* =====================================================================
   CTA panel — navy with cyan glow
   ===================================================================== */
.section-contact {
  background: var(--surface);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 2rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--r-xl);
  background:
    var(--neural-dot) 0 0 / 22px 22px,
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 70%, var(--navy-3) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: #fff;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18), transparent 60%);
  animation: spin 26s linear infinite;
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cta-panel p {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Outline button on dark panel */
.cta-panel .btn-outline {
  color: #fff;
  border-color: rgba(0, 240, 255, 0.5);
}

.cta-panel .btn-outline:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* =====================================================================
   Footer — navy
   ===================================================================== */
.site-footer {
  padding: 3rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(0, 240, 255, 0.18);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .logo {
  color: #fff;
}

.site-footer .logo-bracket {
  color: var(--cyan);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.legal {
  max-width: 54rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.65;
}

.legal strong {
  color: rgba(255, 255, 255, 0.8);
}

.back-top {
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.back-top:hover {
  transform: translateY(-3px);
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

/* =====================================================================
   Reveal animation
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   Keyframes
   ===================================================================== */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 222, 233, 0.55);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 222, 233, 0);
  }
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 10px 26px rgba(0, 222, 233, 0.32);
  }
  50% {
    box-shadow: 0 10px 26px rgba(0, 222, 233, 0.32), 0 0 0 8px rgba(0, 240, 255, 0.16);
  }
}

@keyframes launch-border-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 219, 233, 0.35),
      0 0 8px rgba(0, 219, 233, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(0, 240, 255, 0.3),
      0 0 22px rgba(0, 219, 233, 0.72),
      0 0 38px rgba(0, 240, 255, 0.28);
  }
}

@keyframes hero-accent-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(0, 219, 233, 0));
    opacity: 0.82;
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 219, 233, 0.7));
    opacity: 1;
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .header-inner {
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .header-nav {
    position: static;
    display: flex;
    width: auto;
    gap: 1.6rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.92rem;
    font-weight: 500;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .header-nav a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }

  .header-nav a:hover {
    background: transparent;
  }

  .header-nav .header-nav-cta {
    display: none;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 5rem 0;
  }

  .header-cta {
    display: inline-flex;
  }

  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .mentor-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pill-dot,
  .cta-panel::before,
  .btn-green.btn-lg,
  .btn-launch-glow,
  .hero-title .accent-pulse,
  .btn-shine::after {
    animation: none;
    transition: none;
  }
}

/* =====================================================================
   Lead magnet (below hero)
   ===================================================================== */
.section-lead-magnet {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 240, 255, 0.08), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0, 30, 77, 0.06), transparent 50%),
    var(--surface);
  overflow: hidden;
}

.lead-magnet__top {
  padding: 4rem 0 4rem;
}

.lead-magnet__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.lead-magnet__mockup {
  display: flex;
  justify-content: center;
}

.lead-magnet__mockup-stack {
  position: relative;
  width: min(100%, 22rem);
  margin-inline: auto;
}

.lead-magnet__cover {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  aspect-ratio: 420 / 594;
  padding: 1.35rem;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: var(--r-xl);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.lead-magnet__cover > img {
  flex: 1;
  width: 100%;
  min-height: 0;
  margin-top: 0.8rem;
  object-fit: contain;
}

.lead-magnet__mockup-stack:hover .lead-magnet__cover {
  transform: rotate(0deg);
}

.lead-magnet__cover-tag {
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-magnet__cover-title {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.lead-magnet__cover-title span {
  color: var(--cyan);
}

.lead-magnet__cover-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 0;
}

.lead-magnet__cover-visual img {
  width: min(72%, 9.5rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-full);
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.38));
  animation: exit-float 4s ease-in-out infinite, brain-glow 3.4s ease-in-out infinite;
}

.lead-magnet__cover-foot {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--navy-soft);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-magnet__chip {
  position: absolute;
  top: -0.75rem;
  right: -0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  color: var(--teal-ink);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-magnet__chip svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyan-2);
}

.lead-magnet__eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--teal-ink);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-magnet__title {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.lead-magnet__title .accent {
  color: var(--teal-ink);
}

.lead-magnet__intro {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--on-surface-variant);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lead-magnet__form-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  background: var(--surface-lowest);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-magnet__form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-3), transparent);
}

.lead-magnet__form {
  display: grid;
  gap: 0.85rem;
}

.lead-magnet__label {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

.lead-magnet__form input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-md);
  background: var(--surface-low);
  color: var(--on-surface);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-magnet__form input:focus {
  outline: none;
  border-color: var(--cyan-2);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.lead-magnet__error {
  margin: 0;
  color: #ba1a1a;
  font-size: 0.88rem;
}

.lead-magnet__submit {
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--label);
  font-weight: 700;
}

.lead-magnet__submit.is-loading,
.lead-magnet__submit.is-success {
  pointer-events: none;
}

.lead-magnet__submit[data-lead-pulse].is-pulsing {
  animation: lead-pulse 2s ease-in-out infinite;
}

.lead-magnet__fine {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--outline);
  font-size: 0.78rem;
  font-style: italic;
}

.lead-magnet__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.lead-magnet__stat-num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-ink);
}

.lead-magnet__stat-cap {
  display: block;
  margin-top: 0.15rem;
  color: var(--on-surface-variant);
  font-family: var(--label);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================================================================
   Launch: Ganhar Dinheiro com IA
   ===================================================================== */
.section-launch {
  overflow: hidden;
  background:
    var(--neural-dot) 0 0 / 24px 24px,
    linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.section-launch::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.launch-layout {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.launch-visual {
  width: min(100%, 31rem);
  margin-inline: auto;
  padding: 0.45rem;
  border: 1px solid rgba(0, 240, 255, 0.38);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 36px rgba(0, 240, 255, 0.12);
}

.launch-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 0.3rem);
}

.launch-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-content h2 {
  max-width: 12ch;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.02;
  text-align: center;
}

.launch-lead {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.launch-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.8rem 0;
  border-block: 0;
  background: transparent;
}

.launch-facts div {
  display: grid;
  gap: 0.1rem;
  padding: 1rem 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: var(--r);
  background: var(--navy-1);
}

.launch-facts strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.launch-facts span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--label);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.launch-points {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.launch-points li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
}

.launch-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.launch-note {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.launch-offer {
  max-width: 36rem;
  margin-bottom: 1.4rem;
  padding: 0.8rem 1rem 0.8rem 1.15rem;
  border-left: 4px solid var(--cyan);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.14), transparent 84%);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--label);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.launch-price {
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--label);
  font-size: 1.05rem;
  font-weight: 700;
}

.launch-price strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.launch-offer strong {
  color: var(--cyan);
  font-weight: 800;
}

.launch-content > .btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .launch-layout {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
    gap: 4.5rem;
  }
}

@media (max-width: 520px) {
  .launch-facts {
    grid-template-columns: 1fr;
  }
}

@keyframes lead-pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--glow-cyan); }
  50% { transform: scale(1.02); box-shadow: 0 0 24px rgba(0, 240, 255, 0.45); }
}

@keyframes brain-glow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.34)); }
  50% { filter: drop-shadow(0 0 34px rgba(0, 240, 255, 0.68)); }
}

@media (min-width: 900px) {
  .lead-magnet__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-magnet__cover-visual img,
  .lead-magnet__submit[data-lead-pulse].is-pulsing {
    animation: none;
  }
}

/* =====================================================================
   Timed launch promotion modal
   ===================================================================== */
.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.launch-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.launch-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 30, 0.72);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.85s ease, backdrop-filter 0.85s ease;
}

.launch-modal.is-open .launch-modal__overlay {
  opacity: 1;
}

.launch-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 49rem);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid rgba(0, 240, 255, 0.42);
  border-radius: var(--r-lg);
  background: var(--surface-lowest);
  box-shadow: 0 30px 90px rgba(0, 8, 30, 0.48);
  filter: blur(8px);
  transform: translateY(54px) scale(0.88);
  opacity: 0;
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.78s ease,
    filter 0.78s ease;
  will-change: transform, opacity, filter;
}

.launch-modal.is-open .launch-modal__dialog {
  transform: translateY(0) scale(1);
  filter: blur(0);
  opacity: 1;
  animation: launchModalIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-modal.is-open .btn-launch-glow {
  animation: launchCtaGlowIn 1.25s ease 0.75s both;
}

@keyframes launchModalIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(54px) scale(0.88);
    box-shadow: 0 18px 48px rgba(0, 8, 30, 0.28);
  }

  60% {
    opacity: 1;
    filter: blur(1px);
    transform: translateY(-4px) scale(1.012);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    box-shadow: 0 30px 90px rgba(0, 8, 30, 0.48);
  }
}

@keyframes launchCtaGlowIn {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 210, 225, 0.22);
  }

  45% {
    box-shadow:
      0 0 0 8px rgba(0, 240, 255, 0.16),
      0 0 34px rgba(0, 240, 255, 0.5),
      0 16px 38px rgba(0, 210, 225, 0.28);
  }
}

.launch-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 8, 30, 0.82);
  color: #fff;
  cursor: pointer;
}

.launch-modal__close svg {
  width: 1.2rem;
  height: 1.2rem;
}

.launch-modal__visual {
  overflow: hidden;
  background: var(--navy);
}

.launch-modal__visual img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
}

.launch-modal__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.launch-modal__kicker {
  margin-bottom: 0.6rem;
  color: var(--teal-ink);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-modal__title {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  line-height: 1.05;
}

.launch-modal__desc {
  margin-bottom: 1rem;
  color: var(--on-surface-variant);
  font-size: 1rem;
}

.launch-modal__desc strong {
  color: var(--teal-ink);
}

.offer-countdown--modal {
  width: 100%;
  margin-bottom: 1rem;
}

.launch-modal__later {
  align-self: center;
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--on-surface-variant);
  font-family: var(--label);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  cursor: pointer;
}

@media (min-width: 720px) {
  .launch-modal__dialog {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-modal,
  .launch-modal__dialog {
    transition: none;
  }

  .launch-modal.is-open .launch-modal__dialog,
  .launch-modal.is-open .btn-launch-glow {
    animation: none;
  }
}

/* =====================================================================
   Exit intent popup
   ===================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.exit-intent.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.exit-intent__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 30, 0.45);
  backdrop-filter: blur(6px);
}

.exit-intent__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 56rem);
  max-height: min(92vh, 40rem);
  overflow: hidden;
  border: 1px solid rgba(196, 198, 208, 0.45);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
}

.exit-intent.is-open .exit-intent__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.exit-intent__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.exit-intent__close:hover {
  color: var(--cyan-2);
  transform: rotate(90deg);
}

.exit-intent__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.exit-intent__visual {
  display: none;
  position: relative;
  width: 38%;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.18), transparent 70%),
    linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
}

.exit-intent__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 12.5rem);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  animation: exit-float 4s ease-in-out infinite;
}

.exit-intent__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--surface-lowest);
}

.exit-intent__thumb {
  display: block;
  width: 6rem;
  margin: 0 auto 0.25rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 8, 30, 0.18));
  animation: exit-float 4s ease-in-out infinite;
}

.exit-intent__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.exit-intent__desc {
  color: var(--on-surface-variant);
  font-size: 1rem;
  line-height: 1.55;
}

.exit-intent__desc strong {
  color: var(--navy);
}

.exit-intent__fields {
  display: grid;
  gap: 0.85rem;
}

.exit-intent__field {
  position: relative;
  display: block;
}

.exit-intent__icon {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--outline);
  transform: translateY(-50%);
  pointer-events: none;
}

.exit-intent__field input {
  width: 100%;
  padding: 0.85rem 0.95rem 0.85rem 2.65rem;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--label);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.exit-intent__field input:focus {
  outline: none;
  border-color: var(--cyan-2);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.exit-intent__error {
  margin: 0;
  color: #ba1a1a;
  font-size: 0.88rem;
}

.exit-intent__submit {
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--label);
  font-weight: 700;
}

.exit-intent__submit.is-loading,
.exit-intent__submit.is-success {
  pointer-events: none;
}

.exit-intent__fine {
  margin: 0;
  text-align: center;
  color: var(--outline);
  font-size: 0.72rem;
}

@keyframes exit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 768px) {
  .exit-intent {
    padding: 4rem;
  }

  .exit-intent__visual {
    display: flex;
  }

  .exit-intent__thumb {
    display: none;
  }

  .exit-intent__fields {
    grid-template-columns: 1fr 1fr;
  }

  .exit-intent__body {
    padding: 2.5rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exit-intent__visual img,
  .exit-intent__thumb {
    animation: none;
  }

  .exit-intent,
  .exit-intent__dialog {
    transition: none;
  }
}
