@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("/fonts/fraunces-normal-300-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url("/fonts/fraunces-italic-300-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/geist-normal-400-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibmplexmono-normal-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibmplexmono-normal-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --cream: #F4EFE3;
  --cream-dim: #EBE3D0;
  --paper: #FAF6EC;
  --ink: #161616;
  --ink-soft: #2A2A2A;
  --ink-faded: #595449;
  --deep: #0A2540;
  --deep-rich: #122E47;
  --rust: #C75B3C;
  --rust-deep: #A8472C;
  --rust-bright: #E0856A; /* small rust type on dark grounds – keeps 4.5:1 */
  --sage: #7E8B70;
  --hairline: rgba(22, 22, 22, 0.12);
  --hairline-strong: rgba(22, 22, 22, 0.24);
  --cream-hairline: rgba(244, 239, 227, 0.16);
  --cream-hairline-strong: rgba(244, 239, 227, 0.22);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* anchor jumps clear the sticky header */
}

strong {
  font-weight: 600;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain overlay for paper feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 3000;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TOP NAV ============ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.topnav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn .btn-label-short {
  display: none;
}

.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--rust);
  border-radius: 50%;
}

.brand em {
  font-style: italic;
  color: var(--rust);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

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

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-light:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

/* ============ HERO ============ */
.hero {
  padding: 110px 0 100px;
  position: relative;
}

.hero-corner {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faded);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}

.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 28px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(250, 246, 236, 0.6);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease 0s forwards;
}

.hero-announce:hover {
  border-color: var(--rust);
  background: var(--paper);
  color: var(--ink);
}

.hero-announce-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

.hero-announce-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  opacity: 0.5;
  animation: announcePulse 2.4s ease-out infinite;
}

.hero-announce-sep {
  width: 1px;
  height: 10px;
  background: var(--hairline-strong);
}

.hero-announce-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rust-deep);
  font-weight: 500;
}

.hero-announce-cta .arr {
  transition: transform 0.2s ease;
}

.hero-announce:hover .hero-announce-cta .arr {
  transform: translateX(3px);
}

@keyframes announcePulse {
  0% { transform: scale(1); opacity: 0.55; }
  80%, 100% { transform: scale(2); opacity: 0; }
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 14ch;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 144;
}

.hero-sub {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-sub strong {
  font-weight: 600;
  color: var(--ink);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-fine {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faded);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-trust {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faded);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: trustPulse 2.8s ease-in-out infinite;
}
.hero-trust span:nth-child(1)::before { animation-delay: 0s; }
.hero-trust span:nth-child(2)::before { animation-delay: 0.45s; }
.hero-trust span:nth-child(3)::before { animation-delay: 0.9s; }
.hero-trust span:nth-child(4)::before { animation-delay: 1.35s; }
.hero-trust span:nth-child(5)::before { animation-delay: 1.8s; }
@keyframes trustPulse {
  0%, 72%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(126, 139, 112, 0); }
  36% { transform: scale(1.55); box-shadow: 0 0 8px 1px rgba(126, 139, 112, 0.6); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ HERO CHAT — WhatsApp mock (sales line: +44 20 3095 1100) ============ */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-chat {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}
.wa-card, .wa-card * { box-sizing: border-box; }
.wa-card {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--hairline-strong);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(10, 37, 64, 0.45), 0 4px 14px -6px rgba(10, 37, 64, 0.18);
}
.wa-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #0b8167 0%, #075e54 100%);
  color: #fff;
}
.wa-back { font-size: 20px; line-height: 1; opacity: 0.85; }
.wa-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--rust) 0%, var(--deep) 100%);
  color: var(--cream);
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  letter-spacing: 0.02em;
}
.wa-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.wa-name { font-family: var(--sans); font-size: 15px; font-weight: 600; }
.wa-status { font-size: 12px; color: rgba(255, 255, 255, 0.78); }
.wa-head-icons { margin-left: auto; display: flex; gap: 16px; opacity: 0.85; }
.wa-head-icons svg { width: 19px; height: 19px; fill: #fff; }
.wa-body {
  padding: 16px 14px 13px;
  background-color: #e7ded2;
  background-image: radial-gradient(rgba(10, 37, 64, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  display: flex; flex-direction: column; gap: 9px;
}
.wa-msg {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 82%;
  padding: 7px 10px 6px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  border-radius: 9px;
  box-shadow: 0 1px 1px rgba(10, 37, 64, 0.12);
  opacity: 1;
  animation: waReveal 0.45s ease both;
}
.wa-in { align-self: flex-start; background: #fff; border-top-left-radius: 2px; }
.wa-out { align-self: flex-end; background: #d7f8c9; border-top-right-radius: 2px; }
.wa-msg:nth-of-type(1) { animation-delay: 0.5s; }
.wa-msg:nth-of-type(2) { animation-delay: 1.0s; }
.wa-msg:nth-of-type(3) { animation-delay: 1.6s; }
.wa-msg:nth-of-type(4) { animation-delay: 2.1s; }
.wa-time {
  align-self: flex-end;
  margin-top: 3px;
  font-size: 10px;
  color: #667781;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.wa-tick { width: 17px; height: 11px; }
.wa-typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 9px;
  border-top-left-radius: 2px;
  padding: 11px 13px;
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 1px 1px rgba(10, 37, 64, 0.12);
  opacity: 1;
  animation: waReveal 0.45s ease 2.6s both;
}
.wa-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #9aa7ad;
  animation: waType 1.3s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.18s; }
.wa-typing span:nth-child(3) { animation-delay: 0.36s; }
.wa-foot {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px;
  background: #f3efe7;
  text-decoration: none;
}
.wa-foot-input {
  flex: 1;
  background: #fff;
  border-radius: 100px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faded);
  border: 1px solid var(--hairline);
}
.wa-send {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
}
.wa-send svg { width: 18px; height: 18px; fill: #fff; }
.wa-cap {
  margin: 14px 0 0;
  max-width: 380px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faded);
  text-align: right;
}
.btn-wa { background: #25d366; border-color: #25d366; color: #08301d; }
.btn-wa:hover { background: #1eb858; border-color: #1eb858; color: #08301d; }
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; }
@keyframes waReveal {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes waType {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ============ PART LABELS ============ */
.part-label {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faded);
}

.part-label--light {
  color: rgba(244, 239, 227, 0.6);
}

/* ============ SHARED SECTION TYPE ============ */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.section-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 80px;
}

.section-heading em {
  font-style: italic;
  color: var(--rust);
}

/* ============ PROBLEM SECTION ============ */
.problem {
  background: var(--deep);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.problem-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 32px;
}

.problem-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 22ch;
}

.problem-heading em {
  font-style: italic;
  color: var(--rust);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-body p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
  margin-bottom: 24px;
  max-width: 50ch;
}

.problem-body p:last-child {
  margin-bottom: 0;
}

.problem-stats {
  border-left: 1px solid rgba(244, 239, 227, 0.18);
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 10px;
}

.stat-number em {
  font-style: italic;
  color: var(--rust);
}

.stat-label {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(244, 239, 227, 0.7);
  max-width: 34ch;
}

.stat-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.62);
  margin-top: 6px;
}

/* ============ THREE DOORS ============ */
.doors {
  padding: 140px 0;
  position: relative;
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.doors-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.door {
  background: var(--cream);
  padding: 44px 36px 48px;
  display: flex;
  flex-direction: column;
}

.door-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 26px;
}

.door-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--ink);
}

.door-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.door-verdict {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.door4 {
  margin-top: 48px;
  background: var(--rust-deep);
  color: var(--cream);
  border-radius: 4px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.door4::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250' viewBox='0 0 100 100'%3E%3Cfilter id='wn'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.4' numOctaves='1' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23wn)'/%3E%3C/svg%3E");
}

.door4-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}

.door4-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.door4-title em {
  font-style: italic;
}

.door4-body {
  position: relative;
  z-index: 1;
}

.door4-body p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 239, 227, 0.94);
  margin-bottom: 22px;
  max-width: 52ch;
}

.door4-attrib {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 140px 0;
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.step {
  padding: 48px 28px 56px 0;
  border-right: 1px solid var(--hairline);
  position: relative;
}

.step:last-child {
  border-right: none;
  padding-right: 0;
}

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--rust-deep);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}

.step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-faded);
  max-width: 30ch;
}

.how-foot {
  margin-top: 72px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 30px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--cream);
}

.how-foot-main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
}

.how-foot-main em {
  font-style: italic;
  color: var(--rust);
}

.how-foot-side {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faded);
}

/* ============ FEATURES ============ */
.features {
  padding: 140px 0;
  background: var(--cream-dim);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.feature {
  background: var(--cream-dim);
  padding: 44px 36px 52px;
  transition: background 0.3s ease;
}

.feature:hover {
  background: var(--paper);
}

.feature-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--rust-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--rust);
  border-radius: 50%;
}

.feature-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--ink);
}

.feature-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ FOUNDING OFFER ============ */
.offer {
  padding: 140px 0;
  background: var(--deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.offer-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-count::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.offer-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.022em;
  margin-bottom: 32px;
  max-width: 16ch;
}

.offer-heading em {
  font-style: italic;
  color: var(--rust);
}

.offer-lead p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
  margin-bottom: 22px;
  max-width: 50ch;
}

.offer-lead p:last-child {
  margin-bottom: 0;
}

.offer-stack {
  border: 1px solid var(--cream-hairline-strong);
  background: rgba(244, 239, 227, 0.02);
}

.offer-stack-head {
  padding: 18px 28px;
  border-bottom: 1px solid var(--cream-hairline-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
}

.offer-stack ul {
  list-style: none;
}

.offer-stack li {
  padding: 17px 28px;
  border-bottom: 1px solid var(--cream-hairline);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(244, 239, 227, 0.92);
}

.offer-stack li:last-child {
  border-bottom: none;
}

.offer-stack li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10L11.5 4' stroke='%23C75B3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.offer-stack li.swap {
  background: rgba(244, 239, 227, 0.05);
  color: rgba(244, 239, 227, 0.75);
  font-size: 14px;
}

.offer-stack li.swap::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h8M11 5l-2.5-2.5M11 9H3M3 9l2.5 2.5' stroke='%237E8B70' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.offer-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-hairline-strong);
  border: 1px solid var(--cream-hairline-strong);
}

.offer-box {
  background: var(--deep);
  padding: 44px 40px 48px;
}

.offer-box--guarantee {
  background: var(--deep-rich);
}

.offer-box-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 18px;
}

.offer-box-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.offer-box-title em {
  font-style: italic;
  color: var(--rust);
}

.offer-box-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.8);
  max-width: 46ch;
}

.offer-cta-row {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-fine {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.7);
}

.offer-signoff {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-hairline);
  max-width: 56ch;
}

.offer-signoff p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(244, 239, 227, 0.88);
  margin-bottom: 14px;
}

.offer-signoff p a {
  color: var(--cream);
}

.offer-signoff-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.7);
}

/* ============ PRICING ============ */
.pricing {
  padding: 140px 0;
  position: relative;
}

.pricing-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}

.pricing-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-faded);
  padding-bottom: 12px;
}

.pricing-banner {
  background: var(--deep);
  color: var(--cream);
  border-radius: 4px;
  padding: 30px 38px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-banner-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 6px;
}

.pricing-banner-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 350;
  line-height: 1.22;
  letter-spacing: -0.015em;
  flex: 1;
  min-width: min(300px, 100%);
}

.pricing-banner-text em {
  font-style: italic;
  color: var(--rust);
}

.pricing-banner-sub {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.72);
  max-width: 34ch;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}

.tier {
  padding: 44px 36px 48px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  position: relative;
}

.tier:last-child {
  border-right: none;
}

.tier-featured {
  background: var(--ink);
  color: var(--cream);
}

.tier-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-faded);
}

.tier-featured .tier-tag {
  color: var(--rust-bright);
}

.tier-tag .badge {
  background: var(--rust-deep);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.tier-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tier-name em {
  font-style: italic;
}

.tier-for {
  font-size: 13px;
  color: var(--ink-faded);
  margin-bottom: 32px;
}

.tier-featured .tier-for {
  color: rgba(244, 239, 227, 0.6);
}

.tier-founding {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 12px;
}

.tier-featured .tier-founding {
  color: var(--rust-bright);
}

.tier-price-prefix {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-faded);
}

.tier-billed + .tier-billed {
  margin-top: -28px;
}

.tier-price {
  font-family: var(--serif);
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tier-price-was {
  font-size: 26px;
  font-weight: 350;
  color: var(--ink-faded);
  position: relative;
  white-space: nowrap;
}

.tier-price-was::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 1.5px;
  background: var(--rust);
  transform: rotate(-7deg);
}

.tier-featured .tier-price-was {
  color: rgba(244, 239, 227, 0.5);
}

.tier-price-amount {
  font-size: 54px;
  font-weight: 350;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier-price-period {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-faded);
  font-weight: 400;
}

.tier-featured .tier-price-period {
  color: rgba(244, 239, 227, 0.6);
}

.tier-billed {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faded);
  margin-bottom: 36px;
  text-transform: uppercase;
}

.tier-featured .tier-billed {
  color: rgba(244, 239, 227, 0.6);
}

.tier-list {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.tier-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tier-featured .tier-list li {
  border-color: rgba(244, 239, 227, 0.14);
}

.tier-list li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10L11.5 4' stroke='%23C75B3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.tier-cta:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

.tier-featured .tier-cta {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

.tier-featured .tier-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.pricing-foot {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-faded);
}

.pricing-foot > div {
  flex: 1;
  min-width: 240px;
}

.pricing-foot strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ WHAT WE WON'T PROMISE ============ */
.wont {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  position: relative;
}

.wont-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.wont-item {
  background: var(--paper);
  padding: 38px 26px 44px;
  transition: background 0.3s ease;
}

.wont-item:hover {
  background: var(--cream);
}

.wont-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 20px;
}

.wont-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.wont-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.wont-kicker {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.wont-kicker em {
  font-style: normal;
  color: var(--rust-deep);
}

/* ============ TRUST / SECURITY ============ */
.trust {
  padding: 140px 0;
  background: var(--deep);
  color: var(--cream);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.trust-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.trust-heading em {
  font-style: italic;
  color: var(--rust);
}

.trust-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 239, 227, 0.78);
  max-width: 42ch;
}

.trust-story {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--cream-hairline-strong);
}

.trust-story-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 22px;
}

.trust-story-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
  margin-bottom: 20px;
  max-width: 62ch;
}

.trust-story-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.62);
  margin-top: 6px;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244, 239, 227, 0.14);
  border: 1px solid rgba(244, 239, 227, 0.14);
}

.trust-item {
  background: var(--deep);
  padding: 32px 28px;
}

.trust-item-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--rust-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.trust-item-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.trust-item-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.7);
}

/* ============ FAQ ============ */
.faq {
  padding: 140px 0;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.faq-heading em {
  font-style: italic;
  color: var(--rust);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--rust-deep);
}

.faq-q-mark {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q-mark {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.4s ease, visibility 0s 0.4s;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.4s ease, visibility 0s;
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ============ CTA ============ */
.cta {
  padding: 140px 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.cta-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 36px;
}

.cta-heading {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-heading em {
  font-style: italic;
  color: var(--rust);
}

.cta-sub {
  font-size: 18px;
  color: rgba(244, 239, 227, 0.8);
  margin-bottom: 48px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-soft {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 239, 227, 0.72);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-soft a {
  color: var(--cream);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--cream-dim);
  padding: 80px 0 40px;
  border-top: 1px solid var(--hairline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 28px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-tag {
  font-size: 14px;
  color: var(--ink-faded);
  max-width: 30ch;
  line-height: 1.55;
}

.footer-col h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--rust-deep);
}

.footer-legal {
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-faded);
  max-width: 78ch;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-faded);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ WALLPAPER / SCREENSHOT PRIMITIVE ============
   Kept deliberately ahead of product imagery shipping – do not remove as dead CSS.
   Reusable frame for product imagery. Usage:
     <figure class="screenshot screenshot--rust" data-placement="bottom-right">
       <img src="..." alt="...">
     </figure>
   Colour: rust | deep | sage | paper
   Placement: bottom-right | bottom-left | bottom | top-right | top-left | top */

.screenshot {
  --pad: min(10%, 64px);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
}

.screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250' viewBox='0 0 100 100'%3E%3Cfilter id='wn'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.4' numOctaves='1' seed='2' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='4' intercept='1'/%3E%3CfeFuncG type='linear' slope='4' intercept='1'/%3E%3CfeFuncB type='linear' slope='4' intercept='1'/%3E%3C/feComponentTransfer%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23wn)'/%3E%3C/svg%3E");
}

.screenshot--rust  { background: linear-gradient(180deg, #c97a5c 0%, #8a3a22 100%); }
.screenshot--deep  { background: linear-gradient(180deg, #1f3e5e 0%, #0a2540 100%); }
.screenshot--sage  { background: linear-gradient(180deg, #98a48b 0%, #5e6a52 100%); }
.screenshot--paper { background: linear-gradient(180deg, #efe5ce 0%, #c9b69a 100%); }

.screenshot > * {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(10, 37, 64, 0.18);
}

.screenshot[data-placement="bottom-right"] { padding: var(--pad) 0 0 var(--pad); }
.screenshot[data-placement="bottom-left"]  { padding: var(--pad) var(--pad) 0 0; }
.screenshot[data-placement="bottom"]       { padding: var(--pad) var(--pad) 0; }
.screenshot[data-placement="top-right"]    { padding: 0 0 var(--pad) var(--pad); }
.screenshot[data-placement="top-left"]     { padding: 0 var(--pad) var(--pad) 0; }
.screenshot[data-placement="top"]          { padding: 0 var(--pad) var(--pad); }

.screenshot[data-placement="bottom-right"] > * { border-top-left-radius: 4px; }
.screenshot[data-placement="bottom-left"]  > * { border-top-right-radius: 4px; }
.screenshot[data-placement="bottom"]       > * { border-radius: 4px 4px 0 0; }
.screenshot[data-placement="top-right"]    > * { border-bottom-left-radius: 4px; }
.screenshot[data-placement="top-left"]     > * { border-bottom-right-radius: 4px; }
.screenshot[data-placement="top"]          > * { border-radius: 0 0 4px 4px; }

/* ============ RESPONSIVE ============ */
/* The primary nav carries nine links; collapse it to the menu button a little
   earlier than the main layout breakpoint so the links never wrap in the
   900-1160px band. Dropdown styling mirrors the 900px rules below. */
@media (max-width: 1160px) {
  .nav-links {
    display: none;
  }
  .topnav-inner {
    position: relative;
  }
  .nav-links.mobile-show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 22px 16px;
  }
  .nav-links.mobile-show a {
    padding: 12px 0;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .topnav-inner {
    position: relative;
  }
  .nav-links.mobile-show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 22px 16px;
  }
  .nav-links.mobile-show a {
    padding: 12px 0;
  }
  .hero-corner {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-chat {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    animation-delay: 0.2s;
  }
  .wa-card {
    margin: 0 auto;
    max-width: 100%;
  }
  .wa-cap {
    margin: 14px auto 0;
    max-width: 100%;
    text-align: center;
  }
  .problem-grid, .pricing-intro, .trust-grid, .faq-grid, .offer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-stats {
    border-left: none;
    border-top: 1px solid rgba(244, 239, 227, 0.18);
    padding-left: 0;
    padding-top: 32px;
  }
  .doors-grid {
    grid-template-columns: 1fr;
  }
  .door4 {
    grid-template-columns: 1fr;
    padding: 44px 36px;
    gap: 28px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 36px 0;
  }
  .step:last-child {
    border-bottom: none;
  }
  .how-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .offer-boxes {
    grid-template-columns: 1fr;
  }
  .tiers {
    grid-template-columns: 1fr;
  }
  .tier {
    border-right: none;
    border-bottom: 1px solid var(--ink);
  }
  .tier:last-child {
    border-bottom: none;
  }
  .wont-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-items {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .wont-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .hero-ctas {
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .wa-msg {
    max-width: 88%;
  }
  .hero-announce {
    flex-wrap: wrap;
    row-gap: 6px;
    border-radius: 16px;
  }
  .hero-announce-sep {
    display: none;
  }
  .topnav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .topnav-inner .btn {
    padding: 9px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .topnav-inner .btn .btn-label-full {
    display: none;
  }
  .topnav-inner .btn .btn-label-short {
    display: inline;
  }
  .brand {
    font-size: 18px;
  }
  .problem, .doors, .how, .features, .offer, .pricing, .wont, .trust, .faq, .cta {
    padding: 80px 0;
  }
  .wrap, .wrap-narrow {
    padding: 0 22px;
  }
  .topnav-inner {
    padding: 16px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-announce, .hero-eyebrow, .hero-headline, .hero-sub, .hero-ctas, .hero-trust, .hero-chat {
    opacity: 1;
  }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

@media (max-width: 1160px) {
  .menu-toggle {
    display: block;
  }
}

/* ============ CONTACT MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s 0.25s;
}

.modal-backdrop.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease, visibility 0s;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(10, 37, 64, 0.4);
  transform: translateY(12px);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal {
  transform: translateY(0);
}

.modal-head {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.modal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 14px;
}

.modal-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.modal-title em {
  font-style: italic;
  color: var(--rust);
}

.modal-sub {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-faded);
  line-height: 1.5;
  max-width: 48ch;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.modal-body {
  padding: 32px 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 8px;
  font-weight: 500;
}

.field label .req {
  color: var(--rust-deep);
  margin-left: 4px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px; /* 16px floor stops iOS Safari auto-zoom on focus */
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--hairline-strong);
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--paper);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
  line-height: 1.5;
}

.field-error {
  color: var(--rust-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  display: none;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--rust);
}

.field.invalid .field-error {
  display: block;
}

/* Honeypot – visually hidden but accessible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-fineprint {
  font-size: 12px;
  color: var(--ink-faded);
  max-width: 32ch;
  line-height: 1.5;
}

.form-fineprint a {
  color: var(--ink-soft);
  text-decoration: underline;
}

.form-submit {
  position: relative;
}

.form-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(126, 139, 112, 0.14);
  border: 1px solid var(--sage);
  color: var(--ink);
}

.form-status.error {
  background: rgba(199, 91, 60, 0.1);
  border: 1px solid var(--rust);
  color: var(--rust-deep);
}

.modal-success {
  display: none;
  text-align: center;
  padding: 32px 16px 8px;
}

.modal-success.show {
  display: block;
}

.modal-success-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 24px;
}

.modal-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}

.modal-success h3 em {
  font-style: italic;
  color: var(--rust);
}

.modal-success p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .modal-backdrop {
    padding: 16px;
  }
  .modal-close {
    width: 44px;
    height: 44px;
  }
  .modal-head {
    padding: 28px 24px 22px;
  }
  .modal-body {
    padding: 24px 24px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-title {
    font-size: 26px;
  }
}

/* Lock body scroll when modal open */
body.modal-open {
  overflow: hidden;
}

/* ============ THE DIFFERENCE (PART 08) ============ */
.diff .trust-lead {
  margin-bottom: 64px;
}
.diff-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-hairline-strong);
  border: 1px solid var(--cream-hairline-strong);
}
.diff-card {
  background: var(--deep);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
}
.diff-card--us {
  background: var(--deep-rich);
}
.diff-card-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.6);
  margin-bottom: 16px;
}
.diff-card--us .diff-card-mark {
  color: var(--rust-bright);
}
.diff-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 28px;
}
/* Two-shape diagram – pure CSS, decorative only */
.diff-glyph {
  position: relative;
  height: 104px;
  margin-bottom: 30px;
  border: 1px solid var(--cream-hairline);
  border-radius: 3px;
  overflow: hidden;
}
.diff-glyph--vault .diff-vault {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 58px;
  height: 40px;
  margin-left: -29px;
  border-radius: 2px;
  background: var(--rust-deep);
  box-shadow: 0 0 0 4px rgba(199, 91, 60, 0.18);
}
.diff-glyph--vault .diff-feed {
  position: absolute;
  top: 8px;
  width: 1px;
  height: 52px;
  background: rgba(244, 239, 227, 0.4);
  transform-origin: top center;
}
.diff-glyph--vault .diff-feed:nth-child(2) { left: 50%; transform: rotate(-38deg); }
.diff-glyph--vault .diff-feed:nth-child(3) { left: 50%; transform: rotate(-23deg); }
.diff-glyph--vault .diff-feed:nth-child(4) { left: 50%; transform: rotate(-8deg); }
.diff-glyph--vault .diff-feed:nth-child(5) { left: 50%; transform: rotate(8deg); }
.diff-glyph--vault .diff-feed:nth-child(6) { left: 50%; transform: rotate(23deg); }
.diff-glyph--vault .diff-feed:nth-child(7) { left: 50%; transform: rotate(38deg); }
.diff-glyph--tenants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-hairline);
  padding: 0;
}
.diff-glyph--tenants .diff-cell {
  background: var(--deep-rich);
  position: relative;
}
.diff-glyph--tenants .diff-cell::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: rgba(244, 239, 227, 0.22);
}
.diff-glyph--tenants .diff-cell--lit::after {
  background: var(--rust);
  box-shadow: 0 0 0 3px rgba(199, 91, 60, 0.22);
}
.diff-card-body {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(244, 239, 227, 0.82);
  flex: 1;
}
.diff-card-foot {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-hairline);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.62);
}
.diff-card--us .diff-card-foot {
  color: var(--rust-bright);
}
.diff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--cream-hairline-strong);
}
.diff-stats .stat-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.diff-stat-of {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
}
.diff-honest {
  margin-top: 60px;
  border: 1px solid var(--cream-hairline-strong);
  border-radius: 3px;
  padding: 36px 40px;
  background: rgba(244, 239, 227, 0.02);
}
.diff-honest-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 18px;
}
.diff-honest p {
  font-size: 16px;
  line-height: 1.68;
  color: rgba(244, 239, 227, 0.86);
  max-width: 78ch;
}
.diff-honest p a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .diff-pair { grid-template-columns: 1fr; }
  .diff-stats { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ MULTI-PAGE ADDITIONS ============ */
.builder-section{padding:88px 0;background:var(--cream-dim);border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline);}
.builder-intro{max-width:680px;margin:0 auto 34px;text-align:center;}
.builder-lead{font-size:16px;line-height:1.6;color:var(--ink-soft);margin-top:14px;}
.builder-frame{width:100%;border:0;display:block;min-height:720px;background:transparent;border-radius:14px;box-shadow:0 20px 50px -30px rgba(10,37,64,.4);}
.explore-section{padding:84px 0;}
.explore-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.explore-card{display:flex;flex-direction:column;gap:8px;padding:26px;border:1px solid var(--hairline-strong);border-radius:14px;background:var(--paper);text-decoration:none;color:var(--ink);transition:border-color .2s ease,transform .2s ease;}
.explore-card:hover{border-color:var(--rust);transform:translateY(-2px);}
.explore-card h3{font-family:var(--serif);font-weight:400;font-size:22px;}
.explore-card p{font-size:14px;line-height:1.55;color:var(--ink-soft);}
.explore-card .explore-go{margin-top:auto;font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--rust-deep);}
@media(max-width:900px){.explore-grid{grid-template-columns:1fr;}}
@media(max-width:560px){.builder-section{padding:56px 0;}.builder-frame{min-height:880px;}.explore-section{padding:56px 0;}}

