:root {
  --ink: #11130f;
  --paper: #f4f1e9;
  --paper-light: #fffdf7;
  --lime: #c8ff2e;
  --coral: #ff6a4d;
  --blue: #6384ff;
  --plum: #8a63d2;
  --muted: #74786e;
  --line: rgba(17, 19, 15, .16);
  --line-strong: rgba(17, 19, 15, .42);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
.noise { position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .028; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }

.site-header { height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 4vw, 64px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 80; background: rgba(244, 241, 233, .94); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 24px; font-weight: 700; letter-spacing: -1.4px; white-space: nowrap; }
.brand img { width: 35px; height: 35px; }
.brand b { font-size: 8px; letter-spacing: 1.7px; border-left: 1px solid var(--line-strong); padding-left: 10px; color: var(--muted); }
.site-header nav { display: flex; height: 100%; align-items: stretch; }
.site-header nav a { display: flex; align-items: center; gap: 7px; padding: 0 17px; color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 700; border-left: 1px solid transparent; border-right: 1px solid transparent; transition: .2s ease; }
.site-header nav a:hover { color: var(--ink); background: rgba(255, 255, 255, .35); }
.site-header nav a.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.site-header nav a.active .nav-count { color: var(--lime); }
.nav-count { color: var(--ink); font-size: 8px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.location-chip { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 800; letter-spacing: 1px; border: 1px solid var(--line-strong); padding: 9px 11px; }
.location-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200, 255, 46, .25); }
.icon-button, .menu-button { height: 34px; min-width: 34px; border: 1px solid var(--ink); background: var(--paper-light); cursor: pointer; font-weight: 800; }
.icon-button:hover { background: var(--coral); }
.menu-button { display: none; padding: 0 12px; font-size: 10px; }

.section-pad { padding-left: clamp(24px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px); }
.view { display: none; min-height: calc(100vh - 82px); }
.view.active { display: block; animation: viewIn .35s ease both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -3px; }
h1 em, h2 em { font-weight: 400; color: var(--coral); }
.eyebrow, .section-kicker { font-size: 10px; font-weight: 800; letter-spacing: 1.9px; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.pulse { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 6px rgba(200, 255, 46, .24); }
.section-kicker { margin-bottom: 27px; }
.section-kicker.light { color: #aeb2a8; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 15px 19px; text-decoration: none; border: 1px solid var(--ink); font-weight: 800; font-size: 12px; transition: .22s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 var(--ink); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-ink { background: var(--ink); color: white; }
.text-link { color: var(--ink); text-underline-offset: 5px; font-weight: 700; font-size: 12px; }
.text-link span { margin-left: 8px; }
.text-button { border: 0; background: none; padding: 0; font-size: 10px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.text-button:hover { color: #5a7c00; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }

/* Overview */
.overview-hero { min-height: 690px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: center; padding-top: 55px; padding-bottom: 70px; }
.hero-copy h1 { font-size: clamp(78px, 9vw, 142px); line-height: .78; margin: 50px 0 36px; }
.hero-copy > p { max-width: 600px; color: #55594f; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.route-board { min-height: 520px; background: var(--ink); color: #fff; border: 1px solid var(--ink); box-shadow: 16px 16px 0 var(--lime); position: relative; }
.board-top { height: 70px; display: flex; align-items: center; gap: 25px; padding: 0 25px; border-bottom: 1px solid #3b3e37; }
.board-top span { color: #8d9187; font-size: 8px; letter-spacing: 1.4px; }.board-top b { font-family: var(--serif); font-weight: 400; font-size: 21px; }.board-top i { margin-left: auto; font-style: normal; color: var(--lime); font-size: 8px; font-weight: 800; }
.route-map { height: 355px; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 15%, rgba(200,255,46,.08), transparent 13rem), linear-gradient(90deg, transparent 49.8%, #292c27 50%, transparent 50.2%), linear-gradient(transparent 49.8%, #292c27 50%, transparent 50.2%); background-size: auto, 80px 80px, 80px 80px; }
.route-map svg { width: 100%; height: 100%; overflow: visible; }
.route-map circle { fill: var(--ink); stroke: var(--lime); stroke-width: 7px; }
.route-line { fill: none; stroke: #4b4f46; stroke-width: 2px; }.route-dash { fill: none; stroke: var(--lime); stroke-width: 2px; stroke-dasharray: 7 8; animation: dash 16s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -300; } }
.map-label { position: absolute; background: #22251f; border: 1px solid #454941; padding: 7px 9px; font-size: 8px; font-weight: 800; letter-spacing: .7px; }.map-label small { display: block; margin-top: 3px; color: #858a80; font-weight: 500; letter-spacing: 0; }.label-one { left: 5%; bottom: 9%; }.label-two { left: 28%; bottom: 37%; }.label-three { left: 54%; top: 18%; }.label-four { right: 3%; top: 4%; }
.board-bottom { min-height: 94px; border-top: 1px solid #3b3e37; display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 18px; align-items: center; padding: 18px 24px; }.board-bottom > div { display: flex; flex-direction: column; gap: 5px; }.board-bottom small { color: #777c72; font-size: 7px; letter-spacing: 1px; }.board-bottom strong { font-size: 11px; }.target-meter { height: 32px; justify-content: flex-end; position: relative; border-bottom: 3px solid #363a33; }.target-meter span { position: absolute; left: 0; bottom: -3px; height: 3px; background: var(--lime); }.target-meter small { text-align: right; }
.floating-signal { position: absolute; right: -38px; top: 120px; background: var(--paper-light); color: var(--ink); border: 1px solid var(--ink); padding: 13px 15px; display: flex; align-items: center; gap: 11px; box-shadow: 7px 7px 0 rgba(0,0,0,.2); }.floating-signal > span { width: 29px; height: 29px; display: grid; place-items: center; background: var(--coral); font-weight: 900; }.floating-signal div { display: flex; flex-direction: column; }.floating-signal small { font-size: 6px; letter-spacing: 1px; color: var(--muted); }.floating-signal b { font-size: 9px; margin-top: 4px; }
.signal-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.signal-strip article { min-height: 240px; padding: 25px clamp(24px, 4vw, 60px); border-right: 1px solid var(--ink); display: flex; flex-direction: column; }.signal-strip article:last-child { border: 0; }.signal-strip .acid { background: var(--lime); }.signal-strip span { font-size: 9px; }.signal-strip strong { font-family: var(--serif); font-size: 78px; font-weight: 400; margin: auto 0 8px; }.signal-strip p { max-width: 310px; font-size: 12px; line-height: 1.5; margin-bottom: 0; }
.section-block { padding-top: 130px; padding-bottom: 140px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10vw; align-items: end; }.split-heading h2 { font-size: clamp(54px, 6.6vw, 96px); line-height: .92; margin: 0; }.split-heading > p { color: #5d6158; line-height: 1.7; font-size: 15px; margin: 0; }
.sequence-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.sequence-card { min-height: 360px; padding: 25px; border: 0; border-right: 1px solid var(--ink); background: transparent; text-align: left; display: flex; flex-direction: column; cursor: pointer; transition: .2s ease; }.sequence-card:last-child { border: 0; }.sequence-card:hover { background: var(--paper-light); }.sequence-card > span { font-size: 9px; }.sequence-card > i { width: 52px; height: 52px; border: 1px solid var(--ink); display: grid; place-items: center; margin: 55px 0 25px; font-family: var(--serif); font-size: 27px; font-style: normal; color: #3f5d00; background: var(--lime); }.sequence-card h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin-bottom: 14px; }.sequence-card p { font-size: 12px; line-height: 1.55; color: #5c6057; }.sequence-card > b { margin-top: auto; font-size: 10px; }
.truth-section { background: var(--ink); color: white; padding-top: 80px; padding-bottom: 80px; display: grid; grid-template-columns: 70px 1.1fr .9fr; gap: 5vw; align-items: start; }.truth-number { color: var(--lime); font-size: 11px; }.truth-section h2 { font-size: clamp(45px, 5vw, 72px); line-height: .98; }.truth-copy p { color: #b6baaf; font-size: 14px; line-height: 1.75; }.truth-copy p strong { color: white; }.source-links { display: flex; gap: 20px; margin-top: 28px; }.source-links a { color: var(--lime); font-size: 10px; font-weight: 800; text-underline-offset: 4px; }

/* Download library */
.download-section { background: var(--ink); color: white; padding-top: 95px; padding-bottom: 105px; border-bottom: 1px solid #45483f; }.download-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; margin-bottom: 52px; }.download-heading h2 { color: white; font-size: clamp(54px, 6.4vw, 93px); margin: 12px 0 0; line-height: .9; }.download-heading h2 em { color: var(--lime); }.download-heading > p { color: #c7c9c1; font-size: 11px; line-height: 1.75; max-width: 430px; }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #5d6058; }.download-card { min-height: 420px; color: white; text-decoration: none; display: grid; grid-template-columns: minmax(190px,.8fr) 1fr; gap: 30px; padding: 30px; position: relative; transition: background .25s ease, color .25s ease; }.download-card:first-child { border-right: 1px solid #5d6058; }.download-card:hover { background: var(--lime); color: var(--ink); }.download-card:hover .download-copy p, .download-card:hover .download-copy > span { color: #41453b; }.download-card:hover .download-copy div { border-color: var(--ink); }.download-card:hover .download-copy em { color: var(--ink); transform: translateY(2px); }
.document-preview { align-self: center; background: var(--paper); color: var(--ink); border: 1px solid #777b70; box-shadow: 10px 10px 0 rgba(255,255,255,.08); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }.download-card:hover .document-preview { transform: rotate(-1.5deg) translateY(-5px); box-shadow: 12px 12px 0 rgba(17,19,15,.18); }.document-preview.portrait { width: 172px; height: 226px; padding: 19px 16px 16px 51px; }.document-preview.portrait:before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 40px; background: var(--lime); }.document-preview.portrait:after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--ink); }.preview-acid { position: absolute; left: 15px; top: 30px; width: 10px; height: 10px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg); }.document-preview i { font-style: normal; font-size: 4px; font-weight: 800; letter-spacing: .5px; }.document-preview.portrait strong { display: block; font-family: var(--serif); font-size: 34px; line-height: .86; font-weight: 400; margin-top: 48px; }.document-preview.portrait strong span { color: var(--coral); }.document-preview.portrait small { display: block; font-family: var(--serif); font-size: 8px; line-height: 1.3; margin-top: 18px; }
.document-preview.landscape { width: 229px; height: 162px; padding: 16px; }.document-preview.landscape:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--ink); }.document-preview.landscape strong { display: block; font-family: var(--serif); font-size: 18px; line-height: .95; font-weight: 400; margin-top: 17px; }.document-preview.landscape strong span { font-size: 14px; }.preview-table { margin-top: 15px; border-top: 10px solid var(--ink); }.preview-table b { display: block; height: 9px; border: 1px solid #d0d2c9; border-top: 0; background: linear-gradient(90deg,var(--coral) 0 2px,transparent 2px); }.document-preview.landscape small { position: absolute; left: 16px; bottom: 8px; font-size: 3.5px; font-weight: 800; letter-spacing: .4px; }
.download-copy { align-self: stretch; display: flex; flex-direction: column; padding-top: 4px; }.download-copy > span { color: var(--lime); font-size: 7px; font-weight: 800; letter-spacing: 1.2px; }.download-copy h3 { font-family: var(--serif); font-size: 34px; line-height: 1; font-weight: 400; margin: 25px 0 16px; }.download-copy p { color: #bfc2b8; font-size: 9px; line-height: 1.7; margin: 0; }.download-copy div { display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid #5d6058; margin-top: auto; padding-top: 16px; font-size: 7px; font-style: normal; }.download-copy em { color: var(--lime); font-style: normal; font-weight: 800; transition: transform .2s ease; }

/* Shared page hero */
.page-hero { min-height: 420px; display: grid; grid-template-columns: 1fr 460px; align-items: end; gap: 8vw; padding-top: 75px; padding-bottom: 60px; border-bottom: 1px solid var(--ink); }
.page-hero h1 { font-size: clamp(80px, 10vw, 148px); line-height: .76; margin: 45px 0 0; }.page-hero-aside { border-top: 1px solid var(--ink); padding-top: 20px; display: grid; grid-template-columns: auto 1fr; gap: 7px 15px; align-items: end; }.page-hero-aside strong { font-family: var(--serif); font-size: 78px; font-weight: 400; line-height: .8; }.page-hero-aside span { font-size: 11px; font-weight: 700; }.page-hero-aside p { grid-column: 1 / -1; color: var(--muted); font-size: 12px; line-height: 1.55; margin: 20px 0 0; }

/* Playbook */
.playbook-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 8vw; padding-top: 85px; padding-bottom: 130px; }
.section-index { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; }.section-index > span { font-size: 8px; font-weight: 800; letter-spacing: 1.6px; margin-bottom: 18px; }.section-index a { color: var(--muted); text-decoration: none; font-size: 10px; font-weight: 700; padding: 10px 0; border-bottom: 1px solid var(--line); }.section-index a:hover { color: var(--ink); padding-left: 5px; }.section-index .button { margin-top: 25px; width: 100%; }
.playbook-content { min-width: 0; }.guide-section { position: relative; padding: 0 0 105px; margin-bottom: 100px; border-bottom: 1px solid var(--ink); scroll-margin-top: 110px; }.guide-section:last-child { margin-bottom: 0; }.guide-number { position: absolute; right: 0; top: 0; color: #9b9e96; font-size: 10px; }.guide-section h2 { font-size: clamp(55px, 6.8vw, 96px); line-height: .9; max-width: 930px; }.guide-lede { max-width: 850px; font-size: 16px; line-height: 1.7; color: #595d54; }
.icp-cards { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--ink); margin-top: 55px; }.icp-card { min-height: 210px; padding: 22px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }.icp-card:nth-child(2n) { border-right: 0; }.icp-card:nth-last-child(-n+2) { border-bottom: 0; }.icp-card.top { background: var(--lime); }.icp-card span { font-size: 8px; }.icp-card b { font-family: var(--serif); font-size: 31px; font-weight: 400; margin: 38px 0 5px; }.icp-card small { color: var(--muted); font-size: 9px; }.icp-card p { font-size: 11px; line-height: 1.55; margin: 16px 0 0; }
.rank-details { border-bottom: 1px solid var(--ink); margin-top: 28px; }.rank-details summary, .objection-list summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: 11px; font-weight: 800; }.rank-details summary::-webkit-details-marker, .objection-list summary::-webkit-details-marker { display: none; }.rank-details summary span, .objection-list summary span { font-size: 18px; transition: .2s; }.rank-details[open] summary span, .objection-list details[open] summary span { transform: rotate(45deg); }.rank-table-wrap { overflow-x: auto; padding-bottom: 20px; }.rank-table-wrap table { border-collapse: collapse; width: 100%; min-width: 700px; font-size: 10px; }.rank-table-wrap th, .rank-table-wrap td { padding: 12px; border: 1px solid var(--line); text-align: left; }.rank-table-wrap th { background: var(--ink); color: white; font-size: 8px; letter-spacing: .8px; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); margin-top: 45px; }.area-grid > div { min-height: 220px; padding: 25px; border-right: 1px solid var(--ink); }.area-grid > div:last-child { border: 0; }.area-grid span, .variation-grid span, .outcome-grid span, .pricing-talk > div > span { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; }.area-grid h3 { font-family: var(--serif); font-size: 33px; font-weight: 400; margin: 60px 0 12px; }.area-grid p { font-size: 11px; line-height: 1.6; color: var(--muted); }
.timing-banner { background: var(--lime); border: 1px solid var(--ink); margin-top: 22px; padding: 23px; display: grid; grid-template-columns: 1.2fr auto auto auto 1.5fr; gap: 22px; align-items: center; }.timing-banner div { display: flex; flex-direction: column; }.timing-banner small { font-size: 7px; letter-spacing: 1px; }.timing-banner strong { font-size: 13px; }.timing-banner b { font-family: var(--serif); font-size: 34px; font-weight: 400; }.timing-banner p { font-size: 10px; line-height: 1.5; margin: 0; }.note { display: flex; gap: 30px; margin-top: 35px; border-left: 4px solid var(--coral); padding-left: 18px; }.note b { min-width: 220px; font-size: 11px; }.note p { margin: 0; font-size: 11px; line-height: 1.6; color: var(--muted); }
.guide-section blockquote { background: var(--paper-light); border: 1px solid var(--ink); border-left: 8px solid var(--lime); padding: 35px; font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.25; margin: 45px 0 25px; }
.variation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }.variation-grid > div { min-height: 180px; padding: 20px; border-right: 1px solid var(--ink); }.variation-grid > div:last-child { border: 0; }.variation-grid p { font-size: 11px; line-height: 1.55; margin: 70px 0 0; }
.question-list { margin-top: 45px; border-top: 1px solid var(--ink); }.question-list > div { display: grid; grid-template-columns: 45px 1.2fr .8fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: center; }.question-list b { font-size: 9px; }.question-list p { font-family: var(--serif); font-size: 23px; margin: 0; }.question-list span { color: var(--muted); font-size: 10px; line-height: 1.5; }.question-list .critical { background: var(--lime); padding-left: 18px; padding-right: 18px; border-color: var(--ink); }
.dark-guide { background: var(--ink); color: #fff; margin-left: calc(clamp(24px, 6vw, 96px) * -1); margin-right: calc(clamp(24px, 6vw, 96px) * -1); padding: 85px clamp(24px, 6vw, 96px) 90px; border: 0; }.dark-guide .guide-number { right: clamp(24px, 6vw, 96px); top: 90px; }.demo-steps { list-style: none; padding: 0; margin: 50px 0 0; border-top: 1px solid #3e423a; }.demo-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 25px; padding: 27px 0; border-bottom: 1px solid #3e423a; }.demo-steps li > span { color: var(--lime); font-size: 9px; }.demo-steps b { font-family: var(--serif); font-size: 28px; font-weight: 400; }.demo-steps p { color: #aeb2a8; font-size: 11px; margin: 7px 0 0; }.dont-show { margin-top: 35px; padding: 20px; border: 1px solid #555a4f; display: grid; grid-template-columns: 170px 1fr; gap: 30px; }.dont-show span { color: var(--coral); font-size: 8px; font-weight: 800; letter-spacing: 1.4px; }.dont-show p { margin: 0; color: #c6c9c1; font-size: 11px; line-height: 1.6; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); margin-top: 45px; }.outcome-grid > div { padding: 25px; min-height: 300px; }.outcome-grid .yes { background: var(--lime); border-right: 1px solid var(--ink); }.outcome-grid .no { background: var(--paper-light); }.outcome-grid ul { padding-left: 18px; margin: 60px 0 0; }.outcome-grid li { font-size: 11px; line-height: 1.55; margin-bottom: 12px; }
.objection-list { border-top: 1px solid var(--ink); margin-top: 45px; }.objection-list details { border-bottom: 1px solid var(--ink); }.objection-list summary { font-family: var(--serif); font-size: 25px; font-weight: 400; }.objection-list details > div { display: grid; grid-template-columns: 120px 1fr; gap: 15px 25px; padding: 5px 0 25px 25px; max-width: 780px; }.objection-list details b { font-size: 8px; letter-spacing: 1px; }.objection-list details p { font-size: 11px; line-height: 1.6; margin: 0; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); margin-top: 45px; }.decision-grid > div { min-height: 250px; padding: 22px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; }.decision-grid > div:last-child { border: 0; }.decision-grid .build { background: var(--lime); }.decision-grid .stop { background: var(--coral); }.decision-grid span { font-size: 8px; font-weight: 800; letter-spacing: 1.3px; }.decision-grid strong { font-family: var(--serif); font-size: 76px; font-weight: 400; margin: auto 0 5px; }.decision-grid p { font-size: 10px; line-height: 1.5; }
.checklist { border-top: 1px solid var(--ink); margin-top: 45px; }.checklist label { display: flex; align-items: center; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 600; cursor: pointer; }.checklist input { appearance: none; width: 22px; height: 22px; border: 1px solid var(--ink); margin: 0; }.checklist input:checked { background: var(--lime); box-shadow: inset 0 0 0 5px var(--paper); }.source-note { margin-top: 35px; background: var(--paper-light); border-left: 5px solid var(--blue); padding: 20px; font-size: 10px; line-height: 1.65; }

/* Prospects */
.prospect-hero { background: radial-gradient(circle at 86% 20%, rgba(200,255,46,.3), transparent 16rem); }.prospect-summary { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }.prospect-summary > div { min-height: 145px; padding: 17px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: flex-end; }.prospect-summary > div:last-child { border: 0; }.prospect-summary strong { font-family: var(--serif); font-size: 50px; font-weight: 400; }.prospect-summary span { font-size: 8px; color: var(--muted); }
.prospect-workspace { padding-top: 55px; padding-bottom: 100px; }.filter-panel { border: 1px solid var(--ink); background: var(--paper-light); padding: 20px; }.search-field { display: block; position: relative; border-bottom: 1px solid var(--ink); padding-bottom: 20px; margin-bottom: 20px; }.filter-panel label > span, .identity-grid label > span, .notes-grid label > span { display: block; font-size: 7px; font-weight: 800; letter-spacing: 1.25px; margin-bottom: 8px; }.search-field input { width: 100%; border: 0; background: transparent; font-family: var(--serif); font-size: 28px; padding: 3px 40px 3px 0; outline: 0; }.search-field i { position: absolute; right: 4px; bottom: 26px; font-style: normal; font-size: 27px; }.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.filter-grid select, .identity-grid input, .identity-grid select, .notes-grid input, .notes-grid select, .notes-grid textarea { width: 100%; height: 40px; border: 1px solid var(--line-strong); border-radius: 0; background: var(--paper); padding: 0 10px; font-size: 10px; outline: 0; }.filter-grid select { width: 100%; height: 38px; border: 1px solid var(--line); background: var(--paper); padding: 0 8px; border-radius: 0; font-size: 9px; }.filter-grid select:focus, .identity-grid input:focus, .identity-grid select:focus, .notes-grid input:focus, .notes-grid select:focus, .notes-grid textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px var(--lime); }.filter-actions { margin-top: 19px; display: flex; justify-content: space-between; }
.results-bar { display: flex; justify-content: space-between; align-items: center; padding: 24px 4px 14px; }.results-bar p, .results-bar div { margin: 0; font-size: 9px; }.legend-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin: 0 4px 0 13px; }.legend-dot.high { background: #77a900; }.legend-dot.medium { background: #e5a900; }.legend-dot.later { background: #9a9d94; }
.prospect-table-shell { border: 1px solid var(--ink); overflow-x: auto; background: var(--paper-light); }.prospect-table { width: 100%; min-width: 1040px; border-collapse: collapse; table-layout: fixed; }.prospect-table th { padding: 12px 13px; background: var(--ink); color: white; text-align: left; font-size: 7px; letter-spacing: 1px; }.prospect-table th:nth-child(1) { width: 44px; }.prospect-table th:nth-child(2) { width: 22%; }.prospect-table th:nth-child(3) { width: 16%; }.prospect-table th:nth-child(4) { width: 80px; }.prospect-table th:nth-child(5) { width: 18%; }.prospect-table th:nth-child(6) { width: 120px; }.prospect-table th:nth-child(7) { width: 115px; }.prospect-table th:nth-child(8) { width: 56px; }.prospect-table td { border-bottom: 1px solid var(--line); padding: 13px; vertical-align: middle; font-size: 10px; }.prospect-table tr:last-child td { border-bottom: 0; }.prospect-table tbody tr:hover { background: #eff4df; }.prospect-table td:first-child { color: #9a9d95; font-size: 8px; }.business-cell strong { display: block; font-size: 11px; }.business-cell small, .category-cell small, .booking-cell small { display: block; color: var(--muted); font-size: 8px; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.rating-cell b { font-family: var(--serif); font-size: 20px; font-weight: 400; }.rating-cell small { color: var(--muted); font-size: 7px; display: block; }.opportunity-badge, .status-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 8px; font-weight: 800; }.opportunity-badge:before { content: ""; width: 7px; height: 7px; border-radius: 50%; }.opportunity-badge.high:before { background: #77a900; box-shadow: 0 0 0 4px rgba(119,169,0,.12); }.opportunity-badge.medium:before { background: #e5a900; box-shadow: 0 0 0 4px rgba(229,169,0,.12); }.opportunity-badge.later:before { background: #9a9d94; }.opportunity-badge small { color: var(--muted); font-weight: 500; }.status-badge { padding: 6px 7px; background: #e9e7df; }.status-badge.warm { background: var(--lime); }.status-badge.visited { background: #dce4ff; }.status-badge.followup { background: #f6dfd9; }.status-badge.notfit { background: #ddd; }.status-badge.planned { background: #fff0bb; }.row-open { width: 30px; height: 30px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }.row-open:hover { background: var(--coral); }.empty-state { text-align: center; padding: 80px 20px; }.empty-state strong { font-family: var(--serif); font-size: 40px; font-weight: 400; }.empty-state p { color: var(--muted); font-size: 11px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 22px; padding: 25px; }.pagination button { border: 1px solid var(--ink); background: var(--paper-light); padding: 9px 13px; font-size: 9px; font-weight: 800; cursor: pointer; }.pagination button:hover:not(:disabled) { background: var(--lime); }.pagination button:disabled { opacity: .35; cursor: not-allowed; }.pagination span { font-size: 9px; }.data-note { max-width: 900px; margin: 5px auto 0; text-align: center; color: var(--muted); font-size: 8px; line-height: 1.6; }

/* Pricing */
.pricing-hero { background: var(--ink); color: white; border-color: #383b35; }.pricing-principle { border-top: 1px solid #52564d; padding-top: 20px; }.pricing-principle span { color: var(--lime); font-size: 8px; letter-spacing: 1.4px; font-weight: 800; }.pricing-principle blockquote { font-family: var(--serif); font-size: 30px; line-height: 1.15; margin: 40px 0 0; }
.pricing-section { padding-top: 100px; padding-bottom: 120px; }.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }.plan-card { min-height: 580px; padding: 26px; display: flex; flex-direction: column; position: relative; border-right: 1px solid var(--ink); background: var(--paper-light); }.plan-card:last-child { border: 0; }.plan-card.featured { background: var(--lime); }.recommended { position: absolute; top: -28px; left: -1px; right: -1px; height: 28px; background: var(--ink); color: white; display: grid; place-items: center; font-size: 7px; letter-spacing: 1.2px; font-weight: 800; }.plan-top { display: flex; justify-content: space-between; font-size: 9px; font-weight: 800; }.plan-top small { font-size: 8px; color: var(--muted); }.plan-price { display: flex; align-items: flex-end; margin: 62px 0 25px; }.plan-price sup { font-size: 9px; font-weight: 800; align-self: flex-start; margin-top: 7px; }.plan-price strong { font-family: var(--serif); font-size: 88px; line-height: .75; font-weight: 400; }.plan-price span { font-size: 9px; margin-left: 7px; }.plan-card > p { font-size: 11px; line-height: 1.6; padding-bottom: 22px; border-bottom: 1px solid var(--line); }.plan-card ul { list-style: none; padding: 0; margin: 20px 0; }.plan-card li { font-size: 10px; padding: 8px 0; }.plan-card li:before { content: "✓"; font-weight: 900; margin-right: 8px; }.plan-card .annual { margin-top: auto; border-top: 1px solid var(--ink); padding-top: 18px; font-size: 9px; }.pricing-caption { max-width: 760px; color: var(--muted); font-size: 9px; line-height: 1.6; margin: 28px auto 0; text-align: center; }
.monetization-section { background: var(--ink); color: white; padding-top: 110px; padding-bottom: 110px; }.monetization-section .split-heading > p { color: #aeb2a8; }.rule-table { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #51554c; margin-top: 75px; }.rule-table > div { padding: 23px; min-height: 245px; display: flex; flex-direction: column; border-right: 1px solid #51554c; }.rule-table > div:last-child { border: 0; }.rule-table span { color: #aeb2a8; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; }.rule-table strong { font-family: var(--serif); color: var(--lime); font-size: 53px; font-weight: 400; margin: auto 0 12px; }.rule-table p { color: #aeb2a8; font-size: 9px; line-height: 1.5; margin: 0; }.benchmark-note { color: #8e9388; font-size: 8px; margin: 22px 0 0; }.benchmark-note a { color: var(--lime); }
.calculator-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding-top: 120px; padding-bottom: 120px; }.calculator-copy h2 { font-size: clamp(52px, 6.2vw, 88px); line-height: .92; }.calculator-copy p { color: var(--muted); font-size: 13px; line-height: 1.6; }.calculator-panel { background: var(--paper-light); border: 1px solid var(--ink); padding: 30px; box-shadow: 12px 12px 0 var(--lime); }.calculator-panel label { display: block; margin-bottom: 25px; }.calculator-panel label > span { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; }.calculator-panel label b { font-size: 13px; }.calculator-panel i { font-style: normal; }.calculator-panel input[type=range] { width: 100%; appearance: none; height: 3px; background: #d8dbd2; margin-top: 16px; }.calculator-panel input[type=range]::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--ink); border: 4px solid var(--lime); cursor: pointer; }.calc-results { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); margin-top: 30px; }.calc-results > div { min-height: 150px; padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; }.calc-results > div:first-child { border-right: 1px solid var(--ink); }.calc-results .acid-result { background: var(--lime); }.calc-results small { font-size: 6px; letter-spacing: 1px; }.calc-results strong { font-family: var(--serif); font-size: clamp(25px, 3vw, 40px); font-weight: 400; margin-top: 12px; }
.pricing-talk { display: grid; grid-template-columns: 1.1fr 1fr 1fr; border-top: 1px solid var(--ink); padding-top: 75px; padding-bottom: 100px; }.pricing-talk > div { padding: 0 28px; border-right: 1px solid var(--line); }.pricing-talk > div:first-child { padding-left: 0; }.pricing-talk > div:last-child { border: 0; padding-right: 0; }.pricing-talk blockquote { font-family: var(--serif); font-size: 28px; line-height: 1.2; margin: 35px 0 0; }.pricing-talk ul { padding-left: 17px; margin-top: 35px; }.pricing-talk li, .pricing-talk p { font-size: 10px; line-height: 1.6; margin-bottom: 9px; }.pricing-talk a { color: var(--ink); font-size: 9px; font-weight: 800; }

/* Scorecard */
.score-hero { background: radial-gradient(circle at 82% 45%, rgba(99,132,255,.25), transparent 17rem); }.score-orbit { width: 210px; height: 210px; border: 1px solid var(--ink); border-radius: 50%; position: relative; display: flex; justify-content: center; align-items: baseline; padding-top: 48px; }.score-orbit:before, .score-orbit:after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; inset: 16px; }.score-orbit:after { inset: -20px; }.score-orbit strong { font-family: var(--serif); font-size: 82px; font-weight: 400; line-height: 1; }.score-orbit > span { font-size: 12px; }.score-orbit small { position: absolute; bottom: 43px; font-size: 8px; font-weight: 800; letter-spacing: 1px; z-index: 2; }
.score-layout { padding-top: 70px; padding-bottom: 110px; }.score-form { border: 1px solid var(--ink); background: var(--paper-light); padding: 30px; }.form-heading { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid var(--ink); }.form-heading span, .visit-head span { font-size: 7px; font-weight: 800; letter-spacing: 1.3px; }.form-heading h2, .visit-head h2 { font-family: var(--serif); font-size: 35px; font-weight: 400; margin: 8px 0 0; letter-spacing: -1px; }.identity-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; padding: 28px 0; }.score-form fieldset { border: 0; border-top: 1px solid var(--line); padding: 24px 0; margin: 0; display: grid; grid-template-columns: 1fr 1.4fr; gap: 25px; align-items: center; }.score-form legend { display: contents; font-family: var(--serif); font-size: 22px; }.score-form legend span { font-family: var(--sans); font-size: 8px; color: var(--muted); margin-right: 10px; }.segment { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }.segment.two { grid-template-columns: repeat(2, 1fr); }.segment label { cursor: pointer; }.segment input { position: absolute; opacity: 0; pointer-events: none; }.segment span { display: grid; place-items: center; height: 42px; font-size: 9px; font-weight: 700; border-right: 1px solid var(--ink); }.segment label:last-child span { border: 0; }.segment input:checked + span { background: var(--lime); }.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; border-top: 1px solid var(--line); padding-top: 28px; }.notes-grid .wide { grid-column: 1 / -1; }.notes-grid textarea { height: auto; padding: 10px; resize: vertical; }
.visit-log { margin-top: 65px; }.visit-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); }.visit-stats > div { min-height: 130px; padding: 16px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: flex-end; }.visit-stats > div:last-child { border: 0; background: var(--lime); }.visit-stats span { font-size: 7px; letter-spacing: 1px; font-weight: 800; }.visit-stats strong { font-family: var(--serif); font-size: 37px; font-weight: 400; margin-top: 10px; }.visit-head { display: flex; justify-content: space-between; align-items: end; margin: 55px 0 18px; }.visit-rows { border-top: 1px solid var(--ink); }.visit-row { display: grid; grid-template-columns: 55px 1.2fr 1fr 110px 90px 35px; gap: 15px; align-items: center; padding: 16px 5px; border-bottom: 1px solid var(--line); }.visit-score { width: 43px; height: 43px; display: grid; place-items: center; background: var(--ink); color: white; font-family: var(--serif); font-size: 23px; }.visit-row strong { font-size: 11px; }.visit-row small { display: block; color: var(--muted); font-size: 8px; margin-top: 4px; }.visit-row p { font-size: 9px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.visit-row time { font-size: 8px; }.visit-row .signal-label { font-size: 8px; font-weight: 800; }.visit-row .signal-label.strong { color: #5a7d00; }.delete-visit { width: 28px; height: 28px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }.delete-visit:hover { background: var(--coral); }.visit-empty { min-height: 250px; border: 1px dashed var(--line-strong); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.visit-empty span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--lime); margin-bottom: 15px; }.visit-empty strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }.visit-empty p { color: var(--muted); font-size: 10px; max-width: 400px; }

/* Dialog, toast, footer */
.prospect-dialog { width: min(620px, calc(100vw - 30px)); border: 1px solid var(--ink); padding: 0; border-radius: 0; background: var(--paper); color: var(--ink); box-shadow: 15px 15px 0 var(--lime); }.prospect-dialog::backdrop { background: rgba(17,19,15,.72); backdrop-filter: blur(4px); }.dialog-close { position: absolute; right: 15px; top: 15px; width: 32px; height: 32px; border: 1px solid var(--ink); background: var(--paper-light); font-size: 19px; cursor: pointer; z-index: 2; }.dialog-close:hover { background: var(--coral); }.dialog-body { padding: 35px; }.dialog-kicker { font-size: 8px; letter-spacing: 1.4px; font-weight: 800; }.dialog-body h2 { font-size: 48px; line-height: .95; margin: 28px 45px 12px 0; }.dialog-sub { color: var(--muted); font-size: 10px; }.dialog-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); margin: 28px 0; }.dialog-metrics > div { padding: 14px; border-right: 1px solid var(--ink); }.dialog-metrics > div:last-child { border: 0; }.dialog-metrics small { display: block; font-size: 6px; letter-spacing: 1px; color: var(--muted); }.dialog-metrics strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; margin-top: 7px; }.dialog-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }.dialog-form label { font-size: 8px; font-weight: 800; letter-spacing: 1px; }.dialog-form select, .dialog-form textarea { width: 100%; border: 1px solid var(--ink); background: var(--paper-light); border-radius: 0; padding: 10px; margin-top: 7px; font-size: 10px; }.dialog-form label:last-child { grid-column: 1 / -1; }.dialog-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 23px; }.dialog-actions a { flex: 1; }.dialog-actions button { flex: 1; }
.toast { position: fixed; right: 25px; bottom: 25px; z-index: 150; background: var(--ink); color: white; border-left: 6px solid var(--lime); padding: 13px 18px; font-size: 10px; font-weight: 700; transform: translateY(100px); opacity: 0; transition: .25s; }.toast.show { transform: none; opacity: 1; }
footer { border-top: 1px solid var(--ink); padding: 38px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }.footer .brand img, footer .brand img { width: 30px; height: 30px; }footer > p { text-align: right; font-family: var(--serif); font-size: 21px; margin: 0; }footer > small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; }

@media (max-width: 1180px) {
  .site-header nav a { padding: 0 10px; font-size: 10px; }
  .location-chip { display: none; }
  .overview-hero { grid-template-columns: 1fr; padding-top: 85px; }.hero-copy { max-width: 700px; }.route-board { width: min(760px, 93%); margin: 20px auto; }
  .page-hero { grid-template-columns: 1fr 360px; }.playbook-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 5vw; }
  .filter-grid { grid-template-columns: repeat(3, 1fr); }.plan-card { padding: 20px; }.rule-table { grid-template-columns: repeat(2, 1fr); }.rule-table > div:nth-child(2) { border-right: 0; }.rule-table > div:nth-child(-n+2) { border-bottom: 1px solid #51554c; }
  .identity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { height: 70px; padding: 0 20px; }.site-header nav { display: none; }.site-header.open nav { position: absolute; display: flex; flex-direction: column; top: 70px; left: 0; right: 0; height: auto; background: var(--paper); border-bottom: 1px solid var(--ink); }.site-header.open nav a { min-height: 48px; padding: 0 22px; border-bottom: 1px solid var(--line); }.menu-button { display: block; }.icon-button { display: none; }.brand { font-size: 21px; }.brand img { width: 31px; height: 31px; }
  .view { min-height: calc(100vh - 70px); }.overview-hero { min-height: 0; padding-top: 70px; }.hero-copy h1 { font-size: 82px; }.route-board { width: 100%; min-height: 450px; box-shadow: 9px 9px 0 var(--lime); }.route-map { height: 290px; }.floating-signal { display: none; }.signal-strip { grid-template-columns: 1fr; }.signal-strip article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--ink); }.signal-strip article:last-child { border-bottom: 0; }.split-heading { grid-template-columns: 1fr; }.split-heading > p { max-width: 650px; }.sequence-grid { grid-template-columns: 1fr; }.sequence-card { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--ink); }.sequence-card:last-child { border-bottom: 0; }.sequence-card > i { margin: 35px 0 20px; }.download-heading { grid-template-columns: 1fr; gap: 20px; }.download-grid { grid-template-columns: 1fr; }.download-card:first-child { border-right: 0; border-bottom: 1px solid #5d6058; }.download-card { grid-template-columns: 240px 1fr; min-height: 350px; }.truth-section { grid-template-columns: 35px 1fr; }.truth-copy { grid-column: 2; }
  .page-hero { min-height: 350px; grid-template-columns: 1fr; padding-top: 65px; }.page-hero h1 { font-size: 88px; }.page-hero-aside, .pricing-principle, .score-orbit { max-width: 460px; }.playbook-layout { grid-template-columns: 1fr; }.section-index { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 15px; border: 1px solid var(--ink); padding: 15px; }.section-index > span, .section-index .button { grid-column: 1 / -1; }.guide-section h2 { font-size: 62px; }.dark-guide { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }.dark-guide .guide-number { right: 24px; }
  .prospect-summary { max-width: 600px; }.filter-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }.plan-card { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--ink); }.recommended { position: static; margin: -20px -20px 22px; }.calculator-section { grid-template-columns: 1fr; }.pricing-talk { grid-template-columns: 1fr; }.pricing-talk > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 35px 0; }.pricing-talk > div:first-child { padding-top: 0; }.rule-table { grid-template-columns: 1fr 1fr; }
  .score-form fieldset { grid-template-columns: 1fr; }.visit-row { grid-template-columns: 45px 1fr 90px 35px; }.visit-row > p, .visit-row > time { display: none; }
}

@media (max-width: 600px) {
  .section-pad { padding-left: 18px; padding-right: 18px; }.brand b { display: none; }.hero-copy h1 { font-size: 69px; }.hero-copy > p { font-size: 14px; }.hero-actions { flex-direction: column; align-items: flex-start; }.route-board { min-height: 410px; }.board-top b { font-size: 16px; }.board-top span { display: none; }.route-map { height: 250px; }.map-label { transform: scale(.8); transform-origin: left bottom; }.board-bottom { grid-template-columns: 1fr 1fr; }.target-meter { display: none!important; }.section-block { padding-top: 90px; padding-bottom: 95px; }.split-heading h2 { font-size: 53px; }.download-section { padding-top: 70px; padding-bottom: 75px; }.download-heading h2 { font-size: 58px; }.download-card { grid-template-columns: 1fr; min-height: 590px; padding: 24px; }.document-preview { justify-self: center; }.download-copy h3 { font-size: 31px; }.download-copy p { font-size: 10px; }.download-copy div { margin-top: 35px; }.truth-section { padding-top: 65px; padding-bottom: 65px; }
  .page-hero { min-height: 310px; padding-top: 55px; }.page-hero h1 { font-size: 72px; }.playbook-layout { padding-top: 45px; }.section-index { display: flex; }.guide-section { padding-bottom: 70px; margin-bottom: 70px; }.guide-section h2 { font-size: 49px; }.icp-cards, .area-grid, .variation-grid, .outcome-grid, .decision-grid { grid-template-columns: 1fr; }.icp-card, .icp-card:nth-child(2n), .icp-card:nth-last-child(-n+2), .area-grid > div, .variation-grid > div, .decision-grid > div { border-right: 0; border-bottom: 1px solid var(--ink); }.icp-card:last-child, .area-grid > div:last-child, .variation-grid > div:last-child, .decision-grid > div:last-child { border-bottom: 0; }.timing-banner { grid-template-columns: 1fr auto auto auto; }.timing-banner p { grid-column: 1 / -1; }.note { flex-direction: column; gap: 8px; }.note b { min-width: 0; }.guide-section blockquote { padding: 23px; font-size: 26px; }.question-list > div { grid-template-columns: 28px 1fr; gap: 15px; }.question-list span { grid-column: 2; }.demo-steps b { font-size: 24px; }.dont-show { grid-template-columns: 1fr; }.outcome-grid .yes { border-right: 0; border-bottom: 1px solid var(--ink); }.objection-list summary { font-size: 21px; }.objection-list details > div { grid-template-columns: 1fr; }.decision-grid > div { min-height: 210px; }
  .prospect-summary { grid-template-columns: 1fr 1fr 1fr; }.prospect-summary > div { min-height: 100px; padding: 10px; }.prospect-summary strong { font-size: 37px; }.prospect-summary span { font-size: 6px; }.prospect-workspace { padding-top: 30px; }.filter-grid { grid-template-columns: 1fr; }.search-field input { font-size: 21px; }.results-bar { align-items: flex-start; gap: 15px; }.results-bar div { text-align: right; }.pagination { gap: 10px; }.pagination button { padding: 8px; }
  .pricing-section { padding-top: 75px; }.plan-price strong { font-size: 76px; }.rule-table { grid-template-columns: 1fr; }.rule-table > div { border-right: 0!important; border-bottom: 1px solid #51554c; }.rule-table > div:last-child { border-bottom: 0; }.calculator-section { padding-top: 85px; padding-bottom: 90px; }.calculator-panel { padding: 20px; box-shadow: 7px 7px 0 var(--lime); }.calc-results { grid-template-columns: 1fr; }.calc-results > div:first-child { border-right: 0; border-bottom: 1px solid var(--ink); }
  .score-orbit { width: 160px; height: 160px; padding-top: 37px; }.score-orbit strong { font-size: 62px; }.score-orbit small { bottom: 30px; }.score-form { padding: 19px; }.form-heading { flex-direction: column; gap: 20px; }.form-heading .button { width: 100%; }.identity-grid, .notes-grid { grid-template-columns: 1fr; }.score-form legend { font-size: 20px; }.segment span { font-size: 8px; }.visit-stats { grid-template-columns: repeat(2, 1fr); }.visit-stats > div:nth-child(2) { border-right: 0; }.visit-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }.visit-row { grid-template-columns: 42px 1fr 35px; }.visit-row .signal-label { display: none; }
  .prospect-dialog { box-shadow: 7px 7px 0 var(--lime); }.dialog-body { padding: 23px; }.dialog-body h2 { font-size: 39px; }.dialog-form { grid-template-columns: 1fr; }.dialog-form label:last-child { grid-column: auto; }.dialog-actions { flex-direction: column; }
  footer { grid-template-columns: 1fr; }footer > p { text-align: left; }footer > small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) { * { animation: none!important; transition: none!important; scroll-behavior: auto!important; }.reveal { opacity: 1; transform: none; } }

@media print {
  .noise, .site-header, footer, .button, .text-button, .pagination, .filter-actions, .dialog-close { display: none!important; }
  .view { display: none!important; }.view.active { display: block!important; animation: none!important; }.section-pad { padding-left: 20px; padding-right: 20px; }.page-hero { min-height: auto; padding: 30px 20px; }.page-hero h1 { font-size: 70px; }.reveal { opacity: 1; transform: none; }.prospect-table { min-width: 0; font-size: 8px; }.prospect-workspace { padding-top: 20px; }.filter-panel { display: none; }.playbook-layout { grid-template-columns: 1fr; }.section-index { display: none; }.guide-section { break-inside: avoid; }.dark-guide { color: var(--ink); background: white; margin: 0; padding: 20px 0; }.dark-guide p, .dark-guide .demo-steps p { color: var(--ink); }
}
