/* ==========================================================================
   VisaSlotsPlus — design system
   --------------------------------------------------------------------------
   Material 3's structure (tone-based surfaces, elevation levels, state layers,
   a fixed shape scale) rendered in a dark, high-contrast "instrument panel"
   look rather than the pastel default. The reason is competitive: every rival
   in this category ships a generic light SaaS template, so looking like a
   monitoring instrument rather than a landing page is itself differentiation.

   Dark is the default, light is available. Both palettes are declared on bare
   :root first so no colour has its only definition inside a media query.
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */

:root {
  color-scheme: dark;

  /* Brand ramp. Teal is the "signal" colour and is reserved for availability,
     confirmation and primary action — never for decoration, so that seeing it
     always means the same thing. */
  --teal-300: #6BFFDC;
  --teal-400: #00E5B0;
  --teal-500: #00C79A;
  --cyan-400: #22C1F2;
  --violet-400: #7C5CFF;
  --violet-500: #6541F2;
  --amber-400: #FFB020;
  --rose-400: #FF5D7A;
  --whatsapp: #25D366;

  /* Tone-based surfaces: each step is one elevation level. */
  --bg: #05070E;
  --surface-1: #0A0F1C;
  --surface-2: #101728;
  --surface-3: #161F35;
  --surface-4: #1D2842;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  --text: #EEF3FF;
  --text-muted: #9DACC9;
  --text-dim: #6F7F9E;
  --on-accent: #05070E;

  /* Elevation. Material's levels, tuned darker so cards read on a black field. */
  --e1: 0 1px 2px rgba(0, 0, 0, .5), 0 1px 3px 1px rgba(0, 0, 0, .3);
  --e2: 0 1px 2px rgba(0, 0, 0, .5), 0 2px 6px 2px rgba(0, 0, 0, .3);
  --e3: 0 4px 8px 3px rgba(0, 0, 0, .32), 0 1px 3px rgba(0, 0, 0, .55);
  --glow: 0 0 0 1px rgba(0, 229, 176, .28), 0 12px 40px -12px rgba(0, 229, 176, .35);

  /* Shape scale */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-full: 999px;

  --wrap: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.4rem, 6vw, 5.4rem);

  --font: "Inter", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.2, .7, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #F6F8FD;
  --surface-1: #FFFFFF;
  --surface-2: #FFFFFF;
  --surface-3: #F0F4FC;
  --surface-4: #E6ECF9;
  --line: rgba(11, 22, 48, .10);
  --line-strong: rgba(11, 22, 48, .18);
  --text: #0B1223;
  --text-muted: #4B5A78;
  --text-dim: #71809E;
  --teal-400: #00996F;
  --teal-300: #00805D;
  --e1: 0 1px 2px rgba(16, 26, 51, .08), 0 1px 3px 1px rgba(16, 26, 51, .05);
  --e2: 0 2px 6px rgba(16, 26, 51, .09), 0 1px 2px rgba(16, 26, 51, .06);
  --e3: 0 12px 28px -10px rgba(16, 26, 51, .22), 0 2px 6px rgba(16, 26, 51, .06);
  --glow: 0 0 0 1px rgba(0, 153, 111, .25), 0 14px 36px -14px rgba(0, 153, 111, .3);
}

/* --- reset -------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  line-height: 1.1;
  letter-spacing: -.028em;
  font-weight: 680;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.12rem, 1.9vw, 1.35rem); }
p { margin: 0 0 1.05em; }

:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal-400); color: var(--on-accent);
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.2rem, 4.5vw, 3.6rem); }
.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;
}

/* --- shared type helpers ------------------------------------------------ */

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 640; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal-400);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6;
}

.lede { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: var(--text-muted); max-width: 62ch; }
.section__head { max-width: 74ch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

.grad-text {
  background: linear-gradient(102deg, var(--teal-300) 0%, var(--cyan-400) 42%, var(--violet-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- buttons ------------------------------------------------------------ */

.btn {
  --btn-bg: var(--surface-3);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .78rem 1.35rem;
  border: 1px solid transparent; border-radius: var(--r-full);
  background: var(--btn-bg);
  font-weight: 620; font-size: .96rem; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(96deg, var(--teal-400), var(--cyan-400) 62%, var(--violet-400));
  color: var(--on-accent);
  box-shadow: 0 10px 30px -12px rgba(0, 229, 176, .75);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(0, 229, 176, .9); }

.btn--ghost {
  background: transparent; border-color: var(--line-strong); color: var(--text);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--teal-400); }

.btn--wa { background: var(--whatsapp); color: #04140A; }
.btn--lg { padding: 1.02rem 1.9rem; font-size: 1.04rem; }
.btn--block { width: 100%; }

.linkarrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--teal-400); font-weight: 620;
}
.linkarrow .icn { transition: transform .25s var(--ease); }
.linkarrow:hover .icn { transform: translateX(4px); }

/* --- navigation --------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(150%);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1.4rem; height: 74px; }
.nav__brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.logo-word { font-weight: 720; font-size: 1.16rem; letter-spacing: -.03em; }
.logo-word__plus {
  background: linear-gradient(120deg, var(--teal-400), var(--violet-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__links { display: flex; gap: .35rem; }
.nav__links a {
  padding: .5rem .8rem; border-radius: var(--r-full);
  font-size: .94rem; font-weight: 560; color: var(--text-muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--text); background: var(--surface-2); }
.nav__links a.is-active { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { width: 18px; height: 1.6px; background: var(--text); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; padding: .6rem var(--gutter) 1.4rem; border-top: 1px solid var(--line); }
.nav__mobile a { padding: .8rem 0; border-bottom: 1px solid var(--line); font-weight: 560; }

/* --- hero --------------------------------------------------------------- */

.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
}
.hero h1 { margin-bottom: .5em; }
.hero__sub { font-size: clamp(1.06rem, 1.8vw, 1.28rem); color: var(--text-muted); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.4rem; }
.hero__note { font-size: .88rem; color: var(--text-dim); display: flex; align-items: center; gap: .5rem; }
.hero__note .icn { color: var(--teal-400); flex: none; }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero__visual .radar { position: absolute; inset: -14% -18%; width: 136%; height: auto; opacity: 1; }
.hero__visual .phone { position: relative; z-index: 2; }

.aurora { position: absolute; inset: -20% -10% auto; height: 130%; pointer-events: none; z-index: 0; }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .72; }
.aurora__blob--a { width: 46vw; height: 46vw; left: -8vw; top: -10vw; background: radial-gradient(circle, rgba(0,229,176,.5), transparent 65%); animation: drift 26s var(--ease) infinite alternate; }
.aurora__blob--b { width: 40vw; height: 40vw; right: -6vw; top: 4vw; background: radial-gradient(circle, rgba(124,92,255,.5), transparent 65%); animation: drift 32s var(--ease) infinite alternate-reverse; }
.aurora__blob--c { width: 34vw; height: 34vw; left: 32vw; top: 24vw; background: radial-gradient(circle, rgba(34,193,242,.36), transparent 68%); animation: drift 38s var(--ease) infinite alternate; }
.aurora__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 32%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 32%, #000 20%, transparent 78%);
  opacity: .55;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 3vw, 0) scale(1.14); }
}

/* --- radar -------------------------------------------------------------- */

.radar__ring { fill: none; stroke: var(--line-strong); stroke-width: .3; }
.radar__axis { stroke: var(--line); stroke-width: .2; }
.radar__sweep { transform-origin: 50px 52px; animation: sweep 7s linear infinite; }
.radar__dot { fill: var(--teal-400); }
.radar__ping {
  fill: none; stroke: var(--teal-400); stroke-width: .5;
  transform-origin: center; transform-box: fill-box;
  animation: ping 3.4s var(--ease-out) infinite; animation-delay: var(--d);
}
.radar__label {
  font-size: 2.6px; font-weight: 700; letter-spacing: .12em;
  fill: var(--text-dim); font-family: var(--mono);
}
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes ping {
  0%   { transform: scale(.6); opacity: .9; }
  70%, 100% { transform: scale(3.2); opacity: 0; }
}

/* --- phone mockup ------------------------------------------------------- */

.phone { width: min(340px, 84vw); }
.phone__frame {
  position: relative; border-radius: 40px; padding: 12px 10px 18px;
  background: linear-gradient(170deg, var(--surface-3), var(--surface-1));
  border: 1px solid var(--line-strong);
  box-shadow: var(--e3), 0 40px 90px -40px rgba(0, 229, 176, .3);
}
.phone__notch {
  width: 96px; height: 6px; border-radius: 99px; background: rgba(0,0,0,.6);
  margin: 0 auto 12px;
}
.phone__bar {
  display: flex; align-items: center; gap: .65rem; padding: .4rem .7rem .8rem;
  border-bottom: 1px solid var(--line);
}
.phone__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: .8rem; font-weight: 760;
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--teal-400), var(--violet-400));
}
.phone__who { display: flex; flex-direction: column; line-height: 1.25; }
.phone__who b { font-size: .95rem; }
.phone__who em { font-style: normal; font-size: .72rem; color: var(--teal-400); }
.phone__thread { padding: .9rem .55rem .3rem; display: flex; flex-direction: column; gap: .7rem; }

.bubble {
  border-radius: 18px 18px 18px 6px; padding: .85rem .95rem;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: .87rem; line-height: 1.5;
  opacity: 0; transform: translateY(14px) scale(.98);
  animation: pop .6s var(--ease-out) forwards; animation-delay: var(--d);
}
.bubble p { margin: 0 0 .25rem; }
.bubble--alert { border-color: rgba(0, 229, 176, .34); box-shadow: var(--glow); }
.bubble__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .45rem; }
.bubble__age { font-size: .72rem; color: var(--text-dim); font-family: var(--mono); }
.bubble__title { font-weight: 700; font-size: 1rem; letter-spacing: -.02em; }
.bubble__when { color: var(--text-muted); }
.bubble__seats { display: flex; align-items: center; gap: .3rem; margin: .55rem 0 .45rem; }
.bubble__seatstext { margin-left: .45rem; font-size: .78rem; color: var(--text-muted); }
.bubble__match { color: var(--teal-400); }
.bubble__meta { font-size: .76rem; color: var(--text-dim); }
.bubble--quiet { background: var(--surface-1); }
.bubble--typing { display: inline-flex; gap: 4px; width: max-content; padding: .8rem .9rem; }
.bubble--typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim);
  animation: blink 1.3s infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: .18s; }
.bubble--typing span:nth-child(3) { animation-delay: .36s; }
@keyframes pop { to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .18rem .6rem; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 680; letter-spacing: .06em; text-transform: uppercase;
}
.pill--live { background: rgba(0, 229, 176, .16); color: var(--teal-300); }
.pill--live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-400); box-shadow: 0 0 0 0 rgba(0, 229, 176, .7);
  animation: livedot 2s infinite;
}
@keyframes livedot {
  70% { box-shadow: 0 0 0 7px rgba(0, 229, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 176, 0); }
}

.seatdot {
  width: 9px; height: 9px; border-radius: 3px;
  background: var(--surface-4); border: 1px solid var(--line-strong);
}
.seatdot.is-on { background: var(--teal-400); border-color: var(--teal-400); }

/* --- cards -------------------------------------------------------------- */

.cards { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(246px, 1fr)); }

.card {
  position: relative; padding: 1.7rem 1.6rem;
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--e1);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--e3); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); margin: 0; font-size: .96rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); margin-bottom: 1.05rem;
  display: grid; place-items: center; color: var(--teal-400);
  background: linear-gradient(150deg, rgba(0,229,176,.16), rgba(124,92,255,.12));
  border: 1px solid rgba(0, 229, 176, .22);
}
.card--accent { border-color: rgba(0, 229, 176, .3); background: linear-gradient(165deg, var(--surface-2), var(--surface-1)); }
.card--wide { grid-column: 1 / -1; }

/* --- steps -------------------------------------------------------------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(246px, 1fr)); counter-reset: s; }
.step {
  position: relative; padding: 1.9rem 1.5rem 1.6rem;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.step__num {
  position: absolute; top: 1.1rem; right: 1.2rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; color: var(--text-dim);
}
.step__icon {
  width: 44px; height: 44px; border-radius: var(--r-sm); margin-bottom: 1rem;
  display: grid; place-items: center; color: var(--on-accent);
  background: linear-gradient(135deg, var(--teal-400), var(--cyan-400));
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--text-muted); font-size: .94rem; margin: 0; }

/* --- the seat-filter demo ----------------------------------------------- */

.demo {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: linear-gradient(170deg, var(--surface-2), var(--surface-1));
  padding: clamp(1.4rem, 3vw, 2.3rem); box-shadow: var(--e2);
}
.demo__control label { display: block; font-weight: 640; margin-bottom: .7rem; }
.demo__slider { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.demo__slider input[type="range"] {
  flex: 1 1 240px; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 99px; background: var(--surface-4); cursor: pointer;
}
.demo__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-400), var(--cyan-400));
  border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--teal-400), var(--e2);
}
.demo__slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--bg);
  background: var(--teal-400); box-shadow: 0 0 0 1px var(--teal-400);
}
.demo__slider output { font-family: var(--mono); font-size: .95rem; color: var(--text-muted); }
.demo__slider output b { color: var(--teal-400); font-size: 1.35rem; }
.demo__hint { font-size: .9rem; color: var(--text-dim); margin: .9rem 0 1.5rem; max-width: 66ch; }

.demo__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.slotrow {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem;
  padding: .85rem 1.1rem; border-radius: var(--r-md);
  background: var(--surface-3); border: 1px solid var(--line);
  transition: opacity .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.slotrow__where { display: flex; flex-direction: column; line-height: 1.3; }
.slotrow__where span { font-size: .82rem; color: var(--text-muted); }
.slotrow__seats { display: flex; gap: .28rem; }
.verdict { display: none; align-items: center; gap: .35rem; font-size: .82rem; font-weight: 640; white-space: nowrap; }
.verdict--yes { color: var(--teal-400); }
.verdict--no { color: var(--text-dim); }
.slotrow:not(.is-blocked) .verdict--yes { display: inline-flex; }
.slotrow.is-blocked { opacity: .42; border-style: dashed; background: transparent; }
.slotrow.is-blocked .verdict--no { display: inline-flex; }
.demo__tally { margin: 0; color: var(--text-muted); font-size: .95rem; }
.demo__tally b { color: var(--teal-400); font-size: 1.1rem; }

/* --- comparison table --------------------------------------------------- */

.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface-1); }
table.data { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .94rem; }
table.data th, table.data td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); font-weight: 640; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td:first-child { font-weight: 600; }
.yes { color: var(--teal-400); font-weight: 640; }
.no { color: var(--text-dim); }

/* --- pricing ------------------------------------------------------------ */

.switch {
  display: inline-flex; padding: 4px; gap: 4px; margin-bottom: 2.2rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-full);
}
.switch button {
  padding: .55rem 1.25rem; border: 0; border-radius: var(--r-full); background: transparent;
  color: var(--text-muted); font-weight: 620; font-size: .92rem; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.switch button[aria-pressed="true"] { background: var(--surface-4); color: var(--text); }

.plans { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.plan {
  display: flex; flex-direction: column; padding: 1.7rem 1.5rem;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.plan--featured {
  border-color: rgba(0, 229, 176, .42);
  background: linear-gradient(168deg, rgba(0,229,176,.08), var(--surface-1) 55%);
  box-shadow: var(--glow);
}
.plan__badge {
  align-self: flex-start; margin-bottom: .8rem;
  padding: .2rem .65rem; border-radius: var(--r-full);
  background: var(--teal-400); color: var(--on-accent);
  font-size: .68rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase;
}
.plan__name { font-size: 1.05rem; font-weight: 660; margin-bottom: .3rem; }
.plan__price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .2rem; }
.plan__amount { font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 720; letter-spacing: -.04em; }
.plan__per { color: var(--text-dim); font-size: .9rem; }
.plan__equiv { font-family: var(--mono); font-size: .78rem; color: var(--teal-400); margin-bottom: .9rem; }
.plan__blurb { color: var(--text-muted); font-size: .92rem; min-height: 2.6em; }
.plan__features { list-style: none; margin: 1.1rem 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: .6rem; font-size: .91rem; }
.plan__features li { display: flex; gap: .55rem; color: var(--text-muted); }
.plan__features .icn { color: var(--teal-400); flex: none; margin-top: .22rem; }
.plan .btn { margin-top: auto; }

.guarantee {
  display: flex; gap: 1.1rem; align-items: flex-start; margin-top: 2rem;
  padding: 1.4rem 1.5rem; border-radius: var(--r-lg);
  border: 1px solid rgba(0, 229, 176, .28); background: rgba(0, 229, 176, .05);
}
.guarantee .icn { color: var(--teal-400); flex: none; }
.guarantee p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.guarantee b { color: var(--text); }

/* --- FAQ ---------------------------------------------------------------- */

.faq { display: flex; flex-direction: column; gap: .6rem; max-width: 860px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1); overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem; cursor: pointer; font-weight: 620; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icn { flex: none; color: var(--text-dim); transition: transform .28s var(--ease); }
.faq details[open] summary .icn { transform: rotate(180deg); color: var(--teal-400); }
.faq .faq__body { padding: 0 1.3rem 1.25rem; color: var(--text-muted); font-size: .96rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* --- forms -------------------------------------------------------------- */

.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field > label { font-size: .86rem; font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; font: inherit; font-size: .96rem;
  color: var(--text); background: var(--surface-3);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-400); background: var(--surface-2); outline: none;
}
.field textarea { min-height: 118px; resize: vertical; }
.field__hint { font-size: .8rem; color: var(--text-dim); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; border-radius: var(--r-full);
  border: 1px solid var(--line-strong); background: var(--surface-3);
  font-size: .88rem; cursor: pointer; user-select: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:has(input:checked) { border-color: var(--teal-400); background: rgba(0, 229, 176, .12); color: var(--teal-300); }
.chip:has(input:focus-visible) { outline: 2px solid var(--teal-400); outline-offset: 2px; }

.form__status { font-size: .92rem; margin: 0; min-height: 1.4em; }
.form__status.is-ok { color: var(--teal-400); }
.form__status.is-err { color: var(--rose-400); }
/* Honeypot: a field a human never sees and a naive bot always fills. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formcard {
  padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: var(--r-xl);
  background: linear-gradient(170deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--line); box-shadow: var(--e2);
}

/* --- CTA band ----------------------------------------------------------- */

.ctaband {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  border-radius: var(--r-xl); border: 1px solid rgba(0, 229, 176, .24);
  background: radial-gradient(ellipse 70% 130% at 50% 0%, rgba(0,229,176,.14), transparent 62%), var(--surface-1);
}
.ctaband h2 { max-width: 22ch; margin-inline: auto; }
.ctaband p { max-width: 56ch; margin-inline: auto; color: var(--text-muted); }
.ctaband .hero__actions { justify-content: center; }

/* --- stats / trust strip ------------------------------------------------ */

.strip { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.strip__item {
  padding: 1.3rem 1.4rem; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--surface-1);
}
.strip__item b { display: block; font-size: 1.02rem; margin-bottom: .3rem; }
.strip__item span { font-size: .9rem; color: var(--text-muted); }

/* --- prose (legal, guides) ---------------------------------------------- */

.prose { max-width: 76ch; }
.prose h2 { margin-top: 2.6rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.prose h3 { margin-top: 1.9rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1.2rem; }
.prose a { color: var(--teal-400); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 1.6rem 0; padding: 1rem 1.3rem; border-left: 3px solid var(--teal-400);
  background: var(--surface-1); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .93rem; }
.prose th, .prose td { padding: .7rem .8rem; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { color: var(--text-dim); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }

.pagehead { padding-block: clamp(2.6rem, 6vw, 4.4rem) clamp(1.5rem, 3vw, 2.4rem); position: relative; }
.crumbs { font-size: .84rem; color: var(--text-dim); margin-bottom: 1rem; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--teal-400); }

/* --- guide cards -------------------------------------------------------- */

.guides { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.guide {
  display: flex; flex-direction: column; padding: 1.6rem 1.5rem;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.guide:hover { transform: translateY(-4px); border-color: var(--teal-400); }
.guide__kicker { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .7rem; }
.guide h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.guide p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.1rem; }
.guide .linkarrow { margin-top: auto; }

/* --- footer ------------------------------------------------------------- */

.foot { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2.4rem; background: var(--surface-1); }
.foot__top { display: grid; gap: 2.6rem; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); margin-bottom: 2.8rem; }
.foot__brand a { display: inline-flex; align-items: center; gap: .6rem; }
.foot__tag { margin: 1rem 0; color: var(--text-muted); font-size: .95rem; max-width: 34ch; }
.foot__wa { display: inline-flex; align-items: center; gap: .5rem; color: var(--teal-400); font-weight: 620; font-size: .93rem; }
.foot__mail { margin-top: .6rem; font-size: .9rem; color: var(--text-dim); }
.foot__cols { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.foot__col h3 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .9rem; }
.foot__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.foot__col a { font-size: .92rem; color: var(--text-muted); }
.foot__col a:hover { color: var(--teal-400); }
.foot__disclaimer {
  font-size: .82rem; color: var(--text-dim); line-height: 1.65;
  padding: 1.2rem 1.3rem; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg);
}
.foot__legal { font-size: .82rem; color: var(--text-dim); margin: 1.4rem 0 0; }

/* --- reveal animation --------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease-out) var(--d, 0s), transform .7s var(--ease-out) var(--d, 0s);
}

/* --- theme toggle ------------------------------------------------------- */

.themetoggle {
  width: 40px; height: 40px; border-radius: var(--r-full);
  border: 1px solid var(--line-strong); background: transparent;
  display: grid; place-items: center; cursor: pointer; color: var(--text-muted);
}
.themetoggle:hover { color: var(--teal-400); border-color: var(--teal-400); }
:root[data-theme="light"] .themetoggle .icn--moon { display: none; }
:root:not([data-theme="light"]) .themetoggle .icn--sun { display: none; }

/* --- responsive --------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; order: -1; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .slotrow { grid-template-columns: 1fr auto; row-gap: .5rem; }
  .slotrow__verdict { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .nav__actions .btn { display: none; }
}

/* --- motion & print ----------------------------------------------------- */

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

@media print {
  .nav, .foot__cols, .ctaband, .aurora { display: none; }
  body { background: #fff; color: #000; }
}
