/* ============================================================
   CHAGUAL — Endemic Intelligence (negative / light edition)
   White paper surfaces · navy type · teal + amber accents
   Display: Fraunces · Body: Archivo · Labels: Spline Sans Mono
   ============================================================ */

:root {
  /* Paper scale (light surfaces) */
  --paper-0: #fdfdfc;   /* body */
  --paper-1: #f2f6f9;   /* alternate bands */
  --paper-2: #ffffff;   /* cards */

  /* Ink scale (brand navy — text + dark bands) */
  --ink-950: #050f1f;
  --ink-900: #071527;
  --ink-850: #0a1f3d;   /* brand navy */
  --ink-700: #11294e;
  --ink-600: #1d3c66;
  --ink-500: #2c4f7e;

  /* Accents */
  --teal-300: #4be3d6;
  --teal-400: #25cfc1;
  --teal-500: #12b3a8;
  --teal-600: #0d8d86;
  --teal-700: #0a6e69;
  --amber-300: #f3c46a;
  --amber-400: #e8a849;
  --amber-500: #c98a28;

  /* Text on light */
  --t-ink: #0a1f3d;
  --t-body: #3f5168;
  --t-dim: #6b7d96;

  /* Text on dark */
  --t-bright: #eef3f9;
  --t-soft: #b9c6d8;
  --t-faint: #7d8fa8;

  /* Lines */
  --hair: rgba(10, 31, 61, 0.14);
  --hair-strong: rgba(10, 31, 61, 0.3);
  --hair-light: rgba(185, 198, 216, 0.16);
  --hair-light-strong: rgba(185, 198, 216, 0.3);

  /* Type */
  --f-display: "Fraunces", "Georgia", serif;
  --f-body: "Archivo", "Helvetica Neue", sans-serif;
  --f-mono: "Spline Sans Mono", "SFMono-Regular", monospace;

  /* Rhythm */
  --space-section: clamp(88px, 12vw, 160px);
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 24px 50px -28px rgba(10, 31, 61, 0.25);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
::selection { background: var(--ink-850); color: var(--paper-0); }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--t-body);
  background: var(--paper-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--t-ink);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 7.2vw, 96px);
  font-variation-settings: "opsz" 144;
}

h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-variation-settings: "opsz" 110;
}

h3 { font-size: clamp(24px, 2.6vw, 34px); }

h4, h5, h6 {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--t-ink);
  line-height: 1.3;
}
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--t-dim); }

.italic-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-600);
}
.amber { color: var(--amber-500); }

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--t-body);
  max-width: 62ch;
}

.mono-label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mono-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-600);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.container--wide { width: min(1400px, 100% - var(--gutter) * 2); margin-inline: auto; }

.section { padding-block: var(--space-section); position: relative; }
.section:has(> .plant-watermark) { overflow: hidden; }

.section--light { background: var(--paper-1); }
.section--raised { background: var(--paper-1); }

.section-head { max-width: 880px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .mono-label { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 22px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head.center .mono-label::before { display: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200; /* above .nav-overlay so brand + toggle stay reachable while the menu is open */
  transition: background 0.4s var(--ease-out), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled {
  background: rgba(253, 253, 252, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--hair);
}
.topbar-inner {
  width: min(1400px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: center; }
.brand .brand-logo {
  height: 46px;
  width: auto;
  /* official mark is navy on white — multiply melts the white box into tinted surfaces */
  mix-blend-mode: multiply;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-items a {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-body);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-items a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-items a:hover, .nav-items a.active { color: var(--t-ink); }
.nav-items a:hover::after, .nav-items a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-items .nav-cta {
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
  padding: 10px 22px;
  color: var(--t-ink);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.nav-items .nav-cta::after { display: none; }
.nav-items .nav-cta:hover {
  border-color: var(--ink-850);
  background: var(--ink-850);
  color: var(--paper-0);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  z-index: 1102;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--t-ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(253, 253, 252, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay a {
  font-family: var(--f-display);
  font-size: clamp(34px, 9vw, 56px);
  color: var(--t-ink);
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--hair);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s, color 0.3s;
}
.nav-overlay.is-open a { transform: translateY(0); opacity: 1; }
.nav-overlay a:nth-child(2) { transition-delay: 0.05s; }
.nav-overlay a:nth-child(3) { transition-delay: 0.1s; }
.nav-overlay a:nth-child(4) { transition-delay: 0.15s; }
.nav-overlay a:nth-child(5) { transition-delay: 0.2s; }
.nav-overlay a:nth-child(6) { transition-delay: 0.25s; }
.nav-overlay a:hover { color: var(--teal-600); }
.nav-overlay a .idx {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--teal-600);
  letter-spacing: 0.2em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
  will-change: transform;
}
.btn .arr { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }

.btn-primary {
  background: var(--ink-850);
  color: var(--paper-0);
}
.btn-primary:hover {
  background: var(--ink-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(10, 31, 61, 0.45);
}

.btn-outline {
  border-color: var(--hair-strong);
  color: var(--t-ink);
}
.btn-outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber-400);
  color: var(--ink-950);
}
.btn-amber:hover {
  background: var(--amber-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(232, 168, 73, 0.45);
}

.btn-ink {
  background: var(--ink-850);
  color: var(--paper-0);
}
.btn-ink:hover { background: var(--ink-700); transform: translateY(-2px); }

.btn-sm { padding: 12px 24px; font-size: 12px; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
#bloom-canvas, .drift-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(18, 179, 168, 0.1), transparent 65%),
    radial-gradient(ellipse 45% 40% at 18% 80%, rgba(232, 168, 73, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(253, 253, 252, 0.4) 0%, transparent 30%, transparent 62%, var(--paper-0) 100%);
}
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow { margin-bottom: 30px; }
.hero h1 { max-width: 13ch; margin-bottom: 30px; }
.hero .lead { max-width: 56ch; margin-bottom: 44px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: clamp(56px, 8vh, 96px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--hair);
  padding-top: 28px;
  max-width: 960px;
}
.hero-meta .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-dim);
  margin-bottom: 8px;
}
.hero-meta .value {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--t-ink);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--teal-600), transparent);
  animation: drip 2.2s var(--ease-out) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Subpage hero */
.hero-page {
  position: relative;
  padding-top: clamp(150px, 22vh, 220px);
  padding-bottom: clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(18, 179, 168, 0.09), transparent 65%),
    linear-gradient(180deg, transparent 55%, var(--paper-0) 100%);
}
.hero-page .hero-inner { position: relative; z-index: 2; }
.hero-page h1 { max-width: 16ch; margin-bottom: 26px; }
.hero-page .lead { margin-bottom: 38px; }

/* Plant watermark — decorative silhouette kept in the brand navy */
.plant-watermark {
  position: absolute;
  right: clamp(-60px, 2vw, 80px);
  bottom: -8%;
  width: clamp(260px, 30vw, 460px);
  aspect-ratio: 650 / 1268;
  background: linear-gradient(180deg, var(--ink-850), var(--teal-600));
  -webkit-mask: url("favicons/plant-master.png") no-repeat center / contain;
  mask: url("favicons/plant-master.png") no-repeat center / contain;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tag {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
  color: var(--t-body);
  background: var(--paper-2);
}
.tag.teal { border-color: rgba(13, 141, 134, 0.45); color: var(--teal-700); background: rgba(18, 179, 168, 0.07); }
.tag.amber { border-color: rgba(201, 138, 40, 0.45); color: var(--amber-500); background: rgba(232, 168, 73, 0.08); }

/* ============================================================
   TICKER — navy contrast band
   ============================================================ */
.ticker {
  border-block: 1px solid var(--hair);
  padding-block: 18px;
  overflow: hidden;
  position: relative;
  background: var(--ink-850);
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--t-soft);
  padding-inline: 28px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker-track span::after { content: "✳"; color: var(--teal-400); font-size: 11px; }

/* ============================================================
   CARDS & GRIDS
   ============================================================ */

/* Problem / compare panels */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel {
  background: var(--paper-2);
  padding: clamp(28px, 3.4vw, 44px);
  position: relative;
  transition: background 0.4s;
}
.panel:hover { background: var(--paper-1); }
.panel .idx {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--amber-500);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 18px;
}
.panel h5 { font-size: 19px; margin-bottom: 12px; }
.panel p { font-size: 15px; color: var(--t-dim); }

/* Offering cards (home, large) */
.offer-stack { display: flex; flex-direction: column; gap: 20px; }
.offer-card {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.6fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(18, 179, 168, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.offer-card:hover {
  border-color: rgba(13, 141, 134, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.offer-card:hover::after { opacity: 1; }
.offer-card .idx {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--teal-600);
  letter-spacing: 0.18em;
}
.offer-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.offer-card:hover h3 { color: var(--teal-700); }
.offer-card .offer-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.offer-card .offer-desc p { font-size: 15.5px; color: var(--t-body); margin-bottom: 14px; }
.offer-card .offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--t-dim);
}
.offer-card .offer-meta strong { color: var(--t-ink); font-weight: 500; }
.offer-card .go {
  width: 58px;
  height: 58px;
  border: 1px solid var(--hair-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--t-ink);
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.45s var(--ease-out);
}
.offer-card:hover .go {
  background: var(--ink-850);
  border-color: var(--ink-850);
  color: var(--paper-0);
  transform: rotate(-45deg);
}

/* Journey */
.journey-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}
.journey-step {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.journey-step .step-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--teal-600);
  margin-bottom: 18px;
  display: block;
}
.journey-step h4 { font-size: 21px; margin-bottom: 12px; }
.journey-step p { font-size: 15px; color: var(--t-body); margin-bottom: 24px; }

/* Value grid (numbered) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.value-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
}
.value-card:hover {
  border-color: rgba(201, 138, 40, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.value-card .num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--amber-500);
  display: block;
  margin-bottom: 20px;
}
.value-card h4 { font-size: 19px; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--t-dim); }

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--hair);
}
.stat {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2vw, 32px);
  text-align: center;
  border-left: 1px solid var(--hair);
}
.stat:first-child { border-left: none; }
.stat .stat-value {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--t-ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat .stat-value em { font-style: normal; color: var(--teal-600); }
.stat .stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-dim);
}

/* Case study — navy accent card */
.case-card {
  border: 1px solid var(--ink-850);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--ink-850), var(--ink-900) 75%);
  padding: clamp(32px, 4.5vw, 64px);
}
.case-header { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; margin-bottom: 40px; }
.case-header h3 { color: var(--t-bright); font-size: clamp(28px, 3vw, 40px); }
.case-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-300);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: 44px;
}
.case-col h6 { color: var(--amber-300); margin-bottom: 16px; }
.case-col ul li {
  font-size: 15px;
  color: var(--t-soft);
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--hair-light);
  position: relative;
}
.case-col ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--teal-400);
}
.case-quote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--t-bright);
  max-width: 38ch;
}
.case-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-faint);
}

/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  max-width: 980px;
}
.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--paper-2);
  font-size: 15.5px;
  color: var(--t-body);
  transition: border-color 0.3s;
}
.checklist li:hover { border-color: rgba(13, 141, 134, 0.45); }
.checklist li::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 1px;
}

/* Numbered stack (deliverables / curriculum) */
.stack-list { display: flex; flex-direction: column; max-width: 920px; }
.stack-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--hair);
  align-items: flex-start;
}
.stack-item:first-child { border-top: 1px solid var(--hair); }
.stack-item .icon {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--teal-600);
  line-height: 1.2;
}
.stack-item h5 { font-size: 19px; margin-bottom: 8px; }
.stack-item p { font-size: 15.5px; color: var(--t-body); max-width: 64ch; }

/* Phases */
.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.phase {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  position: relative;
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.phase:hover {
  border-color: rgba(13, 141, 134, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.phase .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--teal-600);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 14px;
  margin-bottom: 20px;
}
.phase .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 8px;
}
.phase h5 { font-size: 19px; margin-bottom: 16px; }
.phase ul li {
  font-size: 14.5px;
  color: var(--t-body);
  padding: 7px 0 7px 18px;
  position: relative;
}
.phase ul li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--teal-600);
  font-weight: 700;
}

/* Investment — navy accent card */
.invest-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.price-block {
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 90% at 20% 0%, rgba(18, 179, 168, 0.16), transparent 60%),
    linear-gradient(140deg, var(--ink-850), var(--ink-900));
}
.price-block .price {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 300;
  color: var(--t-bright);
  line-height: 1.1;
}
.price-block .price small {
  font-size: 0.42em;
  color: var(--t-faint);
  font-family: var(--f-body);
}
.price-block .price-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-300);
  margin: 18px 0;
}
.price-block .terms { font-size: 14.5px; color: var(--t-soft); }
.kv-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
}
.kv-list .k { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-dim); padding-top: 2px; }
.kv-list .v { color: var(--t-ink); text-align: right; max-width: 60%; }

/* Agent cards */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 30px);
}
.agent-card {
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.agent-card:hover {
  border-color: rgba(13, 141, 134, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.agent-card.soon { opacity: 0.72; }
.agent-card .agent-glyph {
  font-size: 30px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(18, 179, 168, 0.09);
  border: 1px solid rgba(13, 141, 134, 0.25);
  margin-bottom: 22px;
}
.agent-card h3 { font-size: 26px; margin-bottom: 6px; }
.agent-card .agent-tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 20px;
}
.agent-card .agent-body { flex: 1; }
.agent-card .agent-body h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--t-dim);
  margin: 18px 0 8px;
}
.agent-card .agent-body h5:first-child { margin-top: 0; }
.agent-card .agent-body p { font-size: 14.5px; color: var(--t-body); }
.agent-card .agent-body ul { display: flex; flex-wrap: wrap; gap: 8px; }
.agent-card .agent-body ul li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 100px;
  color: var(--t-dim);
}
.agent-price {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.agent-price .p {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--t-ink);
}
.agent-price .p small { font-size: 14px; color: var(--t-dim); font-family: var(--f-body); }
.agent-price .note { font-size: 12px; color: var(--t-dim); margin-top: 4px; }
.agent-card .btn { margin-top: 20px; width: 100%; }

/* Use-case cards */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.5vw, 30px);
}
.use-case-card {
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.use-case-card:hover {
  border-color: rgba(201, 138, 40, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.use-case-card .icon { font-size: 28px; margin-bottom: 18px; }
.use-case-card h4 { font-size: 21px; margin-bottom: 10px; }
.use-case-card > p { font-size: 15px; color: var(--t-dim); margin-bottom: 20px; }
.example {
  padding: 14px 16px;
  background: rgba(18, 179, 168, 0.06);
  border-left: 2px solid var(--teal-600);
  border-radius: 6px;
  font-size: 13.5px;
  margin-bottom: 10px;
}
.example .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  display: block;
  margin-bottom: 4px;
}
.example .text { color: var(--t-body); line-height: 1.5; }
.use-case-card .btn { margin-top: 20px; align-self: flex-start; }

/* Timeline rows (engagement sizes) */
.timeline-rows { display: flex; flex-direction: column; gap: 16px; max-width: 920px; }
.timeline-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  align-items: center;
  transition: border-color 0.35s;
}
.timeline-row:hover { border-color: rgba(13, 141, 134, 0.45); }
.timeline-row .t-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.timeline-row .t-duration {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--t-ink);
  margin-bottom: 6px;
}
.timeline-row .t-example { font-size: 14px; color: var(--t-dim); font-style: italic; }

/* FAQ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq { border-bottom: 1px solid var(--hair); }
.faq:first-of-type { border-top: 1px solid var(--hair); }
.faq summary {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 23px);
  color: var(--t-ink);
  padding: 26px 48px 26px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 26px;
  color: var(--teal-600);
  transition: transform 0.35s var(--ease-out);
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--teal-700); }
.faq-answer {
  padding: 0 0 28px;
  font-size: 15.5px;
  color: var(--t-body);
  max-width: 66ch;
}

/* Next paths */
.next-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.path-card {
  padding: clamp(30px, 3.5vw, 44px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.path-card:hover {
  border-color: rgba(13, 141, 134, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.path-card h4 { font-family: var(--f-display); font-weight: 400; font-size: 25px; margin-bottom: 12px; }
.path-card p { font-size: 15px; color: var(--t-body); margin-bottom: 24px; }

/* Steps (numbered, horizontal) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.step-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.step-card .step-num {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--teal-600);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step-card h5 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--t-body); }

/* Contact cards */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.contact-card {
  padding: clamp(30px, 3.5vw, 44px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.contact-card:hover {
  border-color: rgba(13, 141, 134, 0.5);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.contact-card .glyph { font-size: 26px; margin-bottom: 20px; }
.contact-card h4 { font-family: var(--f-display); font-weight: 400; font-size: 25px; margin-bottom: 12px; }
.contact-card p { font-size: 15px; color: var(--t-body); flex: 1; margin-bottom: 26px; }

/* Questions */
.questions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.question {
  padding: 26px 28px;
  border-left: 2px solid var(--teal-600);
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-left: 2px solid var(--teal-600);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.question h5 { font-size: 17px; margin-bottom: 8px; }
.question p { font-size: 14.5px; color: var(--t-body); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(18, 179, 168, 0.12), transparent 45%);
  pointer-events: none;
}

.about-narrative {
  max-width: 760px;
  margin-inline: auto;
}
.about-narrative p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--t-body);
}
.about-narrative p strong { color: var(--t-ink); font-weight: 600; }
.about-narrative p em { color: var(--teal-700); }
.about-narrative .drop::first-letter {
  font-family: var(--f-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  color: var(--teal-600);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.pillar {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--hair);
  border-top: 2px solid var(--teal-600);
  background: var(--paper-2);
  border-radius: 0 0 var(--radius) var(--radius);
}
.pillar .num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--teal-600);
  display: block;
  margin-bottom: 20px;
}
.pillar h4 { font-family: var(--f-display); font-weight: 400; font-size: 23px; margin-bottom: 12px; }
.pillar p { font-size: 15px; color: var(--t-body); }

/* Career timeline */
.timeline { max-width: 860px; margin-inline: auto; position: relative; padding-left: 36px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--teal-600), var(--hair));
}
.timeline-item { position: relative; padding-bottom: clamp(36px, 5vw, 56px); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper-0);
  border: 2px solid var(--teal-600);
}
.timeline-item .year {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--amber-500);
  margin-bottom: 10px;
}
.timeline-item h5 { font-size: 19px; margin-bottom: 10px; }
.timeline-item p { font-size: 15px; color: var(--t-body); max-width: 64ch; }

/* ============================================================
   CTA SECTION — navy contrast band
   ============================================================ */
.cta-section {
  position: relative;
  padding-block: clamp(110px, 15vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 90% at 50% 115%, rgba(18, 179, 168, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 0%, rgba(232, 168, 73, 0.08), transparent 65%),
    linear-gradient(160deg, var(--ink-850), var(--ink-950));
  text-align: center;
}
.cta-section ::selection { background: var(--teal-400); color: var(--ink-950); }
.cta-inner { position: relative; z-index: 2; max-width: 800px; margin-inline: auto; }
.cta-inner .mono-label { justify-content: center; margin-bottom: 26px; color: var(--teal-300); }
.cta-inner .mono-label::before { display: none; }
.cta-inner h2 { font-size: clamp(38px, 5.6vw, 76px); margin-bottom: 24px; color: var(--t-bright); }
.cta-inner h2 .italic-accent { color: var(--teal-300); }
.cta-inner p { font-size: clamp(16px, 1.5vw, 19px); color: var(--t-soft); max-width: 54ch; margin: 0 auto 44px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-section .btn-primary { background: var(--teal-400); color: var(--ink-950); }
.cta-section .btn-primary:hover {
  background: var(--teal-300);
  box-shadow: 0 12px 40px -8px rgba(37, 207, 193, 0.45);
}
.cta-section .btn-outline { border-color: var(--hair-light-strong); color: var(--t-bright); }
.cta-section .btn-outline:hover { border-color: var(--teal-400); color: var(--teal-300); }
.cta-plant {
  position: absolute;
  left: 50%;
  bottom: -12%;
  transform: translateX(-50%);
  width: clamp(220px, 24vw, 380px);
  aspect-ratio: 650 / 1268;
  background: linear-gradient(180deg, var(--ink-500), transparent 85%);
  -webkit-mask: url("favicons/plant-master.png") no-repeat center / contain;
  mask: url("favicons/plant-master.png") no-repeat center / contain;
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================================
   FOOTER — navy
   ============================================================ */
footer {
  background: var(--ink-950);
  border-top: 1px solid var(--hair-light);
  padding: clamp(64px, 8vw, 110px) 0 36px;
  position: relative;
  overflow: hidden;
  color: var(--t-soft);
}
footer ::selection { background: var(--teal-400); color: var(--ink-950); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand { margin-bottom: 20px; }
.footer-brand img {
  width: 190px;
  height: auto;
  background: #ffffff; /* official logo stays navy-on-white */
  border-radius: 10px;
  padding: 12px 16px;
}
.footer-grid > div > p { font-size: 14px; color: var(--t-faint); max-width: 34ch; }
.footer-grid .fine { font-size: 12px; margin-top: 10px; color: var(--t-faint); opacity: 0.7; }
.footer-grid h6 { margin-bottom: 18px; color: var(--t-faint); }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a {
  font-size: 14.5px;
  color: var(--t-soft);
  transition: color 0.25s;
}
.footer-grid ul a:hover { color: var(--teal-300); }
.footer-bottom {
  border-top: 1px solid var(--hair-light);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--t-faint);
}
.footer-bottom a { color: var(--t-faint); margin-left: 18px; transition: color 0.25s; }
.footer-bottom a:hover { color: var(--teal-300); }
.footer-giant {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.9;
  color: rgba(238, 243, 249, 0.045);
  text-align: center;
  user-select: none;
  pointer-events: none;
  margin-top: clamp(24px, 4vw, 48px);
  margin-bottom: -0.22em;
  white-space: nowrap;
}

/* Back link */
.back-link {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-dim);
  transition: color 0.25s;
  display: inline-flex;
  gap: 8px;
}
.back-link:hover { color: var(--teal-700); }

/* ============================================================
   EDITORIAL FIGURES
   ============================================================ */
.split-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.split-head .section-head { margin-bottom: 0; }

.media-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
}
.media-figure img { width: 100%; height: 100%; object-fit: cover; }

.journey-img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hair);
  margin-bottom: 22px;
}
.journey-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.journey-step:hover .journey-img img { transform: scale(1.04); }

.case-media {
  margin: 0 0 clamp(28px, 4vw, 44px);
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hair-light);
}
.case-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .offer-card { grid-template-columns: 1fr; gap: 18px; }
  .offer-card .go { display: none; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--hair); }
  .stat:nth-child(-n + 2) { border-top: none; }
  .journey-flow { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .split-head { grid-template-columns: 1fr; }
  .split-head .media-figure { max-width: 560px; }
  .invest-block { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .nav-items { display: none; }
  .nav-toggle { display: flex; }
  .topbar-inner { height: 68px; }
  .brand .brand-logo { height: 40px; }
  .hero { padding-top: 100px; }
  .hero-actions .btn { width: 100%; }
  .timeline-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .plant-watermark { opacity: 0.05; right: -90px; }
  .scroll-hint { display: none; }
  .stack-item { grid-template-columns: 48px 1fr; }
  .cta-actions .btn { width: 100%; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
