:root{
  --ground:#F6F7F9; --surface:#FFFFFF; --surface-2:#FFFFFF; --ink:#0E1116; --ink-2:#2A303B;
  --muted:#5A6472; --border:#E4E7EC; --border-strong:#D3D8E0;
  --accent:#3355FF; --accent-hover:#1E3EE6; --accent-soft:#EAEDFF; --accent-ink:#FFFFFF;
  --spark:#F06A1E; --spark-soft:#FFEEDF;
  --shadow:0 1px 2px rgba(16,17,22,.04), 0 8px 24px -12px rgba(16,17,22,.14);
  --shadow-lg:0 2px 4px rgba(16,17,22,.05), 0 24px 48px -20px rgba(16,17,22,.22);
  --radius:12px; --radius-sm:9px;
  --sans:'Onest', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono:'JetBrains Mono', ui-monospace, 'Cascadia Code', 'SF Mono', Consolas, monospace;
  --container:1160px;
}
@media (prefers-color-scheme: dark){
  :root{
    --ground:#0B0D11; --surface:#12151B; --surface-2:#161A22; --ink:#EDEFF3; --ink-2:#C7CDD8;
    --muted:#939DAC; --border:#232833; --border-strong:#2E3542;
    --accent:#5B77FF; --accent-hover:#7C90FF; --accent-soft:#171C2E; --accent-ink:#0B0D11;
    --spark:#FF9A52; --spark-soft:#241a12;
    --shadow:0 1px 2px rgba(0,0,0,.4), 0 12px 30px -16px rgba(0,0,0,.7);
    --shadow-lg:0 2px 6px rgba(0,0,0,.5), 0 30px 60px -24px rgba(0,0,0,.8);
  }
}
:root[data-theme="light"]{
  --ground:#F6F7F9; --surface:#FFFFFF; --surface-2:#FFFFFF; --ink:#0E1116; --ink-2:#2A303B;
  --muted:#5A6472; --border:#E4E7EC; --border-strong:#D3D8E0;
  --accent:#3355FF; --accent-hover:#1E3EE6; --accent-soft:#EAEDFF; --accent-ink:#FFFFFF;
  --spark:#F06A1E; --spark-soft:#FFEEDF;
  --shadow:0 1px 2px rgba(16,17,22,.04), 0 8px 24px -12px rgba(16,17,22,.14);
  --shadow-lg:0 2px 4px rgba(16,17,22,.05), 0 24px 48px -20px rgba(16,17,22,.22);
}
:root[data-theme="dark"]{
  --ground:#0B0D11; --surface:#12151B; --surface-2:#161A22; --ink:#EDEFF3; --ink-2:#C7CDD8;
  --muted:#939DAC; --border:#232833; --border-strong:#2E3542;
  --accent:#5B77FF; --accent-hover:#7C90FF; --accent-soft:#171C2E; --accent-ink:#0B0D11;
  --spark:#FF9A52; --spark-soft:#241a12;
  --shadow:0 1px 2px rgba(0,0,0,.4), 0 12px 30px -16px rgba(0,0,0,.7);
  --shadow-lg:0 2px 6px rgba(0,0,0,.5), 0 30px 60px -24px rgba(0,0,0,.8);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} }
body{
  margin:0; background:var(--ground); color:var(--ink);
  font-family:var(--sans); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
h1,h2,h3{margin:0; line-height:1.1; letter-spacing:-.02em; text-wrap:balance; font-weight:800}
p{margin:0}
a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 24px}

.eyebrow{
  font-family:var(--mono); font-size:.78rem; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent); display:inline-flex; align-items:center; gap:.5em;
}
.eyebrow::before{content:""; width:1.6em; height:1px; background:var(--accent); opacity:.6}

.btn{
  display:inline-flex; align-items:center; gap:.55em; justify-content:center;
  font-family:var(--sans); font-weight:600; font-size:1rem; line-height:1;
  padding:.85em 1.35em; border-radius:var(--radius-sm); cursor:pointer; border:1px solid transparent;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--accent); color:var(--accent-ink); box-shadow:var(--shadow)}
.btn-primary:hover{background:var(--accent-hover); transform:translateY(-1px)}
.btn-ghost{background:transparent; color:var(--ink); border-color:var(--border-strong)}
.btn-ghost:hover{border-color:var(--accent); color:var(--accent); transform:translateY(-1px)}
.btn svg{width:1.05em; height:1.05em}

header.nav{position:sticky; top:0; z-index:50; background:color-mix(in srgb, var(--ground) 82%, transparent);
  backdrop-filter:saturate(150%) blur(12px); border-bottom:1px solid transparent; transition:border-color .2s}
header.nav.scrolled{border-color:var(--border)}
.nav-inner{display:flex; align-items:center; justify-content:space-between; height:68px}
.brand{display:inline-flex; align-items:center; gap:.5em; font-weight:800; font-size:1.22rem; letter-spacing:-.03em}
.brand .brand-mark{width:28px; height:28px; border-radius:7px; display:block; box-shadow:var(--shadow)}
.brand .exe{font-family:var(--mono); font-weight:500; font-size:.7em; color:var(--muted); letter-spacing:0}
.nav-links{display:flex; align-items:center; gap:30px}
.nav-links a.navlink{font-size:.95rem; color:var(--muted); font-weight:500; transition:color .15s}
.nav-links a.navlink:hover{color:var(--ink)}
.nav-right{display:flex; align-items:center; gap:14px}
.icon-btn{width:38px; height:38px; border-radius:9px; border:1px solid var(--border); background:var(--surface);
  display:inline-flex; align-items:center; justify-content:center; cursor:pointer; color:var(--muted); transition:.15s}
.icon-btn:hover{color:var(--ink); border-color:var(--border-strong)}
.icon-btn svg{width:18px; height:18px}
.burger{display:none}
#themeToggle .moon{display:none}
:root[data-theme="dark"] #themeToggle .sun{display:none}
:root[data-theme="dark"] #themeToggle .moon{display:block}
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) #themeToggle .sun{display:none} :root:not([data-theme="light"]) #themeToggle .moon{display:block} }

section{padding-block:clamp(4rem,9vw,7rem)}
.sec-head{max-width:640px; margin-bottom:52px}
.sec-head.center{margin-inline:auto; text-align:center}
.sec-head h2{font-size:clamp(1.85rem,3.6vw,2.7rem); margin-top:16px}
.sec-head p{color:var(--muted); font-size:1.12rem; margin-top:16px}

.hero{position:relative; overflow:hidden; padding-top:clamp(3rem,6vw,5rem); padding-bottom:clamp(3.5rem,7vw,6rem)}
.hero-grid-bg{position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size:52px 52px; -webkit-mask-image:radial-gradient(120% 90% at 78% 15%, #000 0%, transparent 62%);
  mask-image:radial-gradient(120% 90% at 78% 15%, #000 0%, transparent 62%); opacity:.55}
.hero-inner{position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center}

/* мягкое свечение за демо-окном */
.hero-glow{position:absolute; z-index:0; top:8%; right:-6%; width:640px; height:640px; pointer-events:none;
  background:radial-gradient(circle at center, color-mix(in srgb, var(--accent) 26%, transparent), transparent 62%);
  filter:blur(20px); opacity:.55; animation:glowPulse 8s ease-in-out infinite}
@keyframes glowPulse{0%,100%{opacity:.4; transform:scale(1)}50%{opacity:.7; transform:scale(1.08)}}

/* объекты, «собирающие продукт» — летают за демонстрацией */
.hero-orbit{position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden}
.orb{position:absolute; font-family:var(--mono); font-size:.78rem; font-weight:500; color:var(--muted);
  background:color-mix(in srgb, var(--surface) 82%, transparent); border:1px solid var(--border);
  border-radius:8px; padding:.34em .6em; box-shadow:var(--shadow); backdrop-filter:blur(4px);
  white-space:nowrap; opacity:0; will-change:transform, opacity}
.orb.accent{color:var(--accent); border-color:color-mix(in srgb, var(--accent) 40%, var(--border))}
.orb.green{color:#1f9d57}
.orb.star{color:var(--spark); font-size:.95rem; border-color:color-mix(in srgb, var(--spark) 40%, var(--border))}
:root[data-theme="dark"] .orb.green{color:#3ad38a}
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .orb.green{color:#3ad38a} }
.orb.oa{animation:orbFloatA 9s ease-in-out infinite, orbIn .8s ease-out forwards}
.orb.ob{animation:orbFloatB 11s ease-in-out infinite, orbIn .8s ease-out forwards}
.orb:nth-child(2){animation-delay:-2s, .1s} .orb:nth-child(3){animation-delay:-5s, .2s}
.orb:nth-child(4){animation-delay:-1s, .3s} .orb:nth-child(5){animation-delay:-7s, .4s}
.orb:nth-child(6){animation-delay:-3s, .5s} .orb:nth-child(7){animation-delay:-6s, .6s}
.orb:nth-child(8){animation-delay:-4s, .7s} .orb:nth-child(9){animation-delay:-8s, .8s}
.orb:nth-child(10){animation-delay:-2.5s, .9s}
@keyframes orbIn{from{opacity:0}to{opacity:.92}}
@keyframes orbFloatA{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-16px) rotate(1.5deg)}}
@keyframes orbFloatB{0%,100%{transform:translate(0,0) rotate(1deg)}50%{transform:translate(-12px,12px) rotate(-1.5deg)}}
@media (prefers-reduced-motion:reduce){
  .hero-glow{animation:none} .orb{opacity:.9; animation:none}
}
@media (max-width:940px){ .hero-orbit,.hero-glow{display:none} }
.hero h1{font-size:clamp(2.35rem,5.4vw,4rem); margin-top:22px}
.hero .lead{color:var(--ink-2); font-size:clamp(1.08rem,1.6vw,1.28rem); margin-top:22px; max-width:36ch}
.hero .cta-row{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap}
.trust{display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:38px}
.trust .chip{display:inline-flex; align-items:center; gap:.5em; font-size:.9rem; color:var(--muted); font-weight:500}
.trust .chip svg{width:16px; height:16px; color:var(--accent)}

.build-card{background:var(--surface); border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow-lg); overflow:hidden}
.bc-bar{display:flex; align-items:center; gap:8px; padding:12px 16px; border-bottom:1px solid var(--border)}
.bc-bar .dot{width:11px; height:11px; border-radius:50%}
.bc-bar .dot.r{background:#ff5f57} .bc-bar .dot.y{background:#febc2e} .bc-bar .dot.g{background:#28c840}
.bc-bar .title{margin-left:8px; font-family:var(--mono); font-size:.78rem; color:var(--muted)}
.bc-body{padding:20px 20px 22px; font-family:var(--mono); font-size:.86rem; line-height:1.85}
.bc-body .prompt{color:var(--muted)} .bc-body .cmd{color:var(--ink)}
.bc-body .row{display:flex; align-items:center; gap:.7em}
.bc-body .ok{color:#22a565; font-weight:600}
:root[data-theme="dark"] .bc-body .ok{color:#3ad38a}
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .bc-body .ok{color:#3ad38a} }
.bc-body .muted{color:var(--muted)}
.bc-body .live{color:var(--accent); font-weight:600}
.bc-body .caret{display:inline-block; width:8px; height:1.05em; background:var(--accent); vertical-align:-2px; animation:blink 1.1s steps(1) infinite}
@keyframes blink{50%{opacity:0}}
@media (prefers-reduced-motion:reduce){ .bc-body .caret{animation:none} }

.bc-bar .bc-lang{margin-left:auto; font-family:var(--mono); font-size:.68rem; font-weight:500; letter-spacing:.06em;
  color:var(--accent); background:var(--accent-soft); border-radius:6px; padding:.2em .5em}
.bc-bar .bc-lang.hide{display:none}
/* фикс-высота, чтобы окно не скакало между фазами */
.bc-body{height:17.5rem; overflow:hidden}
@media (max-width:600px){ .bc-body{height:16rem} }

/* «проявление» продукта после деплоя */
.bc-reveal{height:100%; display:flex; flex-direction:column; animation:revealIn .7s ease-out both}
@keyframes revealIn{from{opacity:0; transform:scale(.97)}to{opacity:1; transform:none}}
.bc-url{display:flex; align-items:center; gap:.5em; font-family:var(--mono); font-size:.76rem; color:var(--muted);
  padding:.1em .2em .7em}
.bc-url .live-dot{width:7px; height:7px; border-radius:50%; background:#22a565; box-shadow:0 0 0 3px color-mix(in srgb,#22a565 22%, transparent)}
.bc-shot{position:relative; flex:1; border-radius:8px; overflow:hidden; border:1px solid var(--border)}
.bc-shot img{width:100%; height:100%; object-fit:cover; object-position:top center; display:block}
.bc-shot .shot-dark{display:none}
:root[data-theme="dark"] .bc-shot .shot-light{display:none}
:root[data-theme="dark"] .bc-shot .shot-dark{display:block}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .bc-shot .shot-light{display:none}
  :root:not([data-theme="light"]) .bc-shot .shot-dark{display:block}
}
.bc-code{margin:0; font-family:var(--mono); font-size:.82rem; line-height:1.75; color:var(--ink-2);
  white-space:pre-wrap; word-break:break-word}
.bc-code .tk-k{color:var(--accent); font-weight:500}
.bc-code .tk-t{color:var(--spark)}
.bc-code .tk-f{color:var(--ink); font-weight:600}
.bc-code .tk-s{color:#1f9d57}
.bc-code .tk-c{color:var(--muted); font-style:italic}
.bc-code .tk-n{color:var(--spark)}
:root[data-theme="dark"] .bc-code .tk-s{color:#3ad38a}
@media (prefers-color-scheme:dark){ :root:not([data-theme="light"]) .bc-code .tk-s{color:#3ad38a} }
.type-caret{display:inline-block; width:7px; height:1.05em; background:var(--accent); vertical-align:-2px;
  margin-left:1px; animation:blink 1.05s steps(1) infinite}

.float{animation:floaty 6s ease-in-out infinite}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@media (prefers-reduced-motion:reduce){ .float{animation:none} .type-caret{animation:none} }

.grid{display:grid; gap:22px}
.cols-4{grid-template-columns:repeat(4,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.cols-2{grid-template-columns:repeat(2,1fr)}
.card{background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:26px;
  box-shadow:var(--shadow); transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease}
.card:hover{transform:translateY(-3px); border-color:var(--border-strong); box-shadow:var(--shadow-lg)}
.card .ico{width:42px; height:42px; border-radius:10px; background:var(--accent-soft); color:var(--accent);
  display:inline-flex; align-items:center; justify-content:center; margin-bottom:18px}
.card .ico svg{width:22px; height:22px}
.card h3{font-size:1.16rem; margin-bottom:10px; letter-spacing:-.01em}
.card p{color:var(--muted); font-size:.98rem}

.proof{display:flex; align-items:center; gap:28px; flex-wrap:wrap; justify-content:center;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding-block:26px}
.proof .label{font-family:var(--mono); font-size:.76rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted)}
.proof .prod{display:inline-flex; align-items:center; gap:.6em; font-weight:700; font-size:1.15rem; letter-spacing:-.02em}
.proof .prod .live-pill{font-family:var(--mono); font-size:.66rem; font-weight:500; letter-spacing:.04em; color:#22a565;
  border:1px solid color-mix(in srgb,#22a565 40%, transparent); border-radius:99px; padding:.25em .6em; text-transform:uppercase}
.proof .prod .dot{width:6px;height:6px;border-radius:50%;background:var(--spark)}

.case-tag{font-family:var(--mono); font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); margin-bottom:14px}
.case h3{font-size:1.4rem; margin-bottom:14px}
.case p{color:var(--muted); font-size:1rem; margin-bottom:20px}

/* clickable case cards with live screenshots */
.case-card{display:flex; flex-direction:column; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); color:inherit;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease}
.case-card:hover{transform:translateY(-4px); border-color:var(--accent); box-shadow:var(--shadow-lg)}
.case-shot{position:relative; aspect-ratio:16/10; overflow:hidden; border-bottom:1px solid var(--border); background:var(--surface-2)}
.case-shot img{width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
  transition:transform .4s ease}
.case-card:hover .case-shot img{transform:scale(1.03)}
/* скрин под тему starteka: светлая тема → light-скрин, тёмная → dark-скрин */
.case-shot .shot-dark{display:none}
:root[data-theme="dark"] .case-shot .shot-light{display:none}
:root[data-theme="dark"] .case-shot .shot-dark{display:block}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .case-shot .shot-light{display:none}
  :root:not([data-theme="light"]) .case-shot .shot-dark{display:block}
}
.case-visit{position:absolute; right:12px; bottom:12px; display:inline-flex; align-items:center; gap:.4em;
  font-family:var(--mono); font-size:.76rem; font-weight:500; color:#fff; background:rgba(14,17,22,.72);
  backdrop-filter:blur(4px); border-radius:99px; padding:.42em .8em; opacity:0; transform:translateY(4px);
  transition:opacity .2s ease, transform .2s ease}
.case-card:hover .case-visit{opacity:1; transform:none}
.case-body{padding:26px 28px 28px}
.case-body .case-tag{margin-bottom:12px}
.case-body h3{font-size:1.32rem; margin-bottom:12px}
.case-body p{color:var(--muted); font-size:.99rem; margin-bottom:18px}
.case-body .outcome{display:inline-flex; align-items:center; gap:.5em; font-weight:600; font-size:.98rem; color:var(--ink)}
.case-body .outcome svg{width:17px; height:17px; flex-shrink:0; color:#22a565}
@media (prefers-reduced-motion:reduce){ .case-shot img,.case-card:hover .case-shot img{transition:none; transform:none} .case-visit{opacity:1; transform:none} }
.stack{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px}
.stack .t{font-family:var(--mono); font-size:.76rem; color:var(--ink-2); background:var(--surface-2);
  border:1px solid var(--border); border-radius:7px; padding:.35em .6em}
.case .outcome{display:inline-flex; align-items:center; gap:.5em; font-weight:600; font-size:.98rem; color:var(--ink)}
.case .outcome svg{width:17px; height:17px; color:#22a565}

.steps{counter-reset:step; display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.step{position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:28px 26px}
.step .num{counter-increment:step; font-family:var(--mono); font-size:.82rem; color:var(--accent); font-weight:500; letter-spacing:.08em}
.step .num::before{content:"0" counter(step)}
.step .when{float:right; font-family:var(--mono); font-size:.78rem; color:var(--muted)}
.step h3{font-size:1.18rem; margin:16px 0 10px}
.step p{color:var(--muted); font-size:.97rem}

.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; margin-top:16px}
.price{display:flex; flex-direction:column; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:30px 28px; position:relative}
.price.feat{border-color:var(--accent); box-shadow:0 0 0 1px var(--accent), var(--shadow-lg)}
.price .badge{position:absolute; top:-11px; left:28px; font-family:var(--mono); font-size:.68rem; letter-spacing:.08em;
  text-transform:uppercase; background:var(--accent); color:var(--accent-ink); padding:.35em .7em; border-radius:7px}
.price .pname{font-weight:700; font-size:1.12rem; letter-spacing:-.01em}
.price .pmeta{font-family:var(--mono); font-size:.8rem; color:var(--muted); margin-top:6px}
.price .pprice{font-size:1.75rem; font-weight:800; letter-spacing:-.03em; margin:18px 0 6px; font-variant-numeric:tabular-nums}
.price .pprice small{font-size:.9rem; font-weight:500; color:var(--muted)}
.price ul{list-style:none; margin:18px 0 26px; padding:0; display:flex; flex-direction:column; gap:11px}
.price li{display:flex; gap:.6em; font-size:.96rem; color:var(--ink-2)}
.price li svg{width:17px; height:17px; color:var(--accent); flex-shrink:0; margin-top:.2em}
.price .btn{margin-top:auto; width:100%}

.retainer{margin-top:22px; display:flex; align-items:center; gap:20px; flex-wrap:wrap; justify-content:space-between;
  background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius); padding:22px 28px}
.retainer .rt{font-weight:600}
.retainer .rt small{display:block; color:var(--muted); font-weight:400; font-size:.94rem; margin-top:4px}
.retainer .rprice{font-family:var(--mono); font-weight:500; color:var(--accent); white-space:nowrap}

.founder{margin-top:22px; display:flex; align-items:center; gap:16px; border:1px dashed var(--spark);
  background:var(--spark-soft); border-radius:var(--radius); padding:20px 26px}
.founder .fico{flex-shrink:0; color:var(--spark)} .founder .fico svg{width:26px;height:26px}
.founder b{color:var(--ink)}
.founder p{color:var(--ink-2); font-size:.98rem}
.founder .cap{font-family:var(--mono); font-size:.8rem; color:var(--spark); font-weight:500; white-space:nowrap; margin-left:auto}

.why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px 40px}
.why-item{display:flex; gap:18px}
.why-item .wi{flex-shrink:0; width:40px;height:40px;border-radius:10px;background:var(--accent-soft);color:var(--accent);
  display:inline-flex;align-items:center;justify-content:center}
.why-item .wi svg{width:20px;height:20px}
.why-item h3{font-size:1.08rem; margin-bottom:7px}
.why-item p{color:var(--muted); font-size:.97rem}

.contact-wrap{background:var(--surface); border:1px solid var(--border); border-radius:18px; box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:1fr 1fr; gap:0; overflow:hidden}
.contact-l{padding:48px 44px; display:flex; flex-direction:column; justify-content:center}
.contact-l h2{font-size:clamp(1.7rem,3vw,2.3rem)}
.contact-l p{color:var(--muted); margin-top:16px; font-size:1.08rem}
.contact-l .tg{margin-top:26px; display:inline-flex; align-items:center; gap:.55em; color:var(--accent); font-weight:600}
.contact-l .tg svg{width:19px;height:19px}
.contact-r{padding:44px; background:var(--surface-2); border-left:1px solid var(--border)}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:18px}
.field label{font-size:.85rem; font-weight:600; color:var(--ink-2)}
.field input, .field textarea{font-family:var(--sans); font-size:1rem; color:var(--ink); background:var(--surface);
  border:1px solid var(--border-strong); border-radius:9px; padding:.75em .9em; transition:border-color .15s, box-shadow .15s}
.field input:focus, .field textarea:focus{outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft)}
.field textarea{resize:vertical; min-height:92px}
.lead-ok{padding:22px 4px; font-size:1.05rem; color:var(--ink); line-height:1.6}
.lead-ok b{color:var(--accent)}
.contact-alt{margin-top:20px; color:var(--muted); font-size:.98rem}
.contact-alt a{color:var(--accent); font-weight:600}
.contact-alt a:hover{text-decoration:underline}

footer.ft{border-top:1px solid var(--border); padding-block:52px 40px; margin-top:20px}
.ft-top{display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap}
.ft-brand{max-width:300px}
.ft-brand p{color:var(--muted); font-size:.95rem; margin-top:14px}
.ft-cols{display:flex; gap:64px; flex-wrap:wrap}
.ft-col h4{font-family:var(--mono); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin:0 0 16px; font-weight:500}
.ft-col a{display:block; color:var(--ink-2); font-size:.95rem; margin-bottom:11px; transition:color .15s}
.ft-col a:hover{color:var(--accent)}
.ft-bottom{margin-top:44px; padding-top:24px; border-top:1px solid var(--border); display:flex; justify-content:space-between;
  gap:16px; flex-wrap:wrap; color:var(--muted); font-size:.88rem}
.ft-bottom .mono{font-family:var(--mono)}
.ft-bottom .ft-legal a{color:var(--muted); transition:color .15s}
.ft-bottom .ft-legal a:hover{color:var(--accent)}

.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1; transform:none}
@media (prefers-reduced-motion:reduce){ .reveal{opacity:1; transform:none; transition:none} }

@media (max-width:940px){
  .hero-inner{grid-template-columns:1fr; gap:40px}
  .build-card{max-width:520px}
  .cols-4{grid-template-columns:repeat(2,1fr)}
  .cols-3,.cols-2,.steps,.price-grid,.why-grid{grid-template-columns:1fr}
  .contact-wrap{grid-template-columns:1fr}
  .contact-r{border-left:none; border-top:1px solid var(--border)}
  .case-two{grid-template-columns:1fr !important}
}
@media (max-width:600px){
  .nav-links{display:none}
  .burger{display:inline-flex}
  .cols-4{grid-template-columns:1fr}
  .founder{flex-direction:column; align-items:flex-start; gap:10px}
  .founder .cap{margin-left:0}
  .proof{gap:16px}
}
.mobile-menu{position:fixed; inset:68px 0 auto 0; background:var(--surface); border-bottom:1px solid var(--border);
  padding:18px 24px 26px; display:none; flex-direction:column; gap:4px; z-index:49; box-shadow:var(--shadow-lg)}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:12px 4px; color:var(--ink-2); font-weight:500; border-bottom:1px solid var(--border)}
.mobile-menu a:last-child{border-bottom:none}

/* consent checkbox on lead form */
.consent{display:flex; gap:.6em; align-items:flex-start; margin:2px 0 18px; font-size:.82rem; color:var(--muted); line-height:1.5}
.consent input{margin-top:.15em; width:16px; height:16px; accent-color:var(--accent); flex-shrink:0; cursor:pointer}
.consent a{color:var(--accent); font-weight:600}
.consent a:hover{text-decoration:underline}

/* legal / document pages */
.legal{padding-block:clamp(3rem,6vw,5rem)}
.legal .container{max-width:820px}
.legal .doc-head{margin-bottom:40px; padding-bottom:26px; border-bottom:1px solid var(--border)}
.legal .doc-head h1{font-size:clamp(1.7rem,3.4vw,2.4rem); margin-top:14px}
.legal .doc-head .meta{color:var(--muted); font-family:var(--mono); font-size:.82rem; margin-top:14px}
.legal article{color:var(--ink-2); font-size:1.02rem; line-height:1.7}
.legal article h2{font-size:1.25rem; margin:38px 0 12px; letter-spacing:-.01em}
.legal article h3{font-size:1.05rem; margin:24px 0 8px}
.legal article p{margin:0 0 14px}
.legal article ul,.legal article ol{margin:0 0 16px; padding-left:1.3em}
.legal article li{margin-bottom:8px}
.legal article a{color:var(--accent); font-weight:600}
.legal article a:hover{text-decoration:underline}
.legal .req{background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px 24px; margin:22px 0; font-size:.95rem}
.legal .req b{color:var(--ink)}
.legal .backlink{display:inline-flex; align-items:center; gap:.5em; margin-top:40px; color:var(--accent); font-weight:600; font-size:.95rem}
