/* ============================================================
   VEDIKKS — Marketing landing. Built on the app design system.
   ============================================================ */
@import url('tokens.css');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --maxw: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--vk-font-body);
  background: var(--vk-bg-light);
  color: var(--vk-bg-deep);
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--vk-pink); color: #fff; }

/* keyboard a11y */
:focus-visible { outline: 2px solid var(--vk-purple-bright); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--vk-font-nav); font-weight: 600; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--vk-pink);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: "✦"; color: var(--vk-magenta); font-size: 12px; }
.eyebrow.on-dark { color: var(--vk-pink); }
.section { position: relative; padding: 110px 0; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
h1,h2,h3,h4 { font-family: var(--vk-font-display); letter-spacing: -.02em; line-height: 1.05; font-weight: 700; }
.h2 { font-size: clamp(30px, 4vw, 46px); }
.lede { font-size: clamp(16px,1.4vw,19px); line-height: 1.6; color: var(--vk-ink-70); margin-top: 18px; }
.on-dark .lede, .lede.on-dark { color: var(--vk-on-dark-70); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: var(--vk-r-md);
  font-family: var(--vk-font-body); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease), background .2s;
}
.btn .ar { transition: transform .25s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn-primary { background: var(--vk-bg-deep); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,0,69,.32); filter: brightness(1.08); }
.btn-pink { background: var(--vk-pink); color: #fff; box-shadow: 0 8px 28px rgba(255,22,120,.36); }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,22,120,.5); }
.btn-white { background: #fff; color: var(--vk-bg-deep); box-shadow: 0 10px 30px rgba(37,0,69,.22); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(37,0,69,.32); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.32); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn-ghost.on-light { color: var(--vk-bg-deep); border-color: rgba(37,0,69,.2); }
.btn-ghost.on-light:hover { border-color: var(--vk-purple-bright); background: rgba(123,44,255,.05); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 15px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .35s var(--ease), backdrop-filter .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(28,8,52,.72); backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(10,0,25,.3);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 38px; } /* FIX 2026-06-11: was 26px — wordmark read too small */
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.78); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--vk-pink); transition: right .28s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 15px; font-weight: 600; color: #fff; padding: 0 8px; }
.nav-signin:hover { color: var(--vk-pink); }
.hamburger { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; color: #fff; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-drawer { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; padding-top: var(--nav-h);
  background:
    radial-gradient(80% 55% at 72% 8%, rgba(123,44,255,.28) 0%, rgba(37,0,69,0) 55%),
    radial-gradient(70% 60% at 12% 90%, rgba(255,22,120,.16) 0%, rgba(37,0,69,0) 55%),
    linear-gradient(180deg, #1A0E3A 0%, #250045 60%, #250045 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
#starfield { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-aurora {
  position: absolute; width: 900px; height: 900px; left: 50%; top: -10%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123,44,255,.22), rgba(37,0,69,0) 62%);
  filter: blur(20px); pointer-events: none; animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate(-52%,-4%) scale(1); } to { transform: translate(-46%,4%) scale(1.12); } }
.hero .wrap {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-top: 40px; padding-bottom: 80px;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  color: #fff; font-size: clamp(44px, 6vw, 72px); line-height: .98; margin-top: 22px;
  letter-spacing: -.03em;
}
.hero h1 .accent { display: block; position: relative; color: #fff; }
.hero h1 .accent .grad {
  background: linear-gradient(100deg, #ff5fa2 0%, var(--vk-pink) 38%, #A06BFF 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(17px,1.5vw,20px); line-height: 1.55; color: rgba(255,255,255,.78); margin-top: 24px; max-width: 480px; }
.hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.trust-line {
  display: flex; align-items: center; gap: 12px; margin-top: 26px;
  font-size: 13.5px; color: rgba(255,255,255,.55); font-weight: 300; font-family: var(--vk-font-display);
}
.trust-line .dot { color: var(--vk-purple-bright); }

/* ---- hero visual ---- */
.hero-visual { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
.kundli-stage {
  position: relative;
  width: 380px; height: 380px;
}
.kundli-card {
  position: absolute; inset: 0; border-radius: var(--vk-r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(10,0,30,.5), inset 0 1px 0 rgba(255,255,255,.18);
  padding: 26px;
}
.kundli-card .k-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.kundli-card .k-title { font-family: var(--vk-font-display); font-weight: 600; font-size: 14px; color: #fff; }
.kundli-card .k-badge { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--vk-cyan); font-family: var(--vk-font-nav); font-weight: 600; }
#kundli-svg { width: 100%; height: auto; display: block; }
#kundli-svg .grid-line { stroke: var(--vk-purple-bright); stroke-width: 1.4; fill: none; opacity: .55; }
#kundli-svg .frame { stroke: rgba(255,255,255,.45); stroke-width: 1.6; fill: none; }
#kundli-svg .house-lagna { fill: rgba(255,22,120,.12); }
.k-planet { font-family: var(--vk-font-body); font-weight: 700; font-size: 12px; fill: #fff; }
.k-planet.retro { fill: var(--vk-pink); }
.k-house-num { font-family: var(--vk-font-num); font-weight: 700; font-size: 9px; fill: rgba(255,255,255,.4); }

/* floating chat chip */
.float-chat {
  position: absolute; right: -38px; bottom: 6px; width: 300px;
  background: #fff; border-radius: 18px; padding: 16px 16px 14px;
  box-shadow: 0 24px 60px rgba(10,0,30,.5);
  z-index: 4;
}
.float-chat .fc-row { display: flex; gap: 11px; align-items: flex-start; }
.float-chat .fc-av { width: 34px; height: 34px; border-radius: 50%; background: var(--vk-purple); flex: none; display: flex; align-items: center; justify-content: center; }
.float-chat .fc-av img { width: 34px; height: 34px; border-radius: 50%; }
.float-chat .fc-name { font-family: var(--vk-font-display); font-weight: 600; font-size: 13px; color: var(--vk-pink); }
.float-chat .fc-text { font-size: 13px; line-height: 1.45; color: #1a0030; margin-top: 3px; }
.float-chat .fc-mem {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(123,44,255,.1); color: var(--vk-purple-bright);
  font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: var(--vk-r-pill);
}
.float-mem {
  position: absolute; left: -54px; top: 28px; z-index: 4;
  background: rgba(255,255,255,.96); border-radius: 14px; padding: 11px 14px;
  box-shadow: 0 18px 44px rgba(10,0,30,.4); display: flex; gap: 10px; align-items: center;
  max-width: 210px;
}
.float-mem .fm-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--vk-grad-warm); display: flex; align-items: center; justify-content: center; flex: none; }
.float-mem .fm-t { font-size: 11px; line-height: 1.3; color: #1a0030; }
.float-mem .fm-t b { color: var(--vk-bg-deep); }
.float { animation: floaty 6s ease-in-out infinite; }
.float.slow { animation-duration: 8s; animation-delay: -2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-family: var(--vk-font-nav);
}
.scroll-hint .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 60% { opacity: 1; transform: translate(-50%,10px); } 100% { opacity: 0; transform: translate(-50%,12px); } }

/* curve into light */
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; height: 80px; z-index: 2; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--vk-bg-light); padding: 38px 0; border-bottom: 1px solid rgba(37,0,69,.06); }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-lead { font-family: var(--vk-font-display); font-weight: 600; font-size: 15px; color: var(--vk-ink-70); }
.trust-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.trust-stat .num { font-family: var(--vk-font-display); font-weight: 700; font-size: 30px; color: var(--vk-bg-deep); letter-spacing: -.02em; }
.trust-stat .num .u { color: var(--vk-pink); }
.trust-stat .lbl { font-size: 12.5px; color: var(--vk-nav-rest); margin-top: 2px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float, .hero-aurora { animation: none; }
}

/* ============================================================
   PROBLEM → SOLUTION  (memory)
   ============================================================ */
.memory { background: var(--vk-bg-light); }
.memory .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.memory h2 { font-size: clamp(30px,3.6vw,44px); color: var(--vk-bg-deep); }
.memory h2 .strike { color: var(--vk-nav-rest); position: relative; }
.memory h2 .pink { color: var(--vk-pink); }
.memory p { margin-top: 20px; }
.mem-panel {
  position: relative; background: linear-gradient(165deg,#2D0857,#250045); border-radius: var(--vk-r-xl);
  padding: 30px; box-shadow: var(--vk-shadow-soft); overflow: hidden;
}
.mem-panel .mp-glow { position: absolute; width: 320px; height: 320px; right: -80px; top: -90px; background: radial-gradient(circle, rgba(255,22,120,.25), transparent 65%); }
.mem-panel .mp-label { position: relative; font-family: var(--vk-font-nav); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--vk-cyan); margin-bottom: 18px; }
.mem-card {
  position: relative; display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 15px 16px; margin-bottom: 12px;
}
.mem-card .mc-ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(123,44,255,.25); display: flex; align-items: center; justify-content: center; color: var(--vk-cyan); flex: none; }
.mem-card .mc-t { font-size: 14px; color: #fff; line-height: 1.4; }
.mem-card .mc-t b { color: var(--vk-pink); }
.mem-card .mc-time { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: #fff; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
  position: relative; background: var(--vk-bg-light); border-radius: var(--vk-r-xl);
  padding: 30px 28px 28px; border: 1px solid rgba(123,44,255,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(95,57,255,.18); border-color: rgba(123,44,255,.25); }
.feat-card .fc-ic {
  width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: 0 8px 22px rgba(95,57,255,.16); color: var(--vk-purple-bright); margin-bottom: 20px;
  transition: transform .3s var(--ease);
}
.feat-card:hover .fc-ic { transform: scale(1.08) rotate(-4deg); }
.feat-card h3 { font-size: 20px; color: var(--vk-bg-deep); }
.feat-card p { font-size: 14.5px; line-height: 1.55; color: var(--vk-ink-70); margin-top: 10px; }
.feat-card .fc-num { position: absolute; right: 18px; top: 14px; font-family: var(--vk-font-num); font-weight: 800; font-size: 38px; color: rgba(123,44,255,.07); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--vk-bg-light); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, rgba(123,44,255,.3) 0 8px, transparent 8px 16px); }
.step { position: relative; text-align: center; }
.step .s-dot {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
  background: #fff; box-shadow: var(--vk-shadow-card); display: flex; align-items: center; justify-content: center;
  font-family: var(--vk-font-display); font-weight: 700; font-size: 26px; color: var(--vk-purple-bright);
  position: relative; z-index: 1;
}
.step .s-dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px dashed rgba(123,44,255,.3); }
.step h3 { font-size: 21px; color: var(--vk-bg-deep); }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--vk-ink-70); margin-top: 10px; max-width: 280px; margin-left: auto; margin-right: auto; }

/* ============================================================
   PREVIEW (sample reading)
   ============================================================ */
.preview { background: var(--vk-bg-deep); color: #fff; overflow: hidden; }
.preview .pv-glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 20%, rgba(123,44,255,.25), transparent 60%); pointer-events: none; }
.preview .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.preview h2 { font-size: clamp(30px,3.6vw,44px); color: #fff; }
.pv-chat {
  background: var(--vk-bg-light); border-radius: var(--vk-r-xl); padding: 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.1);
}
.pv-chat .pv-bar { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid rgba(37,0,69,.08); margin-bottom: 16px; }
.pv-chat .pv-bar .dotrow { display: flex; gap: 6px; }
.pv-chat .pv-bar .dotrow span { width: 9px; height: 9px; border-radius: 50%; background: rgba(37,0,69,.15); }
.pv-chat .pv-bar .pv-q { margin-left: auto; font-family: var(--vk-font-nav); font-size: 11px; color: var(--vk-nav-rest); letter-spacing: .08em; }
.bubble { display: flex; gap: 11px; margin-bottom: 16px; }
.bubble.me { justify-content: flex-end; }
.bubble .b-av { width: 36px; height: 36px; border-radius: 50%; background: var(--vk-purple); flex: none; overflow: hidden; }
.bubble .b-av img { width: 100%; height: 100%; }
.bubble .b-body .b-name { font-family: var(--vk-font-display); font-weight: 600; font-size: 13px; color: var(--vk-pink); margin-bottom: 3px; }
.bubble .b-text { font-size: 14.5px; line-height: 1.5; color: #1a0030; max-width: 330px; }
.bubble.me .b-text { background: var(--vk-bg-deep); color: #fff; padding: 11px 15px; border-radius: 14px 14px 4px 14px; font-weight: 500; max-width: 250px; }
.typing span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--vk-purple-bright); margin-right: 4px; animation: blink 1.2s infinite; }
.typing span:nth-child(2){ animation-delay:.2s } .typing span:nth-child(3){ animation-delay:.4s }
@keyframes blink { 0%,60%,100%{opacity:.25;transform:translateY(0)} 30%{opacity:1;transform:translateY(-3px)} }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--vk-bg-light); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; background: #fff; border-radius: var(--vk-r-xl); padding: 32px 28px;
  border: 1px solid rgba(37,0,69,.08); box-shadow: var(--vk-shadow-card);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(95,57,255,.2); }
.price-card.featured {
  background: linear-gradient(170deg,#2D0857,#250045); color: #fff; border: none;
  box-shadow: 0 30px 70px rgba(95,57,255,.35); transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card .pc-tag { position: absolute; top: 18px; right: 18px; background: var(--vk-pink); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: var(--vk-r-pill); letter-spacing: .04em; }
.price-card .pc-name { font-family: var(--vk-font-display); font-weight: 600; font-size: 18px; }
.price-card .pc-price { font-family: var(--vk-font-display); font-weight: 700; font-size: 44px; letter-spacing: -.03em; margin-top: 14px; }
.price-card .pc-price .per { font-size: 16px; font-weight: 500; color: var(--vk-nav-rest); }
.price-card.featured .pc-price .per { color: rgba(255,255,255,.6); }
.price-card .pc-desc { font-size: 13.5px; color: var(--vk-ink-70); margin-top: 6px; }
.price-card.featured .pc-desc { color: rgba(255,255,255,.7); }
.price-card .pc-feats { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card .pc-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.price-card .pc-feats li .ck { width: 20px; height: 20px; border-radius: 50%; background: rgba(46,204,113,.14); color: #2ecc71; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.price-card.featured .pc-feats li .ck { background: rgba(255,22,120,.2); color: var(--vk-pink); }
.price-secure { text-align: center; margin-top: 32px; font-size: 13px; color: var(--vk-nav-rest); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(37,0,69,.1); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--vk-font-display); font-weight: 600; font-size: 18px; color: var(--vk-bg-deep); }
.faq-q .fq-ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--vk-bg-light); display: flex; align-items: center; justify-content: center; color: var(--vk-purple-bright); transition: transform .3s var(--ease), background .3s; }
.faq-item.open .fq-ic { transform: rotate(45deg); background: var(--vk-pink); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 24px; font-size: 15px; line-height: 1.6; color: var(--vk-ink-70); max-width: 660px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--vk-bg-deep); color: #fff; padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer .ft-glow { position: absolute; left: 50%; bottom: -200px; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(circle, rgba(123,44,255,.2), transparent 65%); pointer-events: none; }
.footer .ft-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; position: relative; }
.footer .ft-brand img { height: 36px; margin-bottom: 18px; }
.footer .ft-brand p { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.6; max-width: 300px; }
.footer .ft-col h4 { font-family: var(--vk-font-display); font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 16px; letter-spacing: .02em; }
.footer .ft-col a { display: block; color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 11px; transition: color .2s, transform .2s; }
.footer .ft-col a:hover { color: var(--vk-pink); transform: translateX(3px); }
.footer .ft-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); position: relative; }
.footer .ft-bottom .ft-made { color: rgba(255,255,255,.6); font-size: 13.5px; }
.footer .ft-bottom .ft-made .heart { color: var(--vk-pink); }
.footer .ft-social { display: flex; gap: 12px; }
.footer .ft-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all .25s; }
.footer .ft-social a:hover { border-color: var(--vk-pink); color: var(--vk-pink); transform: translateY(-3px); }
.footer .ft-copy { color: rgba(255,255,255,.4); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { height: 460px; order: 2; }
  .hero-copy { order: 1; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .footer .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .section { padding: 78px 0; }
  .nav-links, .nav-signin { display: none; }
  .hamburger { display: flex; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-sm { height: 38px; padding: 0 14px; font-size: 13.5px; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .scroll-hint { display: none; }
  .hero .wrap { padding-top: 24px; }
  .hero h1 { font-size: clamp(38px,11vw,52px); }
  .hero-visual { height: 400px; }
  .float-chat { right: -10px; width: 250px; }
  .float-mem { left: -10px; max-width: 175px; }
  .kundli-stage { width: 300px; height: 300px; }
  .memory .grid, .preview .grid { grid-template-columns: 1fr; gap: 36px; }
  .preview .grid { direction: ltr; }
  .preview .pv-order { order: 2; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .trust .wrap { justify-content: center; text-align: center; }
  .trust-stats { gap: 30px; justify-content: center; }

  /* mobile drawer */
  .nav-drawer {
    display: block; position: fixed; inset: 0; z-index: 99;
    background: rgba(20,4,40,.96); backdrop-filter: blur(20px);
    padding: calc(var(--nav-h) + 20px) 28px 40px;
    transform: translateY(-100%); transition: transform .42s var(--ease); visibility: hidden;
  }
  .nav-drawer.open { transform: translateY(0); visibility: visible; }
  /* FIX 2026-06-11: scope to direct children — the old `.nav-drawer a` also hit
     the .btn CTAs below, blowing up "Sign in" to 26px with no side padding so
     it overflowed its pill border. */
  .nav-drawer > a { display: block; font-family: var(--vk-font-display); font-weight: 600; font-size: 26px; color: #fff; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-drawer .nd-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .nav-drawer .nd-cta .btn { width: 100%; }
  body.drawer-open { overflow: hidden; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { height: 350px; }
  .kundli-stage { width: 250px; height: 250px; }
  .float-chat { width: 215px; right: -4px; bottom: -4px; padding: 13px 13px 12px; }
  .float-chat .fc-text { font-size: 12px; }
  .float-mem { max-width: 150px; left: -4px; top: 8px; }
  .trust-stats { gap: 22px; }
  .trust-stat .num { font-size: 24px; }
  .bubble .b-text { max-width: 240px; }
  .price-card { padding: 26px 22px; }
  .faq-q { font-size: 16px; }
}
