/* OPERACK — Terminal direction · shared design system */

:root {
  --bg: #0a0b0d;
  --bg-2: #101317;
  --panel: #0e1114;
  --panel-2: #0b0e11;
  --line: #1c2127;
  --line-2: #262d35;
  --text: #e7eae6;
  --muted: #8b938a;
  --dim: #5c6660;
  --accent: #bef264;
  --accent-2: #cdf97e;
  --accent-dim: #7a9a3a;
  --blue: #7dd3fc;
  --amber: #fbbf24;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  --sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #0a0b0d; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.mono { font-family: var(--mono); }
.tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--accent-dim); text-transform: lowercase;
}
.accent { color: var(--accent); }

/* grid backdrop */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 80%);
  opacity: 0.5;
}
.layer { position: relative; z-index: 1; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,13,0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav .row { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--mono); font-weight: 600; letter-spacing: 0.02em; }
.brand .mark {
  width: 22px; height: 22px; border: 1.5px solid var(--accent); border-radius: 3px;
  display: grid; place-items: center; color: var(--accent); font-size: 13px; line-height: 1;
}
.navlinks { display: flex; gap: 28px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.navlinks a { transition: color .15s; position: relative; }
.navlinks a:hover { color: var(--text); }
.navlinks a.active { color: var(--accent); }
.navlinks .num { color: var(--dim); margin-right: 5px; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.btn {
  font-family: var(--mono); font-size: 13px; padding: 9px 16px; border-radius: 4px;
  border: 1px solid var(--line-2); color: var(--text); transition: all .15s; cursor: pointer; background: transparent; display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn-solid { background: var(--accent); color: #0a0b0d; border-color: var(--accent); font-weight: 600; }
.btn-solid:hover { background: var(--accent-2); color: #0a0b0d; }
.btn-sm { padding: 7px 12px; font-size: 12px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line-2); color: var(--text); font-family: var(--mono); font-size: 13px; padding: 8px 12px; border-radius: 4px; cursor: pointer; }
@media (max-width: 860px){
  .navlinks { display: none; }
  .menu-toggle { display: inline-flex; }
  .navlinks.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10,11,13,0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line); padding: 8px 32px 20px;
  }
  .navlinks.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
}

/* ── PAGE HERO / HEADERS ─────────────────────────── */
.path { font-family: var(--mono); font-size: 12.5px; color: var(--dim); padding-top: 40px; }
.path a:hover { color: var(--muted); }
.path .sep { color: var(--line-2); margin: 0 8px; }
.path .here { color: var(--accent-dim); }

.page-hero { padding: 30px 0 20px; }
.page-hero .kick { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dim); }
.page-hero h1 { font-size: clamp(34px, 5.2vw, 60px); line-height: 1.04; letter-spacing: -0.025em; font-weight: 600; margin-top: 18px; max-width: 20ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead { margin-top: 22px; font-size: clamp(15px,1.8vw,18px); color: var(--muted); max-width: 60ch; line-height: 1.6; }
.page-hero .cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO (home) ─────────────────────────────────── */
.hero { padding: 48px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: center; }
@media(max-width: 1000px){ .hero-grid { grid-template-columns: 1fr; gap: 0; } }
.hero .status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; margin-bottom: 30px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(190,242,100,.5);} 70%{box-shadow:0 0 0 7px rgba(190,242,100,0);} 100%{box-shadow:0 0 0 0 rgba(190,242,100,0);} }
h1.headline { font-size: clamp(38px, 5.4vw, 62px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 600; max-width: 15ch; }
h1.headline em { font-style: normal; color: var(--accent); }
.hero p.lead { margin-top: 26px; font-size: clamp(16px,2vw,19px); color: var(--muted); max-width: 56ch; line-height: 1.6; }
.hero .cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* terminal card */
.term { margin-top: 56px; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; background: var(--panel); box-shadow: 0 30px 80px -40px rgba(0,0,0,.8); }
.hero-grid .term { margin-top: 0; }
@media(max-width: 1000px){ .hero-grid .term { margin-top: 44px; } }
.term.compact { margin-top: 34px; }
.term .bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.term .bar .tdot { width: 11px; height: 11px; border-radius: 50%; background: #2a3038; }
.term .bar .title { margin-left: 10px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.term .body { padding: 20px 22px; font-family: var(--mono); font-size: 13.5px; line-height: 1.85; overflow-x: auto; }
.term .body .c-dim { color: var(--dim); }
.term .body .c-acc { color: var(--accent); }
.term .body .c-blue { color: var(--blue); }
.term .body .c-amber { color: var(--amber); }
.term .body .c-mut { color: var(--muted); }
.cursor { display: inline-block; width: 8px; height: 16px; background: var(--accent); vertical-align: text-bottom; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 56px 0; position: relative; }
section.tight { padding: 40px 0; }
.sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 40px; border-top: 1px solid var(--line); padding-top: 22px; }
.sec-head .idx { font-family: var(--mono); font-size: 13px; color: var(--accent-dim); }
.sec-head h2 { font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.02em; font-weight: 600; }
.sec-head .desc { margin-left: auto; max-width: 34ch; color: var(--muted); font-size: 14px; text-align: right; }
@media(max-width:680px){ .sec-head{flex-direction:column; gap:8px;} .sec-head .desc{margin-left:0;text-align:left;} }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media(max-width:860px){ .svc-grid{ grid-template-columns: 1fr; } }
.svc { background: var(--panel); padding: 30px 26px 34px; transition: background .2s; }
.svc:hover { background: var(--bg-2); }
.svc .no { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.svc h3 { margin-top: 16px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.svc p { margin-top: 12px; color: var(--muted); font-size: 14.5px; line-height: 1.62; }
.svc ul { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc ul li { font-family: var(--mono); font-size: 12.5px; color: var(--dim); display: flex; gap: 9px; }
.svc ul li::before { content: "›"; color: var(--accent-dim); }
.svc .more { margin-top: 20px; font-family: var(--mono); font-size: 12.5px; color: var(--accent-dim); display: inline-flex; gap: 6px; transition: color .15s; }
.svc:hover .more { color: var(--accent); }

/* products grid (cards) */
.prod-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media(max-width:760px){ .prod-grid{ grid-template-columns: 1fr; } }
.prod-grid .pcard { background: var(--panel); padding: 28px 26px 30px; display: flex; flex-direction: column; transition: background .2s; }
.prod-grid .pcard:hover { background: var(--bg-2); }
.prod-grid .ptop { display: flex; justify-content: space-between; align-items: center; }
.prod-grid .purl { font-family: var(--mono); font-size: 12px; color: var(--dim); transition: color .15s; }
.prod-grid .pcard:hover .purl { color: var(--accent); }
.prod-grid h3 { font-size: 21px; font-weight: 600; margin-top: 16px; letter-spacing: -0.01em; }
.prod-grid h3 .glyph { color: var(--accent); margin-right: 4px; }
.prod-grid p { color: var(--muted); margin-top: 11px; font-size: 14px; line-height: 1.6; flex: 1; }
.prod-grid .meta { margin-top: 22px; display: flex; gap: 28px; font-family: var(--mono); font-size: 12px; }
.prod-grid .meta .k { color: var(--dim); display: block; margin-bottom: 3px; }
.prod-grid .meta .v { color: var(--text); }

.badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--accent); border: 1px solid var(--accent-dim); border-radius: 100px; padding: 4px 10px; }
.badge.soon { color: var(--muted); border-color: var(--line-2); }
.badge.beta { color: var(--blue); border-color: #2a4a5a; }

/* ── APPROACH / PRINCIPLES ───────────────────────── */
.appr { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media(max-width:760px){ .appr{grid-template-columns:1fr; gap:32px;} }
.appr .big { font-size: clamp(22px,2.8vw,30px); line-height: 1.4; letter-spacing: -0.01em; font-weight: 500; }
.appr .big b { color: var(--accent); font-weight: 500; }
.principles { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.principles .p { background: var(--panel); padding: 18px 22px; display: flex; gap: 16px; align-items: baseline; }
.principles .p .n { font-family: var(--mono); font-size: 12px; color: var(--accent-dim); min-width: 28px; }
.principles .p .t { font-weight: 600; font-size: 15px; }
.principles .p .d { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* domains strip */
.domains { display: flex; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media(max-width:680px){ .domains{flex-direction:column;} }
.domains .d { flex: 1; padding: 26px 24px; border-right: 1px solid var(--line); }
.domains .d:last-child { border-right: none; }
@media(max-width:680px){ .domains .d{ border-right:none; border-bottom:1px solid var(--line);} .domains .d:last-child{border-bottom:none;} }
.domains .d .ico { font-family: var(--mono); color: var(--accent-dim); font-size: 12px; }
.domains .d h4 { margin-top: 10px; font-size: 17px; font-weight: 600; }
.domains .d p { margin-top: 7px; color: var(--muted); font-size: 13.5px; }

/* ── PROCESS STEPS ───────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media(max-width:860px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media(max-width:520px){ .steps{ grid-template-columns: 1fr;} }
.step { background: var(--panel); padding: 26px 22px 30px; }
.step .sn { font-family: var(--mono); font-size: 12px; color: var(--accent-dim); }
.step h4 { margin-top: 14px; font-size: 17px; font-weight: 600; }
.step p { margin-top: 9px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ── SPEC / FEATURE TABLES ───────────────────────── */
.spec { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.spec .r { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.spec .r:last-child { border-bottom: none; }
.spec .r .k { padding: 15px 20px; font-family: var(--mono); font-size: 12.5px; color: var(--dim); background: var(--panel-2); border-right: 1px solid var(--line); }
.spec .r .v { padding: 15px 20px; color: var(--text); font-size: 14.5px; background: var(--panel); }
.spec .r .v .sub { color: var(--muted); font-size: 13px; margin-top: 3px; }
@media(max-width:600px){ .spec .r{ grid-template-columns: 1fr;} .spec .r .k{border-right:none;border-bottom:1px solid var(--line);} }

/* feature list (2-col) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media(max-width:860px){ .feat-grid{ grid-template-columns: repeat(2,1fr);} }
@media(max-width:560px){ .feat-grid{ grid-template-columns: 1fr;} }
.feat { background: var(--panel); padding: 24px 22px 26px; }
.feat .fi { font-family: var(--mono); font-size: 12px; color: var(--accent-dim); }
.feat h4 { margin-top: 12px; font-size: 16px; font-weight: 600; }
.feat p { margin-top: 8px; color: var(--muted); font-size: 13.5px; line-height: 1.58; }

/* product hero split */
.phero { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 24px; }
@media(max-width:860px){ .phero{ grid-template-columns:1fr; } }
.phero .cell { background: var(--panel); padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.phero h1 { font-size: clamp(30px,4vw,44px); font-weight: 600; letter-spacing: -0.02em; }
.phero h1 .glyph { color: var(--accent); }
.phero .sub { color: var(--muted); margin-top: 16px; font-size: 16px; line-height: 1.6; }
.phero .meta { margin-top: 28px; display: flex; gap: 32px; font-family: var(--mono); font-size: 12px; flex-wrap: wrap; }
.phero .meta .k { color: var(--dim); display: block; margin-bottom: 4px; }
.phero .meta .v { color: var(--text); }
.phero .cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.viz { background: var(--panel-2); position: relative; min-height: 320px; display: grid; place-items: center; overflow: hidden; }
.viz::before{content:"";position:absolute;inset:0;background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px);background-size:28px 28px;opacity:.6;}

/* field grid viz for BOABE */
.field { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; width: 72%; }
.field .plot { aspect-ratio: 1; border-radius: 3px; background: #14201a; border: 1px solid #1d3326; }
.field .plot.l1 { background: #1d3a26; } .field .plot.l2 { background: #2f5e38; } .field .plot.l3 { background: #4e8c41; }
.field .plot.hot { background: var(--accent); }
.field .ping { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); top: 18%; left: 60%; box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }

/* generic glyph viz */
.gviz { font-family: var(--mono); color: var(--accent); font-size: clamp(60px,10vw,120px); position: relative; z-index: 1; opacity: .92; }
.gviz.blue { color: var(--blue); }

/* product screenshot mock (browser-framed preview of the live product) */
.shot { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 320px; display: flex; flex-direction: column; background: var(--panel-2); }
.shot .chrome { display: flex; align-items: center; gap: 7px; padding: 10px 13px; background: var(--bg); border-bottom: 1px solid var(--line); }
.shot .chrome .cd { width: 10px; height: 10px; border-radius: 50%; background: #2a3038; }
.shot .chrome .url { margin-left: 8px; flex: 1; font-family: var(--mono); font-size: 11px; color: var(--dim); background: var(--panel); border: 1px solid var(--line); border-radius: 5px; padding: 6px 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shot .screen { flex: 1; padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; justify-content: center; }
.shot .sh-kick { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dim); }
.shot .sh-h { font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.14; }
.shot .sh-h em { font-style: normal; color: var(--accent); }
.shot .ui { border: 1px solid var(--line-2); border-radius: 8px; background: var(--panel); overflow: hidden; box-shadow: 0 20px 50px -30px rgba(0,0,0,.9); }
.shot .ui .uihead { padding: 9px 13px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; color: var(--dim); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.shot .srow { display: flex; align-items: center; gap: 10px; padding: 8px 13px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; }
.shot .srow:last-child { border-bottom: none; }
.shot .srow .m { color: var(--blue); min-width: 46px; }
.shot .srow .nm { color: var(--text); min-width: 78px; }
.shot .srow .p { color: var(--muted); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shot .srow .s { color: var(--accent); white-space: nowrap; }
.shot .srow .s.err { color: #f87171; }
.shot .srow .t { color: var(--dim); white-space: nowrap; }
.shot .live { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); }
.shot .live.blue { color: var(--blue); }

/* ── CONTACT FORM ────────────────────────────────── */
.form-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media(max-width:820px){ .form-wrap{ grid-template-columns: 1fr; gap: 28px; } }
form.op { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .field-row{ grid-template-columns: 1fr; } }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld label { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.fld label .req { color: var(--accent-dim); }
.fld input, .fld textarea, .fld select {
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 5px;
  color: var(--text); font-family: var(--sans); font-size: 14.5px; padding: 12px 14px; transition: border-color .15s;
}
.fld textarea { resize: vertical; min-height: 130px; font-family: var(--sans); }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--accent); }
.fld input::placeholder, .fld textarea::placeholder { color: var(--dim); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--mono); font-size: 12px; padding: 7px 13px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); cursor: pointer; transition: all .15s; user-select: none; }
.chip:hover { border-color: var(--dim); color: var(--text); }
.chip.on { background: var(--accent); color: #0a0b0d; border-color: var(--accent); font-weight: 500; }
.turnstile-wrap { min-height: 70px; display: flex; align-items: center; }
.form-side { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 26px 24px; }
.form-side h4 { font-size: 15px; font-weight: 600; }
.form-side .fs-item { display: flex; gap: 12px; margin-top: 18px; }
.form-side .fs-item .n { font-family: var(--mono); font-size: 12px; color: var(--accent-dim); }
.form-side .fs-item .t { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.form-side .fs-item .t b { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }
.form-status { min-height: 18px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.form-status.error { color: #f87171; }
.form-status.ok { color: var(--accent); }
.form-note { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.btn:disabled { opacity: .62; cursor: wait; }
.form-ok { display: none; border: 1px solid var(--accent-dim); border-left: 3px solid var(--accent); background: rgba(190,242,100,0.05); border-radius: 8px; padding: 26px 28px; }
.form-ok.show { display: block; }
.form-ok h3 { font-size: 18px; font-weight: 600; }
.form-ok p { color: var(--muted); margin-top: 10px; font-size: 14px; line-height: 1.6; }
.form-ok .mono { color: var(--accent-dim); }

/* ── PRO BONO ────────────────────────────────────── */
.probono { display: flex; gap: 32px; align-items: center; justify-content: space-between; border: 1px solid var(--line-2); border-left: 3px solid var(--accent); border-radius: 8px; background: var(--panel); padding: 26px 32px; }
@media(max-width:760px){ .probono{ flex-direction: column; align-items: flex-start; gap: 18px; } }
.probono .pb-label { font-family: var(--mono); font-size: 12px; color: var(--accent-dim); }
.probono h3 { font-size: 19px; font-weight: 600; margin-top: 8px; }
.probono p { color: var(--muted); font-size: 14px; margin-top: 8px; max-width: 72ch; line-height: 1.6; }
.probono .btn { white-space: nowrap; }

/* ── CONTACT CTA BLOCK ───────────────────────────── */
.cta-block { border: 1px solid var(--line-2); border-radius: 10px; padding: 56px 48px; background: linear-gradient(180deg, var(--panel), #0a0c0f); text-align: center; }
.cta-block h2 { font-size: clamp(28px,4.4vw,48px); letter-spacing: -0.025em; font-weight: 600; }
.cta-block h2 em { font-style: normal; color: var(--accent); }
.cta-block p { color: var(--muted); margin-top: 16px; max-width: 50ch; margin-inline: auto; }
.cta-block .cta { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL PROSE ─────────────────────────────────── */
.legal-body { padding: 20px 0 40px; }
.legal-body .updated { font-family: var(--mono); font-size: 12.5px; color: var(--dim); margin-bottom: 34px; }
.legal-body h2 { font-size: 20px; font-weight: 600; margin: 40px 0 14px; letter-spacing: -0.01em; display: flex; gap: 12px; align-items: baseline; }
.legal-body h2 .n { font-family: var(--mono); font-size: 13px; color: var(--accent-dim); }
.legal-body h3 { font-size: 15px; font-weight: 600; margin: 22px 0 8px; }
.legal-body p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-top: 12px; max-width: 76ch; }
.legal-body ul { margin: 14px 0 0 4px; list-style: none; max-width: 76ch; }
.legal-body ul li { color: var(--muted); font-size: 14.5px; line-height: 1.6; padding-left: 22px; position: relative; margin-top: 9px; }
.legal-body ul li::before { content: "›"; color: var(--accent-dim); position: absolute; left: 4px; font-family: var(--mono); }
.legal-body a.inline { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }
.legal-toc { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 20px 24px; margin-bottom: 30px; }
.legal-toc .lt { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-bottom: 12px; }
.legal-toc ol { list-style: none; counter-reset: t; columns: 2; column-gap: 40px; }
@media(max-width:600px){ .legal-toc ol{ columns: 1; } }
.legal-toc ol li { counter-increment: t; font-family: var(--mono); font-size: 13px; padding: 5px 0; color: var(--muted); }
.legal-toc ol li::before { content: counter(t,decimal-leading-zero) " "; color: var(--accent-dim); }
.legal-toc ol li a:hover { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 48px 0 60px; margin-top: 40px; }
footer .ftop { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
@media(max-width:760px){ footer .ftop{ grid-template-columns: 1fr 1fr; gap: 28px;} }
@media(max-width:460px){ footer .ftop{ grid-template-columns: 1fr;} }
footer .fcol .fh { font-family: var(--mono); font-size: 12px; color: var(--dim); text-transform: lowercase; letter-spacing: .04em; margin-bottom: 14px; }
footer .fcol a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color .15s; }
footer .fcol a:hover { color: var(--text); }
footer .fbrand .brand { display: flex; align-items: center; margin-bottom: 14px; font-size: 16px; color: var(--text); }
footer .fbrand p { color: var(--dim); font-size: 13px; line-height: 1.6; font-family: var(--mono); }
footer .frow { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; padding-top: 26px; }
footer .legal { font-family: var(--mono); font-size: 12px; color: var(--dim); line-height: 1.7; }
footer .flinks { display: flex; gap: 22px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
footer .flinks a:hover { color: var(--text); }

/* ── REVEAL ──────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .rv{ opacity:1; transform:none; } .dot,.field .ping{ animation:none;} }
