:root {
  --green-deep:   #0d1a0f;
  --green-dark:   #1a2e1e;
  --green-mid:    #2a4a2e;
  --green-muted:  #4a6e4e;
  --green-fog:    #8a9e8a;
  --brass:        #b8922a;
  --brass-dim:    #7a5e18;
  --brass-light:  #d4b050;
  --cream:        #f5f0e6;
  --cream-dim:    #e8e0d0;
  --parchment:    #f0ead8;
  --ink:          #1a1a14;
  --rule:         #2a3e2e;
  --rule-light:   #3a5a3e;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,26,15,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span {
  color: var(--brass);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.5rem);
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.826rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-fog);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--brass) !important;
  color: var(--green-deep) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--brass-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 10rem 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

/* Subtle glass texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(42,74,46,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 80%, rgba(184,146,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.826rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--green-fog);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.hero-desc strong {
  color: var(--cream);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--green-deep);
  padding: 1rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.864rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--green-fog);
  font-family: 'Space Mono', monospace;
  font-size: 0.845rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--green-muted);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

/* ══════════════════════════════════════════════
   CINEMATIC PAPER ANIMATION — HERO VISUALIZATION
   ══════════════════════════════════════════════ */

.frag-viz {
  position: relative;
  z-index: 1;
  height: 640px;
  perspective: 1200px;
}

/* ── PAPER STAGE ── */
.paper-stage {
  position: absolute;
  inset: 0;
}

/* ── INDIVIDUAL PAPER DOCUMENTS ── */
.paper {
  /* fall + tumble params — set per document below */
  --x0: 0px; --x1: 0px;
  --rx0: 0deg; --ry0: 0deg; --rz0: 0deg;
  --rx1: 0deg; --ry1: 0deg; --rz1: 0deg;
  --dur: 9s;
  position: absolute;
  left: 50%; top: 50%;
  width: 172px;
  height: auto;
  margin: -112px 0 0 -86px;   /* approx center anchor so transforms pivot on the middle */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  /* fresh paper drop-shadow that follows the sheet's real (transparent) shape */
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.55));
  animation: docFall var(--dur) linear infinite;
}

/* ── PAPER HEADER STRIPE ── */
.paper-header {
  background: #1a2e1e;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.paper-co {
  font-size: 0.665rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a9e8a;
}

.paper-doctype {
  font-size: 0.665rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
}

/* ── PAPER BODY ── */
.paper-meta {
  padding: 0.5rem 0.7rem 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 2;
}

.paper-row {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.721rem;
  line-height: 1.5;
}

.paper-row .pk { color: #8a7e68; }
.paper-row .pv { color: #1a1510; font-weight: 700; }
.paper-row .ph { color: #8a2a08; font-weight: 700; }

.paper-rule {
  height: 1px;
  background: #c8bfa4;
  margin: 0.2rem 0.7rem;
}

.paper-lines {
  padding: 0.3rem 0.7rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 2;
}

.paper-line {
  font-size: 0.715rem;
  color: #2a2218;
  line-height: 1.5;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #e8e0cc;
}

.paper-line:last-child { border-bottom: none; }
.paper-line.pl-muted { color: #9a8e78; }
.paper-line.pl-hi { color: #8a2a08; }

.paper-table {
  padding: 0.3rem 0.7rem 0.5rem;
  position: relative;
  z-index: 2;
}

.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr;
  gap: 0.2rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid #e8e0cc;
  font-size: 0.702rem;
  line-height: 1.5;
  color: #2a2218;
}

.pt-row:last-child { border-bottom: none; }
.pt-head { color: #8a7e68 !important; font-weight: 700; }
.pt-total { font-weight: 700; border-top: 1px solid #c8bfa4; margin-top: 0.15rem; padding-top: 0.2rem; }

.paper-foot {
  padding: 0.3rem 0.7rem;
  border-top: 1px solid #e8e0cc;
  font-size: 0.69rem;
  color: #9a8e78;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Faint watermark */
.paper-watermark {
  position: absolute;
  bottom: 0.35rem;
  right: 0.5rem;
  font-size: 0.616rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42,34,24,0.07);
  pointer-events: none;
  font-weight: 700;
  z-index: 3;
}

/* ── FALL + TUMBLE PARAMS — each sheet falls on its own path, speed & spin ── */
.d1  { --x0:-190px; --x1:-158px; --rx0:-14deg; --ry0:22deg;  --rz0:-16deg; --rx1:26deg;  --ry1:-30deg; --rz1:44deg;  --dur:9s;    animation-delay:-1.2s; }
.d2  { --x0:-96px;  --x1:-128px; --rx0:18deg;  --ry0:-34deg; --rz0:12deg;  --rx1:-24deg; --ry1:40deg;  --rz1:-40deg; --dur:10.5s; animation-delay:-6.4s; }
.d3  { --x0:-8px;   --x1:-38px;  --rx0:-20deg; --ry0:44deg;  --rz0:-10deg; --rx1:22deg;  --ry1:-46deg; --rz1:36deg;  --dur:8.4s;  animation-delay:-3.0s; }
.d4  { --x0:88px;   --x1:120px;  --rx0:14deg;  --ry0:-24deg; --rz0:20deg;  --rx1:-28deg; --ry1:34deg;  --rz1:-30deg; --dur:11s;   animation-delay:-8.2s; }
.d5  { --x0:192px;  --x1:158px;  --rx0:-10deg; --ry0:18deg;  --rz0:-24deg; --rx1:30deg;  --ry1:-38deg; --rz1:18deg;  --dur:9.6s;  animation-delay:-2.4s; }
.d6  { --x0:-210px; --x1:-182px; --rx0:24deg;  --ry0:-40deg; --rz0:14deg;  --rx1:-30deg; --ry1:44deg;  --rz1:-26deg; --dur:12s;   animation-delay:-7.6s; }
.d7  { --x0:44px;   --x1:74px;   --rx0:-26deg; --ry0:30deg;  --rz0:-14deg; --rx1:24deg;  --ry1:-42deg; --rz1:40deg;  --dur:10.8s; animation-delay:-0.8s; }
.d8  { --x0:-140px; --x1:-168px; --rx0:12deg;  --ry0:-16deg; --rz0:22deg;  --rx1:-30deg; --ry1:36deg;  --rz1:-20deg; --dur:9.2s;  animation-delay:-5.1s; }
.d9  { --x0:136px;  --x1:104px;  --rx0:-18deg; --ry0:-28deg; --rz0:16deg;  --rx1:28deg;  --ry1:30deg;  --rz1:-34deg; --dur:11.6s; animation-delay:-4.0s; }
.d10 { --x0:-46px;  --x1:-16px;  --rx0:20deg;  --ry0:38deg;  --rz0:-20deg; --rx1:-22deg; --ry1:-32deg; --rz1:28deg;  --dur:8.8s;  animation-delay:-9.3s; }
.d11 { --x0:-118px; --x1:-88px;  --rx0:16deg;  --ry0:-30deg; --rz0:18deg;  --rx1:-26deg; --ry1:38deg;  --rz1:-32deg; --dur:10.2s; animation-delay:-3.7s; }
.d12 { --x0:118px;  --x1:150px;  --rx0:-22deg; --ry0:26deg;  --rz0:-18deg; --rx1:24deg;  --ry1:-36deg; --rz1:34deg;  --dur:9.4s;  animation-delay:-8.9s; }
.d13 { --x0:-64px;  --x1:-34px;  --rx0:-14deg; --ry0:-38deg; --rz0:24deg;  --rx1:28deg;  --ry1:32deg;  --rz1:-22deg; --dur:11.4s; animation-delay:-1.9s; }
.d14 { --x0:64px;   --x1:34px;   --rx0:22deg;  --ry0:34deg;  --rz0:-12deg; --rx1:-28deg; --ry1:-40deg; --rz1:26deg;  --dur:8.6s;  animation-delay:-6.8s; }
.d15 { --x0:-206px; --x1:-176px; --rx0:-18deg; --ry0:20deg;  --rz0:16deg;  --rx1:26deg;  --ry1:-30deg; --rz1:-28deg; --dur:12.2s; animation-delay:-4.6s; }
.d16 { --x0:206px;  --x1:176px;  --rx0:14deg;  --ry0:-26deg; --rz0:-22deg; --rx1:-24deg; --ry1:36deg;  --rz1:20deg;  --dur:9.9s;  animation-delay:-2.7s; }
.d17 { --x0:8px;    --x1:38px;   --rx0:-24deg; --ry0:40deg;  --rz0:14deg;  --rx1:20deg;  --ry1:-34deg; --rz1:-30deg; --dur:10.9s; animation-delay:-7.9s; }
.d18 { --x0:-158px; --x1:-128px; --rx0:20deg;  --ry0:-22deg; --rz0:-16deg; --rx1:-30deg; --ry1:30deg;  --rz1:32deg;  --dur:8.9s;  animation-delay:-5.6s; }
.d19 { --x0:158px;  --x1:128px;  --rx0:-16deg; --ry0:28deg;  --rz0:20deg;  --rx1:24deg;  --ry1:-38deg; --rz1:-24deg; --dur:11.1s; animation-delay:-0.5s; }
.d20 { --x0:-24px;  --x1:6px;    --rx0:18deg;  --ry0:-36deg; --rz0:-24deg; --rx1:-22deg; --ry1:34deg;  --rz1:22deg;  --dur:9.7s;  animation-delay:-10.4s; }

/* ── FALL KEYFRAME — sheet tumbles from above the frame to below it ── */
@keyframes docFall {
  0%   { opacity: 0; transform: translate(var(--x0), -440px) rotateX(var(--rx0)) rotateY(var(--ry0)) rotateZ(var(--rz0)); }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x1),  440px) rotateX(var(--rx1)) rotateY(var(--ry1)) rotateZ(var(--rz1)); }
}

/* The one document that survives the merge sits above the others */
.paper.is-primary { z-index: 5; }

/* ── CHAT WINDOW EMERGENCE ── */
.chat-emergence {
  position: absolute;
  left: 50%; top: 50%;
  width: 100%;
  max-width: 424px;
  height: 80%;
  max-height: 520px;
  background:
    radial-gradient(120% 75% at 50% 0%, rgba(42,74,46,0.30) 0%, transparent 62%),
    var(--green-deep);
  border: 1px solid var(--rule-light);
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  display: flex;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -44%) scale(0.82);
  transform-origin: center center;
  transition: none;
  pointer-events: none;
  z-index: 6;
}

.chat-emergence.appearing {
  transition:
    opacity  0.5s ease,
    transform 0.65s cubic-bezier(0.34,1.2,0.64,1);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.chat-emergence.disappearing {
  transition: opacity 0.45s ease, transform 0.4s ease;
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.9);
  pointer-events: none;
}

/* ── CLEAN CHAT — stripped-down "new conversation" screen ── */
.cc-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.75rem 1.5rem 1.6rem;
  text-align: center;
  min-height: 0;
}

/* brand mark + private-status line */
.cc-brand { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.cc-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--brass);
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(184,146,42,0.35);
}
.cc-status {
  font-family: 'Space Mono', monospace;
  font-size: 0.727rem;
  letter-spacing: 0.07em;
  color: var(--green-fog);
  display: flex; align-items: center; gap: 0.4rem;
}
.cc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4fae5a; box-shadow: 0 0 6px #4fae5a;
  animation: cePulse 2.2s infinite;
}
@keyframes cePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* greeting */
.cc-greeting {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 20ch;
}
.cc-greeting em { font-style: italic; color: var(--brass-light); }

/* answer — hidden until a question is asked */
.cc-answer {
  display: none;
  width: 100%;
  max-width: 310px;
  text-align: left;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.876rem;
  line-height: 1.7;
  color: var(--cream-dim);
  background: rgba(42,74,46,0.16);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.cc-answer.show { display: block; }
.cc-answer strong, .cc-answer .ce-hi { color: var(--brass-light); font-weight: 600; }
.cc-answer .ce-srcref {
  display: block; margin-top: 0.55rem; padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
  font-family: 'Space Mono', monospace; font-size: 0.727rem;
  letter-spacing: 0.05em; color: var(--brass-dim);
}

/* input pill */
.cc-inputwrap {
  width: 100%;
  max-width: 396px;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--green-dark);
  border: 1px solid var(--rule-light);
  border-radius: 14px;
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 6px 18px rgba(0,0,0,0.3);
}
.cc-input {
  flex: 1; min-width: 0; text-align: left;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--green-muted);
  overflow-wrap: break-word;
}
.cc-input.typed { color: var(--cream); }
.cc-caret { color: var(--brass); font-weight: 700; }
.cc-send {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 9px;
  background: var(--brass); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}

/* suggestion chips */
.cc-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; transition: opacity 0.4s ease; }
.cc-chips.hide { opacity: 0; }
.cc-chip {
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--green-fog);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
}

/* ── SECTION BASE ── */
section { border-bottom: 1px solid var(--rule); }

.section-inner {
  padding: 6rem 4rem;
}

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.802rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-h2 em { color: var(--brass-light); font-style: italic; }

.section-lead {
  font-size: 1.15rem;
  color: var(--green-fog);
  max-width: 58ch;
  line-height: 1.8;
}

/* ── THE PROBLEM SECTION ── */
.problem-section { background: var(--green-dark); }

/* ── PROBLEM FUNNEL — one question, four documents, one answer ── */
.funnel {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* question (top) and answer (bottom) */
.funnel-q, .funnel-a {
  width: 100%;
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.funnel-q {
  border: 1px solid var(--brass-dim);
  background: rgba(184,146,42,0.05);
  padding: 1.6rem 2rem;
}
.funnel-q-label, .funnel-a-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.6rem;
}
.funnel-q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

/* four documents (2x2) with a central connector spine */
.funnel-docs {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin: 3rem auto;
  z-index: 1;
}
.funnel-docs::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3rem;
  bottom: -3rem;
  width: 2px;
  background: var(--brass-dim);
  z-index: 0;
}
.funnel-doc {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  background: var(--green-deep);
  border: 1px solid var(--rule);
  padding: 1.25rem 1.25rem 1.4rem;
}
.funnel-doc img {
  width: min(230px, 88%);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.fd-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}
.fd-frag { font-size: 1rem; color: var(--cream); line-height: 1.4; }
.fd-frag b { color: var(--brass-light); font-weight: 600; }

/* connector ticks from each doc to the central spine */
.funnel-doc::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--brass-dim);
  z-index: 0;
}
.funnel-doc:nth-child(odd)::after  { right: -2rem; }
.funnel-doc:nth-child(even)::after { left: -2rem; }

/* the answer (bottom) — the payoff, highlighted */
.funnel-a {
  border: 1px solid var(--brass);
  background: linear-gradient(160deg, rgba(184,146,42,0.16), rgba(184,146,42,0.04));
  padding: 1.75rem 2.25rem;
  box-shadow: 0 0 44px rgba(184,146,42,0.10);
}
.funnel-a-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--cream-dim);
}
.funnel-a-text b { color: var(--brass-light); font-weight: 700; }

/* ── THE SOLUTION SECTION ── */
.solution-section { background: var(--green-deep); }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

/* Wardian case illustration */
.wardian-case {
  border: 2px solid var(--brass-dim);
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, rgba(42,74,46,0.3) 0%, rgba(13,26,15,0.8) 100%);
}

.wardian-case::before {
  content: 'WARDIAN CASE';
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  background: var(--green-deep);
  padding: 0 0.5rem;
}

.wardian-case::after {
  content: '1829 — N. B. Ward';
  position: absolute;
  bottom: -0.6rem;
  right: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.721rem;
  letter-spacing: 0.12em;
  color: var(--brass-dim);
  background: var(--green-deep);
  padding: 0 0.5rem;
}

.case-interior {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.case-doc {
  background: rgba(26,46,30,0.8);
  border: 1px solid var(--green-mid);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.3s;
}

.case-doc:hover { border-color: var(--brass-dim); }

.case-doc-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.814rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.case-doc-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.752rem;
  color: var(--brass);
  white-space: nowrap;
}

.case-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0;
}

.case-connector-line {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--green-mid), var(--brass-dim), var(--green-mid));
}

.case-query {
  margin-top: 0.75rem;
  background: rgba(184,146,42,0.08);
  border: 1px solid var(--brass-dim);
  padding: 0.85rem 1rem;
}

.case-q-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  color: var(--brass);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.case-q-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.814rem;
  color: var(--cream);
  line-height: 1.5;
}

.case-answer {
  margin-top: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.802rem;
  color: var(--brass-light);
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid var(--brass-dim);
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sol-point {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sol-point:last-child { border-bottom: none; }

.sol-icon {
  color: var(--brass);
  font-family: 'Space Mono', monospace;
  font-size: 0.845rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
  width: 1.5rem;
}

.sol-title {
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.sol-desc {
  font-size: 0.95rem;
  color: var(--green-fog);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--green-dark); }

.process-timeline {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.process-phase {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.2s;
}

.process-phase:last-child { border-right: none; }
.process-phase:hover { background: rgba(184,146,42,0.04); }

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 1rem;
}

.phase-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.826rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.phase-desc {
  font-size: 0.938rem;
  color: var(--green-fog);
  line-height: 1.65;
}

.phase-time {
  margin-top: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.752rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  border: 1px solid var(--brass-dim);
  display: inline-block;
  padding: 0.2rem 0.5rem;
}

/* ── INDUSTRIES ── */
.industries-section { background: var(--green-deep); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.industry-card {
  border: 1px solid var(--rule);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s;
}

.industry-card:hover {
  border-color: var(--brass-dim);
  background: rgba(184,146,42,0.04);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s, color 0.2s;
}

.industry-card:hover .industry-icon {
  border-color: var(--brass);
  color: var(--brass-light);
}

.industry-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.industry-desc {
  font-size: 0.938rem;
  color: var(--green-fog);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.industry-queries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iq {
  font-family: 'Space Mono', monospace;
  font-size: 0.783rem;
  color: var(--green-fog);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.5;
}

.iq::before {
  content: '"';
  color: var(--brass);
  flex-shrink: 0;
  font-size: 0.876rem;
}

/* ── WARDIAN ORIGIN SECTION ── */
.origin-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.origin-section::before {
  content: '1829';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(184,146,42,0.04);
  pointer-events: none;
  line-height: 1;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.origin-text {}

.origin-pull {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  border-left: 3px solid var(--brass);
  padding-left: 1.75rem;
  margin: 2rem 0;
}

.origin-body {
  font-size: 1rem;
  color: var(--green-fog);
  line-height: 1.8;
}

.origin-body p { margin-bottom: 1rem; }

.origin-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ot-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}

.ot-item:last-child { border-bottom: none; }

.ot-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brass);
  min-width: 3rem;
  flex-shrink: 0;
}

.ot-text {
  font-size: 0.95rem;
  color: var(--green-fog);
  line-height: 1.65;
}

.ot-text strong { color: var(--cream); font-weight: 500; }

/* ── PRICING ── */
.pricing-section { background: var(--green-deep); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-card {
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  transition: border-color 0.2s;
  position: relative;
}

.pricing-card:hover { border-color: var(--green-muted); }

.pricing-card.featured {
  border-color: var(--brass-dim);
  background: rgba(184,146,42,0.05);
}

.pricing-card.featured::before {
  content: 'Most Common';
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  background: var(--green-deep);
  padding: 0 0.5rem;
}

.price-tier {
  font-family: 'Space Mono', monospace;
  font-size: 0.783rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.783rem;
  color: var(--green-fog);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

.price-divider {
  height: 1px;
  background: var(--rule);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.price-features li {
  font-size: 0.938rem;
  color: var(--green-fog);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.55;
}

.price-features li::before {
  content: '→';
  color: var(--brass);
  font-family: 'Space Mono', monospace;
  font-size: 0.814rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.btn-card {
  display: block;
  text-align: center;
  padding: 0.85rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.814rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--green-muted);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-card:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--green-deep);
}

.pricing-card.featured .btn-card {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--green-deep);
}

.pricing-card.featured .btn-card:hover {
  background: var(--brass-light);
}

/* ── BOOKING SECTION ── */
.booking-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 65% at 82% 8%, rgba(184,146,42,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 8% 95%, rgba(42,74,46,0.55) 0%, transparent 60%),
    var(--green-dark);
}
.booking-section .section-eyebrow { color: var(--brass-light); }
.booking-section .section-h2 { font-size: clamp(2.3rem, 3.8vw, 3.3rem); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.booking-left {}

.booking-desc {
  font-size: 1.25rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.booking-what {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.bw-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}

.bw-item:last-child { border-bottom: none; }

.bw-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--brass);
  min-width: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.05rem;
}

.bw-text {
  font-size: 1.08rem;
  color: var(--green-fog);
  line-height: 1.6;
}

.bw-text strong { color: var(--cream); font-weight: 600; }

.booking-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--green-fog);
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.booking-note b { color: var(--brass-light); font-weight: 700; }

/* Booking widget — the section's focal card */
.booking-widget {
  background: linear-gradient(165deg, rgba(42,74,46,0.42) 0%, var(--green-deep) 62%);
  border: 1px solid var(--brass-dim);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 40px rgba(184,146,42,0.06);
}

.cal-embed {
  width: 100%;
  min-height: 600px;
  overflow: auto;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}

.widget-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule-light);
}

.widget-timezone {
  font-family: 'Space Mono', monospace;
  font-size: 0.86rem;
  color: var(--green-fog);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.widget-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.time-slot {
  border: 1px solid var(--rule-light);
  padding: 0.8rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.92rem;
  color: var(--cream-dim);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.04em;
  border-radius: 3px;
}

.time-slot:hover, .time-slot.selected {
  border-color: var(--brass);
  color: var(--green-deep);
  background: var(--brass);
  font-weight: 700;
}

.intake-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.intake-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.intake-input {
  background: var(--green-dark);
  border: 1px solid var(--rule-light);
  padding: 0.8rem 0.95rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.02rem;
  color: var(--cream);
  width: 100%;
  border-radius: 3px;
  transition: border-color 0.2s;
  outline: none;
}

.intake-input:focus { border-color: var(--brass); }
.intake-input::placeholder { color: var(--green-muted); }

.widget-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  color: var(--green-fog);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

/* ── CTA FOOTER ── */
.cta-section {
  background: var(--green-dark);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.cta-section::before {
  content: 'WARDIAN';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 22vw;
  font-weight: 900;
  color: rgba(184,146,42,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-h2 em { color: var(--brass-light); font-style: italic; }

.cta-sub {
  font-size: 1.15rem;
  color: var(--green-fog);
  max-width: 52ch;
  margin: 0 auto 3rem;
  line-height: 1.75;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  border-top: 1px solid var(--rule);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo span { color: var(--brass); }

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.764rem;
  color: var(--green-fog);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.764rem;
  color: var(--green-muted);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-mid);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.752rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-fog);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.783rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.trust-item::before {
  content: '✓';
  color: var(--brass);
}

/* ── FAQ ── */
.faq-section { background: var(--green-deep); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 4rem;
}

.faq-item {
  padding: 2rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  transition: background 0.15s;
}

.faq-item:nth-child(2n) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-item:hover { background: rgba(184,146,42,0.03); }

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--green-fog);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.25rem; gap: 1rem; }
  .nav-logo { font-size: 1.05rem; }
  /* Keep the booking CTA in the header on mobile; drop only the section anchors */
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 0.777rem; padding: 0.5rem 0.85rem; letter-spacing: 0.05em; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 3rem; }
  .frag-viz { height: 480px; }
  .section-inner { padding: 4rem 1.5rem; }
  .funnel-docs { grid-template-columns: 1fr; gap: 1.25rem; }
  .funnel-docs::before, .funnel-doc::after { display: none; }
  .solution-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .origin-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .faq-item:last-child { border-bottom: none; }
  .trust-bar { padding: 1rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ══════════════════════════════════════════════
   SEALED-SYSTEM DIAGRAM  (Solution section)
   ══════════════════════════════════════════════ */
.seal-flow {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1.25fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
.seal-stage { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.seal-cap {
  font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass);
}
.seal-sub {
  font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--green-fog);
  line-height: 1.5; max-width: 24ch;
}
.seal-docs { display: flex; justify-content: center; padding: 0.5rem 0; }
.seal-docs img {
  width: 92px; height: auto; margin-left: -26px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
}
.seal-docs img:first-child { margin-left: 0; }
.seal-docs img:nth-child(1){ transform: rotate(-6deg); }
.seal-docs img:nth-child(2){ transform: rotate(1deg) translateY(-6px); position: relative; z-index: 1; }
.seal-docs img:nth-child(3){ transform: rotate(7deg); }

.seal-arrow { color: var(--brass); display: flex; align-items: center; justify-content: center; }

.seal-case {
  position: relative;
  border: 1.5px solid var(--brass-dim);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(184,146,42,0.12), rgba(42,74,46,0.28));
  box-shadow: 0 0 55px rgba(184,146,42,0.14), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
}
.seal-case-tag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass);
  background: var(--green-deep); padding: 0 0.6rem; white-space: nowrap;
}
.seal-lock {
  width: 60px; height: 60px; margin: 0 auto 0.9rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--brass-light); border: 1px solid var(--brass-dim);
  background: rgba(184,146,42,0.08);
}
.seal-case-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 1rem;
}
.seal-case-labels { display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.seal-case-labels span {
  font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--brass-light); border: 1px solid var(--brass-dim); border-radius: 20px;
  padding: 0.25rem 0.7rem;
}
.seal-case-note {
  font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--green-fog);
  letter-spacing: 0.04em;
}
.seal-answer {
  border: 1px solid var(--brass-dim); border-radius: 8px;
  background: rgba(184,146,42,0.06);
  padding: 1rem 1.1rem; text-align: left;
}
.seal-answer-q {
  font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--green-fog);
  font-style: italic; margin-bottom: 0.6rem; line-height: 1.5;
}
.seal-answer-a { font-size: 0.92rem; color: var(--cream); line-height: 1.5; }
.seal-answer-a b { color: var(--brass-light); font-weight: 600; }

.seal-guarantees {
  margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.seal-g { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.seal-g svg { color: var(--brass); }
.seal-g span { font-size: 0.92rem; color: var(--green-fog); line-height: 1.4; }
.seal-g b { color: var(--cream); font-weight: 600; }

@media (max-width: 960px) {
  .seal-flow { grid-template-columns: 1fr; gap: 1.75rem; }
  .seal-arrow { transform: rotate(90deg); }
  .seal-guarantees { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; }
}

/* ── NAV PHONE ── */
.nav-links .nav-phone {
  color: var(--brass-light);
  text-transform: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-links .nav-phone:hover { color: var(--cream); }
@media (max-width: 1159px) { .nav-links .nav-phone { display: none; } }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--green-deep); }
.contact-methods {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-method {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-method:hover { border-color: var(--brass-dim); background: rgba(184,146,42,0.05); }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid var(--brass-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
}
.contact-method:hover .contact-icon { border-color: var(--brass); color: var(--brass-light); }
.contact-label {
  display: block;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-fog);
  margin-bottom: 0.3rem;
}
.contact-value {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif; font-size: 1.15rem;
  color: var(--cream); font-weight: 500;
}

/* ── LEGAL PAGES ── */
.legal-updated {
  font-family: 'Space Mono', monospace; font-size: 0.82rem; color: var(--green-fog);
  letter-spacing: 0.06em; margin-top: 0.75rem;
}
.legal-toc { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.legal-toc a {
  font-family: 'Space Mono', monospace; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brass); text-decoration: none; border-bottom: 1px solid var(--brass-dim); padding-bottom: 2px;
}
.legal-toc a:hover { color: var(--brass-light); }
.legal { max-width: 820px; margin-top: 2.5rem; }
.legal > p:first-child { color: var(--cream-dim); font-size: 1.1rem; }
.legal h4 {
  font-family: 'IBM Plex Sans', sans-serif; font-size: 1.2rem; font-weight: 600;
  color: var(--cream); margin: 2.25rem 0 0.6rem;
}
.legal p { color: var(--green-fog); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1rem; max-width: 74ch; }
.legal p strong, .legal li strong { color: var(--cream); font-weight: 600; }
.legal ul { margin: 0 0 1rem 1.4rem; }
.legal li { color: var(--green-fog); font-size: 1.02rem; line-height: 1.75; margin-bottom: 0.5rem; max-width: 72ch; }
.legal a { color: var(--brass-light); }
.legal .legal-note {
  border-left: 3px solid var(--brass-dim); background: rgba(184,146,42,0.05);
  padding: 1.1rem 1.4rem; margin: 1.5rem 0; color: var(--cream-dim);
}
.legal .legal-fill { color: var(--brass-light); font-weight: 600; }

/* footer legal links */
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a {
  font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--green-fog); text-decoration: none;
}
.footer-links a:hover { color: var(--cream); }
