:root{
  --bg:#F4F1EC;
  --bg-warm:#EFEBE3;
  --paper:#FFFFFF;
  --ink:#0E0F11;
  --ink-2:#1A1C21;
  --muted:#5C6068;
  --dim:#8E929B;
  --line:rgba(14,15,17,.10);
  --line-soft:rgba(14,15,17,.06);
  --hover:rgba(14,15,17,.04);
  --lime:#C5F23B;
  --lime-ink:#0B0C0E;
  --dark:#0B0C0E;
  --dark-elev:#16181C;
  --dark-line:rgba(255,255,255,.10);
  --dark-text:#ECEDEF;
  --dark-muted:#8E929B;
  --radius:14px;
  --radius-lg:22px;
  --radius-sm:8px;
  --container:1240px;

  --sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue",Helvetica,Arial,system-ui,sans-serif;
  --mono:"SF Mono",ui-monospace,"JetBrains Mono",Menlo,Consolas,monospace;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{ background:var(--bg); }
body{
  background:var(--bg); color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  font-feature-settings:"ss01","ss02","cv11";
  line-height:1.45;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
::selection{ background:var(--lime); color:var(--lime-ink); }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 28px; }

/* ─────────────  NAV  ───────────── */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  background:rgba(244,241,236,.78);
  border-bottom:1px solid var(--line-soft);
}
.nav-row{
  display:flex; align-items:center; gap:24px;
  height:60px;
}
.brand{
  display:flex; align-items:center; gap:9px;
  font-weight:600; font-size:16px; letter-spacing:-0.2px;
}
.brand-mark{
  width:24px; height:24px; border-radius:7px;
  background:var(--ink); color:var(--lime);
  display:grid; place-items:center;
  font-weight:700; font-size:13px; letter-spacing:-0.5px;
}
.nav-links{ display:flex; gap:22px; margin-left:18px; }
.nav-links a{ font-size:14px; color:var(--muted); transition:color .15s; }
.nav-links a:hover{ color:var(--ink); }
.nav-right{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.lang-toggle{
  display:inline-flex; align-items:center;
  border:1px solid var(--line); border-radius:999px;
  padding:3px; font-family:var(--mono); font-size:11px;
  background:rgba(255,255,255,.5);
}
.lang-toggle button{
  padding:4px 10px; border-radius:999px; color:var(--muted);
  letter-spacing:.4px;
}
.lang-toggle button.active{ background:var(--ink); color:var(--bg); }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px; border-radius:999px;
  font-size:14px; font-weight:500;
  transition:transform .12s ease, background .15s ease, color .15s ease, border-color .15s;
}
.btn:active{ transform:translateY(1px); }
.btn.primary{ background:var(--ink); color:#fff; }
.btn.primary:hover{ background:#000; }
.btn.lime{ background:var(--lime); color:var(--lime-ink); }
.btn.lime:hover{ background:#d8ff52; }
.btn.ghost{ color:var(--ink); border:1px solid var(--line); background:transparent; }
.btn.ghost:hover{ background:var(--hover); }
.btn .arr{ transition:transform .15s; }
.btn:hover .arr{ transform:translateX(2px); }

@media (max-width:760px){
  .nav-links{ display:none; }
}

/* ─────────────  HERO  ───────────── */
.hero{
  padding:64px 0 56px;
  position:relative;
  overflow:hidden;
}
.hero-grain{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(1200px 600px at 50% -100px, rgba(197,242,59,.22), transparent 70%),
    radial-gradient(800px 400px at 10% 100%, rgba(14,15,17,.04), transparent 70%);
  z-index:0;
}
.hero-inner{ position:relative; z-index:1; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:12px; color:var(--muted);
  padding:6px 12px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.5);
  letter-spacing:.2px;
}
.eyebrow .pulse{
  width:6px; height:6px; border-radius:50%; background:#30D158;
  box-shadow:0 0 0 4px rgba(48,209,88,.18);
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 4px rgba(48,209,88,.18);}
  50%{box-shadow:0 0 0 8px rgba(48,209,88,0);}
}

h1.hero-title{
  margin:22px 0 18px;
  font-family:var(--sans);
  font-size:clamp(40px, 7.4vw, 96px);
  line-height:0.98;
  letter-spacing:-0.045em;
  font-weight:600;
  max-width:14ch;
  text-wrap:balance;
}
h1.hero-title em{
  font-style:normal;
  background:linear-gradient(180deg, transparent 62%, var(--lime) 62%, var(--lime) 92%, transparent 92%);
  padding:0 .08em;
}
.hero-sub{
  font-size:clamp(17px, 1.4vw, 20px);
  line-height:1.5;
  color:var(--muted);
  max-width:54ch;
  margin:0 0 28px;
  text-wrap:pretty;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-bottom:18px; }
.hero-cta .btn{ height:46px; padding:0 22px; font-size:15px; font-weight:500; }
.hero-fine{
  font-family:var(--mono); font-size:12px; color:var(--dim);
  display:flex; flex-wrap:wrap; gap:14px 18px;
}
.hero-fine span{ display:inline-flex; align-items:center; gap:6px; }
.hero-fine .dot{ width:3px; height:3px; border-radius:50%; background:var(--dim); }

.hero-grid{
  margin-top:64px;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:48px;
  align-items:center;
}
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; gap:36px; margin-top:48px; }
}

/* Hero visual — menu-bar mockup */
.menubar-stage{
  position:relative;
  background:var(--bg-warm);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 28px 0;
  aspect-ratio: 4 / 3.4;
  overflow:hidden;
}
.menubar-stage::before{
  content:""; position:absolute; left:0; right:0; top:0; height:24px;
  background:linear-gradient(#000 0 100%);
}
.menubar-bar{
  position:absolute; top:0; left:0; right:0; height:24px;
  display:flex; align-items:center; padding:0 12px; gap:14px;
  color:#fff;
}
.menubar-bar .left{
  font-size:12px; font-weight:600; letter-spacing:-.2px;
  display:flex; align-items:center; gap:14px;
}
.menubar-bar .right{
  margin-left:auto; display:flex; align-items:center; gap:12px;
  font-size:11px; color:rgba(255,255,255,.85);
}
.menubar-bar .ic{ width:14px; height:14px; }
.menubar-bar .mic{
  width:22px; height:22px; border-radius:6px; background:#fff; color:#000;
  display:grid; place-items:center; margin:0 -2px;
}

.popover{
  margin-top:30px;
  background:#1A1B1F;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:8px;
  color:var(--dark-text);
  box-shadow:0 30px 60px rgba(0,0,0,.18), 0 2px 0 rgba(255,255,255,.04) inset;
  width:100%; max-width:380px;
  margin-left:auto; margin-right:0;
  font-size:13px;
}
.popover .row{
  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:8px;
}
.popover .row.kbd{ justify-content:space-between; }
.popover .row:hover{ background:rgba(255,255,255,.05); }
.popover .row .lbl{ flex:1; }
.popover .row .dot{ width:8px; height:8px; border-radius:50%; background:#FF453A; box-shadow:0 0 0 4px rgba(255,69,58,.18); }
.popover .row .sq{ width:8px; height:8px; border-radius:2px; background:rgba(255,255,255,.35); }
.popover .kbd-keys{ display:inline-flex; gap:3px; font-family:var(--mono); font-size:11px; color:var(--dark-muted); }
.popover .kbd-keys span{
  display:inline-grid; place-items:center; min-width:18px; height:18px; padding:0 4px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:4px;
}
.popover .sep{ height:1px; background:rgba(255,255,255,.07); margin:6px 4px; }
.popover .row.muted{ color:var(--dark-muted); }
.popover .row.muted .lbl{ color:var(--dark-muted); }
.popover .row.pro{ font-size:12.5px; }
.popover .row.pro .star{ color:#FFC857; }
.popover .row.recording .dot{ background:#FF3B30; }

.floating-tag{
  position:absolute;
  font-family:var(--mono); font-size:11px;
  background:#fff; color:var(--ink);
  border:1px solid var(--line);
  border-radius:8px; padding:6px 10px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  display:inline-flex; align-items:center; gap:6px;
}
.floating-tag .d{ width:6px; height:6px; border-radius:50%; }
.ft-1{ top:60px; left:-12px; }
.ft-1 .d{ background:#30D158; }
.ft-2{ bottom:36px; right:-12px; }
.ft-2 .d{ background:var(--lime); }

/* ─────────────  TRUST STRIP  ───────────── */
.strip{
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
  padding:22px 0;
  background:linear-gradient(180deg, transparent, rgba(255,255,255,.4) 50%, transparent);
}
.strip-row{
  display:flex; flex-wrap:wrap; align-items:center;
  gap:14px 28px; justify-content:space-between;
  font-family:var(--mono); font-size:12px; color:var(--muted);
}
.strip-row .item{
  display:inline-flex; align-items:center; gap:8px;
}
.strip-row .item .ic{
  width:18px; height:18px; display:grid; place-items:center;
  color:var(--ink);
}

/* ─────────────  SECTION  ───────────── */
section{ padding:96px 0; position:relative; }
@media (max-width:760px){ section{ padding:64px 0; } }

.sec-eyebrow{
  font-family:var(--mono); font-size:12px; color:var(--muted);
  letter-spacing:.4px; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px;
  margin-bottom:18px;
}
.sec-eyebrow::before{
  content:""; display:inline-block; width:18px; height:1px; background:var(--ink);
}
h2.sec-title{
  font-size:clamp(32px, 4.6vw, 56px);
  line-height:1.02;
  letter-spacing:-0.035em;
  font-weight:600;
  margin:0 0 16px;
  max-width:18ch;
  text-wrap:balance;
}
.sec-sub{
  font-size:clamp(16px, 1.2vw, 18px);
  color:var(--muted); max-width:60ch; line-height:1.5;
  margin:0 0 48px;
  text-wrap:pretty;
}
.sec-head{ margin-bottom:48px; }
.sec-head.center{ text-align:center; }
.sec-head.center .sec-eyebrow::before{ display:none; }
.sec-head.center h2.sec-title,
.sec-head.center .sec-sub{ margin-left:auto; margin-right:auto; }

/* ─────────────  PILLARS  ───────────── */
.pillars{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
@media (max-width:880px){ .pillars{ grid-template-columns:1fr; } }
.pillar{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  position:relative;
  overflow:hidden;
}
.pillar .num{
  font-family:var(--mono); font-size:11px; color:var(--dim); letter-spacing:.4px;
}
.pillar h3{
  margin:14px 0 10px; font-size:24px; line-height:1.15; letter-spacing:-.02em; font-weight:600;
}
.pillar p{ margin:0; color:var(--muted); font-size:15px; line-height:1.55; }
.pillar .vis{
  margin:24px 0 4px; height:120px;
  border:1px dashed var(--line); border-radius:10px;
  display:grid; place-items:center;
  background:var(--bg-warm);
  overflow:hidden;
  position:relative;
}
.pillar.lime{ background:var(--lime); border-color:transparent; }
.pillar.lime .num{ color:rgba(11,12,14,.65); }
.pillar.lime p{ color:rgba(11,12,14,.78); }
.pillar.lime .vis{ background:rgba(11,12,14,.06); border-color:rgba(11,12,14,.18); }

.pillar.dark{ background:var(--dark); color:var(--dark-text); border-color:transparent; }
.pillar.dark .num{ color:rgba(255,255,255,.45); }
.pillar.dark p{ color:rgba(255,255,255,.7); }
.pillar.dark .vis{ background:rgba(255,255,255,.04); border-color:rgba(255,255,255,.12); }

.vis-shield{
  width:64px; height:78px;
  clip-path: path('M32 0 L64 12 L64 44 C64 64 48 76 32 78 C16 76 0 64 0 44 L0 12 Z');
  background:var(--ink);
  position:relative;
}
.pillar.lime .vis-shield{ background:var(--ink); }
.pillar.dark .vis-shield{ background:var(--lime); }
.vis-shield::after{
  content:""; position:absolute; left:50%; top:50%; width:22px; height:14px;
  transform:translate(-50%,-50%);
  border:2.5px solid currentColor; border-bottom:0; border-radius:10px 10px 0 0;
  color: var(--bg);
}
.pillar.dark .vis-shield::after{ color:var(--dark); }
.vis-shield::before{
  content:""; position:absolute; left:50%; top:54%; width:28px; height:22px;
  transform:translate(-50%,-50%);
  background:currentColor; border-radius:3px;
  color:var(--bg);
}
.pillar.dark .vis-shield::before{ color:var(--dark); }

.vis-nobot{
  width:88%; height:78px; display:flex; align-items:center; justify-content:space-between; padding:0 18px;
}
.vis-nobot .face{
  width:40px; height:40px; border-radius:50%; background:var(--ink);
  display:grid; place-items:center; color:var(--bg-warm);
  font-family:var(--mono); font-size:14px; font-weight:600;
}
.pillar.lime .vis-nobot .face{ background:var(--ink); color:var(--lime); }
.pillar.dark .vis-nobot .face{ background:var(--lime); color:var(--dark); }
.vis-nobot .face.bot{
  position:relative; background:transparent; border:1.5px dashed currentColor;
  color:var(--dim); font-size:11px;
}
.vis-nobot .face.bot::after{
  content:""; position:absolute; inset:-2px;
  background:linear-gradient(45deg, transparent 46%, #FF453A 46%, #FF453A 54%, transparent 54%);
  border-radius:50%; opacity:.9;
}

.vis-offline{
  display:flex; align-items:center; gap:10px;
  font-family:var(--mono); font-size:12px; letter-spacing:.4px;
}
.vis-offline .bars{ display:flex; align-items:flex-end; gap:3px; height:36px; }
.vis-offline .bars i{
  display:block; width:6px; background:currentColor; border-radius:2px;
  animation:rise 1.2s ease-in-out infinite alternate;
}
.vis-offline .bars i:nth-child(1){ height:30%; animation-delay:0s; }
.vis-offline .bars i:nth-child(2){ height:65%; animation-delay:.1s; }
.vis-offline .bars i:nth-child(3){ height:90%; animation-delay:.2s; }
.vis-offline .bars i:nth-child(4){ height:55%; animation-delay:.3s; }
.vis-offline .bars i:nth-child(5){ height:75%; animation-delay:.4s; }
.vis-offline .bars i:nth-child(6){ height:40%; animation-delay:.5s; }
@keyframes rise{ from{transform:scaleY(.7)} to{transform:scaleY(1)} }
.vis-offline .label{ opacity:.7; }

/* ─────────────  HOW IT WORKS  ───────────── */
.steps{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
@media (max-width:900px){ .steps{ grid-template-columns:1fr; } }
.step{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 26px 0;
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:flex; flex-direction:column;
}
.step .num{
  font-family:var(--mono); font-size:12px; color:var(--dim); letter-spacing:.4px;
  margin-bottom:14px;
}
.step h3{
  margin:0 0 10px;
  font-size:22px; line-height:1.15; letter-spacing:-.015em; font-weight:600;
}
.step p{ color:var(--muted); font-size:14.5px; margin:0 0 18px; line-height:1.55; }
.step .mock{
  margin:0 -26px -1px; height:160px;
  background:var(--bg-warm); border-top:1px solid var(--line);
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:center;
  padding:0 24px;
}
.step .mock img{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:88%; }

/* Step 01 — menubar mock */
.mock-menubar{ gap:14px; }
.mock-menubar .mb-bar{
  background:var(--ink); color:#fff;
  border-radius:6px;
  display:flex; align-items:center; gap:10px;
  padding:7px 12px;
  font-size:11px; font-family:var(--mono); letter-spacing:.2px;
}
.mock-menubar .mb-app{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:600;
}
.mock-menubar .mb-app::before{
  content:""; width:11px; height:11px; border-radius:3px;
  background:var(--lime);
}
.mock-menubar .mb-spacer{ flex:1; }
.mock-menubar .mb-icon{
  width:11px; height:11px; opacity:.7;
  background:currentColor;
  -webkit-mask:no-repeat center/contain;
          mask:no-repeat center/contain;
}
.mock-menubar .mb-mic{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'><rect x='6' y='2' width='4' height='8' rx='2'/><path d='M3.5 7.5a4.5 4.5 0 009 0M8 12v2.5M5.5 14.5h5'/></svg>");
          mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'><rect x='6' y='2' width='4' height='8' rx='2'/><path d='M3.5 7.5a4.5 4.5 0 009 0M8 12v2.5M5.5 14.5h5'/></svg>");
}
.mock-menubar .mb-wifi{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path d='M8 12.5a1 1 0 100 2 1 1 0 000-2zM4.7 9.3a4.5 4.5 0 016.6 0l-1 1a3 3 0 00-4.6 0l-1-1zM2 6.6a8 8 0 0112 0l-1 1a6.5 6.5 0 00-10 0l-1-1z'/></svg>");
          mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path d='M8 12.5a1 1 0 100 2 1 1 0 000-2zM4.7 9.3a4.5 4.5 0 016.6 0l-1 1a3 3 0 00-4.6 0l-1-1zM2 6.6a8 8 0 0112 0l-1 1a6.5 6.5 0 00-10 0l-1-1z'/></svg>");
}
.mock-menubar .mb-time{ font-weight:500; }
.mock-menubar .mb-tooltip{
  align-self:flex-start;
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--line); border-radius:8px;
  padding:7px 12px;
  font-family:var(--mono); font-size:11px; color:var(--muted);
  box-shadow:0 6px 14px rgba(14,15,17,.06);
  margin-left:18px;
}
.mock-menubar .mb-dot{
  width:7px; height:7px; border-radius:50%;
  background:#FF3B30; box-shadow:0 0 0 3px rgba(255,69,58,.18);
  animation:pulse 1.6s ease-in-out infinite;
}

/* Step 02 — waveform with speaker tags */
.mock-waveform{ gap:14px; padding-left:18px; padding-right:18px; }
.mock-waveform .wf-row{
  display:flex; align-items:center; gap:12px;
}
.mock-waveform .wf-tag{
  font-family:var(--mono); font-size:10.5px;
  color:var(--ink); background:#fff;
  border:1px solid var(--line); border-radius:5px;
  padding:3px 7px; flex-shrink:0;
  min-width:80px; text-align:center;
}
.mock-waveform .wf-me{ background:var(--lime); border-color:transparent; color:var(--lime-ink); }
.mock-waveform .wf-bars{
  display:flex; align-items:center; gap:3px; flex:1; height:24px;
}
.mock-waveform .wf-bars i{
  display:block; width:4px; background:var(--ink); border-radius:2px;
}
.mock-waveform .wf-bars i:nth-child(1){ height:25% }
.mock-waveform .wf-bars i:nth-child(2){ height:65% }
.mock-waveform .wf-bars i:nth-child(3){ height:45% }
.mock-waveform .wf-bars i:nth-child(4){ height:85% }
.mock-waveform .wf-bars i:nth-child(5){ height:60% }
.mock-waveform .wf-bars i:nth-child(6){ height:35% }
.mock-waveform .wf-bars i:nth-child(7){ height:75% }
.mock-waveform .wf-bars i:nth-child(8){ height:50% }
.mock-waveform .wf-bars i:nth-child(9){ height:90% }
.mock-waveform .wf-bars i:nth-child(10){ height:40% }
.mock-waveform .wf-bars i:nth-child(11){ height:65% }
.mock-waveform .wf-bars i:nth-child(12){ height:30% }
.mock-waveform .wf-bars.alt i{ background:var(--muted); }
.mock-waveform .wf-bars.alt i:nth-child(1){ height:55% }
.mock-waveform .wf-bars.alt i:nth-child(2){ height:30% }
.mock-waveform .wf-bars.alt i:nth-child(3){ height:70% }
.mock-waveform .wf-bars.alt i:nth-child(4){ height:40% }
.mock-waveform .wf-bars.alt i:nth-child(5){ height:80% }
.mock-waveform .wf-bars.alt i:nth-child(6){ height:55% }
.mock-waveform .wf-bars.alt i:nth-child(7){ height:35% }
.mock-waveform .wf-bars.alt i:nth-child(8){ height:65% }
.mock-waveform .wf-bars.alt i:nth-child(9){ height:45% }
.mock-waveform .wf-bars.alt i:nth-child(10){ height:75% }
.mock-waveform .wf-bars.alt i:nth-child(11){ height:50% }
.mock-waveform .wf-bars.alt i:nth-child(12){ height:25% }

/* Step 03 — protocol checklist */
.mock-protocol{
  gap:8px; padding:18px 22px;
  background:#fff; border-top:1px solid var(--line);
  align-items:stretch; justify-content:flex-start;
}
.mock-protocol .pr-row{
  display:flex; align-items:center; gap:10px;
  font-size:12.5px; color:var(--ink-2);
  line-height:1.3;
}
.mock-protocol .pr-h{
  font-family:var(--mono); font-size:10.5px; color:var(--dim);
  text-transform:uppercase; letter-spacing:.4px;
  padding-bottom:6px; border-bottom:1px solid var(--line-soft);
  margin-bottom:2px;
}
.mock-protocol .pr-bul{
  width:14px; height:14px; border-radius:50%;
  border:1.5px solid var(--line); flex-shrink:0;
  position:relative;
}
.mock-protocol .pr-bul.pr-done{
  background:var(--lime); border-color:transparent;
}
.mock-protocol .pr-bul.pr-done::after{
  content:""; position:absolute; left:50%; top:50%;
  width:6px; height:3px;
  border-left:1.5px solid var(--lime-ink);
  border-bottom:1.5px solid var(--lime-ink);
  transform:translate(-50%,-65%) rotate(-45deg);
}
.step .key{
  display:inline-flex; gap:4px; font-family:var(--mono); font-size:11px; color:var(--muted);
  margin-top:auto; align-self:flex-start;
}
.step .key span{ padding:3px 8px; border:1px solid var(--line); border-radius:5px; background:var(--bg); }

/* ─────────────  FEATURE SHOWCASE  ───────────── */
.showcase{
  display:grid; grid-template-columns:1.1fr 1fr; gap:24px;
  align-items:stretch;
}
@media (max-width:980px){ .showcase{ grid-template-columns:1fr; } }
.showcase .panel{
  background:var(--dark);
  color:var(--dark-text);
  border-radius:var(--radius-lg);
  padding:36px;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column;
  min-height:520px;
}
.showcase .panel.alt{ background:var(--paper); color:var(--ink); border:1px solid var(--line); }
.showcase .panel h3{
  font-size:clamp(24px, 2.4vw, 34px); line-height:1.1; letter-spacing:-.025em; font-weight:600;
  margin:0 0 12px;
  text-wrap:balance;
}
.showcase .panel p{
  font-size:15px; line-height:1.55; max-width:42ch;
  margin:0;
}
.showcase .panel.alt p{ color:var(--muted); }
.showcase .panel.dark p{ color:rgba(255,255,255,.7); }
.showcase .panel .lbl{
  font-family:var(--mono); font-size:11px; letter-spacing:.4px;
  color:rgba(255,255,255,.55);
  margin-bottom:14px;
}
.showcase .panel.alt .lbl{ color:var(--dim); }
.showcase .panel .vis{ margin-top:auto; padding-top:32px; }
.showcase .panel .vis img{
  width:100%; border-radius:10px; border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 60px rgba(0,0,0,.4);
}
.showcase .panel.alt .vis img{ border-color:var(--line); box-shadow:0 18px 40px rgba(14,15,17,.10); }

.grid-3{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:18px;
}
@media (max-width:880px){ .grid-3{ grid-template-columns:1fr; } }
.tile{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; min-height:200px;
  display:flex; flex-direction:column;
}
.tile h4{
  margin:0 0 8px;
  font-size:18px; letter-spacing:-.015em; font-weight:600; line-height:1.2;
}
.tile p{ margin:0; color:var(--muted); font-size:14px; line-height:1.5; }
.tile .badges{ display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; padding-top:18px; }
.tile .badge{
  font-family:var(--mono); font-size:11px; color:var(--ink);
  padding:4px 8px; border-radius:5px; background:var(--bg-warm); border:1px solid var(--line);
}

/* ─────────────  COMPARISON TABLE  ───────────── */
.compare-wrap{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden;
}
table.compare{
  width:100%;
  border-collapse:separate; border-spacing:0;
  font-size:14.5px;
}
.compare thead th{
  text-align:left; padding:24px 22px;
  font-size:14px; font-weight:600; letter-spacing:-.005em;
  border-bottom:1px solid var(--line);
  background:var(--paper);
  vertical-align:bottom;
}
.compare thead th .sub{
  display:block; font-weight:400; font-size:12px; color:var(--muted);
  margin-top:4px; font-family:var(--mono);
}
.compare thead th.us{
  background:var(--lime); color:var(--lime-ink);
  border-radius:0;
}
.compare thead th.us .sub{ color:rgba(11,12,14,.7); }
.compare tbody td{
  padding:18px 22px;
  border-bottom:1px solid var(--line-soft);
  vertical-align:top;
}
.compare tbody tr:last-child td{ border-bottom:0; }
.compare td.label{
  font-weight:500; color:var(--ink); width:36%;
}
.compare td.label .desc{
  display:block; font-weight:400; color:var(--muted); font-size:13px; margin-top:4px;
}
.compare td.us{ background:rgba(197,242,59,.10); }
.cell{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px;
}
.cell .ic{
  width:18px; height:18px; border-radius:50%;
  display:grid; place-items:center; flex-shrink:0;
  font-size:11px; font-weight:700;
  font-family:var(--mono);
}
.cell.yes .ic{ background:#1A7F37; color:#fff; }
.cell.no .ic{ background:rgba(255,69,58,.15); color:#B33A2E; }
.cell.partial .ic{ background:rgba(255,177,59,.18); color:#9A6700; }
.cell .txt{ color:var(--ink); }
.cell.no .txt, .cell.partial .txt{ color:var(--muted); }

@media (max-width:760px){
  .compare-wrap{ overflow-x:auto; }
  table.compare{ min-width:680px; }
}

/* ─────────────  FAQ  ───────────── */
.faq-grid{
  display:grid; grid-template-columns:0.7fr 1.3fr; gap:48px;
}
@media (max-width:880px){ .faq-grid{ grid-template-columns:1fr; gap:24px; } }
.faq-list{
  display:flex; flex-direction:column;
  border-top:1px solid var(--line);
}
details.faq{
  border-bottom:1px solid var(--line);
  padding:22px 4px;
  transition:background .15s;
}
details.faq[open]{ background:var(--hover); padding-left:14px; padding-right:14px; border-radius:8px; border-bottom-color:transparent; }
details.faq + details.faq[open]{ margin-top:0; }
details.faq summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:flex-start; gap:18px;
  font-size:17px; font-weight:500; letter-spacing:-.01em; line-height:1.3;
}
details.faq summary::-webkit-details-marker{ display:none; }
details.faq summary .q-num{
  font-family:var(--mono); font-size:12px; color:var(--dim); padding-top:4px;
  min-width:26px;
}
details.faq summary .q-txt{ flex:1; padding-right:24px; }
details.faq summary .chev{
  width:22px; height:22px; border-radius:50%;
  border:1px solid var(--line);
  display:grid; place-items:center; color:var(--muted);
  transition:transform .2s, background .15s;
  flex-shrink:0;
}
details.faq[open] summary .chev{ transform:rotate(45deg); background:var(--ink); color:#fff; border-color:var(--ink); }
details.faq .a{
  margin:14px 0 4px 44px;
  color:var(--muted); font-size:15px; line-height:1.6; max-width:62ch;
}
details.faq .a code{
  font-family:var(--mono); font-size:13px;
  background:var(--bg-warm); padding:2px 6px; border-radius:4px; color:var(--ink);
}
details.faq .a ul{ margin:10px 0 0; padding:0 0 0 18px; }
details.faq .a li{ margin:4px 0; }

/* ─────────────  PRICING  ───────────── */
.pricing{
  background:var(--dark); color:var(--dark-text);
  border-radius:var(--radius-lg);
  padding:64px;
  display:grid; grid-template-columns:1.1fr 1fr; gap:48px;
  align-items:center;
  position:relative; overflow:hidden;
}
@media (max-width:880px){ .pricing{ padding:40px 28px; grid-template-columns:1fr; gap:32px; } }
.pricing::before{
  content:""; position:absolute; right:-160px; top:-160px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(197,242,59,.22), transparent 60%);
  pointer-events:none;
}
.pricing h2{
  font-size:clamp(32px, 3.6vw, 48px); letter-spacing:-.035em; font-weight:600; line-height:1.05;
  margin:0 0 14px;
  max-width:18ch;
  text-wrap:balance;
}
.pricing p{ color:rgba(255,255,255,.7); margin:0; font-size:16px; line-height:1.55; max-width:46ch; }
.price-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:28px;
  position:relative;
  z-index:1;
}
.price-card .tag{
  display:inline-block; font-family:var(--mono); font-size:11px; letter-spacing:.4px;
  padding:5px 9px; border-radius:5px; background:var(--lime); color:var(--lime-ink); margin-bottom:14px;
}
.price-card .num{
  font-size:48px; font-weight:600; letter-spacing:-.04em; line-height:1;
}
.price-card .num .per{
  font-size:14px; color:rgba(255,255,255,.6); font-weight:400; letter-spacing:0; margin-left:4px;
}
.price-card .trial{
  margin-top:6px; font-size:13px; color:rgba(255,255,255,.6);
  font-family:var(--mono);
}
.price-card ul{
  margin:24px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px;
  font-size:14.5px;
}
.price-card ul li{ display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,.86); }
.price-card ul li::before{
  content:""; width:14px; height:14px; border-radius:50%; flex-shrink:0;
  background:var(--lime); margin-top:4px;
  mask:linear-gradient(45deg, transparent 35%, #000 35%, #000 45%, transparent 45%, transparent 50%, #000 50%, #000 70%, transparent 70%) center/8px 8px no-repeat;
  -webkit-mask:linear-gradient(45deg, transparent 35%, #000 35%, #000 45%, transparent 45%, transparent 50%, #000 50%, #000 70%, transparent 70%) center/8px 8px no-repeat;
}
.price-card .cta{ margin-top:24px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.price-card .cta .btn.lime{ height:44px; padding:0 22px; }
.price-card .cta .fine{ font-size:12px; color:rgba(255,255,255,.55); font-family:var(--mono); }

/* ─────────────  FOOTER  ───────────── */
footer{
  padding:64px 0 48px;
  border-top:1px solid var(--line-soft);
  background:var(--bg);
}
.foot-grid{
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px;
}
@media (max-width:760px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
.foot-grid h5{
  margin:0 0 14px;
  font-family:var(--mono); text-transform:uppercase; font-size:11px; letter-spacing:.6px;
  font-weight:500; color:var(--ink);
}
.foot-grid a{ display:block; font-size:14px; color:var(--muted); padding:5px 0; }
.foot-grid a:hover{ color:var(--ink); }
.foot-grid p{ margin:8px 0 0; font-size:14px; color:var(--muted); line-height:1.55; max-width:38ch; }
.foot-bottom{
  margin-top:48px; padding-top:24px; border-top:1px solid var(--line-soft);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
  font-family:var(--mono); font-size:12px; color:var(--dim);
}

/* mobile tweaks */
@media (max-width:560px){
  .container{ padding:0 20px; }
  .menubar-stage{ padding:24px 18px 0; }
  .popover{ font-size:12px; }
  .pillar{ padding:24px 22px; }
  .pricing{ padding:36px 24px; }
  .floating-tag.ft-1{ left:8px; top:42px; }
  .floating-tag.ft-2{ right:8px; bottom:18px; }
}

/* ─────────────  LEGAL / SUPPORT PAGES  ───────────── */
.legal-wrap{
  max-width:760px; margin:0 auto; padding:64px 28px 96px;
}
.legal-wrap .legal-eyebrow{
  font-family:var(--mono); font-size:12px; color:var(--muted);
  letter-spacing:.4px; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px;
  margin-bottom:18px;
}
.legal-wrap .legal-eyebrow::before{
  content:""; display:inline-block; width:18px; height:1px; background:var(--ink);
}
.legal-wrap h1{
  font-size:clamp(34px, 4.4vw, 52px);
  line-height:1.05; letter-spacing:-.035em; font-weight:600;
  margin:0 0 12px;
  text-wrap:balance;
}
.legal-wrap .updated{
  font-family:var(--mono); font-size:12px; color:var(--dim);
  margin:0 0 36px;
}
.legal-wrap h2{
  font-size:22px; letter-spacing:-.02em; font-weight:600;
  margin:36px 0 12px;
}
.legal-wrap h3{
  font-size:17px; font-weight:600; margin:24px 0 8px;
}
.legal-wrap p{
  font-size:16px; line-height:1.6; color:var(--ink-2);
  margin:0 0 14px;
}
.legal-wrap ul, .legal-wrap ol{
  font-size:16px; line-height:1.6; color:var(--ink-2);
  margin:0 0 14px; padding-left:22px;
}
.legal-wrap li{ margin:4px 0; }
.legal-wrap a{
  color:var(--ink); text-decoration:underline; text-underline-offset:3px;
  text-decoration-color:rgba(14,15,17,.25);
  transition:text-decoration-color .15s;
}
.legal-wrap a:hover{ text-decoration-color:var(--ink); }
.legal-wrap code{
  font-family:var(--mono); font-size:13px;
  background:var(--bg-warm); padding:2px 6px; border-radius:4px; color:var(--ink);
  word-break:break-all;
}
.legal-wrap table{
  width:100%; border-collapse:collapse; margin:14px 0; font-size:14px;
}
.legal-wrap table th, .legal-wrap table td{
  text-align:left; padding:10px 12px;
  border-bottom:1px solid var(--line); vertical-align:top;
}
.legal-wrap table th{
  font-weight:600; background:var(--bg-warm); font-size:13px;
}
.legal-wrap blockquote{
  border-left:3px solid var(--lime); margin:18px 0;
  padding:6px 0 6px 16px; color:var(--muted);
  font-size:15px;
}
.legal-wrap .tldr{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 24px; margin:24px 0 32px;
}
.legal-wrap .tldr h3{ margin:0 0 10px; font-size:14px;
  font-family:var(--mono); text-transform:uppercase; letter-spacing:.4px; color:var(--muted); }
.legal-wrap .tldr p, .legal-wrap .tldr ul{ margin-bottom:8px; font-size:15px; }
.legal-wrap .tldr ul{ padding-left:18px; }
.legal-wrap .tldr li{ margin:6px 0; }
.legal-wrap hr{
  border:0; border-top:1px solid var(--line-soft); margin:48px 0;
}

/* i18n visibility on legal pages */
[data-lang-only]{ display:none; }
html[lang="ru"] [data-lang-only="ru"]{ display:block; }
html[lang="en"] [data-lang-only="en"]{ display:block; }

/* ─────────────  404  ───────────── */
.nf-wrap{
  min-height:60vh; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:64px 28px;
}
.nf-wrap .num{
  font-size:120px; font-weight:600; letter-spacing:-.06em; line-height:1;
  color:var(--ink); margin:0;
}
.nf-wrap .num em{
  font-style:normal;
  background:linear-gradient(180deg, transparent 62%, var(--lime) 62%, var(--lime) 92%, transparent 92%);
}
.nf-wrap p{ font-size:18px; color:var(--muted); margin:18px 0 28px; }
