/* ===========================================================
   Rogue Fraction — bright, happy, sleek, human.
   Palette pulled from the logo mark.
   =========================================================== */
:root {
  --ink: #2b2e33;
  --ink-soft: #555b63;
  --paper: #fdfcf9;
  --paper-warm: #f6f3ec;
  --coral: #e05c5c;
  --coral-soft: #fceaea;
  --sky: #4fb8da;
  --sky-soft: #e3f4fa;
  --mint: #67c89a;
  --mint-soft: #e4f6ed;
  --sun: #f5b94e;
  --sun-soft: #fdf3df;
  /* Text-safe shades: ≥4.5:1 on --paper/--surface and on their soft pill tints.
     The base hues above are display colors — large type and fills only. */
  --coral-text: #b73535;
  --sky-text: #21708c;
  --mint-text: #1f6b49;
  --sun-text: #8a5f0e;
  /* Display shades: ≥3:1 for large type (h1 accents, proof numbers) */
  --sky-display: #2787a8;
  --mint-display: #2e8f63;
  --sun-display: #b07d1c;
  /* Button fill: keeps white label text ≥4.5:1 */
  --coral-btn: #c94747;
  --coral-btn-hover: #b73535;
  --line: #e8e4da;
  --surface: #fff;
  --header-bg: rgba(253, 252, 249, 0.88);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --hero-glass: rgba(255, 255, 255, 0.35);
  --veil: rgba(253, 252, 249, 0.78);
  --hero-a: #fdfcf9;
  --hero-b: #f4f8f9;
  --band: #2b2e33;
  --radius: 18px;
  --header-h: 72px;
  --shadow: 0 10px 30px rgba(43, 46, 51, 0.08);
  --shadow-lift: 0 18px 44px rgba(43, 46, 51, 0.14);
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --wrap: 1140px;
  color-scheme: light;
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  --ink: #e8eaed;
  --ink-soft: #a6adb6;
  --paper: #15171b;
  --paper-warm: #1c1f24;
  --coral-soft: rgba(224, 92, 92, 0.16);
  --sky-soft: rgba(79, 184, 218, 0.16);
  --mint-soft: rgba(103, 200, 154, 0.16);
  --sun-soft: rgba(245, 185, 78, 0.16);
  /* On dark, the bright base hues are already the text-safe shades */
  --coral-text: #ec8585;
  --sky-text: #4fb8da;
  --mint-text: #67c89a;
  --sun-text: #f5b94e;
  --sky-display: #4fb8da;
  --mint-display: #67c89a;
  --sun-display: #f5b94e;
  --line: #2c3138;
  --surface: #1d2026;
  --header-bg: rgba(21, 23, 27, 0.88);
  --glass: rgba(29, 32, 38, 0.85);
  --glass-strong: rgba(29, 32, 38, 0.9);
  --hero-glass: rgba(29, 32, 38, 0.35);
  --veil: rgba(21, 23, 27, 0.78);
  --hero-a: #15171b;
  --hero-b: #181d22;
  --band: #22262c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 18px 44px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}
/* Logo art is dark ink on transparent — luminance-flip it, hues survive the double flip. */
[data-theme="dark"] .nav__logo img,
[data-theme="dark"] .footer__grid img { filter: invert(1) hue-rotate(180deg); }
[data-theme="dark"] .nav__cta { background: var(--coral-btn); }
[data-theme="dark"] .nav__cta:hover { background: var(--coral-btn-hover); }
[data-theme="dark"] .motion-toggle[aria-pressed="true"] { color: var(--paper); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--sky-text); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(90px, 11vw, 150px) 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.kicker--coral { background: var(--coral-soft); color: var(--coral-text); }
.kicker--sky   { background: var(--sky-soft);   color: var(--sky-text); }
.kicker--mint  { background: var(--mint-soft);  color: var(--mint-text); }
.kicker--sun   { background: var(--sun-soft);   color: var(--sun-text); }

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin-top: 18px;
}

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* Asymmetric section intro: kicker + heading left, lede right, baseline-tied */
.section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px 60px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head .lede { margin-top: 0; padding-bottom: 6px; }

.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;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--coral-btn);
  color: #fff;
  box-shadow: 0 8px 22px rgba(201, 71, 71, 0.35);
}
.btn--primary:hover { background: var(--coral-btn-hover); box-shadow: 0 12px 28px rgba(201, 71, 71, 0.42); }

.btn--ghost {
  background: var(--glass-strong);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }


/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
}
.nav__logo img { height: 34px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav__tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 26px;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a:hover { color: var(--coral-text); text-decoration: none; }
.nav__links a.is-active { color: var(--coral-text); font-weight: 600; }
.nav__cta { background: var(--ink); color: var(--paper) !important; padding: 10px 20px; border-radius: 999px; }
.nav__cta:hover { background: var(--coral-btn); }

.theme-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 68px;
  height: 32px;
  padding: 0;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.theme-switch:hover { border-color: var(--ink-soft); }
.theme-switch__icon {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--ink-soft);
}
.theme-switch__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 31px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
[data-theme="dark"] .theme-switch__knob { transform: translateX(31px); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--hero-a) 0%, var(--hero-b) 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  background: var(--hero-glass);
  /* keep blur small — heavier blur smears the particle dots into haze
     and makes the panel transparency invisible */
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 40px;
}
.hero h1 .accent { color: var(--coral); }
.hero h1 .accent-sky { color: var(--sky-display); }
.hero .lede { font-size: 1.25rem; }
/* solid (non-translucent) kicker so it reads over the particle field */
[data-theme="dark"] .hero .kicker--coral { background: #3c2a2f; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }

.motion-toggle {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.motion-toggle:hover { color: var(--ink); border-color: var(--ink-soft); }
.motion-toggle[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Logo strip / proof ---------- */
.proof { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.proof__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
}
.proof__num--coral { color: var(--coral); }
.proof__num--sky { color: var(--sky-display); }
.proof__num--mint { color: var(--mint-display); }
.proof__label { color: var(--ink-soft); font-size: 0.95rem; margin-top: 4px; }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* Bento: wide feature cards zigzag against single cards */
.grid-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 30px;
}
.card--wide .card__num { grid-row: 1 / span 4; font-size: 3.6rem; }
.card--wide .card__tag { justify-self: start; align-self: start; }
.card--wide h3 { margin-top: 10px; }

/* Staggered pairs: even cards drop, grid loses its lockstep */
.grid-stagger { align-items: start; }
.grid-stagger > :nth-child(even) { margin-top: 48px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card h3 { margin: 14px 0 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card__num {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.card__num--coral { color: var(--coral); }
.card__num--sky { color: var(--sky-display); }
.card__num--mint { color: var(--mint-display); }
.card__num--sun { color: var(--sun-display); }

.card__emoji { margin-right: 6px; }

.card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.card .card__more { font-weight: 600; color: var(--coral-text); font-size: 0.95rem; }

/* ---------- Pain points ---------- */
.pains { background: var(--paper-warm); }
.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.pain {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 5px solid var(--coral);
  box-shadow: var(--shadow);
}
.pain:nth-child(2) { border-left-color: var(--sky); }
.pain:nth-child(3) { border-left-color: var(--sun); }
.pain:nth-child(4) { border-left-color: var(--mint); }
.pain h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pain p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Humans section ---------- */
.humans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.human {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.human img {
  width: 150px; height: 150px;
  object-fit: cover;
  border-radius: 16px;
}
/* About page: stacked, larger profile cards (mobile rules below still win) */
.humans__grid--stack { grid-template-columns: 1fr; margin-top: 0; }
.human--lg { grid-template-columns: 220px 1fr; }
.human--lg img { width: 220px; height: 220px; }
.human h3, .human .human__name { margin-bottom: 2px; }
.human .human__name { font-size: 1.35rem; }
.human .role {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral-text);
  margin-bottom: 10px;
}
.human p { color: var(--ink-soft); font-size: 0.95rem; }
.human .li-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 0.9rem; }
.track-record { margin: 0 0 4px; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.track-record li { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.track-record li strong { color: var(--ink); }

/* ---------- Big CTA ---------- */
.cta-band {
  background: var(--band);
  color: #fff;
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.cta-band::before { width: 320px; height: 320px; background: var(--coral); top: -120px; left: -80px; }
.cta-band::after { width: 320px; height: 320px; background: var(--sky); bottom: -140px; right: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 16px auto 32px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 36px;
  background: var(--surface);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__grid img { height: 28px; width: auto; }
.footer__links { display: flex; gap: 24px; list-style: none; }
.footer__links a { color: var(--ink-soft); font-size: 0.92rem; }
.footer__links a:hover { color: var(--coral-text); }
.footer__note { margin-top: 26px; color: var(--ink-soft); font-size: 0.85rem; text-align: center; }

/* ---------- Services page ---------- */
.page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, var(--hero-a) 0%, var(--hero-b) 100%);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: none; }
.service-block .meta { color: var(--ink-soft); font-size: 0.92rem; margin-top: 12px; }
.service-block h2 { margin-top: 10px; }
.service-block .quote {
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--paper-warm);
  border-radius: 14px;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.svc-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.svc-lists h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.svc-lists ul { list-style: none; }
.svc-lists li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.svc-lists .yes li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-text); font-weight: 700; }
.svc-lists .no li::before { content: "—"; position: absolute; left: 0; color: var(--coral-text); font-weight: 700; }
.svc-next {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--sky-soft);
  font-size: 0.92rem;
  color: var(--sky-text);
}

/* ---------- Booking ---------- */
.calendly-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.calendly-inline-widget { min-width: 320px; height: 760px; }

/* ---------- Contact form ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  max-width: 760px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-display);
  box-shadow: 0 0 0 4px var(--sky-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: var(--coral-text); font-size: 0.82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); }
.field.invalid .err { display: block; }
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--ink);
  font-size: 0.92rem;
  text-align: center;
}
.form-error.show { display: block; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 { color: var(--mint-text); margin-bottom: 10px; }

/* ---------- Lead magnet ---------- */
.lead-magnet {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lead-magnet__copy h2 { margin-bottom: 10px; }
.lead-magnet__form {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 26px;
}
.lead-magnet__form .field {
  flex: 1 1 auto;
  max-width: 340px;
  margin-bottom: 0;
  text-align: left;
}
.lead-magnet__form .btn { white-space: nowrap; }
.lead-magnet__success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--mint-soft);
  color: var(--ink);
  font-size: 0.92rem;
}
.lead-magnet__success.show { display: block; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-bento { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head .lede { padding-bottom: 0; }
  .service-block { grid-template-columns: 1fr; gap: 26px; }
  .humans__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    gap: 8px;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 10px 0; font-size: 1.05rem; }
  .nav__tools { margin-left: auto; }
  .nav__burger { display: block; }
  .grid-2, .grid-bento, .pain-list, .form-row, .svc-lists { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; display: block; }
  .card--wide .card__num { font-size: 2.7rem; margin-bottom: 10px; }
  .grid-stagger > :nth-child(even) { margin-top: 0; }
  .proof__grid { grid-template-columns: 1fr; gap: 22px; }
  .human { grid-template-columns: 1fr; }
  .human img { width: 120px; height: 120px; }
  .cta-band { padding: 50px 26px; }
  .form-card { padding: 28px 22px; }
  .lead-magnet { padding: 28px 22px; }
  .lead-magnet__form { flex-direction: column; align-items: stretch; }
  .lead-magnet__form .field { max-width: none; }
  .hero { min-height: 84vh; }
  /* keep hero copy readable over the particle field on small screens */
  #hero-canvas { opacity: 0.4; }
  .hero__inner { padding: 26px 22px; }
}
