:root {
  color-scheme: light;
  --bg: #f5efe6;
  --ink: #141310;
  --muted: #6f665d;
  --line: #d8cabb;
  --panel: #fffaf1;
  --accent: #184d43;
  --accent-dark: #0e302b;
  --gold: #b77a38;
  --clay: #8f4638;
  --blue: #243f60;
  --shadow: 0 34px 90px rgba(27, 18, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px) 64px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-facts {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-facts span {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.hero-facts span:last-child {
  border-right: 0;
}

.hero-visual {
  min-width: 0;
}

.identity-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.76fr);
}

.home-page .hero-copy {
  max-width: 860px;
}

.signal-board {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(23, 23, 21, 0.12);
  background:
    linear-gradient(90deg, rgba(36, 94, 85, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 94, 85, 0.09) 1px, transparent 1px),
    #fffdf8;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.signal-board::before,
.signal-board::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 23, 21, 0.12);
  background: rgba(255, 253, 248, 0.86);
}

.signal-board::before {
  width: 38%;
  height: 24%;
  top: 8%;
  right: 9%;
}

.signal-board::after {
  width: 34%;
  height: 22%;
  bottom: 9%;
  left: 8%;
}

.signal-word {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.signal-word.old {
  color: rgba(23, 22, 20, 0.38);
}

.signal-word.new {
  color: var(--accent-dark);
  text-align: right;
}

.signal-arrow {
  position: relative;
  z-index: 1;
  width: 62%;
  height: 1px;
  margin-left: 18%;
  background: var(--gold);
}

.signal-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.signal-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.signal-strip span {
  padding: 7px 10px;
  border: 1px solid rgba(23, 23, 21, 0.12);
  background: rgba(248, 246, 241, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.visual-panel {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 2px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.memo-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(23, 23, 21, 0.1);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.memo-body {
  padding: clamp(26px, 5vw, 44px);
}

.memo-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.memo-body p,
.memo-list span {
  color: var(--muted);
}

.memo-body h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 50px);
}

.memo-rule {
  height: 1px;
  margin: 30px 0;
  background: var(--line);
}

.memo-list {
  display: grid;
  gap: 22px;
}

.memo-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: baseline;
}

.memo-list strong {
  font-size: 16px;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.mirror-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent-dark);
  color: #fffdf8;
}

.mirror-copy h2 {
  max-width: 820px;
}

.mirror-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.mirror-grid div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.mirror-grid p {
  margin: 0;
  color: #fffdf8;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.28;
}

.mark {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
}

.mark.yes {
  background: #fffdf8;
}

.mark.no {
  border: 1px solid var(--gold);
}

.shift-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: #e9ece5;
}

.shift-panel {
  max-width: 1120px;
  margin: 0 auto;
}

.shift-panel h2 {
  max-width: 760px;
}

.shift-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(23, 23, 21, 0.16);
}

.shift-track div {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 26px 28px 24px 0;
  border-right: 1px solid rgba(23, 23, 21, 0.16);
}

.shift-track div:last-child {
  border-right: 0;
}

.shift-track span {
  color: var(--gold);
  font-weight: 800;
}

.shift-track strong {
  align-self: end;
  max-width: 240px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.04;
}

.shift-track p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.intro p {
  max-width: 1040px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.14;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 76px);
}

.split > div:first-child p:not(.eyebrow),
.apply-copy p {
  color: var(--muted);
  font-size: 18px;
}

.deliverables,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.deliverables article,
.outcome-grid div {
  border-top: 1px solid rgba(23, 23, 21, 0.14);
  background: transparent;
}

.deliverables article,
.outcome-grid div {
  padding: 26px 26px 28px 0;
}

.deliverables article:nth-child(odd),
.outcome-grid div:not(:last-child) {
  border-right: 1px solid rgba(23, 23, 21, 0.14);
  padding-right: 26px;
}

.deliverables article:nth-child(even) {
  padding-left: 26px;
}

.deliverables span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 800;
}

.deliverables p,
.outcome-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.outcomes {
  background: #eef1ec;
}

.outcomes h2 {
  max-width: 840px;
}

.outcome-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid div {
  padding-left: 0;
}

.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.note {
  max-width: 640px;
}

.apply-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 2px;
  background: #fffdf8;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--accent);
}

.full {
  width: 100%;
}

.apply-form small {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.minimal-home {
  min-height: 100vh;
  background:
    linear-gradient(126deg, rgba(14, 48, 43, 0.08), transparent 38%),
    linear-gradient(24deg, rgba(143, 70, 56, 0.1), transparent 42%),
    var(--bg);
}

.three-sentence-page {
  min-height: calc(100vh - 145px);
}

.three-sentence-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 145px);
  display: grid;
  align-content: center;
  gap: clamp(22px, 4vw, 36px);
  padding: clamp(34px, 6vw, 74px) clamp(20px, 7vw, 112px);
}

.three-sentence-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.78), rgba(245, 239, 230, 0.44)),
    linear-gradient(90deg, rgba(24, 77, 67, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 77, 67, 0.07) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.three-sentence-hero::after {
  content: "";
  position: absolute;
  width: min(38vw, 520px);
  min-width: 240px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(155deg, rgba(143, 70, 56, 0.2), rgba(24, 77, 67, 0.03) 62%, transparent);
  transform: skewX(-8deg);
  transform-origin: top right;
}

.sentence-stack {
  max-width: 1080px;
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
}

.sentence-stack p {
  max-width: 980px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(34px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 1.04;
}

.sentence-stack p:nth-child(2) {
  color: var(--accent-dark);
  font-style: italic;
}

.sentence-stack p:nth-child(3) {
  max-width: 680px;
  color: #5e544b;
}

.start-button {
  width: fit-content;
  min-width: 220px;
  border-radius: 8px;
  background: var(--accent-dark);
  box-shadow: 0 16px 36px rgba(14, 48, 43, 0.22);
}

.quiet-signal {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: clamp(42px, 8vw, 96px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 430px;
}

.quiet-signal span {
  padding: 7px 10px;
  border: 1px solid rgba(24, 77, 67, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.76);
  color: #5b5147;
  font-size: 13px;
}

.minimal-footer {
  background: rgba(248, 246, 241, 0.88);
}

.diagnostic-home {
  min-height: 100vh;
  background: #0d2a25;
  color: #f7efe3;
}

.diagnostic-header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(247, 239, 227, 0.12);
  background: rgba(13, 42, 37, 0.76);
}

.diagnostic-header .brand,
.diagnostic-header .nav a {
  color: #f7efe3;
}

.diagnostic-header .brand-mark {
  background: #c9874d;
}

.diagnostic-field {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(96px, 12vh, 150px) clamp(22px, 7vw, 112px) clamp(56px, 8vh, 96px);
  background:
    radial-gradient(circle at 78% 32%, rgba(201, 135, 77, 0.22), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(247, 239, 227, 0.11), transparent 32%),
    linear-gradient(126deg, #0d2a25 0%, #123d36 48%, #0b211d 100%);
}

.diagnostic-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 239, 227, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247, 239, 227, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 84%);
}

.diagnostic-field::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -9%;
  width: min(56vw, 760px);
  height: 86%;
  border-left: 1px solid rgba(247, 239, 227, 0.16);
  background: linear-gradient(110deg, rgba(247, 239, 227, 0.08), rgba(201, 135, 77, 0.16));
  transform: skewX(-13deg);
}

.field-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.field-kicker {
  margin-bottom: clamp(20px, 4vw, 40px);
  color: #d6a06c;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.field-copy h1 {
  max-width: 900px;
  color: #fff7ea;
  font-size: clamp(46px, 8.4vw, 112px);
  line-height: 0.94;
}

.field-problem {
  max-width: 760px;
  margin-bottom: 22px;
  color: rgba(247, 239, 227, 0.78);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.32;
}

.field-answer {
  max-width: 720px;
  margin-bottom: 34px;
  color: #fff7ea;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
}

.field-button {
  width: fit-content;
  min-width: 230px;
  border-radius: 999px;
  background: #f7efe3;
  color: #0d2a25;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.field-button:hover {
  background: #fff8ee;
}

.field-words {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.field-words span {
  position: absolute;
  color: rgba(247, 239, 227, 0.07);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(64px, 14vw, 190px);
  line-height: 1;
}

.field-words span:nth-child(1) {
  top: 18%;
  right: -2%;
}

.field-words span:nth-child(2) {
  right: 9%;
  bottom: 24%;
}

.field-words span:nth-child(3) {
  left: 5%;
  bottom: 5%;
}

.bridge-home {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(119, 163, 185, 0.42), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(222, 142, 117, 0.36), transparent 30%),
    linear-gradient(135deg, #efe6d7 0%, #dce7e4 46%, #b8c9d1 100%);
  color: #162420;
}

.bridge-home h1,
.bridge-home h2,
.bridge-home h3,
.bridge-home p {
  margin-top: 0;
}

.bridge-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 74px);
  background: rgba(242, 233, 219, 0.78);
  border-bottom: 1px solid rgba(22, 36, 32, 0.08);
  backdrop-filter: blur(18px);
}

.bridge-brand,
.bridge-nav {
  display: flex;
  align-items: center;
}

.bridge-brand {
  gap: 11px;
  color: #162420;
  font-size: 15px;
  font-weight: 780;
  text-decoration: none;
}

.bridge-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, #fff8ed 0 18%, transparent 19%),
    conic-gradient(from 40deg, #7aa99b, #88a7d6, #eaa789, #d8c878, #7aa99b);
  box-shadow: 0 8px 22px rgba(65, 92, 84, 0.22);
}

.bridge-nav {
  gap: clamp(12px, 2vw, 24px);
}

.bridge-nav a {
  color: rgba(22, 36, 32, 0.72);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.bridge-nav a:hover {
  color: #162420;
}

.bridge-hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.82fr);
  gap: clamp(28px, 5.5vw, 82px);
  align-items: center;
  padding: clamp(84px, 10vh, 118px) clamp(20px, 6vw, 96px) clamp(44px, 6vh, 72px);
}

.bridge-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.bridge-kicker {
  margin-bottom: 18px;
  color: #336f65;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bridge-copy h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: #0c1b18;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: 0;
}

.bridge-lede {
  max-width: 720px;
  color: rgba(17, 31, 27, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.bridge-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.bridge-button:hover {
  transform: translateY(-1px);
}

.bridge-primary {
  background: #173e37;
  color: #fff8ed;
  box-shadow: 0 18px 42px rgba(23, 62, 55, 0.2);
}

.bridge-primary:hover {
  background: #102d28;
}

.bridge-secondary {
  border: 1px solid rgba(23, 62, 55, 0.18);
  background: rgba(255, 248, 237, 0.58);
  color: #173e37;
}

.bridge-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.bridge-glow-one {
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  right: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(130, 166, 216, 0.38), transparent 66%);
}

.bridge-glow-two {
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  left: 32%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(233, 151, 126, 0.3), transparent 66%);
}

.human-collage {
  position: relative;
  z-index: 2;
  min-height: min(58vw, 520px);
}

.human-collage::before {
  content: "";
  position: absolute;
  inset: 7% 4% 4% 9%;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(21, 57, 51, 0.24), rgba(255, 248, 237, 0.12)),
    rgba(255, 248, 237, 0.28);
  border: 1px solid rgba(255, 248, 237, 0.42);
  backdrop-filter: blur(18px);
}

.human-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 248, 237, 0.5);
  border-radius: 32px;
  background: #fff8ed;
  box-shadow: 0 30px 82px rgba(22, 36, 32, 0.22);
}

.human-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.human-card-main {
  z-index: 2;
  left: 8%;
  top: 11%;
  width: 72%;
  height: 58%;
}

.human-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 26, 22, 0.32));
}

.human-card-small {
  z-index: 3;
  width: 38%;
  height: 30%;
}

.human-card-top {
  right: 3%;
  top: 3%;
}

.human-card-bottom {
  right: 8%;
  bottom: 10%;
}

.human-badge {
  position: absolute;
  z-index: 4;
  left: 4%;
  bottom: 14%;
  width: clamp(132px, 14vw, 178px);
  height: clamp(132px, 14vw, 178px);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #173e37;
  color: #fff8ed;
  box-shadow: 0 24px 66px rgba(23, 62, 55, 0.32);
}


.human-badge span {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 0.9;
}

.human-badge small {
  color: rgba(255, 248, 237, 0.76);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

@keyframes bridgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

.bridge-marquee {
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(23, 62, 55, 0.12);
  border-bottom: 1px solid rgba(23, 62, 55, 0.12);
  background: rgba(20, 55, 49, 0.94);
}

.bridge-marquee div {
  width: max-content;
  display: flex;
  gap: 36px;
  animation: bridgeMarquee 32s linear infinite;
}

.bridge-marquee span {
  color: rgba(255, 248, 237, 0.78);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}

@keyframes bridgeMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.bridge-section {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 6vw, 96px);
  scroll-margin-top: 88px;
}

.bridge-belief {
  display: grid;
  justify-items: center;
  background: #173e37;
  color: #fff8ed;
}

.peer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(222, 142, 117, 0.28), transparent 32%),
    #ede2d2;
}

.peer-copy h2 {
  max-width: 760px;
  color: #111f1b;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.peer-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.peer-grid article {
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
  background: #fff8ed;
  box-shadow: 0 26px 70px rgba(22, 36, 32, 0.14);
}

.peer-grid article:nth-child(2) {
  transform: translateY(38px);
}

.peer-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.peer-grid p {
  margin: 0;
  padding: 18px;
  color: rgba(22, 36, 32, 0.72);
  font-weight: 720;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background:
    radial-gradient(circle at 16% 22%, rgba(119, 163, 185, 0.28), transparent 34%),
    #112f2a;
  color: #fff8ed;
}

.testimonial-heading {
  position: sticky;
  top: 112px;
}

.testimonial-section .bridge-kicker {
  color: #e7b285;
}

.testimonial-heading h2 {
  margin-bottom: 0;
  color: #fff8ed;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(34px, 4.7vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial-grid article {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 30px;
  background: rgba(255, 248, 237, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-grid p {
  margin-bottom: 24px;
  color: rgba(255, 248, 237, 0.92);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(23px, 2.8vw, 36px);
  line-height: 1.18;
}

.testimonial-grid span {
  color: rgba(255, 248, 237, 0.62);
  font-size: 14px;
  font-weight: 820;
  text-transform: uppercase;
}

.bridge-belief p {
  max-width: 1050px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.08;
  text-align: center;
}

.bridge-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.bridge-split h2,
.bridge-proof h2,
.bridge-cta h2 {
  color: #111f1b;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(36px, 5.3vw, 74px);
  font-weight: 500;
  line-height: 1;
}

.bridge-split p:not(.bridge-kicker),
.cta-panel p {
  color: rgba(22, 36, 32, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.bridge-timeline {
  display: grid;
  gap: 12px;
}

.bridge-timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 62, 55, 0.13);
}

.bridge-timeline article:last-child {
  border-bottom: 1px solid rgba(23, 62, 55, 0.13);
}

.bridge-timeline span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff8ed;
  color: #336f65;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(58, 78, 72, 0.1);
}

.bridge-timeline h3,
.proof-card h3 {
  margin-bottom: 7px;
  color: #162420;
  font-size: 21px;
}

.bridge-timeline p,
.proof-card p {
  margin: 0;
  color: rgba(22, 36, 32, 0.66);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 16%, rgba(232, 173, 132, 0.24), transparent 32%),
    linear-gradient(135deg, #163b35 0%, #102b27 100%);
  color: #fff8ed;
}

.map-copy h2 {
  max-width: 620px;
  color: #fff8ed;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}

.map-copy p:not(.bridge-kicker) {
  max-width: 560px;
  color: rgba(255, 248, 237, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.map-section .bridge-kicker {
  color: #e7b285;
}

.leverage-map {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 34px;
  background: rgba(255, 248, 237, 0.94);
  color: #162420;
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.22);
}

.map-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(240px, 0.92fr);
  gap: 18px;
  align-items: end;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid rgba(22, 36, 32, 0.12);
  background:
    radial-gradient(circle at 88% 0%, rgba(119, 163, 185, 0.28), transparent 38%),
    #f8efe2;
}

.map-header span,
.map-tile span {
  display: block;
  margin-bottom: 8px;
  color: #b97039;
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.map-header strong {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.map-header p {
  margin: 0;
  color: rgba(22, 36, 32, 0.66);
  font-size: 15px;
  line-height: 1.45;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.map-tile {
  min-height: 0;
  padding: 24px;
  border-right: 1px solid rgba(22, 36, 32, 0.1);
  border-bottom: 1px solid rgba(22, 36, 32, 0.1);
  background: #fffaf1;
}

.map-tile h3 {
  margin-bottom: 10px;
  color: #162420;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.08;
}

.map-tile p,
.map-tile li {
  color: rgba(22, 36, 32, 0.68);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.map-tile p {
  margin: 0;
}

.map-tile ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.map-tile.risk,
.map-tile.advantage {
  grid-column: span 3;
}

.map-tile.workflows,
.map-tile.proof,
.map-tile.plan {
  grid-column: span 2;
  border-bottom: 0;
}

.map-tile.plan {
  border-right: 0;
}

.map-tile.advantage,
.map-tile.proof {
  background: #eef1ec;
}

.map-tile.workflows {
  background: #f6eadc;
}

.bridge-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(136, 167, 214, 0.18), transparent 38%),
    #f9f3ea;
}

.proof-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid rgba(23, 62, 55, 0.1);
  border-radius: 24px;
  background: rgba(255, 248, 237, 0.66);
  box-shadow: 0 22px 60px rgba(58, 78, 72, 0.08);
}

.proof-lead {
  grid-column: span 2;
  min-height: 300px;
  background:
    radial-gradient(circle at 84% 18%, rgba(234, 167, 137, 0.42), transparent 34%),
    rgba(255, 248, 237, 0.8);
}

.bridge-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.cta-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 24px 74px rgba(58, 78, 72, 0.12);
}

.cta-panel .bridge-button {
  margin-top: 10px;
}

.taste-board-page {
  min-height: 100vh;
  background: #f5efe6;
  color: #141310;
}

.taste-header {
  padding: clamp(34px, 6vw, 78px) clamp(20px, 5vw, 72px) 24px;
}

.taste-header p {
  margin-bottom: 12px;
  color: #184d43;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.taste-header h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 86px);
}

.taste-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(42px, 7vw, 86px);
}

.taste-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.taste-label {
  color: #8f4638;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.mini-page {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 30px;
}

.bad-page {
  border-radius: 18px;
  background: linear-gradient(140deg, #eef2ff, #f5e9ff);
  box-shadow: 0 22px 70px rgba(69, 50, 120, 0.18);
}

.bad-pill {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #6d5dfc;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.mini-page h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.bad-page h2 {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 850;
}

.bad-page p {
  color: #5b5870;
  font-size: 18px;
}

.bad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bad-grid span {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.mini-page button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 820;
}

.bad-page button {
  background: #6d5dfc;
  color: white;
}

.good-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 135, 77, 0.24), transparent 32%),
    linear-gradient(135deg, #123d36, #0d2a25);
  color: #fff7ea;
}

.good-page::after {
  content: "JUDGMENT";
  position: absolute;
  right: -24px;
  top: 100px;
  color: rgba(255, 247, 234, 0.06);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 86px;
}

.good-kicker {
  color: #d6a06c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.good-page h2,
.good-page p,
.good-page button {
  position: relative;
  z-index: 1;
}

.good-page p {
  color: rgba(255, 247, 234, 0.78);
  font-size: 18px;
}

.good-page button {
  background: #fff7ea;
  color: #0d2a25;
}

.annotation {
  padding-top: 14px;
  border-top: 1px solid #d8cabb;
}

.annotation span {
  display: block;
  margin-bottom: 6px;
  color: #184d43;
  font-weight: 850;
}

.annotation p {
  margin: 0;
  color: #6f665d;
}

.sense-map {
  display: grid;
  gap: 0;
  border-top: 1px solid #d8cabb;
}

.sense-map div {
  padding: 22px 0;
  border-bottom: 1px solid #d8cabb;
}

.sense-map strong {
  display: block;
  margin-bottom: 8px;
  color: #184d43;
  font-size: 20px;
}

.sense-map p {
  margin: 0;
  color: #6f665d;
  font-size: 17px;
}

.taste-rule {
  margin: 0 clamp(20px, 5vw, 72px) clamp(42px, 7vw, 86px);
  padding: clamp(28px, 5vw, 54px);
  background: #0d2a25;
  color: #fff7ea;
}

.taste-rule h2 {
  margin-bottom: 16px;
}

.taste-rule p {
  max-width: 980px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
}

.perception-page {
  min-height: 100vh;
  background: #eee7dc;
  color: #141310;
}

.lab-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 5vw, 72px) 24px;
}

.lab-header p {
  margin-bottom: 10px;
  color: #184d43;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.lab-header h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(36px, 6vw, 74px);
}

.lab-header a {
  color: #6f665d;
  text-decoration: none;
}

.lab-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
}

.lab-controls {
  display: grid;
  gap: 12px;
}

.lab-controls section {
  padding: 18px;
  border: 1px solid #d8cabb;
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.62);
}

.lab-controls h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lab-controls p {
  margin: 12px 0 0;
  color: #6f665d;
  font-size: 14px;
}

.lab-controls input[type="range"] {
  accent-color: #184d43;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.segmented button {
  border: 1px solid #d8cabb;
  border-radius: 999px;
  background: #fffaf1;
  color: #141310;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  padding: 9px 10px;
}

.segmented button.active {
  background: #184d43;
  color: #fffaf1;
}

.lab-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.specimen {
  --lab-contrast: 78;
  --lab-type: 68;
  --lab-shape: 6px;
  --lab-space: 51px;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-content: center;
  gap: calc(var(--lab-space) * 0.35);
  padding: var(--lab-space);
  border-radius: var(--lab-shape);
  background: #0d2a25;
  color: #fff7ea;
}

.specimen[data-palette="loud"] {
  background: linear-gradient(145deg, #5f3bff, #ff6b3d);
  color: white;
}

.specimen[data-palette="cold"] {
  background: linear-gradient(145deg, #172033, #eef3f8);
  color: #f8fbff;
}

.specimen[data-palette="warm"] {
  background: linear-gradient(145deg, #f4d7bd, #fff7ea);
  color: #241612;
}

.specimen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(201, 135, 77, calc(var(--lab-contrast) / 360)), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, calc(var(--lab-contrast) / 1800)) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, calc(var(--lab-contrast) / 2200)) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
}

.specimen > * {
  position: relative;
  z-index: 1;
}

.specimen-bg-word {
  position: absolute;
  right: -4%;
  top: 20%;
  z-index: 0;
  color: rgba(255, 255, 255, calc(var(--lab-contrast) / 1300));
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(80px, 16vw, 210px);
  font-weight: 800;
}

.specimen-kicker {
  margin: 0;
  color: #d6a06c;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.specimen h2 {
  max-width: 850px;
  margin: 0;
  color: inherit;
  font-size: calc(30px + var(--lab-type) * 0.62px);
}

.specimen-copy {
  max-width: 700px;
  margin: 0;
  color: currentColor;
  font-size: 22px;
  line-height: 1.35;
  opacity: calc(0.48 + var(--lab-contrast) / 170);
}

.secondary-copy {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 32px;
}

.specimen-extra {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.specimen-extra.visible {
  display: flex;
}

.specimen-extra span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.specimen-button {
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff7ea;
  color: #0d2a25;
  font-weight: 820;
  padding: 14px 20px;
  text-decoration: none;
}

.brain-read {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 24px;
  border: 1px solid #d8cabb;
  border-radius: 12px;
  background: #fffaf1;
}

.brain-read h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.brain-read p {
  margin: 0;
  color: #6f665d;
  font-size: 18px;
}

.thank-you {
  min-height: auto;
  align-items: start;
}

.thank-you h1 {
  font-size: clamp(46px, 6vw, 72px);
}

.thank-you .lede {
  font-size: clamp(17px, 2vw, 21px);
}

.intake-hero {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intake-hero h1 {
  max-width: 980px;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.intake-note {
  position: sticky;
  top: 104px;
  align-self: start;
}

.intake-note h2,
.question-list h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.intake-note p {
  color: var(--muted);
  font-size: 18px;
}

.question-list {
  display: grid;
  gap: 42px;
}

.question-list section {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.question-list section:last-child {
  border-bottom: 0;
}

.question-list ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.question-list li::marker {
  color: var(--gold);
  font-weight: 800;
}

.intake-flow {
  min-height: calc(100vh - 76px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.82fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 56px);
  overflow-x: hidden;
}

.flow-intro h1 {
  max-width: 680px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.flow-intro .lede {
  max-width: 560px;
  font-size: clamp(17px, 1.8vw, 20px);
}

.flow-card {
  display: grid;
  gap: 22px;
  min-height: 0;
  padding: clamp(20px, 3.2vw, 32px);
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 2px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  min-width: 0;
}

.flow-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.flow-progress span {
  display: block;
  height: 3px;
  background: #e3ddd1;
}

.flow-progress span.active {
  background: var(--accent);
}

.flow-step {
  display: none;
  align-content: start;
  gap: 16px;
}

.flow-step.active {
  display: grid;
}

.step-count {
  margin-bottom: -8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.step-help {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.compact-fields {
  display: grid;
  gap: 16px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid label {
  position: relative;
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 18px 18px 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fbf8f0;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.choice-grid label:hover {
  border-color: rgba(36, 94, 85, 0.5);
  background: #fffdf8;
}

.choice-grid input {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.choice-grid label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(36, 94, 85, 0.08);
}

.choice-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.urgency-grid {
  grid-template-columns: 1fr;
}

.optional-note {
  margin-top: 8px;
}

.voice-note {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fbf8f0;
}

.voice-note h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.voice-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mic-button,
.upload-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
}

.mic-button.recording {
  border-color: #9f3328;
  background: rgba(159, 51, 40, 0.08);
  color: #7d251d;
}

.mic-icon {
  width: 13px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  position: relative;
}

.mic-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%);
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.voice-preview {
  width: 100%;
}

.voice-status {
  font-size: 14px;
}

.flow-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-self: end;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.flow-actions .button {
  border: 0;
  cursor: pointer;
}

.flow-actions .secondary {
  border: 1px solid var(--line);
}

.flow-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .map-section {
    grid-template-columns: 1fr;
  }

  .map-copy {
    max-width: 760px;
  }

  .leverage-map {
    width: 100%;
    max-width: 920px;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .apply,
  .intake-layout,
  .intake-flow,
  .identity-hero,
  .mirror-section,
  .bridge-hero,
  .bridge-split,
  .bridge-cta,
  .peer-section,
  .testimonial-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .bridge-nav {
    display: none;
  }

  .human-collage {
    min-height: 420px;
  }

  .bridge-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .peer-grid {
    max-width: 640px;
  }

  .testimonial-heading {
    position: static;
  }

  .map-header {
    grid-template-columns: 1fr;
  }

  .map-tile.risk,
  .map-tile.advantage,
  .map-tile.workflows,
  .map-tile.proof,
  .map-tile.plan {
    grid-column: span 6;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 36, 32, 0.1);
  }

  .intake-note {
    position: static;
  }

  .flow-card {
    min-height: auto;
  }

  .intake-flow {
    align-items: start;
    padding-top: 34px;
  }

  .flow-intro h1 {
    max-width: 720px;
    font-size: clamp(38px, 9vw, 58px);
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .deliverables,
  .outcome-grid,
  .shift-track {
    grid-template-columns: 1fr;
  }

  .signal-board {
    min-height: 420px;
  }

  .shift-track div {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 21, 0.16);
  }

  .shift-track div:last-child {
    border-bottom: 0;
  }

  .deliverables article,
  .deliverables article:nth-child(even),
  .deliverables article:nth-child(odd),
  .outcome-grid div,
  .outcome-grid div:not(:last-child) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1120px) {
  .intake-flow {
    grid-template-columns: 1fr;
    max-width: 760px;
    align-items: start;
    gap: 24px;
  }

  .flow-intro {
    max-width: 720px;
  }

  .flow-intro h1 {
    max-width: 720px;
    font-size: clamp(36px, 6vw, 52px);
    margin-bottom: 18px;
  }

  .flow-intro .lede {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 43px;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts span {
    border-right: 0;
    padding-right: 0;
  }

  .memo-header,
  .memo-list div {
    grid-template-columns: 1fr;
  }

  .memo-header {
    display: grid;
  }

  .three-sentence-hero {
    min-height: auto;
  }

  .quiet-signal {
    position: static;
    justify-content: flex-start;
  }

  .start-button {
    width: 100%;
  }

  .diagnostic-header {
    position: sticky;
  }

  .diagnostic-field {
    min-height: calc(100vh - 70px);
    padding-top: 56px;
  }

  .field-copy h1 {
    font-size: clamp(45px, 13vw, 74px);
  }

  .field-button {
    width: 100%;
  }

  .field-words span {
    opacity: 0.72;
  }

  .taste-board {
    grid-template-columns: 1fr;
  }

  .mini-page {
    min-height: 420px;
  }

  .lab-header,
  .lab-shell,
  .lab-stage {
    grid-template-columns: 1fr;
  }

  .lab-header {
    align-items: start;
    flex-direction: column;
  }

  .specimen {
    min-height: 580px;
  }

  .brain-read {
    grid-template-columns: 1fr;
  }

  .bridge-header {
    position: sticky;
  }

  .bridge-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .bridge-actions,
  .bridge-actions .bridge-button {
    width: 100%;
  }

  .bridge-proof {
    grid-template-columns: 1fr;
  }

  .proof-lead {
    grid-column: auto;
    min-height: 260px;
  }

  .human-collage {
    min-height: 520px;
  }

  .human-card-main {
    left: 0;
    width: 82%;
  }

  .human-card-top {
    right: 0;
  }

  .human-card-bottom {
    right: 0;
    bottom: 14%;
  }

  .human-badge {
    bottom: 8%;
  }

  .peer-grid {
    grid-template-columns: 1fr;
  }

  .peer-grid article:nth-child(2) {
    transform: none;
  }

  .bridge-timeline article {
    grid-template-columns: 58px 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-tile.risk,
  .map-tile.advantage,
  .map-tile.workflows,
  .map-tile.proof,
  .map-tile.plan {
    grid-column: auto;
  }
}
