/* ============================================================================
   UnknxCenter — marketing site.

   Its own stylesheet rather than the product's: a landing page and an
   application want different things from their type and spacing, and a visitor
   should never wait on the app's bundle. The design TOKENS are shared, so the
   site and the product look like one company.

   TWO THINGS DECIDE THE WHOLE LAYOUT:

   1. SECTIONS ARE FULL WIDTH, content is not. Each band paints edge to edge and
      constrains only its text. A page whose background stops at 1140px reads as
      a narrow column floating on a dark desktop, however good the contents are.

   2. NOTHING IS SIZED IN FIXED PIXELS ABOVE A PHONE. Type, spacing and the
      product panels are all clamp()ed against the viewport, so the page grows
      into a 27-inch screen instead of sitting in the middle of it, and shrinks
      to 320px without a single horizontal scrollbar.

   No fonts are fetched, no analytics, no third-party scripts.
   ========================================================================== */

:root {
  --bg:          #06070A;
  --bg-lift:     #0A0C12;
  --surface-1:   #0D1016;
  --surface-2:   #141822;
  --line:        rgba(255,255,255,.08);
  --line-soft:   rgba(255,255,255,.05);
  --line-strong: rgba(255,255,255,.14);
  --text:        #F2F4F8;
  --text-2:      #A2AAB9;
  --text-3:      #6C7486;
  --indigo:      #6366F1;
  --indigo-lt:   #818CF8;
  --violet:      #A855F7;
  --emerald:     #10B981;
  --emerald-lt:  #34D399;
  --amber-lt:    #FBBF24;
  --red-lt:      #F87171;
  --r:     14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --ease:  cubic-bezier(.22,.61,.36,1);

  /* Wide on purpose. 1140 looked like a column; this fills a laptop and still
     leaves air on a very large display. */
  --max:  1320px;
  --gut:  clamp(20px, 4vw, 56px);
  --band: clamp(72px, 9vw, 132px);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* `clip`, NOT `hidden`. On the body, overflow-x:hidden silently turns the
     body into the scrolling box — which breaks window.scrollTo and stops an
     IntersectionObserver watching the viewport from ever firing. Every section
     below the hero stayed invisible because of it. `clip` contains the same
     overflow without creating a scroll container. */
  overflow-x: clip;
}
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable Text",
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.62; letter-spacing: -.008em;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--indigo-lt); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

/* ── Type ────────────────────────────────────────────────────────────────── */
h1, h2, h3 { margin: 0; letter-spacing: -.035em; line-height: 1.06; font-weight: 600; }
h1 { font-size: clamp(42px, 6.4vw, 92px); letter-spacing: -.042em; }
h2 { font-size: clamp(32px, 4.4vw, 60px); letter-spacing: -.035em; }
h3 { font-size: clamp(18px, 1.5vw, 22px); letter-spacing: -.022em; }
p  { margin: 0; }
.lede { font-size: clamp(17px, 1.45vw, 22px); color: var(--text-2); line-height: 1.55; max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(11px, .82vw, 12.5px); font-weight: 650;
  letter-spacing: .17em; text-transform: uppercase; color: var(--indigo-lt);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--emerald); box-shadow: 0 0 9px var(--emerald); }

/* ── Bands: full bleed, content constrained ──────────────────────────────── */
.band { position: relative; padding: var(--band) 0; }
.band-lift { background: var(--bg-lift); border-block: 1px solid var(--line-soft); }
.band-deep {
  background:
    radial-gradient(1200px 600px at 12% 0%, rgba(99,102,241,.13), transparent 62%),
    radial-gradient(1000px 520px at 88% 100%, rgba(168,85,247,.10), transparent 60%),
    var(--bg);
  border-block: 1px solid var(--line-soft);
}
.band-head { max-width: 62ch; margin-bottom: clamp(38px, 4.5vw, 64px); }
.band-head h2 { margin: 18px 0 20px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: clamp(13px, 1.2vw, 17px) clamp(22px, 2vw, 30px);
  border-radius: 99px; border: 1px solid transparent;
  font-size: clamp(14.5px, 1.05vw, 16.5px); font-weight: 550;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: linear-gradient(180deg, #7C7FF5, #5B52EA); color: #fff;
  box-shadow: 0 8px 30px rgba(99,102,241,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(99,102,241,.5); }
.btn-quiet { background: rgba(255,255,255,.05); border-color: var(--line-strong); color: var(--text); }
.btn-quiet:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6,7,10,.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-head.scrolled { background: rgba(6,7,10,.94); border-color: var(--line); }
.head-in { display: flex; align-items: center; justify-content: space-between; height: clamp(64px, 5vw, 82px); gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 600; font-size: clamp(16px, 1.2vw, 19px); letter-spacing: -.022em; }
.logo-mark {
  width: clamp(30px, 2.4vw, 36px); height: clamp(30px, 2.4vw, 36px);
  border-radius: 9px; background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: grid; place-items: center; color: #fff; font-size: clamp(17px, 1.4vw, 20px);
  box-shadow: 0 4px 16px rgba(99,102,241,.45);
}
.head-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.head-nav a { font-size: clamp(14px, 1vw, 15.5px); color: var(--text-2); text-decoration: none; transition: color .16s var(--ease); }
.head-nav a:hover { color: var(--text); }
.head-cta { display: flex; align-items: center; gap: 12px; }
.head-cta .btn { padding-block: 11px; }
@media (max-width: 1000px) { .head-nav { display: none; } }
@media (max-width: 520px) { .head-cta .btn-quiet { display: none; } }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0 clamp(64px, 8vw, 118px);
  background:
    radial-gradient(1300px 780px at 50% -22%, rgba(99,102,241,.26), transparent 64%),
    radial-gradient(900px 600px at 88% 8%, rgba(168,85,247,.14), transparent 62%),
    var(--bg);
}
/* A faint grid, so the space behind the headline is not flat black. */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(1100px 620px at 50% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(1100px 620px at 50% 0%, #000 35%, transparent 78%);
}
.hero-in { position: relative; z-index: 1; display: grid; gap: clamp(40px, 5vw, 72px); align-items: center; grid-template-columns: 1.02fr .98fr; }
@media (max-width: 1040px) { .hero-in { grid-template-columns: 1fr; } }
.hero h1 { margin: clamp(18px, 2vw, 26px) 0 clamp(18px, 2vw, 26px); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--indigo-lt) 10%, var(--violet) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 3vw, 42px); }
.hero-note { margin-top: 22px; font-size: clamp(13px, .95vw, 14.5px); color: var(--text-3); }
.hero-strip {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 2.4vw, 42px);
  margin-top: clamp(38px, 4.5vw, 62px); padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid var(--line-soft);
}
.hero-strip div { min-width: 130px; }
.hero-strip b { display: block; font-size: clamp(20px, 1.9vw, 27px); font-weight: 600; letter-spacing: -.028em; }
.hero-strip span { font-size: clamp(12.5px, .92vw, 14px); color: var(--text-3); }

/* ── Product panels ──────────────────────────────────────────────────────── */
.shot {
  position: relative; border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--surface-1), #08090E);
  padding: clamp(16px, 1.6vw, 24px);
  box-shadow: 0 40px 100px rgba(0,0,0,.66), 0 0 0 1px rgba(255,255,255,.03);
}
.shot::before {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding-bottom: clamp(12px, 1.2vw, 17px); border-bottom: 1px solid var(--line-soft); margin-bottom: clamp(14px, 1.4vw, 20px); }
.shot-bar i { width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,.14); }
.shot-bar span { margin-left: auto; font-size: 11.5px; color: var(--text-3); letter-spacing: .02em; }
.shot-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.shot-caller { display: flex; align-items: center; gap: 14px; min-width: 0; }
.shot-av { width: clamp(42px, 3.2vw, 50px); height: clamp(42px, 3.2vw, 50px); border-radius: 99px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, #6366F1, #2563EB); color: #fff; font-weight: 600; font-size: 14px; }
.shot-av svg { width: 20px; height: 20px; }
.shot-num { font-size: clamp(16px, 1.3vw, 20px); font-weight: 600; letter-spacing: -.022em; font-variant-numeric: tabular-nums; }
.shot-sub { font-size: clamp(12px, .92vw, 13.5px); color: var(--text-3); }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 99px;
  font-size: 11.5px; font-weight: 600; white-space: nowrap;
  border: 1px solid rgba(16,185,129,.34); background: rgba(16,185,129,.11); color: var(--emerald-lt); }
.pill-violet { border-color: rgba(168,85,247,.36); background: rgba(168,85,247,.12); color: #D8B4FE; }
.pill-amber  { border-color: rgba(245,158,11,.34); background: rgba(245,158,11,.11); color: var(--amber-lt); }
.pill .dot { width: 5px; height: 5px; border-radius: 99px; background: currentColor; animation: breathe 2.4s var(--ease) infinite; }
@keyframes breathe { 0%,100% { opacity: 1; } 50% { opacity: .32; } }
.shot-timer { text-align: center; margin: clamp(22px, 2.6vw, 36px) 0 clamp(18px, 2vw, 26px); }
.shot-time { font-size: clamp(42px, 4.4vw, 62px); font-weight: 500; line-height: 1; letter-spacing: .03em;
  font-variant-numeric: tabular-nums; text-shadow: 0 0 52px rgba(16,185,129,.3); }
.shot-cap { margin-top: 12px; font-size: 10px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3); }

.audiobar { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: var(--r);
  border: 1px solid rgba(16,185,129,.3); background: rgba(16,185,129,.07); color: #6EE7B7;
  font-size: clamp(12.5px, .95vw, 14px); font-weight: 500; }
.audiobar.muted { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.07); color: #C7CBFF; }
.audiobar .ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: rgba(16,185,129,.16); color: var(--emerald-lt); }
.audiobar.muted .ico { background: rgba(99,102,241,.16); color: var(--indigo-lt); }
.audiobar .ico svg { width: 15px; height: 15px; }
.audiobar .t { flex: 1; min-width: 0; }
.eq { display: flex; align-items: flex-end; gap: 2.5px; height: 18px; flex-shrink: 0; }
.eq i { width: 2.5px; border-radius: 2px; background: currentColor; opacity: .85; animation: eq 1.05s var(--ease) infinite; }
.eq i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.eq i:nth-child(2) { height: 13px; animation-delay: .13s; }
.eq i:nth-child(3) { height: 18px; animation-delay: .26s; }
.eq i:nth-child(4) { height: 10px; animation-delay: .39s; }
.eq i:nth-child(5) { height: 15px; animation-delay: .52s; }
.eq.still i { animation: none; transform: scaleY(.32); opacity: .4; }
@keyframes eq { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.shot-ctl { display: flex; align-items: flex-start; justify-content: center; gap: clamp(14px, 1.8vw, 26px); margin-top: clamp(20px, 2.2vw, 30px); flex-wrap: wrap; }
.ctl { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.ctl b { width: clamp(48px, 3.8vw, 58px); height: clamp(48px, 3.8vw, 58px); border-radius: 99px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  transition: transform .18s var(--ease), background .2s var(--ease); }
.ctl:hover b { transform: translateY(-3px); background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)); }
.ctl b svg { width: 40%; height: 40%; }
.ctl.end b { background: linear-gradient(180deg, #F35C5C, #E02D2D); border-color: rgba(248,113,113,.5); box-shadow: 0 6px 22px rgba(239,68,68,.36); }
.ctl.end b svg { transform: rotate(134deg); }
.ctl s { text-decoration: none; font-size: clamp(11px, .85vw, 12.5px); font-weight: 550; color: var(--text-2); }
.ctl.end s { color: var(--red-lt); }

/* Rows used by the floor, team and transfer panels. */
.rows { display: flex; flex-direction: column; gap: 10px; }
.row-item { display: flex; align-items: center; gap: 13px; padding: clamp(11px, 1vw, 15px) clamp(12px, 1.1vw, 16px);
  border-radius: var(--r); border: 1px solid var(--line); background: rgba(255,255,255,.022);
  transition: border-color .2s var(--ease), background .2s var(--ease); }
.row-item:hover { border-color: rgba(99,102,241,.32); background: rgba(255,255,255,.045); }
.row-av { width: 36px; height: 36px; border-radius: 99px; display: grid; place-items: center; flex-shrink: 0;
  font-size: 12.5px; font-weight: 600; color: #fff; background: linear-gradient(135deg, #6366F1, #2563EB); }
.row-av.violet { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.row-av.amber  { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.row-av.dim    { background: rgba(255,255,255,.07); color: var(--text-3); }
.row-id { flex: 1; min-width: 0; }
/* Both are spans inside a span, so they sit on one line and read as one
   run-on string until they are told to stack. */
.row-name, .row-meta { display: block; }
.row-name { font-size: clamp(13.5px, 1vw, 15px); font-weight: 550; }
.row-meta { font-size: clamp(11.5px, .85vw, 13px); color: var(--text-3); }
.tag { font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 99px; white-space: nowrap; flex-shrink: 0; }
.tag.on   { border: 1px solid rgba(16,185,129,.32); background: rgba(16,185,129,.1); color: var(--emerald-lt); }
.tag.busy { border: 1px solid rgba(99,102,241,.32); background: rgba(99,102,241,.1); color: var(--indigo-lt); }
.tag.off  { border: 1px solid var(--line); color: var(--text-3); }
.mini { font-size: 12px; font-weight: 550; padding: 8px 14px; border-radius: 9px; white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(165,180,252,.5); background: linear-gradient(180deg, #7C7FF5, #5B52EA); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 16px; border-radius: 99px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.035); color: var(--text-2); font-size: clamp(12.5px, .95vw, 14px); font-weight: 500; }
.chip.on { background: linear-gradient(180deg, #7C7FF5, #5B52EA); border-color: rgba(165,180,252,.55); color: #fff; box-shadow: 0 4px 14px rgba(99,102,241,.34); }

/* ── Feature grid ────────────────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(14px, 1.4vw, 22px); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }
.card {
  position: relative; padding: clamp(24px, 2.2vw, 34px); border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--surface-1); overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.card::before {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129,140,248,.4), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.card:hover { border-color: rgba(99,102,241,.34); background: var(--surface-2); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.card:hover::before { opacity: 1; }
.card .ic { display: grid; place-items: center; width: clamp(42px, 3.2vw, 50px); height: clamp(42px, 3.2vw, 50px);
  border-radius: 13px; background: rgba(99,102,241,.13); color: var(--indigo-lt); margin-bottom: clamp(16px, 1.6vw, 22px); }
.card .ic svg { width: 46%; height: 46%; }
.card h3 { margin-bottom: 11px; }
.card p { font-size: clamp(14px, 1.02vw, 16px); color: var(--text-2); }

/* ── Split rows ──────────────────────────────────────────────────────────── */
.split { display: grid; gap: clamp(36px, 5vw, 80px); align-items: center; grid-template-columns: 1fr 1.08fr; }
.split + .split { margin-top: clamp(64px, 8vw, 120px); }
.split.flip { grid-template-columns: 1.08fr 1fr; }
@media (max-width: 980px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .visual { order: -1; }
}
.split h2 { margin: 16px 0 20px; }
.split p { color: var(--text-2); font-size: clamp(15.5px, 1.15vw, 18px); }
.ticks { list-style: none; margin: clamp(24px, 2.6vw, 34px) 0 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.ticks li { display: flex; gap: 13px; font-size: clamp(14.5px, 1.05vw, 16.5px); color: var(--text-2); }
.ticks svg { width: 21px; height: 21px; color: var(--emerald-lt); flex-shrink: 0; margin-top: 2px; }
.ticks b { color: var(--text); font-weight: 600; }

.visual { border: 1px solid var(--line-strong); border-radius: var(--r-xl); background: linear-gradient(180deg, var(--surface-1), #08090E);
  padding: clamp(16px, 1.6vw, 24px); box-shadow: 0 32px 80px rgba(0,0,0,.55); }

/* ── Security ────────────────────────────────────────────────────────────── */
.secure-grid { display: grid; gap: clamp(26px, 3vw, 46px); grid-template-columns: repeat(2, 1fr); margin-top: clamp(38px, 4vw, 58px); }
@media (max-width: 820px) { .secure-grid { grid-template-columns: 1fr; gap: 28px; } }
.secure-grid h3 { margin-bottom: 10px; }
.secure-grid p { font-size: clamp(14px, 1.02vw, 16px); color: var(--text-2); }
.secure-grid .ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(16,185,129,.12); color: var(--emerald-lt); margin-bottom: 16px; }
.secure-grid .ic svg { width: 19px; height: 19px; }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps { display: grid; gap: clamp(20px, 2.4vw, 34px); grid-template-columns: repeat(3, 1fr); counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: clamp(26px, 2.6vw, 36px); border-top: 2px solid rgba(99,102,241,.32); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: clamp(-17px, -1.4vw, -15px); left: 0;
  width: 32px; height: 32px; border-radius: 99px; display: grid; place-items: center;
  font-size: 13px; font-weight: 650; background: var(--bg-lift);
  border: 1px solid rgba(99,102,241,.45); color: var(--indigo-lt);
}
.step h3 { margin-bottom: 11px; }
.step p { font-size: clamp(14px, 1.02vw, 16px); color: var(--text-2); }

/* ── Demo ────────────────────────────────────────────────────────────────── */
.cta-in { position: relative; display: grid; gap: clamp(36px, 4.5vw, 72px); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 980px) { .cta-in { grid-template-columns: 1fr; gap: 34px; } }
.form { border: 1px solid var(--line-strong); border-radius: var(--r-xl); background: linear-gradient(180deg, var(--surface-1), #08090E);
  padding: clamp(24px, 2.6vw, 42px); box-shadow: 0 32px 80px rgba(0,0,0,.55); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 11px; font: inherit; font-size: clamp(15px, 1.05vw, 16.5px);
  background: rgba(255,255,255,.035); border: 1px solid var(--line); color: var(--text);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: rgba(99,102,241,.6); background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 4px rgba(99,102,241,.16);
}
.field textarea { resize: vertical; min-height: 104px; }
.two { display: grid; gap: 15px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .two { grid-template-columns: 1fr; } }
.form-note { margin-top: 16px; font-size: 13px; color: var(--text-3); }
.form-note.bad { color: var(--red-lt); }
.form-note.good { color: var(--emerald-lt); }
.sent { text-align: center; padding: 22px 6px 8px; }
.sent-ic { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 99px;
  background: rgba(16,185,129,.14); color: var(--emerald-lt); margin-bottom: 20px; }
.sent-ic svg { width: 26px; height: 26px; }
.sent h3 { margin-bottom: 11px; }
.sent p { font-size: 15px; color: var(--text-2); max-width: 36ch; margin: 0 auto; }

.shot-av.violet { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.ctl.go b { background: linear-gradient(180deg, #34D399, #059669); border-color: rgba(52,211,153,.5);
  box-shadow: 0 6px 22px rgba(16,185,129,.34); }
.ctl.go b svg { stroke: #04241a; }
.ctl.go s { color: var(--emerald-lt); }

/* The write-up panel. Inline styles are not available here: the site sets
   style-src 'self' with no unsafe-inline, exactly like the application, so
   every one of these has to be a class. */
.panel-body { padding: 4px 2px 0; }
.vlabel { font-size: clamp(11.5px, .85vw, 13px); color: var(--text-3); margin-bottom: 12px; }
.vlabel.spaced { margin: 20px 0 10px; }
.row-item.top { align-items: flex-start; }
.note-text { font-weight: 450; color: var(--text-2); }
.rows.spaced { margin-top: 14px; }
.h2-tight { margin: 18px 0 20px; }
.btn-block { width: 100%; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--line-soft); padding: clamp(36px, 4vw, 58px) 0 clamp(44px, 5vw, 70px); background: var(--bg-lift); }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-in p { font-size: 14px; color: var(--text-3); }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: 14px; color: var(--text-3); text-decoration: none; transition: color .16s var(--ease); }
.foot-links a:hover { color: var(--text-2); }

/* ── Scroll reveal ───────────────────────────────────────────────────────────
   Applied by site.js only when IntersectionObserver exists. Without the script
   nothing is hidden — a page whose content depends on JavaScript to become
   visible is a page that is blank when the script fails. */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); }
.js-reveal .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-reveal .reveal.d1.in { transition-delay: .08s; }
.js-reveal .reveal.d2.in { transition-delay: .16s; }
.js-reveal .reveal.d3.in { transition-delay: .24s; }
.js-reveal .reveal.d4.in { transition-delay: .32s; }
.js-reveal .reveal.d5.in { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}
