/* ============================================================
   tradi3.com - operator console
   GitHub-dark family palette, Archivo + IBM Plex Mono, no slop.
   ============================================================ */

@font-face {
  font-family: Archivo;
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0a0e14;
  --panel: #0f141b;
  --panel-2: #141a23;
  --ink: #0d1117;
  --line: #1f2630;
  --line-2: #2d3644;
  --fg: #e6edf3;
  --muted: #94a1ae;
  --quiet: #67717e;
  --green: #3fb950;
  --green-deep: #238636;
  --blue: #58a6ff;
  --amber: #d29922;
  --red: #f85149;
  --radius: 10px;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: Archivo, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--fg);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; height: auto; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; font: inherit; background: none; padding: 0; cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: #04140a; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 60;
  padding: 12px 16px; border-radius: var(--radius);
  color: #04140a; background: var(--green);
  font: 700 12px/1 var(--mono);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 66px; padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgb(10 14 20 / 86%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--green); background: var(--ink);
  font: 700 12px/1 var(--mono);
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font: 800 13px/1 var(--sans); letter-spacing: 0.14em; }
.brand-copy small { color: var(--quiet); font: 500 10px/1 var(--mono); }

.site-nav { display: flex; gap: 26px; justify-self: center; }
.site-nav a {
  padding: 24px 2px 22px;
  color: var(--muted);
  font: 500 12.5px/1 var(--mono);
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--fg); }
.site-nav a[aria-current] { color: var(--green); border-bottom-color: var(--green); }

.nav-end { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.motion-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 12px;
  border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--muted); background: var(--panel);
}
.motion-toggle > span { width: 8px; height: 8px; border: 1px solid var(--quiet); border-radius: 50%; }
.motion-toggle[aria-pressed="true"] > span { border-color: var(--green); background: var(--green); }
.motion-toggle b { font: 700 10.5px/1 var(--mono); }
.nav-cta {
  display: inline-flex; align-items: center; height: 36px; padding: 0 14px;
  border-radius: 8px; border: 1px solid rgb(63 185 80 / 45%);
  color: #06170c; background: var(--green);
  font: 700 12px/1 var(--mono);
  transition: background 0.2s;
}
.nav-cta:hover { background: #46c95a; }

/* ---------- shared prompt colors ---------- */
.p-user { color: var(--green); font-weight: 700; }
.p-dim { color: var(--quiet); }
.p-path { color: var(--blue); }
.t-fg { color: var(--fg); }
.t-red { color: var(--red); }
.t-amber { color: var(--amber); }
.t-green { color: var(--green); }
.t-blue { color: var(--blue); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 5vw, 84px); align-items: center;
  width: min(100%, var(--max)); margin: 0 auto;
  padding: clamp(64px, 9vh, 110px) var(--gutter) clamp(48px, 6vh, 72px);
}
.hero > * { min-width: 0; }
.eyebrow { color: var(--green); font: 700 12px/1.4 var(--mono); letter-spacing: 0.02em; }
.hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.01;
  text-wrap: balance;
}
.hero-lede { max-width: 540px; color: var(--muted); font-size: clamp(17px, 1.35vw, 19.5px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px;
  border-radius: 8px; border: 1px solid var(--line-2);
  font: 700 13px/1 var(--mono);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.button-primary { border-color: rgb(63 185 80 / 45%); color: #06170c; background: var(--green); }
.button-primary:hover { background: #46c95a; }
.button-secondary { color: var(--fg); background: var(--panel); }
.button-secondary:hover { border-color: var(--quiet); }
.hero-ledger { display: flex; flex-wrap: wrap; gap: 6px 0; margin-top: 30px; color: var(--quiet); font: 500 11.5px/1.6 var(--mono); }
.hero-ledger span + span::before { content: "·"; margin: 0 10px; color: var(--line-2); }

/* console card */
.hero-console {
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 24px 70px -32px rgb(0 0 0 / 80%);
  overflow: hidden;
}
.console-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.console-bar i { margin-left: 8px; color: var(--quiet); font: 500 11.5px/1 var(--mono); font-style: normal; }
.console-bar em {
  display: inline-flex; align-items: center; gap: 6px; margin-left: auto;
  color: var(--green); font: 700 10.5px/1 var(--mono); font-style: normal; letter-spacing: 0.08em;
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot-r { background: rgb(248 81 73 / 72%); }
.dot-a { background: rgb(210 153 34 / 72%); }
.dot-g { background: rgb(63 185 80 / 72%); }
.led { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
html.motion-enabled .led { animation: pulse 2.4s ease-in-out infinite; }

.console-body { padding: 18px 18px 20px; font: 500 13.5px/1.95 var(--mono); overflow-x: auto; }
.console-body p { white-space: nowrap; }
.con-out { color: var(--muted); }
.t-badge {
  display: inline-block; padding: 1px 8px;
  border: 1px solid rgb(63 185 80 / 45%); border-radius: 5px;
  color: var(--green); background: rgb(35 134 54 / 15%);
  font-weight: 700; letter-spacing: 0.04em;
}
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--green); vertical-align: -2px; }
html.motion-enabled .blink { animation: blink 1.06s steps(1) infinite; }

@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- status strip ---------- */
.status-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
  padding: 13px var(--gutter);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted); font: 500 12px/1.5 var(--mono);
}
.status-strip .strip-label { color: var(--quiet); }
.status-strip i { color: var(--line-2); font-style: normal; }
.status-strip .strip-end { margin-left: auto; color: var(--quiet); }

/* ---------- sections ---------- */
.work-section, .proof-section, .services-section, .process-section, .contact-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vh, 108px) var(--gutter) 0;
}
.contact-section { padding-bottom: clamp(80px, 10vh, 120px); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 4.5vh, 52px); }
.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- reveal (motion-gated) ---------- */
html.js.motion-enabled .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js.motion-enabled .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- work cases ---------- */
.case {
  display: grid;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}
.case-featured { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); margin-bottom: 22px; }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.case > *, .security-case > * { min-width: 0; }

.case-media { display: block; position: relative; border: 0; text-align: left; }
.case-media picture, .case-media img { width: 100%; }
.case-media img { border-top: 1px solid var(--line); }
.shot-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  background: var(--panel-2);
}
.shot-bar .dot { width: 8px; height: 8px; }
.shot-bar i {
  margin-left: 7px; color: var(--quiet);
  font: 500 11px/1 var(--mono); font-style: normal;
}
.case-media-button { cursor: zoom-in; }
.case-media:hover .shot-bar i { color: var(--muted); }

.case-body { display: grid; gap: 12px; align-content: start; padding: clamp(20px, 2.4vw, 30px); }
.case-featured .case-body { align-content: center; border-left: 1px solid var(--line); }
.case-type { color: var(--quiet); font: 500 11.5px/1 var(--mono); }
.tag-live { margin-left: 6px; color: var(--green); font-weight: 700; }
.case-body h3 { font-size: clamp(21px, 2vw, 26px); font-weight: 800; letter-spacing: -0.025em; }
.case-body > p:not(.case-type) { color: var(--muted); font-size: 15.5px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 2px 0 0; padding: 0; list-style: none; }
.case-tags li {
  padding: 4px 9px;
  border: 1px solid var(--line); border-radius: 5px;
  color: var(--muted); background: var(--ink);
  font: 500 11px/1.4 var(--mono);
}
.case-link-row { display: flex; flex-wrap: wrap; gap: 18px; }
.text-link { color: var(--blue); font: 700 13px/1.4 var(--mono); width: fit-content; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* security case */
.security-case {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  margin-top: 22px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}
.trace-card { display: grid; grid-template-rows: auto 1fr; background: var(--ink); border-right: 1px solid var(--line); }
.trace-body { align-self: center; padding: 26px 24px; font: 500 14px/2.1 var(--mono); color: var(--muted); overflow-x: auto; }
.trace-body p { display: flex; white-space: nowrap; max-width: 420px; }
.trace-right { margin-left: auto; padding-left: 24px; }
.security-case .case-body { padding: clamp(22px, 2.6vw, 32px); align-content: center; }
.security-profile-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.proof-card {
  display: grid; grid-template-rows: auto 1fr;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: var(--quiet); }
.proof-card figure { margin: 0; border-bottom: 1px solid var(--line); }
.proof-card img { width: 100%; aspect-ratio: 1.44 / 1; object-fit: cover; object-position: top; }
.proof-card > span { display: flex; align-items: baseline; gap: 10px; padding: 13px 15px; }
.proof-card b { color: var(--quiet); font: 500 10.5px/1 var(--mono); }
.proof-card strong { font: 700 13px/1.3 var(--mono); color: var(--fg); }
.proof-card i { margin-left: auto; color: var(--quiet); font-style: normal; transition: color 0.2s, transform 0.2s; }
.proof-card:hover i { color: var(--green); transform: translate(2px, -2px); }

.proof-record {
  grid-column: 1 / -1;
  display: grid; gap: 4px;
  padding: 20px 22px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--ink);
}
.record-title { color: var(--quiet); font: 700 11.5px/1 var(--mono); margin-bottom: 10px; }
.proof-record ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.proof-record li {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 14px; align-items: baseline;
  font: 500 13px/1.5 var(--mono);
}
.rec-plat { color: var(--fg); font-weight: 700; }
.rec-what { color: var(--muted); }
.rec-mark { color: var(--quiet); }
.proof-record nav { display: flex; gap: 18px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.proof-record nav a { color: var(--blue); font: 700 12.5px/1 var(--mono); }
.proof-record nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- services ---------- */
.service-list { border-top: 1px solid var(--line-2); }
.service-item { border-bottom: 1px solid var(--line-2); }
.service-item summary {
  display: grid; grid-template-columns: minmax(200px, 1fr) 2fr auto; gap: 16px; align-items: baseline;
  padding: 22px 4px;
  cursor: pointer; list-style: none;
}
.service-item summary::-webkit-details-marker { display: none; }
.service-item summary h3 { font-size: clamp(19px, 1.8vw, 24px); font-weight: 800; letter-spacing: -0.02em; }
.service-item summary span { color: var(--quiet); font: 500 12.5px/1.5 var(--mono); }
.service-item summary i {
  color: var(--quiet); font: 500 20px/1 var(--mono); font-style: normal;
  transition: transform 0.25s var(--ease), color 0.2s;
}
.service-item[open] summary i { transform: rotate(45deg); color: var(--green); }
.service-item summary:hover i { color: var(--green); }
.service-item > div { display: grid; gap: 12px; padding: 0 4px 24px; }
.service-item > div p { max-width: 620px; color: var(--muted); font-size: 15.5px; }
.service-item > div a { color: var(--blue); font: 700 13px/1 var(--mono); width: fit-content; }
.service-item > div a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- process ---------- */
.process-list {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
  margin: 0; padding: 0; list-style: none;
}
.process-list li {
  display: grid; gap: 9px; align-content: start;
  padding: 20px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel);
}
.process-list b { color: var(--green); font: 700 11.5px/1 var(--mono); letter-spacing: 0.06em; }
.process-list h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.process-list p { color: var(--muted); font-size: 14.5px; }

/* ---------- contact ---------- */
.contact-section { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 4.5vw, 72px); align-items: start; padding-top: 0; }
.contact-copy { display: grid; gap: 14px; align-content: start; padding-top: clamp(72px, 9vh, 108px); }
.contact-copy h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; }
.contact-copy > p { color: var(--muted); font-size: 17px; max-width: 420px; }
.contact-copy ul { display: grid; gap: 8px; margin: 6px 0 0; padding: 0; list-style: none; color: var(--muted); font: 500 13px/1.6 var(--mono); }
.contact-copy ul li::before { content: "✓ "; color: var(--green); }
.contact-mail { margin-top: 10px; color: var(--blue); font: 700 15px/1 var(--mono); width: fit-content; }
.contact-mail:hover { text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  display: grid; gap: 16px;
  margin-top: clamp(72px, 9vh, 108px);
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel);
}
.form-row { display: grid; gap: 7px; }
.form-row label { font: 700 12px/1 var(--mono); color: var(--muted); }
.form-row label span { color: var(--quiet); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 13px;
  border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--fg); background: var(--ink);
  font: 500 14px/1.5 var(--mono);
  transition: border-color 0.2s;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--quiet); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath stroke='%2394a1ae' stroke-width='1.5' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.form-submit {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px;
  border-radius: 8px; border: 1px solid rgb(63 185 80 / 45%);
  color: #06170c; background: var(--green);
  font: 700 13.5px/1 var(--mono);
  transition: background 0.2s;
}
.form-submit:hover { background: #46c95a; }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-status { color: var(--quiet); font: 500 12.5px/1.6 var(--mono); }

/* ---------- dialog ---------- */
.proof-dialog { border: 0; padding: 0; background: none; max-width: min(96vw, 1080px); width: 100%; }
.proof-dialog::backdrop { background: rgb(4 7 12 / 85%); backdrop-filter: blur(4px); }
.proof-dialog-shell {
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel); overflow: hidden;
}
.proof-dialog-shell header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.proof-dialog-shell header span { display: block; color: var(--quiet); font: 700 10px/1.5 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.proof-dialog-shell header strong { font: 700 14px/1.3 var(--sans); }
.proof-dialog-close { color: var(--muted); font: 700 12px/1 var(--mono); padding: 8px 10px; border: 1px solid var(--line-2); border-radius: 7px; background: var(--panel); }
.proof-dialog-close:hover { color: var(--fg); border-color: var(--quiet); }
.proof-dialog figure { margin: 0; max-height: min(78vh, 900px); overflow: auto; }
.proof-dialog figcaption { padding: 12px 16px; color: var(--quiet); font: 500 11.5px/1.5 var(--mono); border-top: 1px solid var(--line); }

/* ---------- footer ---------- */
.site-footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  width: min(100%, var(--max)); margin: 0 auto;
  padding: 26px var(--gutter) 34px;
  border-top: 1px solid var(--line);
}
.footer-mode { color: var(--quiet); font: 500 12px/1 var(--mono); margin-inline: auto; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer nav a { color: var(--muted); font: 700 12.5px/1 var(--mono); }
.site-footer nav a:hover { color: var(--fg); }

/* ---------- 404 ---------- */
.error-page { display: grid; min-height: 100dvh; place-items: center; padding: 24px; }
.error-shell { display: grid; gap: 16px; justify-items: start; max-width: 520px; }
.error-code { color: var(--green); font: 700 clamp(64px, 12vw, 110px)/1 var(--mono); letter-spacing: -0.05em; }
.error-shell h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; letter-spacing: -0.03em; }
.error-shell > p { color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-console { max-width: 620px; }
  .case-featured { grid-template-columns: minmax(0, 1fr); }
  .case-featured .case-body { border-left: 0; border-top: 1px solid var(--line); }
  .security-case { grid-template-columns: minmax(0, 1fr); }
  .trace-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .contact-form { margin-top: 0; }
}
@media (max-width: 720px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .site-header { height: 60px; }
  .brand-copy small { display: none; }
  .motion-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .motion-toggle { width: 36px; padding: 0; justify-content: center; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(38px, 10.4vw, 54px); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .console-body { font-size: 12.5px; }
  .case-grid { grid-template-columns: minmax(0, 1fr); }
  .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .process-list { grid-template-columns: minmax(0, 1fr); }
  .form-split { grid-template-columns: 1fr; }
  .service-item summary { grid-template-columns: 1fr auto; }
  .service-item summary span { display: none; }
  .proof-record li { grid-template-columns: 84px 1fr auto; gap: 10px; font-size: 12px; }
}
@media (max-width: 460px) {
  .console-body { line-height: 1.75; }
  .console-body p { white-space: normal; }
}
@media (max-width: 430px) {
  .brand-copy { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .status-strip .strip-end { display: none; }
}
