/* Kavi — V7 LAVENDER LIGHT (reference-matched)
   Soft lavender/periwinkle mesh · violet gradient accents · glassy white cards
   Dark indigo reserved for Dwaar + final CTA. Fraunces display · Inter body. */

:root {
  --bg: #F4F3FC;
  --ink: #16173A;
  --text: #16173A;
  --text-soft: rgba(22, 23, 58, 0.68);
  --text-dim: rgba(22, 23, 58, 0.45);
  --line: rgba(22, 23, 58, 0.1);
  --card: #FFFFFF;
  --violet: #6D5DF5;
  --violet-deep: #5646E5;
  --violet-soft: #8B7CFF;
  --blue: #4F9DFF;
  --pink: #E88BD6;
  --emerald: #10B981;
  --amber: #F59E0B;
  --indigo-dark: #14123A;
  --indigo-deeper: #0E0C2B;
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --shadow-card: 0 1px 2px rgba(22, 23, 58, 0.04), 0 16px 44px rgba(84, 74, 190, 0.1);
  --shadow-deep: 0 24px 70px rgba(84, 74, 190, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  background:
    radial-gradient(900px 600px at 8% -5%, rgba(139, 124, 255, 0.2), transparent 60%),
    radial-gradient(800px 600px at 95% 5%, rgba(232, 139, 214, 0.14), transparent 55%),
    radial-gradient(900px 700px at 50% 45%, rgba(79, 157, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #F1EFFC 0%, #F5F2FA 40%, #EFF2FC 100%);
  background-attachment: fixed;
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: rgba(109, 93, 245, 0.22); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

/* film grain, very subtle */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.028em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
em, .accent-i { font-style: italic; }

.eyebrow, .slabel .stext {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: linear-gradient(90deg, #6D5DF5, #A05CE8); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.eyebrow { margin-bottom: 18px; display: inline-block; }
.lede { font-size: 1.14rem; line-height: 1.72; color: var(--text-soft); max-width: 580px; }

/* gradient shimmer text (violet family) */
.grad-text, .grad-amber {
  background: linear-gradient(100deg, #8B5CF6 10%, #6D5DF5 40%, #4F9DFF 60%, #8B5CF6 90%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent; animation: shimmer 8s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }
.hand { font-family: var(--font-hand); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--violet-deep); font-weight: 600; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 243, 252, 0.75); backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(22, 23, 58, 0.06);
}
.nav.scrolled { box-shadow: 0 12px 40px rgba(84, 74, 190, 0.12); background: rgba(247, 246, 253, 0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.12em; font-weight: 600; color: var(--text-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--violet); }
.nav-links .btn { text-transform: none; letter-spacing: 0; font-size: 14px; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, #8B7CFF 0%, #6D5DF5 50%, #5A8DFF 100%);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 30px rgba(109, 93, 245, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 44px rgba(109, 93, 245, 0.45); }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent); transform: skewX(-20deg); transition: left 0.6s ease; }
.btn-primary:hover::after { left: 130%; }
.btn-ghost { border: 1px solid rgba(22, 23, 58, 0.2); color: var(--ink); background: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.night .btn-ghost, .kolam .btn-ghost, .flame-s .btn-ghost, .darkband .btn-ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: transparent; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ---------- sections ---------- */
section { padding: 120px 0; }
.night, .kolam, .paper-deep { background: transparent; }
.paper-deep { background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)); }
/* dark drama panels: Dwaar + final CTA */
.flame-s, .night.cta-band {
  background:
    radial-gradient(700px at 85% 0%, rgba(109, 93, 245, 0.35), transparent 55%),
    radial-gradient(600px at 10% 100%, rgba(79, 157, 255, 0.18), transparent 55%),
    linear-gradient(170deg, #191646 0%, #14123A 55%, #0E0C2B 100%);
  color: #fff;
}
.flame-s h2, .night.cta-band h2, .flame-s h3 { color: #fff; }
.flame-s .lede, .flame-s p, .night.cta-band p { color: rgba(255, 255, 255, 0.78); }
.flame-s .slabel .stext { background: linear-gradient(90deg, #A99CFF, #7CB8FF); -webkit-background-clip: text; background-clip: text; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head p { margin-top: 16px; }

/* section label */
.slabel { display: flex; align-items: center; gap: 16px; margin-bottom: 42px; }
.slabel .sno { font-family: var(--font-display); font-style: italic; color: var(--violet); font-size: 1.1rem; }
.slabel .srule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(109, 93, 245, 0.4), rgba(22, 23, 58, 0.05)); }
.flame-s .slabel .sno { color: #A99CFF; }
.flame-s .slabel .srule { background: linear-gradient(90deg, rgba(169, 156, 255, 0.5), rgba(255, 255, 255, 0.05)); }

/* ---------- hero ---------- */
.hero { padding: 120px 0 104px; }
.hero .lede { margin: 26px 0 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-kicker { margin-top: 44px; font-size: 13px; color: var(--text-dim); }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-split h1 { font-size: clamp(2.3rem, 4.6vw, 3.9rem); }
.night.hero, .hero.orbwrap { background: transparent; color: var(--ink); }
.night.hero .lede { color: var(--text-soft); }
.night.hero .hero-kicker { color: var(--text-dim); }

/* aurora orbs — pastel */
.orbwrap { position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.orb-cyan { width: 480px; height: 480px; background: rgba(139, 124, 255, 0.35); top: -140px; right: -100px; animation: drift1 26s ease-in-out infinite; }
.orb-aurora { width: 520px; height: 520px; background: rgba(79, 157, 255, 0.25); bottom: -200px; left: -140px; animation: drift2 32s ease-in-out infinite; }
.orb-amber { width: 340px; height: 340px; background: rgba(232, 139, 214, 0.22); top: 40%; left: 42%; animation: drift3 38s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px, 70px) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(110px, -60px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0); } 33% { transform: translate(70px, -50px); } 66% { transform: translate(-60px, 40px); } }
.orbwrap > .wrap { position: relative; z-index: 1; }

/* chat mock — glassy white dashboard card */
.chat {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F6FE 100%);
  border: 1px solid rgba(109, 93, 245, 0.18); border-radius: 24px; padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-deep);
  position: relative; overflow: hidden;
}
@property --beam { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.chat::before { content: ""; position: absolute; inset: -1px; border-radius: 25px; padding: 1.5px; background: conic-gradient(from var(--beam), transparent 0%, rgba(109, 93, 245, 0.8) 12%, transparent 26%, transparent 55%, rgba(79, 157, 255, 0.6) 68%, transparent 82%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: beam 7s linear infinite; pointer-events: none; }
@keyframes beam { to { --beam: 360deg; } }
.chat-head { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.chat-q { background: linear-gradient(135deg, rgba(109, 93, 245, 0.1), rgba(79, 157, 255, 0.07)); border: 1px solid rgba(109, 93, 245, 0.25); color: var(--ink); border-radius: 14px 14px 4px 14px; padding: 12px 16px; font-size: 14.5px; max-width: 90%; margin-left: auto; opacity: 0; animation: bubbleIn 0.5s ease 0.4s forwards; }
.chat-a { margin-top: 16px; opacity: 0; animation: bubbleIn 0.5s ease 1.3s forwards; }
.chat-a-label { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.chat-slot { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 13px; background: #FAFAFE; border: 1px solid rgba(22, 23, 58, 0.08); margin-bottom: 8px; font-size: 14px; color: var(--text-soft); opacity: 0; box-shadow: 0 2px 8px rgba(84, 74, 190, 0.05); }
.chat-slot .sn { font-family: var(--font-display); font-style: italic; color: var(--violet); }
.chat-slot:nth-of-type(1) { animation: bubbleIn 0.4s ease 1.7s forwards; }
.chat-slot:nth-of-type(2) { animation: bubbleIn 0.4s ease 2.1s forwards; }
.chat-slot.you { border: 1.5px dashed var(--violet); background: rgba(109, 93, 245, 0.05); color: var(--violet-deep); font-weight: 600; animation: bubbleIn 0.4s ease 2.6s forwards, glowPulse 2.6s ease 3.2s infinite; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 0 rgba(109, 93, 245, 0); } 50% { box-shadow: 0 0 26px rgba(109, 93, 245, 0.3); } }
.chat-foot { margin-top: 16px; font-size: 12.5px; color: var(--text-dim); font-style: italic; opacity: 0; animation: bubbleIn 0.5s ease 3.4s forwards; }

/* ---------- marquees ---------- */
.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: inline-block; padding: 14px 0; animation: mq 52s linear infinite; }
.marquee-track span { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); margin: 0 22px; }
.marquee-track .mq-star { color: var(--violet); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.qmarquee { background: rgba(109, 93, 245, 0.06); }
.qmarquee .marquee-track { animation-duration: 64s; animation-direction: reverse; }
.qmarquee span { color: var(--text-soft); text-transform: none; letter-spacing: 0.02em; font-weight: 400; font-size: 14px; font-family: var(--font-display); font-style: italic; }
.qmarquee .mq-star { color: var(--pink); }

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid rgba(109, 93, 245, 0.1);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-soft); }
.card .num { font-family: var(--font-display); font-style: italic; color: var(--violet); font-size: 1rem; display: block; margin-bottom: 12px; }
.kolam .card .sanskrit { background: linear-gradient(90deg, #6D5DF5, #4F9DFF); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
/* spotlight */
.card::after, .price-card::after, .post-card::after, .demo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(109, 93, 245, 0.08), transparent 65%);
}
.card:hover::after, .price-card:hover::after, .post-card:hover::after, .demo:hover::after { opacity: 1; }
.card-link { text-decoration: none; display: block; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s; }
.card-link:hover { transform: translateY(-3px); border-color: rgba(109, 93, 245, 0.4); box-shadow: var(--shadow-deep); }
.card-link .go { color: var(--violet); font-weight: 600; font-size: 14px; margin-top: 14px; display: inline-block; }

/* ---------- pillars / infographics ---------- */
.pillar { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.pillar.rev { grid-template-columns: 1.1fr 0.9fr; }
.pillar-sticky { position: sticky; top: 96px; }
.pillar-kicker { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--violet); margin-bottom: 14px; }
.flame-s .pillar-kicker { color: #A99CFF; }
.infographic { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 50px rgba(84, 74, 190, 0.18)); transition: transform 0.5s var(--ease); }
.infographic:hover { transform: translateY(-4px) scale(1.012); }
.night .infographic, .flame-s .infographic { filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35)); }
/* the engine panel: white card behind the fanout */
#distribution .infographic { background: linear-gradient(180deg, #1A1745, #14123A); border-radius: 24px; padding: 10px; box-shadow: var(--shadow-deep); }

/* ---------- hairline rows ---------- */
.hrows { border-top: 1px solid var(--line); }
.hrow { display: grid; grid-template-columns: 70px 240px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding-left 0.25s var(--ease), background 0.25s; }
.hrow:hover { padding-left: 8px; background: linear-gradient(90deg, rgba(109, 93, 245, 0.06), transparent 45%); }
.hrow .hno { font-family: var(--font-display); font-style: italic; color: var(--violet); font-size: 1.3rem; }
.hrow h3 { font-size: 1.35rem; }
.hrow p { font-size: 14.5px; color: var(--text-soft); }
a.hrow { text-decoration: none; }
a.hrow .harrow { color: var(--violet); font-weight: 600; font-size: 14px; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 0; max-width: 760px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step-n { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: var(--violet); line-height: 1; }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--text-soft); }

/* ---------- Dwaar dark section pieces ---------- */
.vnote { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; padding: 12px 20px; width: fit-content; max-width: 100%; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.3); }
.vnote .mic { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #A99CFF, #6D5DF5); display: grid; place-items: center; color: #fff; font-size: 15px; flex: none; }
.vbars { display: flex; align-items: center; gap: 3px; height: 22px; }
.vbars i { width: 3px; background: #A99CFF; border-radius: 2px; animation: vb 1.1s ease-in-out infinite; }
.vbars i:nth-child(2n) { animation-delay: 0.15s; } .vbars i:nth-child(3n) { animation-delay: 0.3s; } .vbars i:nth-child(5n) { animation-delay: 0.45s; }
@keyframes vb { 0%,100% { height: 5px; } 50% { height: 20px; } }
.vnote-text { font-size: 14px; color: rgba(255, 255, 255, 0.85); font-style: italic; }

.demos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 44px; }
.demo { background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 22px; padding: 24px; position: relative; overflow: hidden; }
.demo::after { background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(169, 156, 255, 0.12), transparent 65%); }
.demo-cap { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.55); font-style: italic; }
.demo-screen { background: rgba(10, 8, 34, 0.55); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 20px; min-height: 250px; display: flex; flex-direction: column; gap: 14px; }
.d-live { display: flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.d-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #A99CFF; animation: pulse 2s infinite; }
.d-voice { display: flex; align-items: center; gap: 12px; background: rgba(139, 124, 255, 0.12); border: 1px solid rgba(169, 156, 255, 0.3); border-radius: 999px; padding: 10px 16px; width: fit-content; animation: dwA 9s infinite; }
.d-voice .mic2 { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #A99CFF, #6D5DF5); display: grid; place-items: center; font-size: 12px; flex: none; }
.d-sec { font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.d-typed { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: #fff; animation: dwB 9s infinite; }
.d-reply { border: 1px solid transparent; background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04)) padding-box, linear-gradient(135deg, rgba(16, 185, 129, 0.65), rgba(109, 93, 245, 0.4)) border-box; border-radius: 12px; padding: 14px 16px; font-size: 13.5px; color: rgba(255, 255, 255, 0.85); animation: dwC 9s infinite; }
.d-reply strong { color: #4ADE9E; display: block; margin-bottom: 4px; font-size: 13px; }
.d-approve { display: inline-block; margin-top: 10px; background: linear-gradient(135deg, #4ADE9E, #10B981); color: #06281B; font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 999px; }
@keyframes dwA { 0%, 3% { opacity: 0; transform: translateY(8px); } 8%, 90% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; } }
@keyframes dwB { 0%, 24% { opacity: 0; transform: translateY(8px); } 31%, 90% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; } }
@keyframes dwC { 0%, 52% { opacity: 0; transform: scale(0.96); } 60%, 90% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; } }
.demo-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.demo-row .demo-cap { margin-top: 0; flex: 1; }
.d-sound { flex: none; display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(169, 156, 255, 0.5); color: #C9BFFF; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.25s var(--ease); }
.d-sound:hover, .d-sound.playing { background: linear-gradient(135deg, #8B7CFF, #6D5DF5); border-color: transparent; color: #fff; transform: translateY(-1px); }
.flame-s .grid-3 h3 { color: #fff; }
.flame-s .grid-3 p { color: rgba(255, 255, 255, 0.7) !important; font-size: 14.5px; }

/* ---------- FOMO ---------- */
.fomo-big { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chipx { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(22, 23, 58, 0.2); color: var(--text-soft); background: rgba(255, 255, 255, 0.6); }
.chipx.taken { border-color: rgba(109, 93, 245, 0.5); color: var(--violet-deep); background: rgba(109, 93, 245, 0.08); text-decoration: line-through; text-decoration-thickness: 1px; }

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 12px; }
.price-card { background: var(--card); border: 1px solid rgba(109, 93, 245, 0.12); border-radius: 24px; padding: 38px 34px; position: relative; overflow: hidden; box-shadow: var(--shadow-card); }
.price-card.featured { border: 1.5px solid transparent; background: linear-gradient(180deg, #FFFFFF, #F8F7FE) padding-box, linear-gradient(135deg, #8B7CFF, #6D5DF5 50%, #5A8DFF) border-box; box-shadow: var(--shadow-deep); }
.price-region { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: linear-gradient(90deg, #6D5DF5, #A05CE8); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.price-big { font-family: var(--font-display); font-size: 2.6rem; margin: 16px 0 2px; color: var(--ink); }
.price-sub { font-size: 14px; color: var(--text-soft); }
.price-list { list-style: none; margin-top: 22px; }
.price-list li { font-size: 14.5px; color: var(--text-soft); padding: 7px 0 7px 26px; position: relative; }
.price-list li::before { content: "✦"; position: absolute; left: 2px; color: var(--violet); font-size: 12px; }
.price-note { margin-top: 26px; font-size: 13.5px; color: var(--text-dim); font-style: italic; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 17px; padding: 19px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--violet); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; font-size: 15.5px; line-height: 1.7; color: var(--text-soft); max-width: 680px; }

/* ---------- capsule ---------- */
.capsule { background: var(--card); border-left: 3px solid var(--violet); padding: 26px 30px; border-radius: 0 var(--radius) var(--radius) 0; max-width: 780px; font-size: 16.5px; color: var(--text-soft); box-shadow: var(--shadow-card); }
.capsule strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 720px; margin: 0 auto 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; }
.night.cta-band .fomo-big, .night.cta-band h2 { color: #fff; }

/* ---------- footer ---------- */
footer { background: linear-gradient(170deg, #191646, #0E0C2B); color: rgba(255, 255, 255, 0.72); padding: 76px 0 46px; font-size: 14px; position: relative; }
footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 124, 255, 0.6), rgba(79, 157, 255, 0.4), transparent); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #A99CFF; }
.foot-brand { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.foot-links { list-style: none; display: grid; gap: 8px; }
.foot-head { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 14px; }
.foot-base { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 28px; font-size: 12.5px; color: rgba(255, 255, 255, 0.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(10px); transition: opacity 0.95s var(--ease), transform 0.95s var(--ease), filter 0.95s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; } .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; } .reveal:nth-child(5) { transition-delay: 0.3s; }
.plx { will-change: transform; }

/* ---------- blog ---------- */
.blog-hero { padding: 72px 0 40px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 0; }
.filter-btn { border: 1px solid rgba(22, 23, 58, 0.18); background: rgba(255, 255, 255, 0.6); cursor: pointer; padding: 8px 16px; border-radius: 999px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text-soft); transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: linear-gradient(135deg, #8B7CFF, #6D5DF5); border-color: transparent; color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: var(--card); border: 1px solid rgba(109, 93, 245, 0.1); border-radius: var(--radius); padding: 26px 24px; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s var(--ease); box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.post-card:hover { transform: translateY(-3px); border-color: rgba(109, 93, 245, 0.4); box-shadow: var(--shadow-deep); }
.pill { align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-deep); background: linear-gradient(135deg, rgba(139, 124, 255, 0.16), rgba(79, 157, 255, 0.1)); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.post-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.post-card p { font-size: 13.5px; color: var(--text-soft); flex: 1; }
.post-card .pdate { font-size: 12px; color: var(--text-dim); margin-top: 16px; }

/* article pages */
.post-head { padding: 72px 0 30px; }
.crumbs { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; }
.crumbs a { color: var(--violet); text-decoration: none; }
.post-head h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); max-width: 860px; }
.post-meta { margin-top: 18px; font-size: 13.5px; color: var(--text-dim); }
article.post { max-width: 780px; margin: 0 auto; padding: 20px 24px 90px; }
article.post h2 { font-size: 1.65rem; margin: 44px 0 14px; }
article.post h3 { margin: 30px 0 10px; }
article.post p { margin: 0 0 18px; font-size: 16.5px; color: var(--text-soft); }
article.post ul, article.post ol { margin: 0 0 18px 22px; color: var(--text-soft); font-size: 16.5px; }
article.post li { margin-bottom: 8px; }
article.post strong { color: var(--ink); }
article.post .capsule { margin: 26px 0 34px; }
article.post blockquote { border-left: 3px solid var(--violet); padding: 4px 0 4px 22px; margin: 26px 0; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.post-cta { background: linear-gradient(170deg, #191646, #14123A); border: 0; color: #fff; border-radius: var(--radius); padding: 34px 32px; margin-top: 50px; box-shadow: var(--shadow-deep); }
.post-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.post-cta p { color: rgba(255, 255, 255, 0.78) !important; margin-bottom: 22px !important; }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #EFEDF9; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #C9C2F2, #A99CFF); border-radius: 999px; border: 2.5px solid #EFEDF9; }

/* legacy dark-theme leftovers neutralised */
.info-card { background: var(--card); border: 1px solid rgba(109, 93, 245, 0.12); border-radius: var(--radius); padding: 26px; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--violet); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-soft); margin-top: 8px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }

@media (prefers-reduced-motion: reduce) { .orb, .grad-text, .chat::before { animation: none !important; } .reveal { filter: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .hero { padding: 84px 0 72px; }
  h1 { font-size: clamp(2.1rem, 8.4vw, 2.8rem); }
  .fomo-big { font-size: clamp(2rem, 8.6vw, 2.9rem); }
  .grid-3, .grid-2, .price-cards, .blog-grid, .demos { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-split, .pillar, .pillar.rev { grid-template-columns: 1fr; gap: 36px; }
  .pillar-sticky { position: static; }
  .hrow { grid-template-columns: 44px 1fr; }
  .hrow p { grid-column: 2; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(247, 246, 253, 0.98); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ================= V7.1 — QA + sound ================= */
html, body { overflow-x: clip; }
.reveal { filter: blur(6px); transition-duration: 0.7s; }
.chat { max-width: 100%; }
.sound-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px;
  border: 1px solid rgba(109, 93, 245, 0.35); background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--violet-deep); font-family: var(--font-body); font-size: 13px; font-weight: 600;
  cursor: pointer; box-shadow: 0 10px 30px rgba(84, 74, 190, 0.22);
  transition: transform 0.25s var(--ease), background 0.2s;
}
.sound-fab:hover { transform: translateY(-2px); }
.sound-fab.on { background: linear-gradient(135deg, #8B7CFF, #6D5DF5); color: #fff; border-color: transparent; }
@media (max-width: 900px) {
  body { background-attachment: scroll; }
  .slabel .stext { white-space: normal; line-height: 1.5; }
  .orb { width: 300px; height: 300px; filter: blur(70px); }
  .reveal { transition-delay: 0s !important; }
  .demo-row { flex-wrap: wrap; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}
