@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,500&display=swap');

:root {
  --ink: #122823;
  --forest: #102c27;
  --forest-2: #183b34;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --line: #d8d7cf;
  --muted: #64716d;
  --lime: #c7f36a;
  --orange: #ff6b44;
  --blue: #5f78ff;
  --shadow: 0 24px 70px rgba(16, 44, 39, .15);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link { position: fixed; top: -80px; left: 18px; z-index: 50; padding: 10px 14px; background: white; }
.skip-link:focus { top: 18px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 4.8vw;
  border-bottom: 1px solid rgba(18, 40, 35, .13);
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(16px);
}
.site-header > *, .hero > *, .preview-title > *, .score-grid > div, .finding-card > * { min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { display: grid; grid-template-columns: repeat(3, 5px); align-items: end; gap: 3px; width: 21px; height: 22px; padding: 3px; border-radius: 3px; background: var(--forest); }
.brand-mark i { display: block; width: 5px; background: var(--lime); }
.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 12px; }
.brand-mark i:nth-child(3) { height: 16px; }
nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 600; }
nav a { text-decoration: none; }
.nav-cta { padding: 10px 15px; border-radius: 4px; color: white; background: var(--forest); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: 700px;
  padding: 92px 6vw 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 2%, rgba(199, 243, 106, .22), transparent 28%),
    linear-gradient(180deg, var(--paper), #f3efe4);
}
.eyebrow, .section-kicker { font: 500 11px/1.2 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--forest-2); }
.eyebrow span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 107, 68, .12); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 750px; margin: 22px 0 26px; font-size: clamp(50px, 6.1vw, 90px); line-height: .94; letter-spacing: -.065em; }
h1 em { color: var(--orange); font-family: "Newsreader", Georgia, serif; font-weight: 500; }
.lede { max-width: 670px; margin-bottom: 34px; color: #42534e; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 0 20px; border: 1px solid transparent; border-radius: 4px; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--forest); box-shadow: 0 12px 30px rgba(16, 44, 39, .18); }
.button-primary:hover { background: #1b4139; }
.button-quiet { border-color: #c9cdc7; background: rgba(255,255,255,.4); }
.button-light { color: var(--forest); background: var(--lime); }
.button-block { width: 100%; }
.signal-row { display: flex; gap: 36px; margin: 48px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.signal-row li { display: grid; gap: 2px; }
.signal-row strong { font-size: 22px; letter-spacing: -.04em; }
.signal-row span { color: var(--muted); font: 400 10px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }

.report-preview { position: relative; width: 100%; max-width: 600px; padding: clamp(24px, 3vw, 42px); border: 1px solid rgba(18,40,35,.16); border-radius: 8px; color: var(--ink); background: #fff; box-shadow: 18px 18px 0 var(--forest), var(--shadow); transform: rotate(1.5deg); }
.report-preview::before { display: none; }
.preview-top, .preview-title, .score-grid > div { display: flex; justify-content: space-between; align-items: center; }
.preview-top { padding-bottom: 20px; border-bottom: 1px solid #dedfd9; color: #81908b; font: 500 9px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.status-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--orange); }
.preview-title { gap: 24px; padding: 28px 0 24px; }
.preview-title small, .finding-card small { color: var(--orange); font: 500 9px "DM Mono", monospace; letter-spacing: .12em; }
.preview-title h2 { margin: 5px 0 0; font-size: clamp(25px, 2.4vw, 36px); line-height: 1; letter-spacing: -.04em; }
.score-ring { display: grid; place-content: center; flex: 0 0 86px; height: 86px; border: 7px solid var(--lime); border-left-color: #e7eadf; border-radius: 50%; text-align: center; transform: rotate(-25deg); }
.score-ring b, .score-ring span { color: var(--ink); transform: rotate(25deg); }
.score-ring b { font-size: 22px; line-height: 1; }
.score-ring span { font: 400 8px "DM Mono", monospace; }
.score-grid { display: grid; gap: 13px; padding: 22px; background: #f4f3ee; }
.score-grid > div { position: relative; padding-bottom: 9px; color: #57635f; font-size: 11px; }
.score-grid b { color: var(--ink); font: 500 10px "DM Mono", monospace; }
.score-grid i { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #d9ddd5; }
.score-grid i::after { content: ""; display: block; width: var(--w); height: 100%; background: var(--blue); }
.finding-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; margin-top: 17px; padding: 18px; border-left: 3px solid var(--orange); background: #fff5ee; }
.finding-number { font: 500 30px/1 "DM Mono", monospace; color: #ffc4b4; }
.finding-card h3 { margin: 4px 0 6px; font-size: 16px; letter-spacing: -.02em; }
.finding-card p { margin: 0; color: #5b6561; font-size: 11px; }
.preview-note { margin: 14px 0 0; color: #88918d; font: 400 8px "DM Mono", monospace; }

.market-strip { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding: 24px 6vw; color: white; background: var(--forest); }
.market-strip p { margin: 0; font-size: 12px; }
.market-strip strong { margin-right: 4px; color: var(--lime); font-size: 19px; }
.market-strip .source-note { color: #aab9b4; font: 400 9px "DM Mono", monospace; }

.section { padding: clamp(80px, 9vw, 140px) 7vw; }
.section-kicker { margin-bottom: 28px; color: var(--orange); }
.problem-section { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; }
.problem-grid h2, .section-heading h2, .method h2, .pricing h2, .faq h2 { font-size: clamp(35px, 4.2vw, 62px); line-height: 1.05; letter-spacing: -.055em; }
.problem-copy { padding-top: 8px; color: #53615d; font-size: 17px; line-height: 1.8; }

.deliverable { background: #eeede7; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: end; margin-bottom: 60px; }
.section-heading h2 { max-width: 850px; margin-bottom: 0; }
.section-heading > p { color: #5c6864; line-height: 1.8; }
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd1ca; border-left: 1px solid #cfd1ca; }
.feature { position: relative; min-height: 355px; padding: 35px; border-right: 1px solid #cfd1ca; border-bottom: 1px solid #cfd1ca; background: rgba(255,255,255,.28); }
.feature-wide { grid-column: span 2; }
.feature-no { position: absolute; top: 18px; right: 22px; color: #949e99; font: 400 9px "DM Mono", monospace; }
.feature-icon { display: grid; place-content: center; width: 48px; height: 48px; margin-bottom: 48px; border: 1px solid #bfc5be; border-radius: 50%; font: 500 15px "DM Mono", monospace; }
.feature h3 { margin-bottom: 14px; font-size: 23px; letter-spacing: -.035em; }
.feature p { max-width: 580px; color: #5d6964; font-size: 14px; line-height: 1.75; }
.feature-dark { color: white; background: var(--forest); }
.feature-dark .feature-icon { border-color: #567068; }
.feature-dark p, .feature-dark .feature-no { color: #b3c1bc; }
.feature-dark ul { display: grid; gap: 8px; margin-top: 24px; padding: 0; list-style: none; font: 400 10px "DM Mono", monospace; text-transform: uppercase; }
.feature-dark li::before { content: "↳"; margin-right: 8px; color: var(--lime); }
.mini-table { display: grid; grid-template-columns: 1fr auto; gap: 8px 30px; max-width: 360px; margin-top: 24px; padding-top: 18px; border-top: 1px solid #d1d4cc; font: 400 9px "DM Mono", monospace; text-transform: uppercase; }
.mini-table b { color: var(--blue); }

.method { color: white; background: var(--forest); }
.method .section-kicker { color: var(--lime); }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; }
.method-grid > div > p { max-width: 590px; color: #b7c4bf; font-size: 16px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; font-size: 13px; font-weight: 700; text-underline-offset: 4px; }
.text-link-light { color: var(--lime); }
.method ol { margin: 0; padding: 0; border-top: 1px solid #3c5952; list-style: none; }
.method li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid #3c5952; }
.method li > span { color: var(--lime); font: 400 10px "DM Mono", monospace; }
.method li b { display: block; margin-bottom: 6px; font-size: 17px; }
.method li p { margin: 0; color: #a7b7b1; font-size: 13px; }

.audience { background: #f4f1e9; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d2d4cd; }
.fit { padding: clamp(35px, 5vw, 70px); background: var(--paper); }
.fit h3 { margin-bottom: 32px; font-size: 28px; }
.fit ul { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.fit li { position: relative; padding-left: 32px; color: #4d5c57; }
.fit li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.fit-yes li::before { content: "✓"; color: #208b68; }
.fit-no li::before { content: "×"; color: var(--orange); }

.pricing { display: grid; grid-template-columns: 1fr .78fr; gap: 10vw; align-items: center; background: var(--paper); }
.pricing-copy > p { max-width: 590px; color: #53625d; font-size: 17px; line-height: 1.8; }
.slots { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 10px 14px; border: 1px solid #d3d6cf; border-radius: 3px; font: 500 10px "DM Mono", monospace; text-transform: uppercase; }
.slots span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,68,.12); }
.price-card { padding: clamp(30px, 4vw, 52px); color: white; background: var(--forest); box-shadow: var(--shadow); }
.price-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 32px; padding-bottom: 30px; border-bottom: 1px solid #3e5c54; }
.price-top > span { font: 500 10px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.price-top > div { display: grid; grid-template-columns: auto auto; align-items: start; }
.price-top sup { margin: 14px 5px 0 0; color: var(--lime); font-size: 15px; }
.price-top strong { font-size: 64px; line-height: .85; letter-spacing: -.07em; }
.price-top small { grid-column: 2; margin-top: 8px; color: #aabbb5; font: 400 9px "DM Mono", monospace; }
.price-card ul { display: grid; gap: 12px; margin: 0 0 30px; padding: 0; list-style: none; font-size: 13px; }
.price-card li::before { content: "✓"; margin-right: 11px; color: var(--lime); }
.price-card > p { margin: 14px 0 0; color: #93a9a1; font-size: 10px; text-align: center; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; background: #eeede7; }
.faq-list { border-top: 1px solid #c9ccc5; }
details { border-bottom: 1px solid #c9ccc5; }
summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; font-weight: 650; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; font: 400 21px "DM Mono", monospace; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; padding-right: 50px; color: #596660; font-size: 14px; line-height: 1.8; }

.final-cta { padding: 110px 7vw; color: white; text-align: center; background: var(--orange); }
.final-cta .eyebrow { justify-content: center; color: #401a10; }
.final-cta .eyebrow span { background: var(--forest); box-shadow: none; }
.final-cta h2 { max-width: 870px; margin: 20px auto; font-size: clamp(43px, 6vw, 82px); line-height: .98; letter-spacing: -.06em; }
.final-cta > p:not(.eyebrow) { max-width: 620px; margin: 0 auto 30px; color: #5b261a; font-size: 16px; }

footer { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; padding: 52px 6vw 35px; color: white; background: #0b201c; }
.footer-brand { font-size: 18px; }
footer > p { grid-column: 1; color: #91a49e; font-size: 12px; }
footer > div { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 22px; font-size: 11px; }
footer small { grid-column: 1 / -1; margin-top: 36px; padding-top: 24px; border-top: 1px solid #29433d; color: #70847e; font: 400 9px "DM Mono", monospace; }

.legal { max-width: 900px; min-height: 70vh; padding: 90px 7vw 120px; }
.legal h1 { margin-bottom: 18px; font-size: clamp(43px, 6vw, 70px); }
.legal .updated { margin-bottom: 55px; color: var(--muted); font: 400 10px "DM Mono", monospace; }
.legal h2 { margin-top: 40px; font-size: 23px; letter-spacing: -.03em; }
.legal p, .legal li { color: #4f5f5a; }
.legal-notice { padding: 17px 20px; border-left: 3px solid var(--orange); background: #fff4ee; }

.guide { background: var(--paper); }
.guide-hero {
  padding: clamp(80px, 10vw, 145px) max(7vw, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 90% 0, rgba(199, 243, 106, .24), transparent 30%),
    linear-gradient(180deg, var(--paper), #f3efe4);
}
.breadcrumbs { display: block; margin: 0 0 28px; color: var(--muted); font: 500 9px "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--orange); }
.breadcrumbs a { text-underline-offset: 3px; }
.guide-hero h1 { max-width: 1050px; font-size: clamp(50px, 7vw, 98px); }
.guide-lede { max-width: 850px; color: #42534e; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.7; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 38px; color: var(--muted); font: 400 10px "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.guide-meta span + span::before { content: "·"; margin-right: 28px; color: var(--orange); }
.guide-principle { display: grid; grid-template-columns: 210px 1fr; gap: 35px; padding: 32px max(7vw, calc((100vw - 1240px) / 2)); color: white; background: var(--forest); }
.guide-principle span { color: var(--lime); font: 500 10px "DM Mono", monospace; letter-spacing: .1em; }
.guide-principle p { max-width: 880px; margin: 0; color: #c3cfcb; font-size: 15px; }
.guide-layout { display: grid; grid-template-columns: 245px minmax(0, 820px); gap: clamp(55px, 8vw, 120px); justify-content: center; padding: 90px 7vw 130px; }
.guide-toc { position: sticky; top: 110px; align-self: start; padding: 24px; border-top: 4px solid var(--lime); background: #eeede7; }
.guide-toc strong { font-size: 13px; }
.guide-toc ol { display: grid; gap: 11px; margin: 20px 0 0; padding-left: 20px; color: #5c6964; font-size: 11px; }
.guide-toc a { text-underline-offset: 3px; }
.guide-body { min-width: 0; }
.guide-body section { scroll-margin-top: 100px; padding: 0 0 75px; margin-bottom: 75px; border-bottom: 1px solid var(--line); }
.guide-body section:last-child { margin-bottom: 0; border-bottom: 0; }
.guide-body h2 { max-width: 790px; margin-bottom: 25px; font-size: clamp(34px, 4.2vw, 55px); line-height: 1.06; letter-spacing: -.05em; }
.guide-body h3 { letter-spacing: -.03em; }
.guide-body p, .guide-body li { color: #4f5f5a; font-size: 16px; line-height: 1.8; }
.guide-body strong { color: var(--ink); }
.guide-body ul:not(.guide-checks) { display: grid; gap: 10px; padding-left: 22px; }
.guide-warning { margin: 30px 0 0; padding: 20px 23px; border-left: 4px solid var(--orange); color: #5b4038; background: #fff1eb; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 32px 0; background: var(--line); }
.guide-grid-three { grid-template-columns: repeat(3, 1fr); }
.guide-grid > div { display: grid; gap: 10px; padding: 25px; background: white; }
.guide-grid b { font-size: 15px; }
.guide-grid span { color: #5a6863; font-size: 12px; line-height: 1.7; }
.table-wrap { max-width: 100%; margin: 32px 0; overflow-x: auto; border: 1px solid var(--line); background: white; }
.guide-table { min-width: 650px; margin: 0; font-size: 13px; }
.guide-table caption { padding: 15px 18px; color: var(--muted); background: #eeede7; font: 400 10px "DM Mono", monospace; text-align: left; }
.guide-table th { background: #f6f4ed; }
.guide-table th, .guide-table td { padding: 16px 18px; vertical-align: top; }
.guide-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 30px 0; padding: 1px; background: var(--line); list-style: none; }
.guide-checks li { position: relative; padding: 18px 20px 18px 48px; background: white; font-size: 13px; }
.guide-checks li::before { content: "✓"; position: absolute; left: 20px; color: #208b68; font-weight: 700; }
.guide-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.guide-compare > div { padding: 25px; border-top: 4px solid #47a97f; background: white; }
.guide-compare > div:last-child { border-color: var(--orange); }
.guide-compare span { color: var(--muted); font: 500 9px "DM Mono", monospace; letter-spacing: .1em; }
.guide-compare p { margin: 16px 0 0; font-size: 13px; line-height: 1.7; }
.field-checklist { margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: field-step; }
.field-checklist li { display: grid; grid-template-columns: 220px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); counter-increment: field-step; }
.field-checklist b::before { content: counter(field-step, decimal-leading-zero) " · "; color: var(--orange); font: 500 10px "DM Mono", monospace; }
.field-checklist span { color: #5a6863; font-size: 13px; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

@media (max-width: 980px) {
  nav > a:not(.nav-cta) { display: none; }
  .hero, .problem-grid, .section-heading, .method-grid, .pricing, .faq { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .report-preview { margin: 20px auto 0; }
  .market-strip { grid-template-columns: 1fr 1fr; }
  .market-strip .source-note { grid-column: 1 / -1; }
  .section-heading { gap: 30px; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .feature-wide { grid-column: span 2; }
  .method-grid, .pricing, .faq { gap: 50px; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
}

@media (max-width: 650px) {
  .site-header { gap: 12px; padding: 0 18px; }
  nav { flex: 0 0 auto; }
  nav .nav-cta { padding: 9px 11px; font-size: 11px; }
  .brand > span:last-child { font-size: 14px; }
  .hero, .section { padding-left: 22px; padding-right: 22px; }
  .hero { min-height: auto; padding-top: 60px; padding-bottom: 70px; }
  h1 { overflow-wrap: anywhere; font-size: clamp(42px, 12.7vw, 50px); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .signal-row { gap: 14px; justify-content: space-between; }
  .signal-row strong { font-size: 20px; }
  .signal-row span { font-size: 9px; }
  .report-preview { padding: 22px; transform: none; }
  .report-preview { box-shadow: 8px 10px 0 var(--forest), var(--shadow); }
  .preview-title { align-items: flex-start; }
  .score-ring { flex-basis: 70px; height: 70px; }
  .market-strip { grid-template-columns: 1fr; padding: 26px 22px; }
  .market-strip .source-note { grid-column: auto; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; }
  .feature { min-height: auto; }
  .fit-grid { grid-template-columns: 1fr; }
  .price-top { display: grid; }
  .guide-hero { padding: 65px 22px 75px; }
  .guide-hero h1 { overflow-wrap: anywhere; }
  .guide-meta { display: grid; }
  .guide-meta span + span::before { content: none; }
  .guide-principle { grid-template-columns: 1fr; gap: 12px; padding: 28px 22px; }
  .guide-layout { gap: 50px; padding: 55px 22px 85px; }
  .guide-body section { padding-bottom: 55px; margin-bottom: 55px; }
  .guide-grid, .guide-grid-three, .guide-checks, .guide-compare { grid-template-columns: 1fr; }
  .field-checklist li { grid-template-columns: 1fr; gap: 5px; }
  .guide-actions, .guide-actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; padding: 45px 22px 30px; }
  footer > div, footer > p, footer small { grid-column: 1; grid-row: auto; }
  footer > div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
