:root {
  --accent: #e04a26;
  --accent-soft: #f8e8e2;
  --ink: #111110;
  --ink-soft: #5f5f5c;
  --muted: #8a8a86;
  --line: #e7e7e4;
  --paper: #ffffff;
  --warm: #faf9f6;
  --night: #131210;
  --night-card: #1e1c19;
  --shadow: 0 10px 28px rgba(20, 20, 19, .06);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
::selection { background: var(--night); color: #fff; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--night);
  color: #fff;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(20, 20, 19, .06);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1140px, calc(100% - 48px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18.5px;
  font-weight: 760;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-mark { width: 21px; height: 21px; flex: none; fill: var(--accent); }
.header-cta {
  border: 1px solid #dcdcd8;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-1px); border-color: #bdbdb8; background: #fff; }

.hero {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 94px) 0 0;
  text-align: center;
}
.hero-copy { max-width: 1040px; margin: 0 auto; animation: hero-in .75s cubic-bezier(.22,1,.36,1) both; }
.eyebrow {
  display: inline-flex;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: #fafafa;
  color: #6f6f6c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 24px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 740;
  letter-spacing: -.048em;
  line-height: 1.02;
  text-wrap: balance;
}
.mobile-title-break { display: none; }
.hero-lede {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(16.5px, 1.6vw, 18px);
  line-height: 1.67;
  text-wrap: pretty;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  border: 0;
  border-radius: 999px;
  padding: 13px 27px;
  cursor: pointer;
  font-weight: 680;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { margin-top: 30px; background: var(--night); color: #fff; }
.button-dark:hover { background: var(--accent); }
.button-accent { align-self: flex-start; margin-top: 2px; background: var(--accent); color: #fff; }
.button-accent:hover { background: var(--night); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.cta-note { margin: 11px 0 0; color: var(--muted); font-size: 12.5px; font-weight: 560; }

.demo-wrap { width: min(620px, 100%); margin: clamp(46px, 6vw, 68px) auto 0; }
.demo-card {
  min-height: 430px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: var(--night-card);
  color: #fff;
  text-align: left;
  box-shadow: 0 2px 4px rgba(20,20,19,.08), 0 28px 70px rgba(20,20,19,.24);
  transition: opacity .22s ease, transform .22s ease;
}
.demo-card.is-swapping { opacity: .58; transform: scale(.992); }
.demo-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #8a8a86; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.demo-state { display: inline-flex; align-items: center; gap: 7px; letter-spacing: 0; }
.demo-state i { width: 10px; height: 10px; border: 1.5px dashed var(--accent); border-radius: 50%; animation: spin 1.1s linear infinite; }
.demo-state b { color: #aaa7a0; font-size: 12px; }
.demo-progress { height: 2px; margin-top: 15px; overflow: hidden; border-radius: 2px; background: rgba(255,255,255,.12); }
.demo-progress span { display: block; width: 100%; height: 100%; background: var(--accent); transition: width .55s cubic-bezier(.22,1,.36,1); }
.demo-scoreline { display: flex; align-items: baseline; gap: 11px; margin-top: 16px; color: #b9b5ac; }
.demo-scoreline > span:first-child { font-size: 13px; }
.demo-scoreline strong { color: #ef8065; font-size: 46px; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.demo-scoreline > span:last-child { font-size: 14px; }
.demo-signals { display: flex; flex-direction: column; gap: 4px; margin-top: 14px; }
.signal-row { position: relative; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 12px; min-height: 48px; padding: 8px 11px; overflow: hidden; border-radius: 12px; transition: opacity .38s ease, transform .42s ease, background .38s ease; }
.signal-row::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transform: translateX(-120%); background: linear-gradient(105deg, transparent 24%, rgba(255,255,255,.055) 45%, rgba(239,128,101,.09) 52%, transparent 72%); }
.signal-row > * { position: relative; z-index: 1; }
.signal-row.is-entering { opacity: .42; transform: translateY(2px); }
.signal-row.is-entering b { color: #8b8881; }
.signal-row.is-entering small { color: #66635e; }
.signal-row.is-processing { opacity: 1; transform: none; }
.signal-row.is-processing::after { opacity: 1; animation: row-shimmer 1.05s ease-in-out infinite; }
.signal-row.is-processing .signal-check { border-style: solid; border-top-color: var(--accent); animation: spin .72s linear infinite; }
.signal-row.is-processing small { color: #c79789; }
.signal-check { width: 22px; height: 22px; display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; color: transparent; font-size: 12px; transition: background .34s ease, border-color .34s ease, color .3s ease; }
.signal-row.is-complete .signal-check { border: 0; background: color-mix(in oklab, var(--accent) 28%, var(--night-card)); color: #f6a38e; animation: check-pop .4s cubic-bezier(.34,1.56,.64,1); }
.signal-row.is-complete { background: rgba(255,255,255,.022); }
@keyframes check-pop { 0% { transform: scale(.4); opacity: .2; } 55% { transform: scale(1.14); } 100% { transform: scale(1); opacity: 1; } }
.signal-row b { color: #e8e6e1; font-size: 14.5px; font-weight: 560; }
.signal-row small { color: #8f8a80; font-size: 12px; white-space: nowrap; }
.demo-wrap figcaption { margin-top: 17px; color: var(--muted); font-size: 13.5px; }

.proof-strip {
  width: min(1040px, calc(100% - 48px));
  margin: clamp(38px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--warm);
}
.proof-strip > div { min-height: 112px; padding: 23px 24px; border-right: 1px solid var(--line); }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { display: block; color: var(--ink); font-size: clamp(22px, 2.3vw, 29px); letter-spacing: -.035em; }
.proof-strip span { display: block; margin-top: 6px; color: var(--muted); font-size: 12.5px; line-height: 1.42; }

.reason-cloud {
  height: 235vh;
  margin: clamp(62px, 8vw, 104px) clamp(12px, 2.5vw, 32px) 0;
  border-radius: clamp(28px, 4vw, 48px);
  background-color: var(--night);
  background-image: radial-gradient(rgba(255,255,255,.055) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}
.reason-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; border-radius: inherit; }
.reason-center { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; padding: 24px; text-align: center; pointer-events: none; }
.reason-center h2 { max-width: 700px; margin: 0; color: #f5f3ef; font-size: clamp(31px, 4.4vw, 54px); font-weight: 680; letter-spacing: -.04em; line-height: 1.15; text-wrap: balance; }
.reason-center p { max-width: 560px; margin: 15px auto 0; color: #9e9a92; font-size: clamp(18px, 2vw, 25px); font-weight: 480; letter-spacing: -.02em; line-height: 1.35; text-wrap: balance; }
.reason-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(210px, 24vw, 304px);
  padding: 19px 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(30,28,25,.96);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.46);
}
.reason-a { transform: translate(calc(-50% + 33vw), calc(-50% - 26vh)) rotate(1.5deg); }
.reason-b { transform: translate(calc(-50% - 34vw), calc(-50% + 24vh)) rotate(-1.5deg); }
.reason-c { transform: translate(calc(-50% + 26vw), calc(-50% + 27vh)) rotate(1deg); }
.card-label { margin: 0; color: #8a8a86; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.mini-score { display: flex; align-items: baseline; gap: 9px; margin-top: 10px; }
.mini-score strong { color: var(--accent); font-size: 27px; line-height: 1; letter-spacing: -.02em; }
.mini-score span { color: #b9b5ac; font-size: 12px; }
.reason-card ul { margin: 10px 0 0; padding: 0; list-style: none; }
.reason-card li { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 9px; min-height: 36px; border-top: 1px solid rgba(255,255,255,.08); }
.reason-card li i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in oklab, var(--accent) 26%, var(--night-card)); color: #f6a38e; font-size: 10px; font-style: normal; }
.reason-card li span { color: #e8e6e1; font-size: 12.5px; font-weight: 560; }
.reason-card li small { color: #8f8a80; font-size: 10.5px; white-space: nowrap; }

.facts {
  width: min(1140px, calc(100% - 48px));
  margin: clamp(54px, 7vw, 82px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #ececea;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.facts article { min-height: 205px; padding: clamp(27px, 3vw, 38px); border-right: 1px solid #efefec; transition: background .25s ease; }
.facts article:last-child { border-right: 0; }
.facts article:hover { background: var(--warm); }
.facts p { margin: 0 0 13px; color: var(--accent); font-size: 11px; font-weight: 760; letter-spacing: .14em; }
.facts h2 { margin: 0; color: #222220; font-size: clamp(16px, 1.5vw, 18px); font-weight: 560; line-height: 1.62; text-wrap: pretty; }

.deliverable { width: min(1140px, calc(100% - 48px)); margin: clamp(78px, 10vw, 128px) auto 0; }
.deliverable-heading { max-width: 820px; }
.file-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 26px; background: var(--night); color: #f4f2ed; box-shadow: 0 30px 80px rgba(20,20,19,.18); }
.file-toolbar { min-height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.09); color: #96928a; font-size: 11.5px; }
.file-toolbar > div { display: flex; gap: 6px; }
.file-toolbar > span:last-child { justify-self: end; }
.file-toolbar strong { color: #c8c4bc; font-size: 11.5px; font-weight: 600; letter-spacing: .01em; }
.file-dot { width: 8px; height: 8px; border-radius: 50%; background: #4a4741; }
.file-dot:first-child { background: var(--accent); }
.file-table-wrap { overflow-x: auto; outline: none; }
.file-table { width: 100%; min-width: 860px; border-collapse: collapse; }
.file-table th, .file-table td { padding: 18px 21px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; }
.file-table th { color: #807c74; font-size: 10px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.file-table td { color: #d7d3cc; font-size: 13.5px; line-height: 1.45; }
.file-table tbody tr { transition: background .2s ease; }
.file-table tbody tr:hover { background: rgba(255,255,255,.035); }
.file-table td:first-child { color: #77736d; font-variant-numeric: tabular-nums; }
.file-table td b { color: #f08368; font-size: 22px; letter-spacing: -.02em; }
.verified-pill { display: inline-flex; border-radius: 999px; padding: 5px 9px; background: rgba(67,143,108,.17); color: #9cd5bb; font-size: 10.5px; font-weight: 680; white-space: nowrap; }
.file-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 20px 22px; }
.file-footer p { max-width: 670px; margin: 0; color: #918d86; font-size: 12.5px; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 7px; flex: none; color: #fff; font-size: 13px; font-weight: 680; text-decoration: none; }
.text-link span { color: var(--accent); font-size: 17px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(2px); }

.examples { width: min(1140px, calc(100% - 48px)); margin: clamp(68px, 9vw, 112px) auto 0; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading h2 { margin: 18px 0 0; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -.04em; text-wrap: balance; }
.section-heading > p:last-child { max-width: 650px; margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.example-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.property-card { overflow: hidden; border: 1px solid #ececea; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.property-visual { position: relative; min-height: 264px; overflow: hidden; background: linear-gradient(145deg, #dedbd2, #aaa79f); }
.property-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 24% 20%, rgba(255,255,255,.45), transparent 35%), linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 45%, transparent 58%); }
.property-visual.visual-alt { background: linear-gradient(145deg, #c5c4bd, #898982); }
.property-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; filter: blur(2.5px); }
.property-visual path { fill: none; stroke: rgba(255,255,255,.82); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.property-visual .parcel-line { stroke: rgba(255,255,255,.4); stroke-width: 3; stroke-dasharray: 10 13; }
.property-visual circle { fill: var(--accent); opacity: .75; }
.property-visual > span { position: absolute; left: 14px; top: 14px; z-index: 2; border-radius: 999px; padding: 6px 11px; background: rgba(19,18,16,.62); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.property-body { padding: 25px; }
.property-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.property-top strong { color: var(--accent); font-size: 42px; line-height: 1; letter-spacing: -.03em; }
.property-top span { border-radius: 999px; padding: 6px 12px; background: var(--accent-soft); color: #bd4629; font-size: 12px; font-weight: 700; }
.property-body h3 { margin: 15px 0 0; font-size: 19px; letter-spacing: -.015em; }
.property-meta { margin: 6px 0 0; color: var(--muted); font-size: 13.5px; }
.property-body ul { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.property-body li { position: relative; padding-left: 17px; color: #2d2d2a; font-size: 14px; line-height: 1.5; }
.property-body li::before { content: ""; position: absolute; left: 0; top: .56em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.process { width: min(1140px, calc(100% - 48px)); margin: clamp(78px, 10vw, 128px) auto 0; }
.process-heading { max-width: 780px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; list-style: none; }
.process-grid li { min-height: 255px; padding: 29px 27px; border-right: 1px solid var(--line); background: #fff; }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { color: var(--accent); font-size: 11px; font-weight: 760; letter-spacing: .12em; }
.process-grid h3 { margin: 48px 0 0; font-size: 19px; letter-spacing: -.02em; }
.process-grid p { margin: 10px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.58; }

.faq { width: min(900px, calc(100% - 48px)); margin: clamp(78px, 10vw, 128px) auto 0; }
.faq-heading { max-width: 760px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; cursor: pointer; color: #242421; font-size: clamp(16px, 1.6vw, 18px); font-weight: 650; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 27px; height: 27px; display: grid; place-items: center; flex: none; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 19px; font-weight: 400; transition: transform .25s ease, background .25s ease; }
.faq details[open] summary span { transform: rotate(45deg); background: var(--accent-soft); }
.faq details p { max-width: 720px; margin: 0 48px 25px 0; padding-top: 12px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.68; }

.intake-section {
  width: min(1140px, calc(100% - 48px));
  margin: clamp(74px, 10vw, 126px) auto 0;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(380px, 1.05fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}
.map-figure { margin: 0; }
#florida-map { display: block; width: 100%; height: auto; overflow: visible; }
.map-dot { fill: #dcd8ce; transition: fill .8s ease, r .8s ease, opacity .5s ease; }
.map-dot.is-signal { fill: var(--accent); opacity: 0; }
.map-dot.is-signal.is-in { opacity: 1; }
.map-dot.is-warm { fill: var(--accent); }
.map-figure figcaption { margin-top: 12px; color: var(--muted); text-align: center; font-size: 13.5px; font-weight: 560; }
.map-figure figcaption span { color: var(--accent); }
.intake-copy h2 { margin: 0; font-size: clamp(31px, 4vw, 44px); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.intake-copy > p { max-width: 570px; margin: 14px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.62; }
.intake-promises { display: flex; flex-direction: column; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.intake-promises li { display: flex; align-items: flex-start; gap: 9px; color: #4c4c48; font-size: 13.5px; line-height: 1.45; }
.intake-promises span { width: 18px; height: 18px; display: grid; place-items: center; flex: none; border-radius: 50%; background: var(--accent-soft); color: #bc482c; font-size: 10px; font-weight: 800; }
form { display: flex; flex-direction: column; gap: 13px; margin-top: 27px; }
.form-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
label { display: flex; flex-direction: column; gap: 7px; color: #4d4d49; font-size: 12.5px; font-weight: 680; }
input, textarea, select {
  width: 100%;
  min-height: 49px;
  border: 1px solid #e0e0dc;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--ink);
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 450;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 92px; resize: vertical; line-height: 1.45; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent); }
.honey { display: none; }
.form-status { min-height: 22px; margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
.form-status.is-success { color: #20734f; }
.form-status.is-error { color: #a83f26; }
.form-privacy { margin: -5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.email-fallback { margin: 15px 0 0 !important; color: var(--muted) !important; font-size: 13.5px !important; }
.email-fallback a { color: #52524e; font-weight: 700; }

.site-footer { margin: clamp(72px, 9vw, 112px) clamp(12px, 2.5vw, 32px) clamp(12px, 2.5vw, 32px); border-radius: clamp(28px, 4vw, 48px); background: var(--night); color: #fff; }
.footer-inner { width: min(1140px, calc(100% - 48px)); margin: 0 auto; padding: clamp(58px, 8vw, 104px) clamp(0px, 2vw, 24px); }
.brand-light { color: #fff; }
.footer-title { max-width: 650px; margin: 31px 0 0; font-size: clamp(35px, 5vw, 54px); font-weight: 720; letter-spacing: -.04em; line-height: 1.04; text-wrap: balance; }
.button-light { margin-top: 35px; background: #fff; color: var(--night); }
.button-light:hover { background: var(--accent); color: #fff; }
.footer-small { max-width: 760px; margin: clamp(42px, 6vw, 68px) 0 0; color: #918d86; font-size: 13px; line-height: 1.75; }
.footer-small a { color: #c8c4bc; }

.legal-body { background: var(--warm); }
.legal-header { position: static; }
.legal-main { width: min(760px, calc(100% - 48px)); margin: 0 auto; padding: clamp(58px, 9vw, 100px) 0; }
.legal-kicker { margin: 0; color: var(--accent); font-size: 11px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.legal-main h1 { margin: 14px 0 0; font-size: clamp(40px, 6vw, 64px); }
.legal-updated { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.legal-intro { margin: 35px 0 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: 17px; background: #fff; color: var(--ink-soft); line-height: 1.65; }
.legal-sections { margin-top: 38px; }
.legal-sections section { padding: 26px 0; border-top: 1px solid var(--line); }
.legal-sections h2 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.legal-sections p { margin: 10px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.72; }
.legal-back { display: inline-flex; margin-top: 40px; color: var(--ink); font-weight: 680; text-decoration: none; }

[data-reveal] { transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-pending { opacity: 0; transform: translateY(18px); }

a:focus-visible, button:focus-visible, summary:focus-visible, .file-table-wrap:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
#intake, .deliverable, .examples, .process, .faq { scroll-margin-top: 88px; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes hero-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes row-shimmer { from { transform: translateX(-120%); } to { transform: translateX(120%); } }

@media (max-width: 900px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .facts { grid-template-columns: 1fr; }
  .facts article { min-height: auto; border-right: 0; border-bottom: 1px solid #efefec; }
  .facts article:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intake-section { grid-template-columns: 1fr; }
  .map-figure { width: min(620px, 100%); margin: 0 auto; }
  .intake-copy { max-width: 680px; }
}

@media (max-width: 760px) {
  .header-inner, .hero, .proof-strip, .facts, .deliverable, .examples, .process, .faq, .intake-section { width: min(100% - 36px, 1140px); }
  .header-inner { min-height: 62px; }
  .brand { font-size: 17px; }
  .header-cta { padding: 8px 13px; font-size: 12.5px; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-lede { line-height: 1.58; }
  .demo-card { min-height: 328px; padding: 20px; border-radius: 20px; }
  .demo-scoreline { flex-wrap: wrap; }
  .signal-row { grid-template-columns: 22px 1fr; }
  .signal-row small { grid-column: 2; margin-top: -8px; }
  .reason-cloud { height: auto; margin-top: 68px; padding: 54px 18px; }
  .reason-stage { position: relative; top: auto; height: auto; display: grid; gap: 14px; overflow: visible; }
  .reason-center { position: static; order: -1; display: block; padding: 0 4px 24px; }
  .reason-center h2 { font-size: clamp(30px, 9vw, 44px); }
  .reason-center p { font-size: clamp(17px, 5vw, 22px); }
  .reason-card { position: static; width: 100%; transform: none !important; opacity: 1 !important; }
  .file-toolbar { grid-template-columns: 1fr auto; }
  .file-toolbar > strong { display: none; }
  .file-footer { align-items: flex-start; flex-direction: column; gap: 16px; }
  .example-grid { grid-template-columns: 1fr; }
  .property-visual { min-height: 220px; }
  .form-pair { grid-template-columns: 1fr; }
  .footer-inner { width: min(100% - 36px, 1140px); }
}

@media (max-width: 430px) {
  .header-cta { max-width: none; padding: 9px 11px; font-size: 11.75px; line-height: 1; white-space: nowrap; }
  .eyebrow { font-size: 10.5px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(34px, 8.8vw, 38px); }
  .mobile-title-break { display: block; }
  .button { width: 100%; }
  .demo-scoreline > span:last-child { flex-basis: 100%; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(3) { border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(3) { border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 28px; }
  .faq details p { margin-right: 0; }
  .property-body { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  [data-reveal].is-pending { opacity: 1; transform: none; }
  .reason-cloud { height: auto; padding: 54px 18px; }
  .reason-stage { position: relative; height: auto; display: grid; gap: 14px; overflow: visible; }
  .reason-center { position: static; order: -1; display: block; }
  .reason-card { position: static; width: 100%; transform: none !important; }
}
