/* ============ Design tokens ============ */
:root{
  --bg:#070b1a;
  --bg-2:#0b1226;
  --surface:rgba(255,255,255,.04);
  --surface-2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --stroke-2:rgba(255,255,255,.16);
  --text:#eef1fb;
  --muted:#9aa4c4;
  --muted-2:#717ba3;

  --c1:#6d8bff;   /* indigo  */
  --c2:#9b6bff;   /* violet  */
  --c3:#23d6c2;   /* teal    */
  --accent:#7c8cff;
  --grad: linear-gradient(120deg,#6d8bff 0%,#9b6bff 55%,#23d6c2 120%);
  --grad-soft: linear-gradient(120deg,rgba(109,139,255,.18),rgba(155,107,255,.14));

  --up:#34e0a1;
  --down:#ff7a90;

  --radius:18px;
  --radius-lg:26px;
  --shadow:0 30px 70px -30px rgba(8,10,30,.85);
  --shadow-glow:0 0 0 1px var(--stroke), 0 30px 80px -40px rgba(109,139,255,.55);
  --container:1180px;
  --font:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --display:'Sora','Inter',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:radial-gradient(1200px 700px at 75% -8%,rgba(155,107,255,.18),transparent 55%),
             radial-gradient(1000px 650px at 8% 12%,rgba(35,214,194,.12),transparent 55%),
             var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 22px}

/* ============ Background orbs ============ */
.bg-orbs{position:fixed;inset:0;z-index:-1;overflow:hidden;pointer-events:none}
.orb{position:absolute;border-radius:50%;filter:blur(90px);opacity:.5}
.orb-1{width:520px;height:520px;background:#5b6bff;top:-160px;right:-120px;animation:float 16s ease-in-out infinite}
.orb-2{width:460px;height:460px;background:#23d6c2;bottom:-180px;left:-140px;animation:float 20s ease-in-out infinite reverse}
.orb-3{width:380px;height:380px;background:#9b6bff;top:40%;left:45%;animation:float 24s ease-in-out infinite}
@keyframes float{0%,100%{transform:translate(0,0)}50%{transform:translate(40px,-40px)}}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:600;font-size:.95rem;border:1px solid transparent;border-radius:12px;
  padding:11px 20px;cursor:pointer;transition:.22s ease;white-space:nowrap;
}
.btn-lg{padding:15px 28px;font-size:1.02rem;border-radius:14px}
.btn-primary{background:var(--grad);color:#0a0f22;box-shadow:0 12px 30px -12px rgba(109,139,255,.8);font-weight:700}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(155,107,255,.9)}
.btn-outline{border-color:var(--stroke-2);color:var(--text);background:var(--surface)}
.btn-outline:hover{background:var(--surface-2);border-color:var(--accent);transform:translateY(-2px)}
.btn-ghost{color:var(--text);background:transparent}
.btn-ghost:hover{background:var(--surface)}
.btn-soft{background:var(--grad-soft);border-color:var(--stroke);color:var(--text)}
.btn-soft:hover{transform:translateY(-2px);border-color:var(--accent)}
.btn.full{width:100%}

/* ============ Navbar ============ */
.nav{position:sticky;top:0;z-index:50;transition:.3s ease;border-bottom:1px solid transparent}
.nav.scrolled{background:rgba(7,11,26,.78);backdrop-filter:blur(16px);border-bottom-color:var(--stroke)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;height:72px}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--display);font-weight:800;font-size:1.2rem}
.brand-mark{display:grid;place-items:center;width:36px;height:36px;border-radius:11px;background:var(--grad);color:#0a0f22;box-shadow:0 8px 20px -8px rgba(109,139,255,.9)}
.brand-mark.sm{width:26px;height:26px;border-radius:8px}
.brand-dot{color:var(--accent)}
.nav-links{display:flex;gap:28px}
.nav-links a{color:var(--muted);font-weight:500;font-size:.94rem;transition:.2s;position:relative}
.nav-links a:hover{color:var(--text)}
.nav-cta{display:flex;gap:10px}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:.25s}

/* ============ Hero ============ */
.hero{padding:64px 0 40px;position:relative}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center}
.pill{display:inline-flex;align-items:center;gap:8px;font-size:.82rem;font-weight:600;color:var(--muted);
  background:var(--surface);border:1px solid var(--stroke);border-radius:999px;padding:7px 14px}
.pill-dot{width:8px;height:8px;border-radius:50%;background:var(--c3);box-shadow:0 0 0 4px rgba(35,214,194,.18)}
.hero-title{font-family:var(--display);font-size:clamp(2.4rem,5vw,3.7rem);line-height:1.05;letter-spacing:-.02em;margin:20px 0 18px}
.grad-text{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-sub{font-size:1.12rem;color:var(--muted);max-width:520px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 22px}
.hero-trust{display:flex;gap:22px;flex-wrap:wrap;list-style:none;color:var(--muted);font-size:.9rem}
.hero-trust li{display:flex;align-items:center;gap:7px}
.hero-trust svg{color:var(--c3)}

/* glass card */
.glass-card{background:linear-gradient(160deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  border:1px solid var(--stroke);border-radius:var(--radius-lg);backdrop-filter:blur(14px);box-shadow:var(--shadow)}

/* hero visual */
.hero-visual{position:relative}
.hero-card{padding:0;overflow:hidden;animation:rise .8s cubic-bezier(.2,.8,.2,1)}
@keyframes rise{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
.hc-head{display:flex;align-items:center;gap:12px;padding:14px 18px;border-bottom:1px solid var(--stroke);background:rgba(255,255,255,.03)}
.hc-dots{display:flex;gap:6px}
.hc-dots span{width:11px;height:11px;border-radius:50%;background:var(--stroke-2)}
.hc-dots span:nth-child(1){background:#ff6b81}.hc-dots span:nth-child(2){background:#ffd166}.hc-dots span:nth-child(3){background:#34e0a1}
.hc-title{font-size:.86rem;color:var(--muted);font-weight:600}
.badge{margin-left:auto;font-size:.72rem;font-weight:700;padding:4px 10px;border-radius:999px}
.badge-live{color:var(--c3);background:rgba(35,214,194,.12);border:1px solid rgba(35,214,194,.3)}
.hc-body{padding:18px}
.kpi-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:14px}
.kpi{background:var(--surface);border:1px solid var(--stroke);border-radius:14px;padding:14px}
.kpi-label{display:block;font-size:.76rem;color:var(--muted);font-weight:600}
.kpi-val{display:block;font-family:var(--display);font-size:1.45rem;font-weight:800;margin:3px 0;letter-spacing:-.01em}
.kpi-trend{font-size:.76rem;font-weight:700}
.kpi-trend.up{color:var(--up)}.kpi-trend.down{color:var(--down)}

.chart-card{background:var(--surface);border:1px solid var(--stroke);border-radius:14px;padding:14px;margin-bottom:14px}
.chart-head{display:flex;justify-content:space-between;align-items:center;font-size:.82rem;color:var(--muted);font-weight:600;margin-bottom:12px}
.chart-tag{font-size:.68rem;color:var(--muted-2);background:var(--surface-2);padding:3px 8px;border-radius:6px}
.bars{display:flex;align-items:flex-end;gap:8px;height:90px}
.bars.tall{height:150px}
.bars span{flex:1;height:var(--h);background:var(--grad);border-radius:6px 6px 3px 3px;opacity:.92;transform-origin:bottom;animation:grow .9s cubic-bezier(.2,.8,.2,1) both}
.bars span:nth-child(odd){opacity:.7}
@keyframes grow{from{transform:scaleY(0)}to{transform:scaleY(1)}}

.insight{display:flex;gap:10px;align-items:flex-start;background:var(--grad-soft);border:1px solid var(--stroke);border-radius:14px;padding:13px}
.insight.wide{margin-top:4px}
.insight p{font-size:.9rem;color:var(--text)}
.insight-ai{flex:none;font-size:.7rem;font-weight:800;color:#0a0f22;background:var(--c3);padding:3px 8px;border-radius:7px}

.float-chip{position:absolute;background:rgba(11,18,38,.92);border:1px solid var(--stroke-2);border-radius:12px;
  padding:9px 13px;font-size:.8rem;font-weight:600;display:flex;align-items:center;gap:7px;box-shadow:var(--shadow);backdrop-filter:blur(8px)}
.chip-1{top:18px;left:-26px;color:var(--c3);animation:bob 4s ease-in-out infinite}
.chip-2{bottom:30px;right:-22px;color:var(--accent);animation:bob 5s ease-in-out infinite reverse}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* logo strip */
.logo-strip{display:flex;align-items:center;gap:26px;flex-wrap:wrap;margin-top:54px;padding-top:26px;border-top:1px solid var(--stroke)}
.logo-strip>span{color:var(--muted-2);font-size:.84rem;font-weight:600}
.logos{display:flex;gap:30px;flex-wrap:wrap}
.logos span{font-family:var(--display);font-weight:700;color:var(--muted);opacity:.65;font-size:1.05rem;transition:.2s}
.logos span:hover{opacity:1;color:var(--text)}

/* ============ Sections ============ */
.section{padding:84px 0}
.section-alt{background:linear-gradient(180deg,transparent,rgba(255,255,255,.02),transparent)}
.section-head{text-align:center;max-width:640px;margin:0 auto 48px}
.eyebrow{display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--accent);background:var(--surface);border:1px solid var(--stroke);padding:5px 13px;border-radius:999px;margin-bottom:14px}
.section-head h2{font-family:var(--display);font-size:clamp(1.8rem,3.4vw,2.6rem);letter-spacing:-.02em;line-height:1.1}
.section-head p{color:var(--muted);margin-top:12px;font-size:1.05rem}

/* ============ Upload ============ */
.upload-wrap{display:grid;grid-template-columns:1.5fr 1fr;gap:26px;align-items:stretch}
.dropzone{position:relative;border:2px dashed var(--stroke-2);border-radius:var(--radius-lg);background:var(--surface);
  min-height:330px;display:grid;place-items:center;text-align:center;padding:34px;transition:.25s;cursor:pointer}
.dropzone:hover,.dropzone:focus-visible,.dropzone.drag{border-color:var(--accent);background:var(--grad-soft);outline:none}
.dz-icon{width:74px;height:74px;border-radius:50%;display:grid;place-items:center;margin:0 auto 16px;
  background:var(--grad-soft);border:1px solid var(--stroke);color:var(--accent)}
.dz-default h3{font-family:var(--display);font-size:1.3rem}
.dz-default>p{color:var(--muted);margin-top:6px}
.link-strong{color:var(--accent);font-weight:700;text-decoration:underline}
.dz-types{display:flex;gap:8px;justify-content:center;margin-top:18px;flex-wrap:wrap}
.dz-types span{font-size:.74rem;font-weight:700;color:var(--muted);background:var(--surface-2);border:1px solid var(--stroke);padding:5px 11px;border-radius:8px}

.dz-progress{width:100%;max-width:420px}
.dzp-file{display:flex;align-items:center;gap:13px;text-align:left;margin-bottom:18px}
.dzp-doc{font-size:1.9rem}
.dzp-file strong{display:block;font-size:1rem}
.dzp-meta{font-size:.84rem;color:var(--muted)}
.bar-track{height:9px;background:var(--surface-2);border-radius:999px;overflow:hidden}
.bar-fill{height:100%;width:0;background:var(--grad);border-radius:999px;transition:width .25s ease}
.dz-steps{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:18px}
.dz-steps span{font-size:.76rem;color:var(--muted-2);background:var(--surface);border:1px solid var(--stroke);padding:5px 10px;border-radius:8px;transition:.25s}
.dz-steps span.active{color:var(--c3);border-color:rgba(35,214,194,.4);background:rgba(35,214,194,.1)}
.dz-steps span.done{color:var(--text);opacity:.6}

.dz-done .done-check{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;margin:0 auto 14px;
  background:rgba(52,224,161,.14);border:1px solid rgba(52,224,161,.4);color:var(--up);animation:pop .4s ease}
@keyframes pop{from{transform:scale(.5);opacity:0}to{transform:scale(1);opacity:1}}
.dz-done h3{font-family:var(--display);font-size:1.3rem}
.dz-done p{color:var(--muted);margin:6px 0 16px}

.upload-side{background:var(--surface);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:26px;display:flex;flex-direction:column}
.upload-side h4{font-family:var(--display);font-size:1.1rem;margin-bottom:16px}
.steps-list{list-style:none;display:flex;flex-direction:column;gap:16px;flex:1}
.steps-list li{display:flex;gap:12px;font-size:.92rem;color:var(--muted)}
.steps-list span{flex:none;width:26px;height:26px;border-radius:8px;display:grid;place-items:center;font-weight:800;font-size:.82rem;
  color:#0a0f22;background:var(--grad)}
.upload-side .btn{margin-top:20px}

/* ============ How it works ============ */
.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.how-card{position:relative;background:var(--surface);border:1px solid var(--stroke);border-radius:var(--radius);padding:28px;transition:.25s;overflow:hidden}
.how-card:hover{transform:translateY(-5px);border-color:var(--stroke-2);box-shadow:var(--shadow)}
.how-num{position:absolute;top:14px;right:20px;font-family:var(--display);font-size:2.6rem;font-weight:800;color:rgba(255,255,255,.05)}
.how-ico{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:var(--grad-soft);border:1px solid var(--stroke);color:var(--accent);margin-bottom:16px}
.how-card h3{font-family:var(--display);font-size:1.2rem;margin-bottom:8px}
.how-card p{color:var(--muted);font-size:.94rem}

/* ============ Dashboard ============ */
.dashboard{display:grid;grid-template-columns:230px 1fr;overflow:hidden;padding:0}
.dash-side{padding:22px;border-right:1px solid var(--stroke);background:rgba(255,255,255,.02);display:flex;flex-direction:column;gap:22px}
.dash-brand{display:flex;align-items:center;gap:9px;font-family:var(--display);font-weight:800}
.dash-nav{display:flex;flex-direction:column;gap:4px}
.dash-nav a{padding:9px 12px;border-radius:10px;font-size:.9rem;color:var(--muted);cursor:pointer;transition:.2s}
.dash-nav a:hover{background:var(--surface);color:var(--text)}
.dash-nav a.active{background:var(--grad-soft);color:var(--text);font-weight:600;border:1px solid var(--stroke)}
.dash-file{margin-top:auto;background:var(--surface);border:1px solid var(--stroke);border-radius:12px;padding:12px;font-size:.84rem}
.dash-file small{display:block;color:var(--muted-2);margin-top:3px}

.dash-main{padding:24px}
.dash-topbar{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:20px}
.dash-topbar h3{font-family:var(--display);font-size:1.3rem}
.muted{color:var(--muted);font-size:.86rem}
.dash-kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}
.dash-kpi{background:var(--surface);border:1px solid var(--stroke);border-radius:14px;padding:15px}
.dash-charts{display:grid;grid-template-columns:1.6fr 1fr;gap:14px;margin-bottom:14px}
.chart-card.big{margin:0}

/* donut */
.donut{width:130px;height:130px;border-radius:50%;margin:6px auto 14px;
  background:conic-gradient(var(--c1) 0 48%,var(--c2) 48% 82%,var(--c3) 82% 100%);
  position:relative;animation:spin-in .8s ease}
.donut::after{content:"";position:absolute;inset:22px;border-radius:50%;background:var(--bg-2)}
@keyframes spin-in{from{transform:rotate(-90deg) scale(.8);opacity:0}to{transform:none;opacity:1}}
.legend{list-style:none;display:flex;flex-direction:column;gap:7px;font-size:.84rem;color:var(--muted)}
.legend li{display:flex;align-items:center;gap:8px}
.legend i{width:11px;height:11px;border-radius:3px}
.legend b{margin-left:auto;color:var(--text)}

/* ============ Ask your data ============ */
.ask-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:50px;align-items:center}
.ask-copy h2{font-family:var(--display);font-size:clamp(1.7rem,3vw,2.3rem);letter-spacing:-.02em;margin:12px 0 14px;line-height:1.12}
.ask-copy>p{color:var(--muted);font-size:1.05rem}
.ask-list{list-style:none;display:flex;flex-direction:column;gap:11px;margin:22px 0}
.ask-list li{display:flex;align-items:center;gap:9px;color:var(--text);font-weight:500}
.ask-list svg{color:var(--c3)}
.ask-suggest{display:flex;flex-direction:column;gap:9px}
.suggest{text-align:left;background:var(--surface);border:1px solid var(--stroke);color:var(--muted);border-radius:12px;
  padding:11px 15px;font-size:.9rem;cursor:pointer;transition:.2s;font-family:inherit}
.suggest:hover{border-color:var(--accent);color:var(--text);background:var(--surface-2);transform:translateX(4px)}

.chat{display:flex;flex-direction:column;height:440px;overflow:hidden}
.chat-head{display:flex;justify-content:space-between;align-items:center;padding:15px 18px;border-bottom:1px solid var(--stroke);background:rgba(255,255,255,.03)}
.chat-ai{display:flex;align-items:center;gap:8px;font-weight:700;font-family:var(--display)}
.pulse{width:9px;height:9px;border-radius:50%;background:var(--c3);box-shadow:0 0 0 0 rgba(35,214,194,.6);animation:pulse 1.8s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(35,214,194,.5)}70%{box-shadow:0 0 0 9px rgba(35,214,194,0)}100%{box-shadow:0 0 0 0 rgba(35,214,194,0)}}
.chat-body{flex:1;overflow-y:auto;padding:18px;display:flex;flex-direction:column;gap:13px}
.msg{display:flex}
.msg.user{justify-content:flex-end}
.bubble{max-width:80%;padding:11px 15px;border-radius:16px;font-size:.92rem;line-height:1.5}
.msg.bot .bubble{background:var(--surface-2);border:1px solid var(--stroke);border-bottom-left-radius:5px}
.msg.user .bubble{background:var(--grad);color:#0a0f22;font-weight:500;border-bottom-right-radius:5px}
.bubble .mini-bars{display:flex;gap:5px;align-items:flex-end;height:46px;margin-top:9px}
.bubble .mini-bars span{flex:1;background:var(--accent);border-radius:4px;opacity:.85;height:var(--h)}
.typing{display:flex;gap:4px;padding:13px 16px}
.typing span{width:7px;height:7px;border-radius:50%;background:var(--muted);animation:typing 1.2s infinite}
.typing span:nth-child(2){animation-delay:.2s}.typing span:nth-child(3){animation-delay:.4s}
@keyframes typing{0%,60%,100%{transform:translateY(0);opacity:.4}30%{transform:translateY(-5px);opacity:1}}
.chat-input{display:flex;gap:9px;padding:14px;border-top:1px solid var(--stroke);background:rgba(255,255,255,.02)}
.chat-input input{flex:1;background:var(--surface);border:1px solid var(--stroke);border-radius:12px;color:var(--text);
  padding:12px 15px;font-family:inherit;font-size:.92rem;outline:none;transition:.2s}
.chat-input input:focus{border-color:var(--accent)}
.chat-send{padding:0 16px}

/* ============ Features ============ */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feature{background:var(--surface);border:1px solid var(--stroke);border-radius:var(--radius);padding:26px;transition:.25s}
.feature:hover{transform:translateY(-5px);border-color:var(--stroke-2);box-shadow:var(--shadow)}
.f-ico{width:52px;height:52px;border-radius:14px;display:grid;place-items:center;font-size:1.5rem;
  background:var(--grad-soft);border:1px solid var(--stroke);margin-bottom:15px}
.feature h3{font-family:var(--display);font-size:1.15rem;margin-bottom:7px}
.feature p{color:var(--muted);font-size:.93rem}

/* ============ Stats ============ */
.stats-section{padding:60px 0}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;
  background:var(--grad-soft);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:40px 24px}
.stat-num{display:block;font-family:var(--display);font-size:clamp(2rem,4vw,2.8rem);font-weight:800;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.stat-label{color:var(--muted);font-size:.92rem;font-weight:500}

/* ============ Pricing ============ */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:start}
.price-card{position:relative;background:var(--surface);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:30px;transition:.25s}
.price-card:hover{transform:translateY(-5px);border-color:var(--stroke-2)}
.price-card.featured{background:linear-gradient(160deg,rgba(109,139,255,.16),rgba(155,107,255,.08));border-color:rgba(124,140,255,.5);box-shadow:var(--shadow-glow)}
.best{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--grad);color:#0a0f22;font-size:.74rem;font-weight:800;padding:5px 14px;border-radius:999px}
.price-card h3{font-family:var(--display);font-size:1.2rem}
.price{margin:14px 0 4px;display:flex;align-items:baseline;gap:4px}
.price .amt{font-family:var(--display);font-size:2.5rem;font-weight:800}
.price .per{color:var(--muted)}
.price-sub{color:var(--muted);font-size:.9rem;margin-bottom:18px}
.price-card ul{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:24px}
.price-card li{display:flex;align-items:center;gap:9px;color:var(--muted);font-size:.93rem}
.price-card li::before{content:"✓";color:var(--c3);font-weight:800}

/* ============ CTA ============ */
.cta-section{padding:40px 0 90px}
.cta{text-align:center;padding:60px 30px;background:linear-gradient(160deg,rgba(109,139,255,.18),rgba(35,214,194,.08))}
.cta h2{font-family:var(--display);font-size:clamp(1.8rem,3.6vw,2.7rem);letter-spacing:-.02em}
.cta p{color:var(--muted);font-size:1.1rem;margin:14px 0 28px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ============ Footer ============ */
.footer{border-top:1px solid var(--stroke);padding:56px 0 30px;background:rgba(7,11,26,.6);text-align:center}
.footer-top{display:flex;flex-direction:column;align-items:center;gap:14px;padding-bottom:34px;border-bottom:1px solid var(--stroke)}
.footer-tag{color:var(--muted);max-width:420px}
.footer-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;padding:38px 0;justify-items:center}
.footer-col{display:flex;flex-direction:column;align-items:center}
.footer-col h4{font-family:var(--display);font-size:1.02rem;margin-bottom:14px;color:var(--text)}
.footer-col p{color:var(--muted);font-size:.94rem;margin-bottom:8px;line-height:1.7}
.fc-strong{color:var(--text)!important;font-weight:700}
.footer-col a{color:var(--muted);transition:.2s}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{display:flex;justify-content:center;flex-wrap:wrap;gap:10px 24px;padding-top:24px;border-top:1px solid var(--stroke);color:var(--muted-2);font-size:.86rem}

/* ============ Reveal animation ============ */
.reveal{opacity:0;transform:translateY(26px);transition:.7s cubic-bezier(.2,.8,.2,1)}
.reveal.in{opacity:1;transform:none}

/* ============ Responsive ============ */
@media (max-width:980px){
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
  .nav.open{background:rgba(7,11,26,.97);backdrop-filter:blur(16px);border-bottom-color:var(--stroke)}
  .nav.open .nav-inner{flex-wrap:wrap;height:auto;padding-bottom:16px}
  .nav.open .nav-links{display:flex;flex-direction:column;flex-basis:100%;width:100%;order:3;gap:0;margin-top:6px}
  .nav.open .nav-links a{padding:14px 2px;border-bottom:1px solid var(--stroke);font-size:1rem}
  .nav.open .nav-cta{display:flex;flex-direction:column;flex-basis:100%;width:100%;order:4;gap:10px;margin-top:14px}
  .nav.open .nav-cta .btn{width:100%}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .ask-grid{grid-template-columns:1fr;gap:34px}
  .upload-wrap{grid-template-columns:1fr}
  .how-grid,.feature-grid,.price-grid{grid-template-columns:1fr 1fr}
  .dashboard{grid-template-columns:1fr}
  .dash-side{flex-direction:row;align-items:center;flex-wrap:wrap;border-right:0;border-bottom:1px solid var(--stroke)}
  .dash-nav{flex-direction:row;flex-wrap:wrap}
  .dash-file{margin:0}
  .dash-charts{grid-template-columns:1fr}
  .dash-kpis{grid-template-columns:1fr 1fr}
}
@media (max-width:620px){
  .section{padding:60px 0}
  .stats{grid-template-columns:1fr 1fr}
  .how-grid,.feature-grid,.price-grid{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr}
  .float-chip{display:none}
  .hero-trust{gap:14px}
}

/* ============ Subscribe / contact opt-in ============ */
.contact-optin-wrap{max-width:680px;margin:0 auto}
.contact-form-column{padding:clamp(24px,4vw,40px)}
#disclaimer-form-widget{width:100%}
#disclaimerFormWidget{display:flex;flex-direction:column;gap:22px}

.contact-info-section{display:flex;flex-direction:column;gap:16px}
.contact-info-title,.consent-title{font-family:var(--display);font-size:1.05rem;font-weight:700;color:var(--text)}
.contact-info-title{font-size:1.25rem;margin-bottom:2px}

.input-group{display:flex;flex-direction:column;gap:7px;text-align:left}
.input-group label{font-size:.86rem;font-weight:600;color:var(--muted)}
.input-group input{
  width:100%;background:var(--surface);border:1px solid var(--stroke);border-radius:12px;color:var(--text);
  padding:13px 15px;font-family:inherit;font-size:.96rem;outline:none;transition:.2s;
}
.input-group input::placeholder{color:var(--muted-2)}
.input-group input:focus{border-color:var(--accent);background:var(--surface-2);box-shadow:0 0 0 3px rgba(124,140,255,.18)}
.input-group input.error{border-color:var(--down);box-shadow:0 0 0 3px rgba(255,122,144,.15)}
.input-group input.valid{border-color:var(--up);box-shadow:0 0 0 3px rgba(52,224,161,.14)}
.error-message{display:none;font-size:.8rem;color:var(--down);font-weight:500}

.consent-section,.required-checkbox{display:flex;flex-direction:column;gap:11px;
  background:var(--surface);border:1px solid var(--stroke);border-radius:14px;padding:16px}
.required-checkbox{background:var(--grad-soft)}
.checkbox-item{display:flex;align-items:flex-start;gap:11px;text-align:left}
.checkbox-item input[type="checkbox"]{
  flex:none;width:20px;height:20px;margin-top:2px;cursor:pointer;accent-color:var(--accent);
}
.disclaimer-links,.required-checkbox-links{font-size:.82rem;line-height:1.55;color:var(--muted);cursor:pointer}
.disclaimer-links strong,.required-checkbox-links strong{color:var(--text)}
.disclaimer-links .brand-name-placeholder,.required-checkbox-links .brand-name-placeholder{color:var(--accent);font-weight:700}
.required-checkbox-links a{color:var(--accent);text-decoration:underline}

.bot-check-container{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.bot-check-button{
  display:inline-flex;align-items:center;gap:9px;font-family:inherit;font-weight:600;font-size:.92rem;
  color:var(--text);background:var(--surface);border:1px solid var(--stroke-2);border-radius:12px;
  padding:12px 18px;cursor:pointer;transition:.2s;
}
.bot-check-button::before{content:"";width:18px;height:18px;border-radius:5px;border:2px solid var(--muted-2);transition:.2s}
.bot-check-button:hover:not(:disabled){border-color:var(--accent);background:var(--surface-2)}
.bot-check-button:disabled{opacity:.7;cursor:not-allowed}
.bot-check-button.verified{color:var(--up);border-color:rgba(52,224,161,.4);background:rgba(52,224,161,.1)}
.bot-check-button.verified::before{background:var(--up);border-color:var(--up)}
.bot-check-timer{font-size:.82rem;color:var(--muted)}
.bot-check-error{display:none;font-size:.8rem;color:var(--down);font-weight:500}

.hidden-field{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none}

.submit-button{
  width:100%;font-family:inherit;font-weight:700;font-size:1rem;color:#0a0f22;background:var(--grad);
  border:0;border-radius:14px;padding:15px 24px;cursor:pointer;letter-spacing:.02em;
  box-shadow:0 12px 30px -12px rgba(109,139,255,.8);transition:.22s;
}
.submit-button:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(155,107,255,.9)}

/* success modal */
#success-modal{
  position:fixed;inset:0;z-index:100;display:none;align-items:center;justify-content:center;padding:22px;
  background:rgba(5,8,20,.7);backdrop-filter:blur(8px);
}
#success-modal.show{display:flex;animation:fade .25s ease}
@keyframes fade{from{opacity:0}to{opacity:1}}
#success-modal .modal-content{max-width:420px;width:100%;text-align:center;padding:38px 30px;animation:pop .35s ease}
.success-icon{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;margin:0 auto 18px;
  font-size:1.8rem;font-weight:800;color:var(--up);background:rgba(52,224,161,.14);border:1px solid rgba(52,224,161,.4)}
.modal-title{font-family:var(--display);font-size:1.35rem;margin-bottom:8px}
.modal-message{color:var(--muted);margin-bottom:24px}
.close-button{font-family:inherit;font-weight:600;color:var(--text);background:var(--surface);
  border:1px solid var(--stroke-2);border-radius:12px;padding:11px 26px;cursor:pointer;transition:.2s}
.close-button:hover{border-color:var(--accent);background:var(--surface-2)}

/* ============ Legal pages ============ */
.legal{padding:60px 0 40px}
.legal-head{max-width:820px;margin:0 auto 30px;text-align:center}
.legal-head h1{font-family:var(--display);font-size:clamp(2rem,4vw,2.8rem);letter-spacing:-.02em}
.legal-head p{color:var(--muted);margin-top:10px}
.legal-body{max-width:820px;margin:0 auto;background:var(--surface);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:clamp(24px,4vw,48px)}
.legal-body h2{font-family:var(--display);font-size:1.3rem;margin:30px 0 10px}
.legal-body h2:first-child{margin-top:0}
.legal-body p,.legal-body li{color:var(--muted);font-size:.98rem;margin-bottom:12px}
.legal-body ul{padding-left:22px;margin-bottom:12px}
.legal-body a{color:var(--accent)}
.legal-back{display:inline-flex;align-items:center;gap:7px;color:var(--muted);font-weight:600;margin-bottom:24px;transition:.2s}
.legal-back:hover{color:var(--text)}
.legal-head .lead{color:var(--muted);font-size:1.05rem;margin-top:10px}
.legal-body .info-box{background:var(--grad-soft);border:1px solid var(--stroke);border-radius:14px;padding:18px 20px;margin:8px 0 16px}
.legal-body .info-box p{margin-bottom:0;color:var(--text);line-height:1.8}

/* nav toggle open icon */
.nav.open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav.open .nav-toggle span:nth-child(2){opacity:0}
.nav.open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
