:root {
  --ink: #0d0d0d;
  --muted: #666666;
  --paper: #ffffff;
  --soft: #f3f3f3;
  --line: #d8d8d8;
  --accent: #555555;
  --dark: #111111;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.nav {
  width: min(var(--max), calc(100% - 44px));
  height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; }
.brand img { width: 31px; height: 31px; filter: grayscale(1); }
.nav-cta { font-size: 14px; font-weight: 700; border-bottom: 1px solid; padding-bottom: 4px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero {
  min-height: 690px;
  padding: 74px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 78px;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px, 5.4vw, 76px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
}
.lede { max-width: 620px; margin: 27px 0 0; color: var(--muted); font-size: 19px; }
.lede strong { color: var(--ink); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 31px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; font-weight: 700; }
.button.primary { padding: 15px 20px; background: var(--dark); color: white; transition: opacity .2s; }
.button.primary:hover { opacity: .82; }
.button.text, .button.email { border-bottom: 1px solid; padding: 7px 0; }
.micro { margin: 15px 0 0; color: #888888; font-size: 12px; }

.decision-card {
  padding: 25px;
  border: 1px solid #343434;
  background: var(--dark);
  color: white;
  box-shadow: 0 24px 60px rgba(20,20,18,.12);
}
.card-top { display: flex; justify-content: space-between; color: #aaaaaa; font-size: 11px; }
.status-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #bdbdbd; }
.metric-row { display: flex; align-items: end; justify-content: space-between; margin: 28px 0 22px; }
.metric-row small { display: block; margin-bottom: 3px; color: #aaaaaa; }
.metric-row strong { font-family: Georgia, serif; font-size: 37px; font-weight: 400; }
.metric-row strong span { margin-left: 3px; color: #aaaaaa; font: 12px Arial, sans-serif; }
.trend { padding: 5px 8px; border: 1px solid #5d5d5d; color: #dddddd; font-size: 11px; }
.recommendations { display: grid; gap: 1px; background: #454545; }
.recommendation { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 13px; padding: 14px; background: #2d2d2d; }
.recommendation .tag { color: #c7c7c7; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.recommendation strong { font-size: 13px; }
.recommendation p { margin: 2px 0 0; color: #aaaaaa; font-size: 10px; }
.recommendation b { color: #dddddd; font-size: 12px; }
.example-note { margin: 12px 0 0; color: #888888; font-size: 9px; text-align: right; }

.problem, .input-section { padding: 100px 0; background: var(--soft); }
.narrow { max-width: 790px; text-align: center; }
.narrow h2, .section-head h2, .input-grid h2, .fit-card h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.narrow > p:last-child { max-width: 700px; margin: 22px auto 0; color: var(--muted); font-size: 17px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); }
.pain-grid article { padding: 28px; background: var(--paper); }
.pain-grid span { color: var(--accent); font-size: 10px; font-weight: 700; }
.pain-grid h3 { margin: 17px 0 7px; font-size: 18px; }
.pain-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.solution { padding: 110px 0; }
.section-head { max-width: 760px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; margin-top: 58px; }
.steps article { display: flex; gap: 16px; }
.steps article > span { flex: 0 0 28px; color: var(--accent); font-family: Georgia, serif; font-size: 25px; }
.steps h3 { margin: 3px 0 6px; font-size: 17px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.input-section { background: #eaeaea; }
.input-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.input-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.inline-link { display: inline-block; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid; font-weight: 700; }
.source-list { border-top: 1px solid #c8c8c8; }
.source-list div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid #c8c8c8; }
.source-list span { color: var(--accent); font-size: 11px; font-weight: 700; }
.source-list b { font-size: 13px; font-weight: 600; }

.fit { padding: 95px 0; }
.fit-card { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fit-card h2 { font-size: 42px; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.fit-card li:before { content: "—"; margin-right: 12px; color: var(--accent); }

.founder { padding: 5px 0 100px; }
.founder-inner { max-width: 840px; }
.founder blockquote { margin: 0; font-family: Georgia, serif; font-size: 29px; line-height: 1.35; }
.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 100px 0; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
details { padding: 21px 0; border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; cursor: pointer; list-style: none; font-size: 16px; font-weight: 700; }
summary:after { content: "+"; color: var(--accent); font-size: 20px; font-weight: 400; }
details[open] summary:after { content: "–"; }
details p { margin: 11px 35px 0 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 95px 0; background: var(--dark); color: white; text-align: center; }
.final-cta .eyebrow { color: #bdbdbd; }
.final-cta h2 { max-width: 800px; margin-inline: auto; }
.final-cta p:not(.eyebrow) { color: #aaaaaa; }
.actions.centered { justify-content: center; }
.button.primary.light { background: #f2f2f2; color: var(--ink); }
.button.email { color: white; }
footer { width: min(var(--max), calc(100% - 44px)); margin: auto; padding: 26px 0; display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s, transform .55s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@media (max-width: 850px) {
  .hero, .input-grid, .fit-card, .faq { grid-template-columns: 1fr; gap: 45px; }
  .hero { min-height: 0; }
  .pain-grid, .steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shell, .nav, footer { width: calc(100% - 28px); }
  .nav { height: 64px; }
  .nav-cta { font-size: 11px; }
  .hero { padding: 52px 0 68px; }
  .hero h1 { font-size: 46px; }
  .lede { font-size: 17px; }
  .recommendation { grid-template-columns: 54px 1fr; }
  .recommendation b { display: none; }
  .problem, .solution, .input-section, .fit, .faq, .final-cta { padding: 72px 0; }
  .source-list div { grid-template-columns: 1fr; gap: 5px; }
  .fit-card { padding: 0; border: 0; }
  .founder blockquote { font-size: 23px; }
  footer { flex-direction: column; gap: 4px; }
}
