@import url('https://api.fontshare.com/v2/css?f[]=gambetta@400,500,400i,500i&f[]=general-sans@400,500,600&display=swap');

/* =====================================================
   Revenue Recovery — Heritage Ledger
   Porcelain paper · warm ink · racing green
   ===================================================== */

:root {
  --paper: #F5F2EA;
  --card: #FCFAF4;
  --ink: #23241E;
  --muted: #71705F;
  --green: #1F4733;
  --green-deep: #173628;
  --green-tint: #E9EDE3;
  --line: rgba(35, 36, 30, 0.14);
  --hairline: 1px solid var(--line);

  --serif: 'Gambetta', Georgia, serif;
  --sans: 'General Sans', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.5rem, 6vw, 6rem);
  --shadow-card: 0 1px 2px rgba(35, 36, 30, 0.04), 0 12px 32px -16px rgba(35, 36, 30, 0.14);
  --shadow-lift: 0 2px 4px rgba(35, 36, 30, 0.05), 0 20px 44px -18px rgba(35, 36, 30, 0.20);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--paper); }

a { color: inherit; text-decoration: none; }

/* =====================================================
   Type
   ===================================================== */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.display em, .heading em {
  font-style: italic;
  color: var(--green);
}

.heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--green);
  margin-bottom: 1.4rem;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-top: 1.8rem;
}

.intro-sub {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 36rem;
}

/* =====================================================
   Header
   ===================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem var(--gutter);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

header.scrolled {
  background: rgba(245, 242, 234, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.8vw, 2.6rem);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a { position: relative; padding: 0.25rem 0; transition: color 0.3s ease; }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.cta-short { display: none; }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  background: var(--green);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--green);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.btn:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(31, 71, 51, 0.5);
}

.btn:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.btn .arrow { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-small { padding: 0.65rem 1.3rem; font-size: 0.84rem; }

.btn-paper { background: var(--paper); color: var(--green); border-color: var(--paper); }
.btn-paper:hover { background: #fff; box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.35); }

.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--paper); }

.btn-wide { width: 100%; }

.link-quiet {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.link-quiet:hover { border-color: var(--green); }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 92svh;
  padding: clamp(6.5rem, 15vh, 10rem) var(--gutter) clamp(2rem, 5vh, 4rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.hero-proofline {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 30rem;
}

.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.window-art {
  width: min(100%, 340px);
  height: auto;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.window-art .draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.6s var(--ease) forwards;
}

.window-art .d1 { animation-delay: 0.2s; }
.window-art .d2 { animation-delay: 0.45s; }
.window-art .d3 { animation-delay: 0.8s; animation-duration: 1.1s; }
.window-art .d4 { animation-delay: 1.0s; }
.window-art .d5 { animation-delay: 1.15s; }
.window-art .d6 { animation-delay: 1.45s; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.art-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

/* =====================================================
   Stat strip
   ===================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 var(--gutter);
  padding: 1.8rem 0;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.stat span { font-size: 0.86rem; color: var(--muted); }

/* =====================================================
   Sections
   ===================================================== */
.section { padding: clamp(4.5rem, 9vw, 8.5rem) var(--gutter); }

.section-tinted { background: var(--green-tint); }

.section-intro {
  max-width: 54rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* =====================================================
   Cards
   ===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.card {
  background: var(--card);
  border: var(--hairline);
  border-radius: 14px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card-icon, .step-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-tint);
  margin-bottom: 1.5rem;
}

.card-icon svg, .step-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3, .step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.card p, .step p { font-size: 0.95rem; color: var(--muted); }

/* =====================================================
   Steps + deliverables (the sprint)
   ===================================================== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.step .step-icon { background: var(--card); }

.step-days {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.deliverables {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-card);
}

.deliverables-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}

.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2.5rem;
}

/* =====================================================
   Proof — SMS + recovery board
   ===================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: start;
}

.proof-item figcaption {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 32rem;
}

.sms {
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.9rem;
}

.sms-meta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.sms-bubble {
  background: var(--green-tint);
  border-radius: 16px 16px 16px 4px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 92%;
}

.sms-reply {
  background: var(--green);
  color: var(--paper);
  border-radius: 16px 16px 4px 16px;
  justify-self: end;
  max-width: 70%;
}

.board {
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: var(--hairline);
}

.board-tag {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.board-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.5rem;
  border-bottom: var(--hairline);
  font-size: 0.9rem;
}

.board-job { color: var(--ink); }

.board-val {
  font-family: var(--serif);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.chip {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.chip-warm { background: var(--green-tint); color: var(--green); }
.chip-won  { background: var(--green); color: var(--paper); }
.chip-out  { background: transparent; color: var(--muted); border: 1px solid var(--line); }

.board-foot {
  padding: 1rem 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green);
}

/* =====================================================
   Calculator
   ===================================================== */
.calc {
  background: var(--card);
  border: var(--hairline);
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
}

.calc-label label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.calc-label output {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  --fill: 50%;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--green) var(--fill), var(--line) var(--fill));
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--green);
  box-shadow: 0 1px 4px rgba(35, 36, 30, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(31, 71, 51, 0.12);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--green);
  box-shadow: 0 1px 4px rgba(35, 36, 30, 0.18);
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 2rem;
  align-items: end;
  border-top: var(--hairline);
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
}

.calc-result-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.calc-result-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.calc-result.is-hero .calc-result-value {
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
  font-style: italic;
  color: var(--green);
}

.calc-note {
  margin-top: 1.6rem;
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 44rem;
}

/* =====================================================
   Pricing
   ===================================================== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
}

.price-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
}

.price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price span { font-size: 0.55em; vertical-align: 0.45em; }

.price-desc { font-size: 0.93rem; color: var(--muted); flex-grow: 1; }

.price-card.is-featured {
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}

.price-card.is-featured .price-desc { color: rgba(245, 242, 234, 0.78); }
.price-card.is-featured .step-label { color: rgba(245, 242, 234, 0.7); }

.addon-row {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem) clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: var(--shadow-card);
}

.addon-row h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.addon-price {
  font-style: italic;
  color: var(--green);
  margin-left: 0.5rem;
}

.addon-row p { font-size: 0.93rem; color: var(--muted); max-width: 52rem; }

/* =====================================================
   For / not for
   ===================================================== */
.fornot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
}

.fornot-col {
  background: var(--card);
  border: var(--hairline);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.fornot-col h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

/* =====================================================
   Fit-check list (shared check/cross lists)
   ===================================================== */
.fit-check {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.fit-check li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.fit-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F4733' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.not-list li { color: var(--muted); }

.not-list li::before {
  background: rgba(35, 36, 30, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371705F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* =====================================================
   Compliance
   ===================================================== */
.compliance-cards .card h3 { font-size: 1.25rem; }

.compliance-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.compliance-note a {
  color: var(--green);
  border-bottom: 1px solid var(--line);
}

.compliance-note a:hover { border-color: var(--green); }

/* =====================================================
   Guarantees
   ===================================================== */
.g-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--green);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1.3rem;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  max-width: 52rem;
  display: grid;
  gap: 0.9rem;
}

.faq details {
  background: var(--card);
  border: var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 1.6rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* =====================================================
   Founder
   ===================================================== */
.founder-section { padding-top: clamp(3rem, 6vw, 6rem); padding-bottom: clamp(3rem, 6vw, 6rem); }

.founder {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.founder .eyebrow { margin-bottom: 1.8rem; }

.founder-copy {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
}

.founder-copy + .founder-copy { margin-top: 1.4rem; }

.founder-copy strong { font-weight: 500; color: var(--green); }

.founder-photo {
  width: clamp(96px, 14vw, 140px);
  margin: 0 auto 1.8rem;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.founder-sign {
  margin-top: 1.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--green);
}

/* =====================================================
   Form
   ===================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.aside-copy { margin-top: 1.4rem; color: var(--muted); max-width: 26rem; }

.form-aside .fit-check { margin-top: 2rem; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  background: var(--card);
  border: var(--hairline);
  border-radius: 18px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.field { display: flex; flex-direction: column; }
.field.full, .form .full { grid-column: span 2; }

.field label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.7;
}

.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: var(--hairline);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 71, 51, 0.12);
}

.field textarea { resize: vertical; min-height: 80px; }

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F4733' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

/* honeypot — visually gone, present for bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fineprint {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.fineprint a { color: var(--green); border-bottom: 1px solid var(--line); }

.form-status {
  background: var(--card);
  border: 1px solid var(--green);
  border-radius: 18px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.form-status h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--green);
}

.form-status p { color: var(--muted); font-size: 0.95rem; }

.form-status a { color: var(--green); font-weight: 500; }

.form-status-error { border-color: #A4582F; margin-top: 1.4rem; }
.form-status-error h3 { color: #A4582F; }

/* =====================================================
   Footer
   ===================================================== */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 2.2rem var(--gutter);
  border-top: var(--hairline);
  font-size: 0.85rem;
  color: var(--muted);
}

.logo-foot { font-size: 0.95rem; color: var(--ink); }

.footer-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-weight: 500;
}

.footer-links a:hover { color: var(--ink); }

.footer-mail { color: var(--green); font-weight: 500; }
.footer-mail:hover { text-decoration: underline; }

.footer-note { font-size: 0.78rem; }

/* =====================================================
   Legal pages
   ===================================================== */
.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.6rem;
}

.legal .updated {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}

.legal p, .legal li { font-size: 0.96rem; color: var(--muted); }

.legal ul { padding-left: 1.3rem; margin: 0.6rem 0; }

.legal a { color: var(--green); border-bottom: 1px solid var(--line); }

.legal a:hover { border-color: var(--green); }

/* =====================================================
   Motion
   ===================================================== */
.line { display: block; overflow: hidden; }

.line-inner {
  display: block;
  transform: translateY(110%);
  animation: rise-up 1.1s var(--ease) forwards;
}

.line:nth-child(2) .line-inner { animation-delay: 0.12s; }

@keyframes rise-up { to { transform: translateY(0); } }

.rise {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 1s var(--ease) forwards;
}

.rise-2 { animation-delay: 0.25s; }
.rise-3 { animation-delay: 0.4s; }
.rise-4 { animation-delay: 0.6s; }

@keyframes rise-in { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease) var(--d, 0s), transform 0.9s var(--ease) var(--d, 0s);
}

.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .line-inner, .rise, .reveal { animation: none; transition: none; opacity: 1; transform: none; }
  .window-art .draw { animation: none; stroke-dashoffset: 0; }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  /* copy and CTA first; the drawing follows, smaller */
  .hero-art { margin-top: 2.5rem; }
  .window-art { width: min(48%, 220px); }
  .cards, .price-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .deliverables-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .calc-inputs, .calc-results { grid-template-columns: 1fr; gap: 1.8rem; }
  .fornot { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .hero { padding-top: 6rem; }
  .stat-strip { grid-template-columns: 1fr; gap: 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .field.full, .form .full { grid-column: span 1; }
  .board-row { grid-template-columns: 1fr auto; }
  .board-row .chip { grid-column: 1 / -1; justify-self: start; }
  footer { flex-direction: column; align-items: flex-start; }
}
