/* Self-hosted Inter + JetBrains Mono, latin subset.
   Replaces the Google Fonts @import that ships in the design bundle and in
   client/src/styles/tokens.css. Two reasons: the page then makes zero
   third-party requests, which lets nginx serve it under a strict CSP; and
   embedding fonts.gstatic.com sends every visitor's IP to Google, which is
   awkward for a product docs/PROJECT_PIVOT.md scopes as EU AI Act Annex III. */

@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('assets/fonts/Inter-400.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('assets/fonts/Inter-500.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('assets/fonts/Inter-600.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('assets/fonts/Inter-700.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'JetBrains Mono';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('assets/fonts/JetBrainsMono-400.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'JetBrains Mono';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('assets/fonts/JetBrainsMono-500.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'JetBrains Mono';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('assets/fonts/JetBrainsMono-600.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   RecruIQ landing page
   Ported from "RecruIQ Landing Page.dc.html" (Claude Design).

   The source is a reactive component: <sc-if>/<sc-for> elements, {{ }}
   bindings and a DCLogic class, all rendered by Claude Design's canvas
   runtime (support.js + _ds_bundle.js). None of that ships here, so the
   conditionals are resolved to static markup and the behaviour is
   reimplemented in main.js.

   Tokens are the same set as client/src/styles/tokens.css, which adopted
   this design system wholesale — so the marketing page and the app agree
   on colour, type and motion without either importing the other.
   ============================================================ */

/* ---------- tokens: dark is the base, light is the override ---------- */
:root {
  --surface-container-lowest: #0E0E0E;
  --surface:                  #131313;
  --surface-container-low:    #1C1B1B;
  --surface-container:        #211F1F;
  --surface-container-high:   #2A2828;
  --surface-container-highest:#322F2F;

  --primary:           #3DFFB5;
  --primary-container: #1FB57B;
  --on-primary:        #131313;
  --secondary:         #7AD9B3;
  --tertiary:          #FFB347;

  --on-surface:        #E5E2E1;
  --on-surface-variant:#A8A4A3;
  --on-surface-muted:  #6F6B6A;

  --ghost-border:      rgba(70, 69, 84, 0.15);
  --gradient-primary:  linear-gradient(135deg, #3DFFB5 0%, #1FB57B 100%);
  /* Mint reads well on the dark canvas but fails against the light one, and
     the design's light block overrides --secondary/--tertiary while leaving
     --primary alone. Anything that paints TEXT or an icon in the accent uses
     this instead, so it can darken in light mode; fills and gradients keep
     --primary because they carry dark text on top. */
  --accent-text:       var(--primary);
  --gradient-tertiary: linear-gradient(135deg, #FFB347 0%, #E08A1A 100%);

  --elevation-2: 0 8px 24px rgba(0,0,0,0.25);
  --glass-bg:    rgba(19, 19, 19, 0.70);

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Menlo", monospace;

  --easing-standard: cubic-bezier(0.2, 0, 0, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;

  --wrap: 1100px;
  --gutter: clamp(20px, 4vw, 40px);
}

[data-theme="light"] {
  --surface:                  #FAF9F8;
  --surface-container-lowest: #FFFFFF;
  --surface-container-low:    #F3F1EF;
  --surface-container:        #EEECE9;
  --surface-container-high:   #E5E2DE;
  --surface-container-highest:#D9D5D1;
  --on-surface:        #1A1918;
  --on-surface-variant:#5C5856;
  --on-surface-muted:  #8C8885;
  --secondary:         #1F9A6C;
  --tertiary:          #C97A12;
  --gradient-tertiary: linear-gradient(135deg,#E9A63C 0%,#C97A12 100%);
  --ghost-border:      rgba(26,25,24,0.12);
  --glass-bg:          rgba(250,249,248,0.72);
  --elevation-2:       0 8px 24px rgba(26,25,24,0.08);
  --accent-text:       #1F9A6C;   /* same green the design uses for --secondary */
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background var(--duration-base) var(--easing-standard);
}

a { color: var(--on-surface-variant); text-decoration: none; transition: color var(--duration-fast) var(--easing-standard); }
a:hover { color: var(--on-surface); }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; color: var(--on-surface); }
p { margin: 0; color: var(--on-surface-variant); }
button { font-family: inherit; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  padding: 10px 16px; border-radius: var(--radius-md);
  background: var(--surface-container); color: var(--on-surface);
}
.skip-link:focus { left: 8px; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-top: clamp(72px, 9vw, 104px); }
.section--tight { padding-top: clamp(64px, 8vw, 96px); }

.eyebrow {
  display: block;
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 500; color: var(--on-surface-muted);
}
.section-head { display: flex; flex-direction: column; gap: 14px; }
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15;
  letter-spacing: -0.015em; font-weight: 600; text-wrap: pretty;
}
.lede { font-size: clamp(15px, 1.4vw, 17px); max-width: 60ch; text-wrap: pretty; }

.grid { display: grid; gap: clamp(16px, 2.4vw, 24px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 5vw, 56px); align-items: center; }

.card {
  background: var(--surface-container);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 26px);
  min-width: 0;
}
.card h3 { font-size: 17px; line-height: 1.4; font-weight: 600; margin-bottom: 8px; }
.card p  { font-size: 14.5px; }
.card .icon { color: var(--on-surface-muted); margin-bottom: 16px; }

.icon { width: 18px; height: 18px; stroke-width: 1.5; flex: none; }
.icon--check { color: var(--accent-text); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--ghost-border);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter);
  min-height: 64px; display: flex; align-items: center; gap: clamp(12px, 3vw, 36px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--on-surface); flex: none; }
.brand img { width: 22px; height: 22px; }
.brand span { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

.nav__links { display: flex; gap: clamp(14px, 2vw, 26px); font-size: 14px; white-space: nowrap; min-width: 0; }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: clamp(8px, 1.5vw, 16px); flex: none; }

.burger {
  display: none; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--ghost-border); border-radius: var(--radius-md);
  background: transparent; color: var(--on-surface-variant); cursor: pointer;
}
.nav__panel { display: none; flex-direction: column; padding: 4px var(--gutter) 16px; }
.nav__panel a { font-size: 14px; padding: 10px 0; }
.nav__panel[data-open="true"] { display: flex; }

.theme-toggle {
  display: flex; align-items: center; justify-content: flex-start;
  width: 46px; height: 26px; padding: 2px;
  border-radius: 999px; border: 1px solid var(--ghost-border);
  background: var(--surface-container-high); cursor: pointer; flex: none;
}
.theme-toggle__knob {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--on-surface); color: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  transition: transform var(--duration-base) var(--easing-standard);
}
[data-theme="dark"] .theme-toggle__knob { transform: translateX(20px); }
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="light"] .theme-toggle__sun { display: block; }
[data-theme="light"] .theme-toggle__moon { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: var(--radius-md); border: 1px solid transparent;
  font-size: 15px; font-weight: 600; white-space: nowrap; cursor: pointer;
}
.btn--sm { height: 34px; padding: 0 16px; font-size: 14px; }
.btn--primary { background: var(--gradient-primary); color: var(--on-primary); }
.btn--primary:hover { color: var(--on-primary); opacity: 0.92; }
.btn--ghost { border-color: var(--ghost-border); color: var(--on-surface); font-weight: 500; background: transparent; }
.btn--ghost:hover { color: var(--on-surface); background: var(--surface-container); }
.btn--outline { border-color: var(--ghost-border); background: var(--surface-container); color: var(--on-surface); font-weight: 500; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--gutter) 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 5vw, 56px); align-items: start;
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.06;
  letter-spacing: -0.02em; font-weight: 600; text-wrap: pretty;
}
.hero__lede { font-size: clamp(15px, 1.4vw, 17px); max-width: 46ch; text-wrap: pretty; }
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
/* Grid rather than the source's flex row: the design's stats were numerals
   ("3,400", "2h", "SOC 2") and wrapped cleanly, but the early-access wording
   is wider and dropped the third stat onto its own line with a ragged gap. */
.hero__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--ghost-border);
}
.hero__stats b { display: block; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.hero__stats span { font-size: 12px; line-height: 1.45; color: var(--on-surface-muted); }

/* ---------- session preview ---------- */
.preview { background: var(--surface-container); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--elevation-2); min-width: 0; }
.preview__bar { display: flex; align-items: center; gap: 10px; padding: 6px 8px 12px; font-size: 12px; color: var(--on-surface-variant); }
.preview__clock { margin-left: auto; font-family: var(--font-mono); font-size: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); flex: none; }

.code {
  background: #0E0E0E; border-radius: var(--radius-md); padding: 16px 18px;
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7;
  color: #A8A4A3; overflow: hidden;
}
.code > div { white-space: nowrap; }
.code .ln { color: #6F6B6A; }
.code .kw { color: #7AD9B3; }
.code .id { color: #E5E2E1; }
.code .cm { color: #6F6B6A; }
.code .hl { background: rgba(61,255,181,0.08); margin: 0 -18px; padding: 0 18px; }

.meters { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 10px; }
.meter { background: var(--surface-container-high); border-radius: var(--radius-md); padding: 12px 14px; min-width: 0; }
.meter__head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.meter__head span:first-child { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-surface-variant); }
.meter__head span:last-child { font-family: var(--font-mono); font-size: 11px; color: var(--on-surface-variant); }
.meter__track { height: 6px; border-radius: 3px; background: var(--surface-container-highest); margin-top: 10px; overflow: hidden; }
.meter__fill { height: 100%; }
.preview__foot { display: flex; align-items: center; gap: 10px; padding: 14px 6px 6px; font-size: 12.5px; color: var(--on-surface-variant); }

/* ---------- comparison table ---------- */
.compare { overflow-x: auto; }
.compare__grid { min-width: 640px; display: grid; }
.compare__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--ghost-border); font-size: 14px; }
.compare__row:first-child { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-surface-muted); }
.compare__row > span:first-child { color: var(--on-surface); }
.compare__row > span { color: var(--on-surface-variant); min-width: 0; }
.compare__row .own { color: var(--on-surface); font-weight: 500; }

/* ---------- steps ---------- */
.step__num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-text); display: block; margin-bottom: 12px; }

/* ---------- timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.timeline__row { display: flex; gap: 14px; font-size: 13.5px; }
.timeline__at { font-family: var(--font-mono); color: var(--on-surface-muted); flex: none; }
.track { height: 6px; border-radius: 3px; background: var(--surface-container-highest); position: relative; margin: 14px 0 10px; overflow: hidden; }
.track__fill { position: absolute; inset: 0 auto 0 0; width: 62%; background: var(--gradient-primary); }
.pips { display: flex; gap: 8px; }
.pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-text); opacity: 0.7; }

/* ---------- rubric ---------- */
.rubric__head, .rubric__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; align-items: center; }
.rubric__head { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-surface-muted); padding-bottom: 12px; }
.rubric__row { padding: 10px 0; font-size: 14px; }
.rubric__bar { height: 6px; border-radius: 3px; background: var(--surface-container-highest); overflow: hidden; }
.rubric__bar > div { height: 100%; background: var(--accent-text); }
.rubric__bar--alt > div { background: var(--on-surface-muted); }
.rubric__total { display: flex; align-items: baseline; gap: 10px; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--ghost-border); font-size: 13px; color: var(--on-surface-variant); }
.rubric__total b { font-size: 16px; color: var(--on-surface); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-mono); font-size: 12px;
  padding: 5px 10px; border-radius: var(--radius-sm);
  background: var(--surface-container-high); color: var(--on-surface-variant);
}

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist > div { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--on-surface-variant); }

.facts { display: flex; flex-direction: column; gap: 14px; }
.facts > div { display: flex; gap: 12px; align-items: flex-start; }
.facts b { display: block; font-size: 14px; font-weight: 500; color: var(--on-surface); }
.facts span { font-size: 13px; color: var(--on-surface-muted); }

/* ---------- roadmap ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
  padding: 3px 8px; border-radius: 999px;
  background: var(--surface-container-high); color: var(--tertiary);
  border: 1px solid var(--ghost-border);
}
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.roadmap-grid > div {
  background: var(--surface-container); border-radius: var(--radius-md);
  padding: 14px 16px; font-size: 14px; color: var(--on-surface-variant);
}

/* ---------- pricing ---------- */
.plan { display: flex; flex-direction: column; gap: 18px; }
.plan__name { font-size: 17px; font-weight: 600; color: var(--on-surface); }
.plan__for { font-size: 13.5px; color: var(--on-surface-muted); }
.plan__price { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--on-surface); }
.plan__note { font-size: 13px; color: var(--on-surface-muted); }
.plan__features { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--on-surface-variant); }
.plan--featured { outline: 1px solid var(--ghost-border); }
.plan__badge { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-text); }
.plan__head { display: flex; align-items: flex-start; gap: 12px; }
.plan__head > div { flex: 1; min-width: 0; }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--ghost-border); }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 18px 0; background: none; border: 0; cursor: pointer;
  color: var(--on-surface); font-size: 15.5px; font-weight: 500; text-align: left;
}
.faq__sign { margin-left: auto; color: var(--on-surface-muted); font-size: 18px; flex: none; line-height: 1; }
.faq__a { padding: 0 0 20px; font-size: 14.5px; max-width: 76ch; }
.faq__item [hidden] { display: none; }

/* ---------- closing CTA ---------- */
.cta {
  background: var(--surface-container); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.cta > div:first-child { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 12px; }
.cta h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; letter-spacing: -0.01em; font-weight: 600; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- waitlist ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.waitlist { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 10px; }
.waitlist__row { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist__input {
  flex: 1; min-width: 200px; height: 44px; padding: 0 14px;
  background: var(--surface-container-high);
  border: 1px solid var(--ghost-border);
  border-radius: var(--radius-md);
  color: var(--on-surface);
  font-family: var(--font-sans); font-size: 15px;
}
.waitlist__input::placeholder { color: var(--on-surface-muted); }
.waitlist__input:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.waitlist .btn--primary:disabled { opacity: 0.55; cursor: not-allowed; }

/* Honeypot. Positioned off-screen rather than display:none — some bots skip
   hidden inputs, and a field that is merely off-canvas still gets filled. */
.waitlist__trap {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.waitlist__status { font-size: 13.5px; line-height: 1.5; margin: 0; min-height: 1.2em; }
.waitlist__status[data-state="ok"]  { color: var(--accent-text); }
.waitlist__status[data-state="err"] { color: var(--tertiary); }
.waitlist__note { font-size: 12.5px; line-height: 1.55; color: var(--on-surface-muted); margin: 0; }
.waitlist__note a { text-decoration: underline; }

/* ---------- footer ---------- */
.footer { margin-top: clamp(72px, 9vw, 104px); border-top: 1px solid var(--ghost-border); padding-block: clamp(40px, 5vw, 56px) 28px; }
.footer__cols { display: grid; grid-template-columns: 1.6fr repeat(auto-fit, minmax(130px, 1fr)); gap: clamp(24px, 4vw, 40px); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col > span:first-child { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-surface-muted); }
.footer__col a { font-size: 13.5px; }
.footer__brand p { font-size: 13.5px; max-width: 34ch; margin-top: 12px; }
.footer__bar { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: clamp(32px, 4vw, 44px); padding-top: 22px; border-top: 1px solid var(--ghost-border); }
.footer__bar span { font-family: var(--font-mono); font-size: 12px; color: var(--on-surface-muted); }
.footer__social { margin-left: auto; display: flex; gap: 16px; }
.footer__social a { font-size: 12.5px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(10px); }
[data-reveal].is-visible,
.no-js [data-reveal] { opacity: 1; transform: none; }
[data-reveal] { transition: opacity 320ms var(--easing-standard), transform 320ms var(--easing-standard); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav__signin { display: none; }
}

/* Four security items read as 2x2; the generic .grid--2 minmax lets three fit
   on a wide row and orphans the fourth. */
#security .grid--2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
