/* ============================================================
   Novaro Tech (novarotech.com) — parody SaaS landing page
   Plain CSS. No frameworks, no external assets.
   ============================================================ */

:root{
  --bg:      #07080d;
  --bg-alt:  #0a0c14;
  --card:    rgba(255,255,255,.035);
  --card-2:  rgba(255,255,255,.055);
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.16);
  --text:    #e9ebf5;
  --muted:   #8d93ad;
  --dim:     #656b83;

  --v:  #7c5cff;   /* violet */
  --c:  #22d3ee;   /* cyan   */
  --p:  #f472b6;   /* pink   */
  --ok: #34d399;
  --warn:#fbbf24;

  --grad: linear-gradient(100deg,var(--v),var(--c));
  --r: 14px;
  --wrap: 1180px;
  --mono: ui-monospace,"SF Mono",SFMono-Regular,"Cascadia Mono","JetBrains Mono",Menlo,Consolas,monospace;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter","Segoe UI Variable Display","Segoe UI",system-ui,-apple-system,Roboto,Helvetica,Arial,sans-serif;
  font-size:16px;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* subtle grid backdrop */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 120% 80% at 50% 0%,#000 20%,transparent 75%);
  pointer-events:none; z-index:0;
}

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.wrap.narrow{ max-width:820px; }

h1,h2,h3,h4{ margin:0; line-height:1.15; letter-spacing:-.022em; font-weight:650; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
sup{ font-size:.62em; }
em{ font-style:normal; }

::selection{ background:rgba(124,92,255,.4); }

/* ── scroll progress ─────────────────────────────── */
.scrollbar{
  position:fixed; top:0; left:0; height:2px; width:0;
  background:var(--grad); z-index:200; transition:width .08s linear;
}

/* ── buttons ─────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font:inherit; font-size:14px; font-weight:560; letter-spacing:-.01em;
  padding:9px 16px; border-radius:10px; border:1px solid transparent;
  cursor:pointer; white-space:nowrap;
  transition:transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:active{ transform:translateY(1px) scale(.99); }
.btn.primary{
  background:var(--grad); color:#0a0a12; font-weight:640;
  box-shadow:0 6px 24px -8px rgba(124,92,255,.75);
}
.btn.primary:hover{ box-shadow:0 10px 32px -8px rgba(124,92,255,.95); }
.btn.ghost{ background:var(--card); border-color:var(--line); color:var(--text); }
.btn.ghost:hover{ background:var(--card-2); border-color:var(--line-2); }
.btn.lg{ padding:13px 22px; font-size:15px; border-radius:12px; }
.btn.full{ width:100%; }
.btn .dim{ color:var(--dim); font-weight:400; }

/* ── announcement bar ────────────────────────────── */
.announce{
  position:relative; z-index:60;
  background:linear-gradient(90deg,rgba(124,92,255,.16),rgba(34,211,238,.13));
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.announce-in{ display:flex; align-items:center; justify-content:center; gap:12px; padding:9px 24px; flex-wrap:wrap; text-align:center; }
.announce b{ font-weight:640; }
.announce a{ color:#c9bcff; font-weight:560; white-space:nowrap; }
.announce a:hover{ text-decoration:underline; }
.pill{
  font-size:10px; font-weight:700; letter-spacing:.09em;
  padding:3px 8px; border-radius:99px; background:var(--grad); color:#0a0a12;
}

/* ── nav ─────────────────────────────────────────── */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(7,8,13,.72);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease, background .2s ease;
}
.nav.stuck{ border-bottom-color:var(--line); background:rgba(7,8,13,.9); }
.nav-in{ display:flex; align-items:center; gap:28px; height:62px; }

.brand{ display:flex; align-items:center; gap:9px; font-weight:680; font-size:17px; letter-spacing:-.03em; }
.brand .mark{ width:24px; height:24px; }
.brand .tm{ color:var(--dim); font-weight:400; margin-left:-4px; }

.links{ display:flex; gap:4px; margin-left:8px; }
.links a{
  font-size:14px; color:var(--muted); padding:7px 11px; border-radius:8px;
  transition:color .15s, background .15s;
}
.links a:hover{ color:var(--text); background:var(--card); }

.nav-cta{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.status-dot{ display:flex; align-items:center; gap:7px; font-size:12.5px; color:var(--muted); padding-right:6px; }
.status-dot:hover{ color:var(--text); }
.dot{
  width:7px; height:7px; border-radius:50%; background:var(--ok); flex:none;
  box-shadow:0 0 0 0 rgba(52,211,153,.6); animation:pulse 2.4s infinite;
}
@keyframes pulse{ 70%{ box-shadow:0 0 0 7px rgba(52,211,153,0);} 100%{ box-shadow:0 0 0 0 rgba(52,211,153,0);} }

.burger{ display:none; background:none; border:0; cursor:pointer; padding:8px; margin-left:auto; }
.burger span{ display:block; width:20px; height:2px; background:var(--text); border-radius:2px; margin:4px 0; }

/* ── hero ────────────────────────────────────────── */
.hero{ position:relative; padding:84px 0 72px; overflow:hidden; }
.glow{
  position:absolute; top:-320px; left:50%; transform:translateX(-50%);
  width:1100px; height:700px; pointer-events:none;
  background:radial-gradient(ellipse at center,rgba(124,92,255,.30),rgba(34,211,238,.10) 45%,transparent 70%);
  filter:blur(30px);
}
.hero-in{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; color:#c3b8ff; font-weight:520;
  padding:5px 13px 5px 9px; border-radius:99px;
  background:rgba(124,92,255,.12); border:1px solid rgba(124,92,255,.3);
  margin-bottom:22px;
}
.eyebrow i{ font-style:normal; }

h1{ font-size:clamp(38px,5.2vw,62px); font-weight:680; letter-spacing:-.04em; }
.rotator{
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  color:transparent; display:inline-flex; align-items:baseline;
}
.caret{
  display:inline-block; width:3px; height:.82em; margin-left:4px;
  background:var(--c); border-radius:2px; animation:blink 1.05s steps(2) infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.lede{ margin-top:22px; font-size:17.5px; color:var(--muted); max-width:560px; }
.lede b{ color:#cfd4e8; font-weight:600; }

.hero-btns{ display:flex; gap:12px; margin-top:30px; flex-wrap:wrap; }
.fineprint{ margin-top:16px; font-size:12.5px; color:var(--dim); }

/* ── fake console ────────────────────────────────── */
.console{
  border:1px solid var(--line); border-radius:16px; overflow:hidden;
  background:linear-gradient(180deg,rgba(18,20,32,.96),rgba(10,11,18,.96));
  box-shadow:0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(124,92,255,.07);
}
.console-bar,.term-bar,.code-bar{
  display:flex; align-items:center; gap:7px;
  padding:10px 14px; border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.025);
}
.tl{ width:10px; height:10px; border-radius:50%; display:block; }
.tl.r{ background:#ff5f57; } .tl.y{ background:#febc2e; } .tl.g{ background:#28c840; }
.console-title,.term-bar span,.code-bar span{
  font:500 11.5px/1 var(--mono); color:var(--dim); margin-left:8px; letter-spacing:.01em;
}
.console-body{ padding:16px; }

.gauges{ display:grid; gap:12px; }
.gauge-k{ font-size:11.5px; color:var(--muted); letter-spacing:.02em; }
.bar{ height:6px; border-radius:99px; background:rgba(255,255,255,.07); margin:6px 0 4px; overflow:hidden; }
.bar i{
  display:block; height:100%; width:var(--w); border-radius:99px;
  background:var(--c,var(--v)); animation:grow 1.6s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes grow{ from{ width:0; } }
.gauge-v{ font:600 12px/1 var(--mono); color:#c8cde3; display:flex; gap:8px; }
.up{ color:var(--ok); font-weight:500; } .dn{ color:#fb7185; font-weight:500; }

.spark{ margin-top:18px; padding-top:16px; border-top:1px solid var(--line); }
.spark-head{ display:flex; justify-content:space-between; font-size:11.5px; color:var(--muted); }
.spark-num{ font:600 11.5px/1 var(--mono); color:#c3b8ff; }
.spark-svg{ width:100%; height:70px; margin-top:6px; display:block; }

.logs{
  margin-top:14px; padding-top:14px; border-top:1px solid var(--line);
  font:11.5px/1.75 var(--mono); height:118px; overflow:hidden; color:var(--dim);
}
.logs div{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; animation:fadein .3s both; }
@keyframes fadein{ from{ opacity:0; transform:translateY(4px);} }
.logs .lv{ color:var(--v); } .logs .lc{ color:var(--c); }
.logs .lw{ color:var(--warn); } .logs .le{ color:#fb7185; } .logs .lo{ color:var(--ok); }
.logs .ts{ color:#4b5069; }

/* ── logo cloud ──────────────────────────────────── */
.logos{ padding:44px 0 8px; text-align:center; }
.logos-k{ font-size:12px; letter-spacing:.13em; text-transform:uppercase; color:var(--dim); }
.logo-row{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px 42px; margin-top:22px;
}
.logo-row span{
  font-size:17px; font-weight:620; letter-spacing:-.01em; color:#5c627c;
  filter:grayscale(1); transition:color .2s, transform .2s;
}
.logo-row span:nth-child(2n){ font-family:Georgia,"Times New Roman",serif; font-weight:500; font-style:italic; }
.logo-row span:nth-child(3n){ letter-spacing:.14em; font-size:14px; }
.logo-row span:hover{ color:#9aa0bb; transform:translateY(-2px); }
.logos-note{ margin-top:18px; font-size:12px; color:#4b5069; }

/* ── stats ───────────────────────────────────────── */
.stats{ padding:56px 0; }
.grid4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.stat{
  padding:22px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--card); text-align:center;
}
.stat b{
  display:block; font-size:32px; font-weight:680; letter-spacing:-.035em;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.stat span{ display:block; margin-top:6px; font-size:13px; color:var(--muted); line-height:1.45; }

/* ── ticker ──────────────────────────────────────── */
.ticker{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.018); overflow:hidden; padding:11px 0;
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.ticker-track{
  display:flex; align-items:center; gap:26px; width:max-content;
  animation:slide 42s linear infinite;
  font:600 11.5px/1 var(--mono); letter-spacing:.14em; color:#565c76; white-space:nowrap;
}
.ticker-track i{ color:var(--v); font-style:normal; font-size:8px; }
@keyframes slide{ to{ transform:translateX(-50%); } }

/* ── sections ────────────────────────────────────── */
.section{ padding:88px 0; position:relative; }
.section.alt{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.sec-head{ max-width:680px; margin:0 auto 48px; text-align:center; }
.kicker{
  display:inline-block; font-size:11.5px; font-weight:650; letter-spacing:.15em;
  text-transform:uppercase; color:var(--v); margin-bottom:14px;
}
.kicker.gradient{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.sec-head h2{ font-size:clamp(27px,3.4vw,40px); }
.sec-head h2 em{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.sec-head p{ margin-top:15px; color:var(--muted); font-size:16.5px; }
.ast,.strike-note{ color:var(--v); }

/* ── versus ──────────────────────────────────────── */
.versus{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.vs-col{ padding:28px; border-radius:var(--r); border:1px solid var(--line); background:var(--card); }
.vs-col.new{ border-color:rgba(124,92,255,.32); background:linear-gradient(180deg,rgba(124,92,255,.075),rgba(255,255,255,.02)); }
.vs-col h3{ font-size:17px; display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.vs-col h3 i{
  font-style:normal; width:22px; height:22px; border-radius:6px; flex:none;
  display:grid; place-items:center; font-size:12px;
}
.vs-col.old h3 i{ background:rgba(251,113,133,.15); color:#fb7185; }
.vs-col.new h3 i{ background:rgba(52,211,153,.15); color:var(--ok); }
.vs-col li{ position:relative; padding-left:20px; margin-bottom:13px; font-size:14.5px; color:var(--muted); }
.vs-col li::before{ content:"–"; position:absolute; left:2px; color:var(--dim); }
.vs-col.new li::before{ content:"→"; color:var(--v); font-size:12px; top:1px; }
.vs-col code{ font:500 12.5px var(--mono); background:rgba(255,255,255,.06); padding:1px 5px; border-radius:4px; color:#cfd4e8; }

/* ── feature cards ───────────────────────────────── */
.grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card{
  padding:26px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--card); position:relative; overflow:hidden;
  transition:border-color .2s, transform .2s, background .2s;
}
.card::after{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .25s;
  background:radial-gradient(400px circle at 50% 0%,rgba(124,92,255,.12),transparent 70%);
  pointer-events:none;
}
.card:hover{ border-color:var(--line-2); transform:translateY(-3px); background:var(--card-2); }
.card:hover::after{ opacity:1; }
.ico{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  font-size:17px; margin-bottom:16px;
}
.ico.v{ background:rgba(124,92,255,.14); color:#a892ff; }
.ico.c{ background:rgba(34,211,238,.13); color:var(--c); }
.ico.p{ background:rgba(244,114,182,.13); color:var(--p); }
.card h3{ font-size:16.5px; margin-bottom:10px; }
.card p{ font-size:14.5px; color:var(--muted); }
.formula{
  margin:16px 0 2px; padding:13px 10px; border-radius:10px; text-align:center;
  background:rgba(0,0,0,.32); border:1px solid var(--line);
  font:500 12px/1.7 var(--mono); color:#c8cde3; letter-spacing:-.01em;
}
.formula i{ font-style:italic; color:#a892ff; }
.formula sub{ font-size:.72em; color:var(--dim); }
.formula .res{ color:#fb7185; font-weight:700; }
.card .tag{
  display:inline-block; margin-top:16px; font:500 11px/1 var(--mono);
  padding:5px 9px; border-radius:6px; background:rgba(255,255,255,.05);
  border:1px solid var(--line); color:var(--dim); letter-spacing:.02em;
}

/* ── AI section ──────────────────────────────────── */
.ai-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:24px; align-items:start; }
.ai-points{ display:grid; gap:14px; }
.ai-point{
  padding:20px 22px; border-left:2px solid rgba(124,92,255,.5); border-radius:0 12px 12px 0;
  background:linear-gradient(90deg,rgba(124,92,255,.07),transparent);
}
.ai-point b{ display:block; font-size:15.5px; margin-bottom:5px; }
.ai-point span{ font-size:14px; color:var(--muted); }

.engine{
  border:1px solid rgba(124,92,255,.28); border-radius:18px; padding:26px;
  background:
    radial-gradient(600px circle at 100% 0%,rgba(34,211,238,.09),transparent 60%),
    linear-gradient(180deg,rgba(124,92,255,.09),rgba(255,255,255,.02));
  box-shadow:0 30px 70px -40px rgba(124,92,255,.7);
}
.engine-head h3{ font-size:20px; margin:10px 0 6px; }
.engine-head p{ font-size:13.5px; color:var(--muted); }
.live{
  display:inline-flex; align-items:center; gap:7px; font:700 10px/1 var(--mono);
  letter-spacing:.14em; color:#fb7185;
  padding:4px 9px; border-radius:99px; background:rgba(251,113,133,.12);
  border:1px solid rgba(251,113,133,.3);
}
.live i{ width:5px; height:5px; border-radius:50%; background:#fb7185; animation:pulse 1.6s infinite; }

.engine-out{
  margin:20px 0 16px; padding:20px; min-height:132px;
  border-radius:12px; background:rgba(0,0,0,.35); border:1px solid var(--line);
  font-size:15.5px; line-height:1.65; color:#dfe3f2;
}
.engine-out.idle{ color:var(--dim); font-size:14px; }
.engine-out b{ color:#fff; }
.engine-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.engine-meta{
  display:flex; gap:18px; flex-wrap:wrap; margin-top:18px; padding-top:14px;
  border-top:1px solid var(--line); font:500 11px var(--mono); color:var(--dim);
}
.engine-meta code{ color:#a892ff; }
.conf{ color:var(--warn); }

/* ── developers ──────────────────────────────────── */
.dev-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:stretch; }
.term,.code{
  border:1px solid var(--line); border-radius:var(--r); overflow:hidden;
  background:rgba(10,11,18,.85);
}
.term-body{
  margin:0; padding:18px; font:12.5px/1.85 var(--mono); color:#b9bfd6;
  min-height:340px; white-space:pre-wrap; word-break:break-word;
}
.term-body .cmd{ color:#fff; } .term-body .pr{ color:var(--v); }
.term-body .ok{ color:var(--ok); } .term-body .wn{ color:var(--warn); }
.term-body .er{ color:#fb7185; } .term-body .mu{ color:var(--dim); }
.term-body .cur{ background:var(--c); color:var(--c); animation:blink 1s steps(2) infinite; }

.code-bar{ justify-content:space-between; }
.code-bar .fname{ margin-left:0; color:#c8cde3; }
.code-bar .lang{ color:var(--v); }
.code pre{ margin:0; padding:18px; overflow-x:auto; font:12.5px/1.8 var(--mono); color:#c8cde3; }
.code .k{ color:#c084fc; } .code .s{ color:#7dd3a8; } .code .n{ color:#fbbf24; }
.code .b{ color:#38bdf8; } .code .cm{ color:#565c76; font-style:italic; }
.code .fn{ color:#60a5fa; } .code .p{ color:#f472b6; }

.integrations{ margin-top:40px; text-align:center; }
.int-k{ font-size:12px; letter-spacing:.13em; text-transform:uppercase; color:var(--dim); }
.int-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:18px; }
.int-row span{
  font-size:13px; color:var(--muted); padding:7px 14px; border-radius:99px;
  border:1px solid var(--line); background:var(--card);
  transition:border-color .2s,color .2s;
}
.int-row span:hover{ border-color:var(--line-2); color:var(--text); }

/* ── pricing ─────────────────────────────────────── */
.toggle{ display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:34px; font-size:14px; color:var(--muted); }
.toggle .on{ color:var(--text); font-weight:560; }
.toggle em{ color:var(--dim); font-size:12.5px; }
.switch{
  width:44px; height:24px; border-radius:99px; border:1px solid var(--line);
  background:var(--card-2); cursor:pointer; padding:0; position:relative;
}
.switch i{
  position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%;
  background:var(--muted); transition:left .18s ease, background .18s;
}
.switch.on{ background:rgba(124,92,255,.28); border-color:rgba(124,92,255,.5); }
.switch.on i{ left:22px; background:var(--v); }

.tiers{ align-items:stretch; }
.tier{
  padding:26px 24px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--card); display:flex; flex-direction:column; height:100%;
}
.tier.pop{
  border-color:rgba(124,92,255,.45);
  background:linear-gradient(180deg,rgba(124,92,255,.1),rgba(255,255,255,.025));
  box-shadow:0 30px 70px -45px rgba(124,92,255,.9);
  position:relative;
}
.pop-flag{
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  font-size:11px; font-weight:640; padding:4px 12px; border-radius:99px;
  background:var(--grad); color:#0a0a12; white-space:nowrap;
}
.pop-flag span{ font-weight:400; opacity:.7; }
.tier h3{ font-size:16px; color:var(--muted); font-weight:560; }
.price{ margin:12px 0 4px; display:flex; align-items:baseline; gap:5px; }
.price b{ font-size:36px; font-weight:680; letter-spacing:-.04em; }
.price b.talk{ font-size:26px; }
.price span{ font-size:13px; color:var(--dim); }
.tier-sub{ font-size:13px; color:var(--dim); min-height:38px; }
.tier ul{ margin:18px 0 22px; flex:1; }
.tier li{ position:relative; padding-left:22px; font-size:13.8px; color:var(--muted); margin-bottom:10px; }
.tier li::before{ content:"✓"; position:absolute; left:0; color:var(--ok); font-size:12px; }
.tier li.no{ color:var(--dim); text-decoration:line-through; }
.tier li.no::before{ content:"✕"; color:#fb7185; text-decoration:none; }
.tier-note{ margin-top:12px; font-size:11.5px; color:#4b5069; line-height:1.5; }
.pricing-foot{ margin-top:30px; text-align:center; font-size:13px; color:var(--dim); }

/* ── testimonials ────────────────────────────────── */
.quote{
  margin:0; padding:26px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--card); display:flex; flex-direction:column; gap:18px;
}
.quote blockquote{ margin:0; font-size:15.5px; line-height:1.6; color:#dbdff0; }
.quote figcaption{ display:flex; flex-direction:column; padding-top:16px; border-top:1px solid var(--line); }
.quote figcaption b{ font-size:14px; }
.quote figcaption span{ font-size:12.5px; color:var(--dim); }

.badges{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:44px; }
.badges span{
  font:500 12px var(--mono); color:var(--muted); padding:8px 14px; border-radius:8px;
  border:1px solid var(--line); background:var(--card);
}
.badges em{ color:var(--dim); }

/* ── FAQ ─────────────────────────────────────────── */
details{
  border-bottom:1px solid var(--line); padding:4px 0;
}
details summary{
  cursor:pointer; list-style:none; padding:18px 34px 18px 0; position:relative;
  font-size:16px; font-weight:560; transition:color .15s;
}
details summary::-webkit-details-marker{ display:none; }
details summary::after{
  content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%);
  font-size:20px; font-weight:300; color:var(--v); transition:transform .2s;
}
details[open] summary::after{ content:"−"; }
details summary:hover{ color:#c3b8ff; }
details p{ padding:0 40px 20px 0; color:var(--muted); font-size:14.8px; }

/* ── CTA ─────────────────────────────────────────── */
.cta{ padding:96px 0; position:relative; overflow:hidden; text-align:center; }
.cta::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 100% at 50% 100%,rgba(124,92,255,.22),transparent 70%);
}
.cta-in h2{ font-size:clamp(28px,3.6vw,42px); }
.cta-in > p{ margin-top:14px; color:var(--muted); font-size:16.5px; }
.cta-form{ display:flex; gap:10px; justify-content:center; margin:30px auto 0; max-width:470px; flex-wrap:wrap; }
.cta-form input{
  flex:1; min-width:230px; font:inherit; font-size:14.5px;
  padding:13px 16px; border-radius:12px;
  background:rgba(0,0,0,.4); border:1px solid var(--line); color:var(--text);
  transition:border-color .2s;
}
.cta-form input:focus{ outline:none; border-color:rgba(124,92,255,.6); }
.cta-form input::placeholder{ color:#4b5069; }
.cta-note{ margin-top:16px; font-size:12.5px; color:var(--dim); min-height:20px; }

/* ── footer ──────────────────────────────────────── */
footer{ border-top:1px solid var(--line); background:var(--bg-alt); padding:60px 0 34px; }
.foot-grid{ display:grid; grid-template-columns:1.6fr repeat(4,1fr); gap:34px; }
.foot-brand p{ margin-top:14px; font-size:13px; color:var(--dim); max-width:280px; }
.region{ margin-top:20px; display:flex; align-items:center; gap:8px; font-size:12px; color:var(--dim); }
.region select{
  font:inherit; font-size:12px; background:var(--card); color:var(--muted);
  border:1px solid var(--line); border-radius:8px; padding:6px 9px; cursor:pointer;
}
.foot-col h4{ font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:#c8cde3; margin-bottom:14px; }
.foot-col a{ display:block; font-size:13.5px; color:var(--muted); padding:4px 0; transition:color .15s; }
.foot-col a:hover{ color:var(--text); }
.foot-col em{ color:#4b5069; font-size:11.5px; }

.foot-status{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-top:44px; padding:16px 18px; border-radius:12px;
  border:1px solid var(--line); background:var(--card); font-size:13px;
}
.foot-status b{ font-weight:600; }
.foot-status span{ color:var(--dim); font-size:12.5px; }
.foot-status em{ color:var(--warn); }

.foot-bottom{ margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
.disclaimer{
  font-size:12.5px; color:var(--muted); line-height:1.7; max-width:760px;
  padding:14px 16px; border-radius:10px;
  background:rgba(124,92,255,.06); border:1px solid rgba(124,92,255,.18);
}
.disclaimer b{ color:#c3b8ff; }
.copy{ margin-top:18px; font-size:12px; color:#4b5069; }

/* ── chat widget ─────────────────────────────────── */
.chat-fab{
  position:fixed; right:22px; bottom:22px; z-index:120;
  width:54px; height:54px; border-radius:50%; border:0; cursor:pointer;
  background:var(--grad); box-shadow:0 12px 32px -8px rgba(124,92,255,.9);
  display:grid; place-items:center; font-size:22px;
  transition:transform .18s ease;
}
.chat-fab:hover{ transform:scale(1.07); }
.fab-badge{
  position:absolute; top:-2px; right:-2px; width:19px; height:19px; border-radius:50%;
  background:#fb7185; color:#fff; font:700 11px/19px system-ui; font-style:normal;
  text-align:center; border:2px solid var(--bg);
}
.chat{
  position:fixed; right:22px; bottom:88px; z-index:120;
  width:360px; max-width:calc(100vw - 32px);
  border:1px solid var(--line-2); border-radius:16px; overflow:hidden;
  background:linear-gradient(180deg,#12141f,#0b0d15);
  box-shadow:0 40px 90px -25px rgba(0,0,0,.95);
  animation:pop .18s cubic-bezier(.2,.9,.3,1.2) both;
}
@keyframes pop{ from{ opacity:0; transform:translateY(12px) scale(.97);} }
.chat-head{ display:flex; align-items:center; justify-content:space-between; padding:14px; border-bottom:1px solid var(--line); }
.chat-who{ display:flex; align-items:center; gap:11px; }
.av{
  width:34px; height:34px; border-radius:10px; background:var(--grad);
  display:grid; place-items:center; font:700 12px system-ui; color:#0a0a12; flex:none;
}
.chat-who b{ display:block; font-size:14px; }
.chat-who span{ display:flex; align-items:center; gap:6px; font-size:11.5px; color:var(--dim); }
.chat-x{ background:none; border:0; color:var(--dim); cursor:pointer; font-size:15px; padding:6px; }
.chat-x:hover{ color:var(--text); }
.chat-body{ height:290px; overflow-y:auto; padding:14px; display:flex; flex-direction:column; gap:10px; }
.msg{ max-width:84%; padding:10px 13px; border-radius:13px; font-size:13.5px; line-height:1.55; animation:fadein .25s both; }
.msg.bot{ background:var(--card-2); border:1px solid var(--line); border-bottom-left-radius:4px; align-self:flex-start; color:#dbdff0; }
.msg.me{ background:var(--grad); color:#0a0a12; font-weight:520; border-bottom-right-radius:4px; align-self:flex-end; }
.msg.typing{ display:flex; gap:4px; padding:14px; }
.msg.typing i{ width:6px; height:6px; border-radius:50%; background:var(--muted); animation:bob 1.1s infinite; }
.msg.typing i:nth-child(2){ animation-delay:.15s; } .msg.typing i:nth-child(3){ animation-delay:.3s; }
@keyframes bob{ 0%,60%,100%{ transform:translateY(0); opacity:.4; } 30%{ transform:translateY(-4px); opacity:1; } }
.chat-form{ display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); }
.chat-form input{
  flex:1; min-width:0; font:inherit; font-size:13.5px; padding:9px 12px; border-radius:9px;
  background:rgba(0,0,0,.4); border:1px solid var(--line); color:var(--text);
}
.chat-form input:focus{ outline:none; border-color:rgba(124,92,255,.55); }
.chat-foot{ padding:0 14px 12px; font-size:10.5px; color:#4b5069; text-align:center; }

/* ── cookies ─────────────────────────────────────── */
.cookies{
  position:fixed; left:22px; bottom:22px; z-index:130; width:440px; max-width:calc(100vw - 32px);
  border:1px solid var(--line-2); border-radius:14px; padding:18px;
  background:linear-gradient(180deg,#141725,#0b0d15);
  box-shadow:0 40px 90px -25px rgba(0,0,0,.95);
  animation:pop .3s .8s cubic-bezier(.2,.9,.3,1.2) both;
}
.cookies.gone{ display:none; }
.cookie-text > b{ display:block; font-size:14.5px; margin-bottom:6px; }
.cookie-text span{ font-size:12.5px; color:var(--muted); line-height:1.6; }
.cookie-btns{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.tiny-ghost{
  background:none; border:0; color:#5c627c; font-size:10.5px; text-decoration:underline;
  padding:0; cursor:pointer; font-family:inherit; letter-spacing:-.01em;
}
.tiny-ghost:hover{ color:var(--muted); }
.big-accept{ margin-left:auto; padding:12px 30px; font-size:15px; }
.cookie-prefs{ margin-top:16px; padding-top:14px; border-top:1px solid var(--line); display:grid; gap:9px; }
[hidden]{ display:none !important; }
.cookie-prefs label{ display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--muted); }
.cookie-prefs em{ color:#4b5069; font-size:11.5px; }
.cookie-note{ margin-top:6px; font-size:11px; color:#4b5069; }

/* ── toast ───────────────────────────────────────── */
.toast{
  position:fixed; left:50%; bottom:26px; transform:translateX(-50%); z-index:200;
  padding:12px 20px; border-radius:11px; font-size:13.5px;
  background:#181b29; border:1px solid var(--line-2); color:var(--text);
  box-shadow:0 20px 50px -15px rgba(0,0,0,.9);
  animation:pop .2s both; max-width:calc(100vw - 40px); text-align:center;
}

/* ── responsive ──────────────────────────────────── */
@media (max-width:1000px){
  .hero-in,.ai-grid,.dev-grid,.versus{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:repeat(2,1fr); }
  .grid4{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr 1fr; }
  .links{ display:none; }
  .links.open{
    display:flex; flex-direction:column; position:absolute; top:62px; left:0; right:0;
    background:#0b0d15; border-bottom:1px solid var(--line); padding:12px 24px; gap:2px;
  }
  .burger{ display:block; }
  .nav-cta{ margin-left:0; }
  .status-dot{ display:none; }
}
@media (max-width:640px){
  .section{ padding:64px 0; }
  .grid3,.grid4,.foot-grid{ grid-template-columns:1fr; }
  .hero{ padding:56px 0 48px; }
  .nav-cta .btn.ghost{ display:none; }
  .cookies{ left:12px; right:12px; bottom:12px; width:auto; }
  .cookie-btns{ flex-direction:column-reverse; align-items:stretch; }
  .big-accept{ margin-left:0; }
  .chat{ right:12px; left:12px; width:auto; bottom:84px; }
  .announce-in{ font-size:12px; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001s !important; transition-duration:.001s !important; }
  html{ scroll-behavior:auto; }
}
