@import "/_shared/vilkax-a11y.css"; /* a11y system: reduced-motion + focus-ring (must be first) */
/* ════════════════════════════════════════════════════════════
   VILKAX · prelaunch landing - cinematic minimal
   ════════════════════════════════════════════════════════════ */
:root {
  --bg:        #05080F;
  --bg-2:      #070B16;
  --ink:       #0B1426;
  --glass:     rgba(255,255,255,0.035);
  --glass-2:   rgba(255,255,255,0.055);
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --line-blue: rgba(108,168,255,0.28);

  --text:      #EEF3FA;
  --text-mut:  #9AA8BD;
  --text-dim:  #5E6E86;

  --blue:      #4C8CFF;
  --blue-br:   #6FA8FF;
  --blue-dp:   #1D4ED8;
  --blue-soft: rgba(76,140,255,0.12);
  --silver:    #C9D4E2;
  --emerald:   #34D399;

  --f-display: "Bricolage Grotesque", sans-serif;
  --f-serif:   "Instrument Serif", serif;
  --f-body:    "Manrope", sans-serif;
  --f-mono:    "JetBrains Mono", monospace;

  --ease:      cubic-bezier(0.22,1,0.36,1);
  --maxw:      1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* grain + ambient field */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 700px at 50% -10%, rgba(76,140,255,0.13), transparent 60%),
    radial-gradient(700px 600px at 88% 12%, rgba(40,120,255,0.07), transparent 55%),
    radial-gradient(800px 600px at 8% 30%, rgba(120,90,255,0.05), transparent 55%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.wrap { position: relative; z-index: 1; }
section { position: relative; z-index: 1; }
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── selection / scrollbar ─────────────────────────────────── */
::selection { background: rgba(76,140,255,0.3); color: #fff; }

/* ════════ NAV ════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(5,8,15,0.72); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--line); }
.nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav .brand img { width: 30px; height: 30px; filter: drop-shadow(0 2px 10px rgba(76,140,255,0.4)); }
.nav .brand .wm { font-family: var(--f-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--text); }
.nav .brand .wm .x { color: var(--blue-br); }
.nav .right { display: flex; align-items: center; gap: 22px; }
.nav .lk { font-size: 14px; color: var(--text-mut); text-decoration: none; transition: color .2s; }
.nav .lk:hover { color: var(--text); }
.nav .btn-mini {
  font-family: var(--f-body); font-size: 13.5px; font-weight: 600; color: #fff; text-decoration: none;
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line-blue);
  background: linear-gradient(180deg, rgba(76,140,255,0.18), rgba(76,140,255,0.06));
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.nav .btn-mini:hover { border-color: var(--blue-br); box-shadow: 0 8px 28px -10px rgba(76,140,255,0.6); transform: translateY(-1px); }

/* ════════ HERO ════════ */
.hero { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 130px 28px 80px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--text-mut); text-transform: uppercase;
  margin-bottom: 46px;
}
.hero .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(52,211,153,0.5); animation: beat 2.4s infinite; }
@keyframes beat { 0%{box-shadow:0 0 0 0 rgba(52,211,153,0.5)} 70%{box-shadow:0 0 0 7px rgba(52,211,153,0)} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }

.hero .wolf-stage { position: relative; width: min(280px, 62vw); aspect-ratio: 1; margin-bottom: 12px; display: grid; place-items: center; }
.hero .wolf-stage .halo { position: absolute; width: 150%; height: 150%; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,140,255,0.22), transparent 62%); filter: blur(8px); animation: halo 6s ease-in-out infinite; }
@keyframes halo { 0%,100%{opacity:0.7; transform:scale(0.96)} 50%{opacity:1; transform:scale(1.04)} }
.hero .wolf-stage img { position: relative; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 70px rgba(0,0,0,0.6)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(40px, 7vw, 82px); line-height: 1.04; letter-spacing: -0.035em; color: var(--text); max-width: 13ch; margin-top: 10px; text-wrap: balance; }
.hero h1 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; background: linear-gradient(120deg, #DCE8FF, var(--blue-br) 55%, var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { margin-top: 26px; font-size: clamp(16px, 2.1vw, 20px); color: var(--text-mut); max-width: 48ch; line-height: 1.55; text-wrap: balance; }
.hero .cta-row { margin-top: 42px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .scroll-hint { margin-top: 72px; display: flex; flex-direction: column; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--text-dim); text-transform: uppercase; }
.hero .scroll-hint .mouse { width: 22px; height: 34px; border-radius: 12px; border: 1px solid var(--line-2); position: relative; }
.hero .scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 2px; background: var(--text-mut); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,10px)} }

/* ════════ BUTTONS ════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--f-body); font-weight: 600; font-size: 15.5px; padding: 15px 28px; border-radius: 14px; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .3s, border-color .3s, background .3s; }
.btn.primary { color: #fff; background: linear-gradient(180deg, #5C97FF, #1D4ED8); border-color: rgba(108,168,255,0.5); box-shadow: 0 14px 36px -12px rgba(76,140,255,0.7), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(76,140,255,0.85), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn.ghost { color: var(--text); background: var(--glass); border-color: var(--line-2); backdrop-filter: blur(10px); }
.btn.ghost:hover { border-color: var(--line-blue); background: var(--glass-2); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* ════════ SECTION SHELL ════════ */
.sec { padding: 120px 0; }
.sec-eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--blue-br); text-transform: uppercase; }
.sec-h { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -0.03em; line-height: 1.08; color: var(--text); margin-top: 16px; max-width: 18ch; }
.sec-h em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--blue-br); }
.sec-lede { margin-top: 20px; font-size: 18px; color: var(--text-mut); max-width: 52ch; line-height: 1.6; }

/* ════════ POSITIONING (three quiet pillars) ════════ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; }
.pillar { padding: 34px 28px; border-radius: 20px; border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(8px); transition: border-color .4s, transform .4s var(--ease), background .4s; }
.pillar:hover { border-color: var(--line-blue); background: var(--glass-2); transform: translateY(-4px); }
.pillar .pic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); border: 1px solid var(--line-blue); color: var(--blue-br); margin-bottom: 22px; }
.pillar .pic svg { width: 24px; height: 24px; }
.pillar h3 { font-family: var(--f-display); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; color: var(--text); }
.pillar p { margin-top: 10px; font-size: 15px; color: var(--text-mut); line-height: 1.6; }

/* ════════ PRODUCT GLIMPSE ════════ */
.glimpse { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; margin-top: 60px; }
.glimpse .copy .feat { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.glimpse .copy .feat:last-child { border-bottom: 1px solid var(--line); }
.glimpse .copy .feat .fi { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line); color: var(--blue-br); }
.glimpse .copy .feat .fi svg { width: 19px; height: 19px; }
.glimpse .copy .feat h4 { font-family: var(--f-display); font-weight: 600; font-size: 17px; color: var(--text); letter-spacing: -0.01em; }
.glimpse .copy .feat p { font-size: 14px; color: var(--text-mut); margin-top: 3px; line-height: 1.5; }

/* phone preview */
.preview-phone { justify-self: center; width: min(300px, 78vw); aspect-ratio: 9/19; border-radius: 44px; padding: 7px; position: relative;
  background: linear-gradient(180deg,#1B2742,#0A1322); box-shadow: 0 0 0 1.5px rgba(108,168,255,0.18), 0 50px 120px -30px rgba(0,0,0,0.85), 0 0 90px -20px rgba(76,140,255,0.35); }
.preview-phone .pscr { width: 100%; height: 100%; border-radius: 38px; overflow: hidden; position: relative; background: radial-gradient(420px 380px at 50% 16%, rgba(76,140,255,0.16), transparent 60%), linear-gradient(180deg,#0B1426,#060B17); }
.preview-phone .pnotch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 34%; height: 22px; background: #000; border-radius: 999px; z-index: 5; }
.preview-phone .pin { position: absolute; inset: 0; padding: 52px 18px 22px; display: flex; flex-direction: column; gap: 13px; }
.pv-wolf { width: 60px; height: 60px; margin: 4px auto 2px; filter: drop-shadow(0 8px 22px rgba(76,140,255,0.5)); }
.pv-title { text-align: center; font-family: var(--f-display); font-weight: 600; font-size: 15px; color: #fff; }
.pv-sub { text-align: center; font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(155,168,189,0.7); text-transform: uppercase; }
.pv-card { padding: 12px 13px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); display: flex; align-items: center; gap: 11px; }
.pv-card .pvi { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.pv-card .pvt { font-size: 12px; color: #fff; font-weight: 600; }
.pv-card .pvd { font-size: 10px; color: rgba(155,168,189,0.8); margin-top: 1px; }
.pv-card .pvpip { margin-left: auto; font-family: var(--f-mono); font-size: 8px; padding: 3px 7px; border-radius: 999px; letter-spacing: 0.08em; }
.pip-ok { background: rgba(52,211,153,0.16); color: var(--emerald); }
.pip-crit { background: rgba(239,68,68,0.16); color: #FF8A78; }
.pv-score { margin-top: auto; text-align: center; padding: 14px; border-radius: 16px; background: rgba(76,140,255,0.08); border: 1px solid var(--line-blue); }
.pv-score .n { font-family: var(--f-display); font-weight: 700; font-size: 34px; color: #fff; letter-spacing: -0.02em; }
.pv-score .l { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.16em; color: rgba(155,168,189,0.8); text-transform: uppercase; }

/* ════════ PERKS ════════ */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.perk { padding: 28px 24px; border-radius: 18px; border: 1px solid var(--line); background: var(--glass); position: relative; overflow: hidden; transition: border-color .4s, transform .4s var(--ease); }
.perk::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-blue), transparent); opacity: 0; transition: opacity .4s; }
.perk:hover { border-color: var(--line-blue); transform: translateY(-4px); }
.perk:hover::before { opacity: 1; }
.perk .pk-no { font-family: var(--f-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.14em; }
.perk .pk-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: var(--blue-br); background: var(--blue-soft); border: 1px solid var(--line-blue); margin: 14px 0; }
.perk .pk-ic svg { width: 19px; height: 19px; }
.perk h4 { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--text); letter-spacing: -0.015em; }
.perk p { margin-top: 7px; font-size: 14px; color: var(--text-mut); line-height: 1.55; }
.perk .pk-tag { display: inline-block; margin-top: 13px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; padding: 3px 9px; border-radius: 999px; background: rgba(52,211,153,0.13); color: var(--emerald); border: 1px solid rgba(52,211,153,0.28); }

/* ════════ WAITLIST ════════ */
.waitlist { padding: 130px 0; }
.wl-card { max-width: 720px; margin: 0 auto; border-radius: 30px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(20,35,64,0.6), rgba(8,14,28,0.6)); backdrop-filter: blur(20px); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 50px 120px -40px rgba(0,0,0,0.8); }
.wl-card::before { content: ""; position: absolute; inset: -1px; border-radius: 30px; padding: 1px; background: linear-gradient(140deg, rgba(108,168,255,0.5), transparent 40%, transparent 70%, rgba(108,168,255,0.25)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.wl-card .wl-aura { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 120%; height: 90%; background: radial-gradient(circle, rgba(76,140,255,0.18), transparent 60%); pointer-events: none; }
.wl-card .wl-wolf { position: relative; width: 64px; height: 64px; margin: 0 auto 22px; filter: drop-shadow(0 10px 30px rgba(76,140,255,0.6)); }
.wl-card h2 { position: relative; font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.03em; color: var(--text); line-height: 1.06; }
.wl-card h2 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--blue-br); }
.wl-card .wl-sub { position: relative; margin-top: 16px; font-size: 16px; color: var(--text-mut); max-width: 42ch; margin-inline: auto; line-height: 1.55; }

.wl-form { position: relative; margin-top: 34px; display: flex; gap: 10px; max-width: 480px; margin-inline: auto; }
/* Style only the REAL fields — `:not(.wl-hp)` keeps the honeypot from ever
   being laid out as a second visible 56px box (the double-input bug). */
.wl-form input:not(.wl-hp) { flex: 1; height: 56px; border-radius: 15px; border: 1px solid var(--line-2); background: rgba(5,8,15,0.6); color: var(--text); font-family: var(--f-body); font-size: 15.5px; padding: 0 20px; outline: none; transition: border-color .25s, box-shadow .25s; }
.wl-form input::placeholder { color: var(--text-dim); }
/* honeypot — always 1px and off-screen; a real user never sees or tabs to it */
.wl-form .wl-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; padding: 0 !important; border: 0 !important; pointer-events: none; }
.wl-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(76,140,255,0.16); }
.wl-form .btn { height: 56px; white-space: nowrap; }
.wl-meta { position: relative; margin-top: 18px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-dim); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.wl-meta b { color: var(--text-mut); font-weight: 500; }
.wl-alt { position: relative; margin-top: 26px; display: flex; align-items: center; gap: 14px; justify-content: center; color: var(--text-dim); font-size: 13px; }
.wl-alt::before, .wl-alt::after { content: ""; height: 1px; width: 50px; background: var(--line); }
.wl-tg { position: relative; margin-top: 18px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--glass); color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; transition: border-color .25s, transform .25s var(--ease); }
.wl-tg:hover { border-color: var(--line-blue); transform: translateY(-2px); }
.wl-tg svg { width: 18px; height: 18px; color: #4CA7E8; }

/* success state */
.wl-success { display: none; position: relative; }
.wl-card.done .wl-form-view { display: none; }
.wl-card.done .wl-success { display: block; animation: rise .7s var(--ease) both; }
@keyframes rise { from{opacity:0; transform:translateY(16px)} to{opacity:1; transform:translateY(0)} }
.wl-success .seal { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(52,211,153,0.3), rgba(8,14,28,0.4)); border: 1px solid rgba(52,211,153,0.5); box-shadow: 0 0 50px -8px rgba(52,211,153,0.5); }
.wl-success .seal svg { width: 40px; height: 40px; color: var(--emerald); }
.wl-success .num-card { margin: 26px auto 0; max-width: 320px; padding: 18px 22px; border-radius: 16px; background: rgba(76,140,255,0.08); border: 1px solid var(--line-blue); display: flex; align-items: center; justify-content: space-between; }
.wl-success .num-card .l { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--text-mut); text-transform: uppercase; text-align: left; }
.wl-success .num-card .v { font-family: var(--f-display); font-weight: 700; font-size: 30px; color: #fff; letter-spacing: -0.01em; }
.wl-success .ref { margin: 22px auto 0; max-width: 420px; }
.wl-success .ref .rl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; }
.wl-success .ref .rbox { display: flex; gap: 8px; }
.wl-success .ref input { flex: 1; height: 48px; border-radius: 13px; border: 1px solid var(--line-2); background: rgba(5,8,15,0.6); color: var(--text); font-family: var(--f-mono); font-size: 13px; padding: 0 16px; outline: none; }
.wl-success .ref .copy { height: 48px; padding: 0 18px; border-radius: 13px; border: 1px solid var(--line-blue); background: var(--glass); color: var(--text); font-family: var(--f-body); font-weight: 600; font-size: 14px; cursor: pointer; transition: background .25s, border-color .25s; }
.wl-success .ref .copy:hover { background: var(--glass-2); }
.wl-success .ref .copy.copied { color: var(--emerald); border-color: rgba(52,211,153,0.4); }

/* ════════ TRUST ════════ */
.trust { text-align: center; }
.trust .tline { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 50px; }
.trust .tchip { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--glass); font-size: 14px; color: var(--text-mut); }
.trust .tchip svg { width: 17px; height: 17px; color: var(--blue-br); }
.trust .tchip b { color: var(--text); font-weight: 600; }

/* ════════ FOOTER ════════ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 48px; margin-top: 40px; }
.footer .frow { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand { display: flex; align-items: center; gap: 11px; }
.footer .brand img { width: 30px; height: 30px; }
.footer .brand .wm { font-family: var(--f-display); font-weight: 700; font-size: 19px; color: var(--text); }
.footer .brand .wm .x { color: var(--blue-br); }
.footer .fcols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .fcol h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 14px; }
.footer .fcol a { display: block; color: var(--text-mut); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer .fcol a:hover { color: var(--text); }
.footer .fbot { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-dim); font-family: var(--f-mono); letter-spacing: 0.04em; }

/* ════════ REVEAL ════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.rd1 { transition-delay: .08s; } .reveal.rd2 { transition-delay: .16s; } .reveal.rd3 { transition-delay: .24s; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .glimpse { grid-template-columns: 1fr; gap: 48px; }
  .glimpse .copy { order: 2; }
  .nav .right .lk { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .sec { padding: 88px 0; }
  .shell { padding: 0 20px; }
  .perks-grid { grid-template-columns: 1fr; }
  .wl-card { padding: 40px 24px; border-radius: 24px; }
  .wl-form { flex-direction: column; }
  .wl-form .btn { width: 100%; }
  .footer .frow { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── prelaunch integration additions (CSP-friendly helper classes) ── */
.pv-card .pvi-red  { background: linear-gradient(135deg,#FF6B57,#C8253C); }
.pv-card .pvi-blue { background: linear-gradient(135deg,#4C8CFF,#1D4ED8); }
.wl-err { margin: 12px 0 0; color: #FF6B57; font-size: 13px; line-height: 1.45; text-align: center; }
/* Base hidden state — was missing, so the a11y skip-link rendered as a stray
   visible link on every page using this stylesheet. Hidden off-screen until
   keyboard focus reveals it via the rule below. */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 12px !important; top: 12px; z-index: 1000; background: var(--vx-ink, #0B1426); color: #fff; padding: 10px 16px; border-radius: 10px; }
input[aria-invalid="true"] { border-color: #FF6B57 !important; box-shadow: 0 0 0 4px rgba(239,68,68,0.16) !important; }
