/* ============================================================
   SONA — DARK · glassmorphism · neon  (Jet-AI vibe)
   frosted glass · electric blue→cyan · deep space bg
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg:        #070a16;
  --bg-2:      #0a0e1f;
  --ink:       #eef2ff;
  --text:      #b6c0dd;
  --muted:     #8b96b8;
  --faint:     #5d678a;

  --c1:        #3b9bff;   /* electric blue */
  --c2:        #29e0e0;   /* cyan */
  --c-deep:    #2563eb;
  --c-violet:  #7c6cff;
  --accent:    linear-gradient(135deg, #46a6ff 0%, #29e0e0 100%);

  --glass:     rgba(255,255,255,.045);
  --glass-2:   rgba(255,255,255,.07);
  --brd:       rgba(255,255,255,.10);
  --brd-2:     rgba(255,255,255,.16);

  --glow:      rgba(58,150,255,.55);
  --glow-cy:   rgba(41,224,224,.45);

  --r:   22px;
  --r-s: 16px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --spring: cubic-bezier(.34,1.56,.64,1);

  --eq-hi-1: #4fe6ff; --eq-hi-2: #2f7bff;    /* neon bars while playing */
  --eq-lo-1: #2b5b9a; --eq-lo-2: #18305a;    /* dim idle */
  --dot-1: #5fb8ff; --dot-2: #29e0e0;        /* galaxy dots — same blue→cyan as primary button */
  --ring-c: rgba(90,184,255,.6);             /* Saturn ring */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Manrope', -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative;
}
/* deep-space gradient mesh + grain */
body::before { content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(800px 560px at 82% -8%, rgba(41,224,224,.16), transparent 60%),
    radial-gradient(760px 620px at 12% 4%, rgba(58,150,255,.20), transparent 60%),
    radial-gradient(700px 700px at 60% 108%, rgba(124,108,255,.16), transparent 62%); }
body::after { content: ""; position: fixed; inset: 0; z-index: -1; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); }
a { color: inherit; text-decoration: none; }
canvas { display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.g-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.g-blob.x1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(58,150,255,.6), transparent 66%); animation: drift 18s var(--ease) infinite; }
.g-blob.x2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(41,224,224,.45), transparent 68%); animation: drift 22s var(--ease) infinite reverse; }
.g-blob.x3 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(124,108,255,.5), transparent 68%); animation: drift 26s var(--ease) infinite; }

/* ---------- reveal / motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-d="1"]{transition-delay:.07s}[data-d="2"]{transition-delay:.14s}[data-d="3"]{transition-delay:.21s}
[data-d="4"]{transition-delay:.28s}[data-d="5"]{transition-delay:.35s}[data-d="6"]{transition-delay:.42s}
.split .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; }
.split .w-in { display: inline-block; transform: translateY(122%); }
.split.in .w-in { animation: wordUp .85s var(--ease) forwards; }
.w-in.acc { color: transparent; background: linear-gradient(110deg, #6fe9ff, #3b9bff 55%, #7c6cff);
  -webkit-background-clip: text; background-clip: text; }
@keyframes wordUp { to { transform: none; } }
[data-depth] { transition: transform .45s var(--ease); will-change: transform; }

/* ---------- glass primitive ---------- */
.glass { background: var(--glass); backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--brd); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 30px 60px -30px rgba(0,0,0,.8); }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(8,12,28,.55); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.hdr.scrolled { border-color: var(--brd); background: rgba(8,12,28,.78); }
.hdr-in { display: flex; align-items: center; gap: 30px; height: 74px; }
.nav { display: flex; gap: 28px; margin-left: 12px; }
.nav a { color: var(--muted); font-size: 14.5px; font-weight: 600; transition: color .2s var(--ease); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; border-radius: 2px;
  background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover { color: #fff; } .nav a:hover::after { width: 100%; }
.hdr .spacer { flex: 1; }

.mark { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: .14em;
  color: #fff; display: inline-flex; align-items: center; gap: 11px; }
.mark .dot { width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #bdfcff, var(--c2) 50%, var(--c1));
  box-shadow: 0 0 12px 2px var(--glow-cy), 0 0 0 4px rgba(58,150,255,.12); animation: breathe 2.8s var(--ease) infinite; }

.tsw { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--brd); background: var(--glass); color: #ffe08a; font-size: 16px; backdrop-filter: blur(10px);
  transition: transform .25s var(--spring), border-color .2s; }
.tsw:hover { transform: translateY(-2px) rotate(12deg); border-color: var(--brd-2); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 24px;
  border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--spring), box-shadow .25s var(--ease), background .25s; white-space: nowrap; }
.btn-primary { color: #03121f; position: relative; background: var(--accent);
  box-shadow: 0 0 24px -2px var(--glow), 0 14px 34px -12px var(--glow-cy), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 36px 2px var(--glow), 0 20px 44px -12px var(--glow-cy); }
.btn-ghost { color: #eaf2ff; background: var(--glass); border-color: var(--brd-2); backdrop-filter: blur(12px); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--c2); background: var(--glass-2); }
.btn-sm { padding: 10px 19px; font-size: 13.5px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 72px 0 90px; overflow: hidden; }
.hero .g-blob.x1 { top: -140px; right: -80px; }
.hero .g-blob.x2 { bottom: -160px; left: -120px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }

.kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: #bfeaff; border: 1px solid var(--brd);
  background: var(--glass); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 100px; margin-bottom: 28px; }
.kicker .live { width: 7px; height: 7px; border-radius: 50%; background: var(--c2);
  box-shadow: 0 0 10px 1px var(--glow-cy); animation: pulseDot 2s var(--ease) infinite; }

.hero h1 { font-family: 'Unbounded', sans-serif; font-weight: 400; color: #fff;
  font-size: clamp(42px, 5.6vw, 74px); line-height: 1.0; letter-spacing: -.02em; margin-bottom: 26px; }
.hero h1 b { font-weight: 600; color: transparent; background: linear-gradient(110deg, #6fe9ff, #3b9bff 55%, #7c6cff);
  -webkit-background-clip: text; background-clip: text; }
.hero .lead { color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); max-width: 50ch; margin-bottom: 34px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- orb stage ---------- */
.stage { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.par-orb { position: relative; z-index: 3; display: grid; place-items: center; }
.par-chips { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.par-orb .ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1.5px solid rgba(41,224,224,.5);
  width: 190px; height: 190px; opacity: 0; animation: ping 3.8s var(--ease) infinite; }
.par-orb .ring.r2 { animation-delay: 1.26s; } .par-orb .ring.r3 { animation-delay: 2.53s; }
.stage.on .ring { animation-duration: 1.7s; border-color: rgba(79,230,255,.6); }

.orb { position: relative; z-index: 3; width: 190px; height: 190px; border-radius: 50%; cursor: pointer; border: none;
  background: radial-gradient(circle at 36% 30%, #d8fbff 0%, #5fe6ff 26%, var(--c1) 58%, #1846b0 92%, #0c2a78 100%);
  box-shadow: 0 0 70px 6px var(--glow-cy), 0 0 130px 20px var(--glow), 0 30px 80px -18px rgba(0,0,0,.9),
              inset -12px -16px 40px rgba(6,26,70,.6), inset 12px 14px 30px rgba(255,255,255,.45);
  display: grid; place-items: center; color: #042036; font-size: 30px; text-shadow: 0 2px 10px rgba(255,255,255,.4);
  animation: breathe 3.8s var(--ease) infinite; transition: transform .3s var(--spring); }
.orb:hover { transform: scale(1.05); }
.orb.on { animation-duration: 1.7s; }

/* dot-galaxy core (dark glass disc) */
.core { position: relative; width: 250px; height: 250px; border-radius: 50%; border: 1px solid var(--brd-2); cursor: pointer; padding: 0;
  background: radial-gradient(circle at 50% 40%, rgba(24,34,68,.92) 0%, rgba(11,17,40,.92) 76%, rgba(8,12,30,.96) 100%);
  box-shadow: 0 0 90px -12px var(--glow), inset 0 0 56px rgba(40,90,180,.22), 0 40px 84px -30px rgba(0,0,0,.92);
  animation: breathe 4.4s var(--ease) infinite; transition: transform .3s var(--spring); z-index: 3; }
.core:hover { transform: scale(1.035); }
.core.on { animation-duration: 2.6s; }
.core-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.core-play { position: absolute; inset: 0; display: grid; place-items: center; color: #9fe9ff; opacity: 0;
  transition: opacity .3s var(--ease); pointer-events: none; }
.core-play svg { width: 30px; height: 30px; margin-left: 3px; }
.core:hover .core-play { opacity: .9; }
.core.on .core-play { opacity: 0 !important; }

.fchip { position: absolute; left: 50%; top: 50%; z-index: 4; transform: translate(-50%,-50%);
  will-change: transform, opacity; background: var(--glass-2); backdrop-filter: blur(12px);
  border: 1px solid var(--brd-2); border-radius: 100px; padding: 8px 14px; font-size: 13px; font-weight: 600;
  color: #eaf2ff; box-shadow: 0 14px 34px -16px rgba(0,0,0,.95); display: inline-flex; gap: 7px; align-items: center; white-space: nowrap; }

.eqpill { position: absolute; z-index: 5; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: min(360px, 92%); background: var(--glass-2); backdrop-filter: blur(16px);
  border: 1px solid var(--brd-2); border-radius: 18px; padding: 12px 16px 10px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.08); }
.eqpill .row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.eqpill .av { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center;
  background: var(--accent); color: #03121f; font-size: 13px; box-shadow: 0 0 16px -2px var(--glow-cy); }
.eqpill .nm { font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 13px; color: #fff; line-height: 1.1; }
.eqpill .lg { font-size: 11.5px; color: var(--muted); }
.eqpill canvas { width: 100%; height: 46px; }

/* ---------- stats ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.stat b { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: clamp(24px,2.4vw,32px);
  color: #fff; display: block; line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; margin-top: 4px; display: block; }
.stat + .stat { padding-left: 26px; border-left: 1px solid var(--brd); }

/* ---------- marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: 22px 0; border-block: 1px solid var(--brd);
  background: linear-gradient(90deg, rgba(255,255,255,.02), transparent, rgba(255,255,255,.02));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mtrack { display: flex; gap: 44px; width: max-content; animation: scroll 36s linear infinite; }
.marquee:hover .mtrack { animation-play-state: paused; }
.mitem { display: inline-flex; align-items: center; gap: 9px; font-family: 'Unbounded', sans-serif;
  font-weight: 400; font-size: 17px; color: #cdd8f5; opacity: .6; }
.mitem .d { width: 6px; height: 6px; border-radius: 50%; background: var(--c2); box-shadow: 0 0 8px var(--glow-cy); }

/* ---------- sections ---------- */
.section { padding: 100px 0; position: relative; }
.section.band, .section.tint { background: rgba(255,255,255,.018); }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #bfeaff; background: var(--glass); border: 1px solid var(--brd); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
.section h2 { font-family: 'Unbounded', sans-serif; font-weight: 400; color: #fff;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.06; letter-spacing: -.02em; }
.section h2 b { font-weight: 600; color: transparent; background: var(--accent); -webkit-background-clip: text; background-clip: text; }
.section .sub { color: var(--muted); font-size: 16.5px; margin-top: 16px; }

/* ---------- features (glass cards) ---------- */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard { position: relative; border: 1px solid var(--brd); background: var(--glass); backdrop-filter: blur(16px);
  border-radius: var(--r); padding: 30px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .35s; }
.fcard::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--c2), transparent 42%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; }
.fcard:hover { transform: translateY(-8px); border-color: var(--brd-2); box-shadow: 0 30px 60px -28px var(--glow), 0 0 0 1px rgba(41,224,224,.1); }
.fcard:hover::before { opacity: 1; }
.fi { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 25px;
  background: linear-gradient(135deg, rgba(58,150,255,.22), rgba(41,224,224,.16)); color: #9fe9ff;
  border: 1px solid var(--brd); margin-bottom: 20px; transition: transform .35s var(--spring); }
.fcard:hover .fi { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 22px -4px var(--glow-cy); }
.fcard h3 { font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 18px; color: #fff; margin-bottom: 9px; }
.fcard p { color: var(--muted); font-size: 14.5px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--glass); backdrop-filter: blur(14px); border: 1px solid var(--brd); border-radius: var(--r);
  padding: 30px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); transition: transform .35s var(--spring); }
.step:hover { transform: translateY(-6px); border-color: var(--brd-2); }
.step .n { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-family: 'Unbounded', sans-serif; font-weight: 600; color: #03121f; font-size: 17px;
  background: var(--accent); margin-bottom: 18px; box-shadow: 0 0 22px -4px var(--glow-cy); }
.step h3 { font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 17px; color: #fff; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- voice cards ---------- */
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(430px, 1fr)); gap: 14px; }
#showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
#showcase-grid .vcard { opacity: 0; }
#showcase-grid.in .vcard { animation: cardIn .55s var(--ease) forwards; animation-delay: calc(var(--d, 0) * .06s); }
@keyframes cardIn { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }
.vcard { position: relative; min-width: 0; min-height: 116px; display: flex; flex-direction: row; align-items: center; gap: 18px;
  border: 1px solid var(--brd); background: var(--glass); backdrop-filter: blur(14px); border-radius: 18px;
  padding: 18px 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .25s var(--spring), box-shadow .25s var(--ease), border-color .25s; }
.vcard:hover { transform: translateY(-3px); border-color: var(--brd-2); box-shadow: 0 22px 50px -26px var(--glow); }
.vcard.on { border-color: var(--c2); box-shadow: 0 0 0 1px rgba(41,224,224,.3), 0 0 40px -12px var(--glow-cy); }
.vplay { flex: none; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; border: 1px solid var(--brd);
  background: var(--glass-2); color: #9fe9ff; display: grid; place-items: center; position: relative;
  transition: transform .28s var(--spring), background .25s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; }
.vplay::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--c2); opacity: 0; pointer-events: none; }
.vplay:hover { transform: scale(1.09); background: var(--accent); color: #03121f; border-color: transparent; box-shadow: 0 0 26px -4px var(--glow-cy); }
.vplay:hover::after { animation: ringPulse 1.4s var(--ease) infinite; }
.vplay.on { background: var(--accent); color: #03121f; border-color: transparent; box-shadow: 0 0 26px -4px var(--glow-cy); }
.vplay.on::after { animation: ringPulse 1.5s var(--ease) infinite; }
.vplay[disabled] { opacity: .4; cursor: not-allowed; }
.vplay[disabled]:hover { transform: none; background: var(--glass-2); color: #9fe9ff; box-shadow: none; }
.vplay[disabled]:hover::after { animation: none; }
.vplay span { display: grid; place-items: center; }
.vplay svg { width: 18px; height: 18px; margin-left: 2px; }
.vplay .i-pa { display: none; }
.vplay.on .i-pl { display: none; }
.vplay.on .i-pa { display: grid; }
.vplay.on svg { margin-left: 0; }
@keyframes ringPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.6); opacity: 0; } }
.vmeta { flex: none; width: 150px; min-width: 0; }
.vname { display: flex; align-items: center; gap: 7px; font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: 14.5px; color: #fff; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vstar { color: #ffd25e; font-size: 12px; flex: none; }
.vsub { color: var(--faint); font-size: 12px; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vmid { flex: 1; min-width: 0; position: relative; display: flex; align-items: center; min-height: 56px; }
.vdesc { color: var(--muted); font-size: 13px; line-height: 1.5; width: 100%; transition: opacity .25s var(--ease); }
.veq { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .25s var(--ease); pointer-events: none; }
.vcard.on .veq { opacity: 1; }
.vcard.on .vdesc { opacity: 0; }
.vright { flex: none; display: flex; align-items: center; gap: 10px; }
.vid { font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; color: var(--faint); white-space: nowrap; }
.chip { font-size: 11px; padding: 3px 11px; border-radius: 100px; background: rgba(58,150,255,.12); color: #9fe9ff; border: 1px solid var(--brd); }
.chip.pro { background: rgba(255,210,94,.12); color: #ffd25e; border-color: rgba(255,210,94,.25); font-size: 9.5px; padding: 2px 7px; }
.vcopy { cursor: pointer; border: 1px solid var(--brd); background: var(--glass); color: var(--muted); border-radius: 9px;
  padding: 6px 12px; font-size: 11.5px; font-weight: 600; transition: all .2s var(--ease); white-space: nowrap; }
.vcopy:hover { border-color: var(--c2); color: #9fe9ff; }
.vcopy.done { color: #5ef0c0; border-color: rgba(94,240,192,.4); }
.morelink { display: inline-flex; align-items: center; gap: 9px; margin-top: 40px; color: #9fe9ff;
  font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 15px; transition: gap .25s var(--ease); }
.morelink:hover { gap: 16px; }
@media (max-width: 600px) { .vgrid, #showcase-grid { grid-template-columns: 1fr; } .vmeta { width: 132px; } .vid { display: none; } }

/* ---------- controls ---------- */
.controls { position: sticky; top: 74px; z-index: 30; padding: 16px 0;
  background: linear-gradient(to bottom, var(--bg) 74%, transparent);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.field { background: var(--glass); color: #eaf2ff; border: 1px solid var(--brd); border-radius: 100px;
  padding: 12px 18px; font-size: 14px; font-family: inherit; outline: none; backdrop-filter: blur(10px); transition: border-color .2s; }
.field::placeholder { color: var(--faint); }
.field:focus { border-color: var(--c2); }
.search { flex: 1; min-width: 220px; }
select.field { cursor: pointer; appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2329e0e0' fill='none' stroke-width='1.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; }
select.field option { background: #0c1226; color: #eaf2ff; }
.chip-toggle { cursor: pointer; border: 1px solid var(--brd); background: var(--glass); color: var(--muted);
  border-radius: 100px; padding: 12px 18px; font-size: 14px; font-weight: 700; font-family: inherit; backdrop-filter: blur(10px);
  transition: all .25s var(--spring); white-space: nowrap; }
.chip-toggle:hover { border-color: var(--brd-2); color: #9fe9ff; transform: translateY(-1px); }
.chip-toggle.active { background: var(--accent); color: #03121f; border-color: transparent; box-shadow: 0 0 20px -6px var(--glow-cy); }
.count-pill { color: var(--faint); font-size: 13px; margin-left: auto; padding: 0 6px; }
.empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 70px 0; }

/* ---------- CTA ---------- */
.cta-band { position: relative; border-radius: 30px; padding: 72px 40px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, rgba(58,150,255,.16), rgba(41,224,224,.10)); border: 1px solid var(--brd-2);
  backdrop-filter: blur(20px); box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.08); }
.cta-band .g-blob { filter: blur(50px); opacity: .5; }
.cta-band .g-blob.x1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(41,224,224,.6), transparent 64%); top: -90px; left: -40px; }
.cta-band .g-blob.x3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(58,150,255,.6), transparent 64%); bottom: -100px; right: -30px; }
.cta-band h2 { position: relative; z-index: 1; font-family: 'Unbounded', sans-serif; font-weight: 500; color: #fff;
  font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
.cta-band p { position: relative; z-index: 1; color: var(--text); max-width: 50ch; margin: 0 auto 32px; }
.cta-band .cta { position: relative; z-index: 1; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--brd); padding: 44px 0; }
.foot-in { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot .muted { color: var(--faint); font-size: 13px; }
.foot nav { display: flex; gap: 24px; margin-left: auto; }
.foot nav a { color: var(--muted); font-size: 13.5px; transition: color .2s; }
.foot nav a:hover { color: #9fe9ff; }

/* ---------- keyframes ---------- */
@keyframes breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 var(--glow-cy)} 70%{box-shadow:0 0 0 9px rgba(41,224,224,0)} 100%{box-shadow:0 0 0 0 rgba(41,224,224,0)} }
@keyframes ping { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(2.1);opacity:0} }
@keyframes drift { 0%,100%{transform:translate(0,0)} 33%{transform:translate(40px,-30px)} 66%{transform:translate(-30px,24px)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes scroll { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .split .w-in { transform: none !important; }
  #showcase-grid .vcard { opacity: 1 !important; }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .stage { height: 400px; margin-top: 10px; }
  .feat, .steps { grid-template-columns: 1fr; }
  .nav { display: none; }
  .section { padding: 76px 0; }
}
@media (max-width: 520px) { .stat + .stat { padding-left: 16px; } .stats { gap: 16px; } .fchip.f1,.fchip.f3 { display: none; } }
