/* =========================================================
   ToolHall — Design tokens + site styles
   Editorial: stark B&W, one-red accent, heavy display type.
   ========================================================= */

@import url('https://use.typekit.net/pve2kpq.css');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* core palette */
  --ink: #0A0A0A;
  --ink-80: #2B2B2B;
  --ink-60: #5C5C5C;
  --ink-40: #9A9A9A;
  --ink-20: #D5D5D5;
  --ink-10: #EAEAEA;
  --ink-05: #F4F4F4;
  --paper: #FFFFFF;
  --paper-warm: #FAF8F4;

  /* brand accent */
  --red: #E4002B;
  --red-ink: #B80024;
  --red-tint: #FFE5EA;

  /* semantic */
  --fg-1: var(--ink);
  --fg-2: var(--ink-80);
  --fg-3: var(--ink-60);
  --fg-mute: var(--ink-40);
  --fg-invert: var(--paper);
  --bg-1: var(--paper);
  --bg-2: var(--paper-warm);
  --bg-3: var(--ink-05);
  --bg-invert: var(--ink);
  --border-1: var(--ink);
  --border-2: var(--ink-20);
  --border-3: var(--ink-10);
  --accent: var(--red);
  --accent-ink: var(--red-ink);

  /* type families (Adobe Fonts kit pve2kpq) */
  --font-display: 'neue-haas-grotesk-display', 'Helvetica Neue', Arial, sans-serif;
  --font-condensed: 'acumin-pro-condensed', 'neue-haas-grotesk-display', 'Arial Narrow', sans-serif;
  --font-body: 'neue-haas-grotesk-text', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* type scale */
  --fs-hero: clamp(56px, 9vw, 144px);
  --fs-h1: clamp(40px, 5vw, 72px);
  --fs-h2: clamp(32px, 3.6vw, 48px);
  --fs-h3: 28px;
  --fs-h4: 22px;
  --fs-lg: 18px;
  --fs-body: 16px;
  --fs-sm: 14px;
  --fs-xs: 12px;
  --fs-eyebrow: 12px;

  --lh-tight: 0.92;
  --lh-display: 0.98;
  --lh-heading: 1.12;
  --lh-body: 1.55;
  --lh-loose: 1.7;

  --ls-tight: -0.04em;
  --ls-snug: -0.02em;
  --ls-wide: 0.12em;
  --ls-caps: 0.18em;

  /* spacing (4pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* radii */
  --r-0: 0; --r-1: 2px; --r-2: 4px; --r-3: 8px; --r-pill: 999px;

  /* borders */
  --bw-hair: 1px; --bw-rule: 2px; --bw-bold: 4px;

  /* shadows */
  --shadow-1: 0 1px 2px rgba(10,10,10,0.06);
  --shadow-2: 0 4px 16px rgba(10,10,10,0.08);
  --shadow-3: 0 12px 32px rgba(10,10,10,0.12);
  --shadow-pop: 6px 6px 0 0 var(--ink);
  --shadow-pop-red: 6px 6px 0 0 var(--red);

  /* motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 400ms;

  /* layout */
  --container: 1200px;
  --container-wide: 1440px;
  --gutter: 24px;
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { color: var(--fg-1); background: var(--bg-1); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg-1);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 900; color: var(--fg-1); margin: 0; }
h1 { font-size: var(--fs-h1); line-height: var(--lh-display); letter-spacing: var(--ls-tight); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-snug); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-heading); letter-spacing: var(--ls-snug); font-family: var(--font-body); font-weight: 700; }
h4 { font-size: var(--fs-h4); line-height: var(--lh-heading); font-family: var(--font-body); font-weight: 700; letter-spacing: var(--ls-snug); }

.display   { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-hero); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); text-transform: uppercase; }
.condensed { font-family: var(--font-condensed); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  color: var(--red);
}
.eyebrow.mute { color: var(--fg-3); }

p { margin: 0 0 var(--s-4) 0; color: var(--fg-2); max-width: 68ch; }
p.lead { font-size: var(--fs-lg); line-height: var(--lh-loose); color: var(--fg-1); }

a {
  color: var(--fg-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--red); }

code, kbd, pre, samp { font-family: var(--font-mono); font-size: 0.94em; }
small { font-size: var(--fs-sm); color: var(--fg-3); }
hr { border: 0; border-top: var(--bw-rule) solid var(--ink); margin: var(--s-6) 0; }
::selection { background: var(--red); color: var(--paper); }
img { max-width: 100%; display: block; }

.red-rule { border-top: var(--bw-bold) solid var(--red); }
.ink-rule { border-top: var(--bw-rule) solid var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .01em;
  border: 2px solid var(--ink);
  border-radius: var(--r-1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
  font-size: 15px;
  padding: 12px 22px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.1;
}
.btn:hover { color: var(--ink); }
.btn.sm { font-size: 13px; padding: 8px 14px; }
.btn.lg { font-size: 17px; padding: 16px 28px; }

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 0 var(--red);
}
.btn.primary:hover { background: var(--ink-80); color: #fff; }

.btn.red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.btn.red:hover { background: var(--red-ink); border-color: var(--red-ink); color: #fff; }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 12px 0;
  box-shadow: none;
}
.btn.ghost:hover { color: var(--red); }

.btn.primary:active, .btn.red:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 transparent;
}

/* =========================================================
   Site header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-10);
  height: 72px;
  display: flex;
  align-items: center;
}
.site-header .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo { display: flex; align-items: center; text-decoration: none; }
.site-header .logo img { height: 28px; }
.site-header nav { display: flex; gap: 32px; align-items: center; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.site-header nav a:hover { color: var(--red); }
.site-header nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-10);
}
.hero .streaks {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 560px;
  height: 520px;
  pointer-events: none;
  overflow: hidden;
}
.hero .streaks .streak {
  position: absolute;
  right: -80px;
  background: var(--red);
  transform: rotate(-22deg);
  transform-origin: right center;
}
.hero .streaks .streak.s1 { bottom: 180px; width: 700px; height: 12px; }
.hero .streaks .streak.s2 { bottom: 130px; width: 700px; height: 8px; opacity: .85; }
.hero .streaks .streak.s3 { bottom: 88px;  width: 700px; height: 5px; opacity: .7; }

.hero .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter) 140px;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 156px);
  line-height: .9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  max-width: 1100px;
  position: relative;
}
.hero h1 .dot { color: var(--red); }
.hero .hero-lede {
  font-size: 20px;
  max-width: 560px;
  margin-top: 36px;
  line-height: 1.5;
  color: var(--fg-2);
  position: relative;
}
.hero .hero-lede strong { color: var(--ink); font-weight: 700; }
.hero .actions { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; position: relative; }

/* =========================================================
   Section header
   ========================================================= */
.section-header {
  margin-bottom: 48px;
  max-width: 800px;
}
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-header .rule {
  height: 4px;
  width: 64px;
  background: var(--red);
  margin-top: 24px;
}
.section-header .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: 24px;
  max-width: 640px;
}

/* =========================================================
   Page section container
   ========================================================= */
.page-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter) 0;
}

/* =========================================================
   Feature row (alternating editorial blocks)
   ========================================================= */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin: 96px 0;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-art  { order: 1; }

.feature-row .feature-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.feature-row h3 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-weight: 900;
  color: var(--ink);
}
.feature-row p { font-size: 17px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.feature-row .feature-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature-art {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.feature-art .streak {
  position: absolute;
  left: -10%;
  width: 130%;
  background: var(--red);
  transform: rotate(-14deg);
}
.feature-art .streak.s1 { top: 20%; height: 8px; }
.feature-art .streak.s2 { top: 32%; height: 5px; opacity: .7; }
.feature-art .label {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* =========================================================
   Stats grid
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 56px 0 0;
}
.stat {
  padding: 24px 0;
  border-top: 2px solid var(--ink);
}
.stat .number {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.04em;
}
.stat .label {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 8px;
  max-width: 220px;
}

/* =========================================================
   Pull / inverse block
   ========================================================= */
.pull {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  margin: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.pull .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.pull .eyebrow { color: var(--red); margin-bottom: 32px; }
.pull-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0;
  color: var(--paper);
}
.pull-cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 32px;
}

/* =========================================================
   CTA band (warm paper)
   ========================================================= */
.cta-band {
  background: var(--paper-warm);
  padding: 96px 0;
  border-top: 2px solid var(--ink);
  margin-top: 96px;
}
.cta-band .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

/* =========================================================
   Three-step grid (ScamSnap page)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  margin: 64px 0 96px;
}
.steps .step { padding: 32px; }
.steps .step + .step { border-left: 2px solid var(--ink); }
.steps .step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  margin-bottom: 16px;
}
.steps .step .head {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}
.steps .step p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.5; }

/* =========================================================
   ScamSnap-specific
   ========================================================= */
.ss-wordmark { margin-bottom: 40px; }
.ss-wordmark img { height: 72px; }
.ss-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin: 0 0 32px 0;
  max-width: 1100px;
  font-weight: 900;
}
.ss-title .dot { color: var(--red); }
.ss-lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 680px;
  margin: 0 0 48px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 8px;
}
.two-col p { font-size: 17px; line-height: 1.6; color: var(--fg-2); }

.ss-cta-band {
  background: var(--ink);
  color: var(--paper);
  margin: 96px calc(-1 * var(--gutter)) 0;
  padding: 64px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.ss-cta-band .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.ss-cta-band .head {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--paper);
}

/* =========================================================
   About page
   ========================================================= */
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin: 0 0 40px;
  max-width: 1000px;
  font-weight: 900;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 48px;
}
.about-grid p { font-size: 18px; line-height: 1.6; color: var(--fg-2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.team-card {
  border: 1px solid var(--ink-10);
  padding: 28px;
  background: var(--paper);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.team-card:hover {
  border-color: var(--ink-20);
  box-shadow: var(--shadow-2);
}
.team-card .head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.team-card .avatar {
  width: 64px; height: 64px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}
.team-card .name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.team-card .role {
  font-size: 12px;
  color: var(--red);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 6px;
}
.team-card p { font-size: 15px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-aside dt {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 28px;
}
.contact-aside dt:first-child { margin-top: 0; }
.contact-aside dd {
  font-family: var(--font-mono);
  font-size: 16px;
  margin: 8px 0 0;
  color: var(--ink);
}
.contact-aside dd.ink {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* Contact form */
.contact-form { display: grid; gap: 20px; }
/* honeypot — visually hidden but not display:none (bots skip display:none) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  border-radius: var(--r-1);
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.form-sent {
  border: 2px solid var(--ink);
  padding: 40px;
  box-shadow: var(--shadow-pop-red);
}
.form-sent .head {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}
.form-sent p { margin: 0; color: var(--fg-2); }

/* =========================================================
   Legal / long-form prose pages
   ========================================================= */
body.legal { background: var(--paper-warm); }

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 96px var(--gutter) 64px;
}
.legal-page .meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 24px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 14px 0 0;
}
.legal-page .rule {
  height: 4px;
  width: 64px;
  background: var(--red);
  margin: 28px 0 48px;
}

.prose p { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 0 0 20px 0; max-width: none; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 56px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-10);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 32px 0 10px;
  color: var(--ink);
}
.prose ul { margin: 0 0 20px 0; padding-left: 22px; }
.prose ul li { font-size: 17px; line-height: 1.65; color: var(--fg-2); margin-bottom: 8px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--red); }
.prose code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-3);
  padding: 1px 6px;
  border-radius: var(--r-1);
}

/* =========================================================
   Site footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: 96px;
}
.site-footer .top-rule { height: 4px; background: var(--red); }
.site-footer .cols {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer .cols img { height: 36px; margin-bottom: 20px; }
.site-footer .cols p { color: var(--ink-40); max-width: 380px; margin: 0; font-size: 14px; }
.site-footer .col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.site-footer .col a {
  display: block;
  color: var(--paper);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
}
.site-footer .col a:hover { color: var(--red); }
.site-footer .legal {
  border-top: 1px solid #2B2B2B;
  padding: 20px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: var(--ink-40);
  font-size: 12px;
  font-family: var(--font-mono);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .site-header nav { gap: 18px; }
  .site-header nav .nav-cta { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin: 64px 0; }
  .feature-row.reverse .feature-copy { order: 1; }
  .feature-row.reverse .feature-art  { order: 2; }
  .stats { grid-template-columns: 1fr; gap: 0; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps .step + .step { border-left: none; border-top: 2px solid var(--ink); }
  .about-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .site-footer .legal { flex-direction: column; gap: 8px; }
  .hero .inner { padding: 64px var(--gutter) 96px; }
  .hero .streaks { width: 340px; height: 320px; right: -40px; bottom: -20px; }
  .hero .streaks .streak.s1 { bottom: 110px; }
  .hero .streaks .streak.s2 { bottom: 80px; }
  .hero .streaks .streak.s3 { bottom: 56px; }
  .page-section { padding: 64px var(--gutter) 0; }
  .contact-form .two { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-toggle { display: block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--ink-10);
    padding: 8px 0 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a {
    padding: 14px var(--gutter);
    border-bottom: none;
    width: 100%;
  }
  .site-header nav a.active { border-bottom: none; background: var(--ink-5, rgba(0, 0, 0, .04)); }
  .site-header nav .nav-cta {
    display: block;
    width: auto;
    margin: 8px var(--gutter) 0;
    text-align: center;
  }
  .hero h1 { font-size: clamp(42px, 13.5vw, 64px); }
  .site-footer .cols { grid-template-columns: 1fr; }
  .ss-cta-band { flex-direction: column; align-items: flex-start; }
  .ss-cta-band .head { font-size: 32px; }
}
