/* ==================================================================
   Autonomous Interactions — v3 "calm premium" design system
   Near-black, hairline glass, one muted accent, italic serif accents.
   ================================================================== */
:root {
  --bg: #0a0b0e;
  --bg-2: #0e1014;
  --panel: rgba(255, 255, 255, 0.028);
  --panel-hi: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.18);
  --ink: #f2f4f6;
  --muted: #9ba1ab;
  --faint: #5c626d;
  --acc: #8ab8d8;            /* muted glacier blue */
  --acc-soft: rgba(138, 184, 216, 0.14);
  --warm: #d8b48a;           /* quiet brass, used rarely */

  --sans: "Instrument Sans", -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --measure: 60ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1180px;
  --r: 18px;
  --ease: cubic-bezier(0.22, 0.68, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (pointer: fine) { body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: none; } }

a { color: inherit; }
::selection { background: var(--acc); color: #0a0b0e; }

/* WebGL background canvas */
#bg {
  position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0;
  pointer-events: none;
}
#bg + .veil {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,11,14,0.25), rgba(10,11,14,0.78) 52%, rgba(10,11,14,0.95));
}
main, footer { position: relative; z-index: 1; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
p { max-inline-size: var(--measure); }

h1, h2, h3 { font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; text-wrap: balance; }
h1 em, h2 em, h3 em, .em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: 0; color: var(--acc);
}

/* ── cursor ─────────────────────────────────── */
.cur-dot, .cur-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99; border-radius: 50%; opacity: 0; will-change: transform; }
.cur-dot { width: 6px; height: 6px; background: var(--ink); }
.cur-ring {
  /* no backdrop-filter here: a moving backdrop-filter element over the
     animating canvas forces Chrome to re-raster the blur every frame */
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.045);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
body.cur-hot .cur-ring { width: 64px; height: 64px; border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
body.cur-hot .cur-dot { opacity: 0 !important; }
body.cur-text .cur-ring { width: 4px; height: 28px; border-radius: 2px; }
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* ── progress hairline ──────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--acc); z-index: 95; opacity: 0.9; }

/* ── header ─────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(10, 11, 14, 0.6);
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
header.hide { transform: translateY(-100%); }
.bar { display: flex; align-items: center; justify-content: space-between; height: 3.9rem; gap: 1rem; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo .mark { display: block; }
.logo .mark .core { filter: drop-shadow(0 0 7px var(--acc)); transition: filter 0.3s; }
.logo .mark .sat { transform-origin: 15px 15px; transition: transform 0.6s var(--ease); }
.logo:hover .mark .core { filter: drop-shadow(0 0 12px var(--acc)); }
.logo:hover .mark .sat { transform: rotate(90deg); }
nav.links { display: flex; gap: 0.2rem; overflow-x: auto; scrollbar-width: none; }
nav.links::-webkit-scrollbar { display: none; }
nav.links a {
  font-size: 0.86rem; color: var(--muted); text-decoration: none;
  padding: 0.42rem 0.85rem; border-radius: 999px; white-space: nowrap;
  transition: color 0.2s, background 0.25s;
}
nav.links a:hover { color: var(--ink); background: var(--panel-hi); }
nav.links a.act { color: var(--ink); background: var(--panel-hi); box-shadow: inset 0 0 0 1px var(--line); }

/* ── booking widget + newsletter ───────────────── */
.booking { cursor: default; }
.bk-note { color: var(--muted); font-size: 0.9rem; }
.bk-days, .bk-slots { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.bk-days { margin-bottom: 0.9rem; }
.bk-slots { margin-bottom: 1.1rem; }
.bk-chip {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em;
  color: var(--muted); background: var(--panel); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.42rem 0.85rem; cursor: pointer;
  transition: color 0.2s, background 0.25s, border-color 0.25s;
}
.bk-chip:hover { color: var(--ink); border-color: var(--line-hi); }
.bk-chip.on { color: #0a0b0e; background: var(--acc); border-color: var(--acc); }
.bk-chosen {
  font-family: var(--mono); font-size: 0.78rem; color: var(--acc);
  border-left: 2px solid var(--acc); padding-left: 0.8rem; margin-bottom: 1.1rem;
}
.bk-form { margin-top: 0.4rem; }
.nl-bento { max-width: 620px; }
.nl-form { display: flex; gap: 0.6rem; margin: 1rem 0 0.8rem; flex-wrap: wrap; }
.nl-form input {
  flex: 1; min-width: 220px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; color: var(--ink); padding: 0.7rem 0.95rem;
  font: inherit; font-size: 0.92rem;
}
.nl-form input:focus { outline: none; border-color: var(--acc); }

/* ── hamburger + dropdown nav (mobile) ─────────── */
.menu-btn { display: none; }

@media (max-width: 720px) {
  .menu-btn {
    display: grid; place-items: center; align-content: center; gap: 6px;
    width: 44px; height: 44px; margin-right: -10px;
    background: none; border: 0; cursor: pointer; padding: 0;
  }
  .menu-btn span {
    display: block; width: 21px; height: 1.5px; background: var(--ink);
    transition: transform 0.35s var(--ease);
  }
  header.open .menu-btn span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
  header.open .menu-btn span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

  nav.links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    padding: 0.5rem var(--pad) 0.9rem;
    background: rgba(10, 11, 14, 0.97);
    border-bottom: 1px solid var(--line);
    overflow: visible;
    opacity: 0; pointer-events: none; transform: translateY(-10px);
    transition: opacity 0.28s var(--ease), transform 0.34s var(--ease);
  }
  header.open nav.links { opacity: 1; pointer-events: auto; transform: none; }
  nav.links a { font-size: 0.95rem; padding: 0.7rem 0.85rem; border-radius: 12px; }
}

/* ── type scaffolding ───────────────────────── */
.kicker {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem;
}
.kicker::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 0.45vw + 0.95rem, 1.22rem); line-height: 1.7; }
.lead strong, p strong { color: var(--ink); font-weight: 600; }

.page-hero { padding: clamp(8.5rem, 17vh, 11.5rem) 0 clamp(3rem, 7vh, 5rem); }
.page-hero h1 { font-size: clamp(2.7rem, 3.6vw + 1.2rem, 5rem); max-width: 18ch; }
.page-hero .lead { margin-top: 1.7rem; }
section { padding: clamp(3.8rem, 9vh, 6.5rem) 0; }
.sec-head { margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.sec-head h2 { font-size: clamp(1.9rem, 2.2vw + 0.9rem, 3.1rem); max-width: 24ch; }
.sec-head .lead { margin-top: 1rem; }
.hr { border: none; border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }

/* ── reveals: blur-rise, staggered ──────────── */
.js .rv { opacity: 0; transform: translateY(34px); filter: blur(10px); }
.js .rv.in { opacity: 1; transform: none; filter: blur(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.ln { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.ln > span { display: inline-block; }
.js .ln > span { transform: translateY(115%); }
.js .ln.in > span, .js .in-lines .ln > span { transform: none; transition: transform 1s var(--ease); }
.js .in-lines .ln:nth-child(2) > span { transition-delay: 0.12s; }
.js .in-lines .ln:nth-child(3) > span { transition-delay: 0.24s; }

/* parallax decorations */
[data-px] { will-change: transform; }

/* ── buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  padding: 0.85rem 1.6rem; border-radius: 999px; border: 1px solid var(--line-hi);
  background: var(--panel); color: var(--ink); cursor: pointer;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  will-change: transform;
}
.btn:hover { border-color: rgba(255,255,255,0.4); background: var(--panel-hi); box-shadow: 0 8px 30px -8px rgba(138,184,216,0.25); }
.btn-solid { background: var(--ink); color: #0a0b0e; border-color: transparent; }
.btn-solid:hover { background: #fff; box-shadow: 0 10px 36px -8px rgba(255,255,255,0.3); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 125%; }

.ulink {
  text-decoration: none; color: var(--ink); font-weight: 500; position: relative; padding-bottom: 2px;
  background-image: linear-gradient(var(--acc), var(--acc));
  background-repeat: no-repeat; background-size: 0% 1px; background-position: 0 100%;
  transition: background-size 0.35s var(--ease), color 0.2s;
}
.ulink:hover { background-size: 100% 1px; color: var(--acc); }

/* ── bento system ───────────────────────────── */
.bento-grid { display: grid; gap: 1rem; grid-template-columns: repeat(6, 1fr); }
.b-2 { grid-column: span 2; } .b-3 { grid-column: span 3; } .b-4 { grid-column: span 4; } .b-6 { grid-column: span 6; }
@media (max-width: 960px) { .b-2 { grid-column: span 3; } .b-4 { grid-column: span 6; } }
@media (max-width: 640px) { .b-2, .b-3, .b-4 { grid-column: span 6; } }

.bento {
  position: relative; border-radius: var(--r); padding: 1.7rem 1.6rem;
  background: var(--panel); border: 1px solid var(--line);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column; gap: 0.55rem;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.bento:hover { background: var(--panel-hi); border-color: var(--line-hi); transform: translateY(-4px); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); }
/* top light edge — the "glossy" cue */
.bento::before {
  content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0.5; transition: opacity 0.35s;
}
.bento:hover::before { opacity: 1; }
/* pointer-tracked sheen */
.bento .sheen {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; border-radius: inherit;
  background: radial-gradient(520px circle at var(--gx, 50%) var(--gy, 0%), rgba(160, 200, 230, 0.10), transparent 60%);
  transition: opacity 0.4s;
}
.bento:hover .sheen { opacity: 1; }
.bento .tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.bento .tag .st { color: var(--acc); }
.bento h3 { font-size: 1.28rem; font-weight: 600; }
.bento p { color: var(--muted); font-size: 0.94rem; }
.bento .go { margin-top: auto; padding-top: 1rem; font-size: 0.85rem; color: var(--acc); display: inline-flex; gap: 0.4rem; align-items: center; transition: gap 0.3s var(--ease); }
.bento:hover .go { gap: 0.8rem; }

/* border-beam: traveling light on featured bento */
.beam { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; }
.beam::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--ba, 0deg), transparent 0 340deg, rgba(170, 210, 240, 0.9) 355deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: beam 6s linear infinite;
}
@property --ba { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes beam { to { --ba: 360deg; } }

/* line-draw decoration inside bentos (svg) */
.bento svg .draw { stroke-dasharray: 600; stroke-dashoffset: 600; }
.bento.in svg .draw { animation: draw 2.4s var(--ease) 0.3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.chip { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 0.18rem 0.6rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }

.filter-chip {
  cursor: pointer; background: var(--panel); font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 1.05rem;
  transition: all 0.25s var(--ease);
}
.filter-chip:hover { color: var(--ink); border-color: var(--line-hi); transform: translateY(-2px); }
.filter-chip.on { background: var(--ink); color: #0a0b0e; border-color: transparent; font-weight: 600; }

/* ── metrics band ───────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: 1.6rem 1.4rem; position: relative; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.stat::before { content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); opacity: 0.45; }
.stat:hover { border-color: var(--line-hi); background: var(--panel-hi); }
.stat .n { font-size: clamp(2rem, 1.6vw + 1.4rem, 2.9rem); font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat .n em { font-size: 0.55em; vertical-align: 0.25em; }
.stat .l { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-top: 0.5rem; }

/* ── home hero ──────────────────────────────── */
.home-hero { min-height: 92svh; display: flex; flex-direction: column; justify-content: center; padding-top: 6rem; position: relative; }
.home-hero h1 { font-size: clamp(3rem, 5.2vw + 1.2rem, 6.6rem); max-width: 14ch; }
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.5rem; align-items: center; }
.scroll-hint { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); }
.scroll-hint::after { content: ""; display: block; width: 1px; height: 34px; margin: 0.7rem auto 0; background: linear-gradient(var(--faint), transparent); animation: descend 2.2s var(--ease) infinite; }
@keyframes descend { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── feature rows (alternating) ─────────────── */
.feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(2.6rem, 7vh, 4.5rem) 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature.flip > .fig { order: -1; }
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; } .feature.flip > .fig { order: 0; } }
.feature h3 { font-size: clamp(1.6rem, 1.8vw + 0.9rem, 2.3rem); margin-bottom: 0.9rem; }
.feature p { color: var(--muted); }
.feature .fig {
  border-radius: var(--r); border: 1px solid var(--line); background: var(--panel);
  padding: 1.4rem; position: relative; overflow: hidden; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.feature .fig::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); opacity: 0.5; }
.feature .fig svg { width: 100%; height: auto; display: block; }

/* ── sticky-stack case studies ──────────────── */
.stack { position: relative; }
.case {
  position: sticky; top: calc(4.6rem + var(--i, 0) * 0.85rem);
  border-radius: var(--r); border: 1px solid var(--line);
  background: linear-gradient(180deg, #14161b, #0e1014);
  padding: clamp(1.7rem, 4vw, 2.7rem); margin-bottom: clamp(1.5rem, 4vh, 2.2rem);
  box-shadow: 0 -18px 50px -22px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.case::before { content: ""; position: absolute; top: 0; left: 6%; right: 6%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); opacity: 0.6; }
.case .tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--acc); display: block; margin-bottom: 0.85rem; }
.case h3 { font-size: clamp(1.45rem, 1.7vw + 0.8rem, 2.1rem); margin-bottom: 0.8rem; }
.case p { color: var(--muted); margin-bottom: 0.75rem; }
.case code { font-family: var(--mono); font-size: 0.85em; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 0.04em 0.35em; }

/* ── swap ledger (systems) ──────────────────── */
.swap { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--panel); }
.swap-row {
  display: grid; grid-template-columns: 1fr 3rem 1.4fr 7.5rem; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--line); transition: background 0.25s;
}
.swap-row:last-child { border-bottom: none; }
.swap-row:hover { background: var(--panel-hi); }
.swap-row .from { color: var(--faint); position: relative; display: inline-block; }
.swap-row .from::after { content: ""; position: absolute; left: 0; top: 52%; height: 1px; width: 100%; background: var(--warm); transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.4s var(--ease); }
.swap-row:hover .from::after { transform: scaleX(1); }
.swap-row .arrow { color: var(--acc); text-align: center; font-family: var(--mono); transition: transform 0.3s var(--ease); }
.swap-row:hover .arrow { transform: translateX(6px); }
.swap-row .to { font-weight: 600; }
.swap-row .to em { font-style: normal; color: var(--acc); }
.swap-row .save { font-family: var(--mono); font-size: 0.72rem; color: var(--warm); text-align: right; }
@media (max-width: 760px) { .swap-row { grid-template-columns: 1fr; gap: 0.2rem; } .swap-row .arrow, .swap-row .save { text-align: left; } }

/* ── pipeline (method) ──────────────────────── */
.pipe-wrap { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: clamp(1rem, 3vw, 2.4rem); overflow-x: auto; position: relative; }
.pipe-wrap::before { content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); opacity: 0.5; }
.pipe-wrap svg { min-width: 640px; width: 100%; height: auto; display: block; }

/* ── timeline (about) ───────────────────────── */
.tl { position: relative; padding-left: 2.3rem; max-width: 50rem; }
.tl::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--acc), transparent); opacity: 0.5; }
.tl-item { position: relative; padding-bottom: 2.3rem; }
.tl-item::before { content: ""; position: absolute; left: -2.3rem; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--acc); box-shadow: 0 0 16px rgba(138,184,216,0.5); }
.tl-item .when { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--acc); }
.tl-item h3 { font-size: 1.3rem; margin: 0.45rem 0 0.45rem; }
.tl-item p { color: var(--muted); }

/* ── form (contact) ─────────────────────────── */
.form { display: grid; gap: 1.05rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 640px) { .form .row2 { grid-template-columns: 1fr; } }
.field label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 0.9rem 1.05rem;
  outline: none; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--acc); background: var(--panel-hi); box-shadow: 0 0 0 4px var(--acc-soft); }
.form-note { font-size: 0.82rem; color: var(--faint); }
.form-status { font-family: var(--mono); font-size: 0.85rem; min-height: 1.4rem; }
.form-status.ok { color: #9fd8b0; }
.form-status.err { color: #e8a098; }

/* ── CTA band ───────────────────────────────── */
.cta-band { text-align: center; padding: clamp(4.5rem, 12vh, 7.5rem) 0; border-top: 1px solid var(--line); }
.cta-band h2 { font-size: clamp(2.1rem, 3.4vw + 0.8rem, 4.2rem); max-width: 19ch; margin: 0 auto 2.2rem; }

/* ── footer ─────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 2rem 0 2.4rem; background: rgba(10,11,14,0.82); }
footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; }
footer, footer a { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
footer a { text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--acc); }
footer .pages { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* ── reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .rv { opacity: 1; transform: none; filter: none; }
  .js .ln > span { transform: none; }
  html { scroll-behavior: auto; }
  .cur-dot, .cur-ring { display: none; }
}
