:root {
  color-scheme: light;
  --ink: #14242c;
  --orange: #ef6a38;
  --orange-dark: #b73c13;
  --green: #0b6b57;
  --steel: #52616a;
  --line: #ccd5d2;
  --canvas: #f4f7f6;
  --paper: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }

.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }

.legal-page { width: min(760px, calc(100% - 2rem)); min-height: 65vh; margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0; }
.legal-page h1 { max-width: 16ch; font-size: clamp(2.8rem, 6vw, 4.8rem); }
.legal-page h2 { max-width: none; margin: 2.2rem 0 .6rem; font-family: Arial, Helvetica, sans-serif; font-size: 1.1rem; letter-spacing: -.01em; }
.legal-page p { color: var(--steel); }
.legal-page .legal-updated { margin: 1rem 0 3rem; font-size: .9rem; }

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-header {
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: var(--paper);
  background: var(--ink);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--paper);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand img { width: 38px; height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .92rem;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

.nav-cta {
  padding: .68rem 1rem;
  color: var(--ink) !important;
  background: var(--orange);
  font-weight: 700;
}

.hero {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 8px solid var(--orange);
}

.hero-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}

.eyebrow,
.section-kicker,
.record-label,
.score-label,
.pilot-label {
  margin: 0 0 1rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { color: #ff9a70; }

h1, h2, .closing-copy {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
}

h1 { max-width: 13ch; font-size: clamp(3rem, 6.4vw, 5.85rem); }
h2 { max-width: 17ch; font-size: clamp(2.25rem, 4.2vw, 4rem); }

.hero-lede {
  max-width: 38rem;
  margin: 1.65rem 0 0;
  color: #d7e0dd;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border: 2px solid var(--orange);
  text-decoration: none;
  font-weight: 800;
}

.button-primary { color: var(--ink); background: var(--orange); }
.button-primary:hover { background: #ff8250; border-color: #ff8250; }
.button-light { color: var(--paper); border-color: rgba(255,255,255,.45); }
.button-light:hover { border-color: var(--paper); }
.button:focus-visible, a:focus-visible { outline: 3px solid #ffd2be; outline-offset: 4px; }

.hero-note {
  margin: 0;
  color: #b9c5c1;
  font-size: .9rem;
}

.opportunity {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-top: 10px solid var(--orange);
  box-shadow: 16px 16px 0 rgba(0,0,0,.23);
}

.opportunity-head {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.score { font-family: Georgia, serif; font-size: 3.45rem; font-weight: 700; line-height: .9; }
.score span { font-family: Arial, sans-serif; font-size: .9rem; color: var(--steel); }
.score-label { margin-bottom: .25rem; color: var(--orange-dark); }
.priority { margin: 0; font-weight: 800; font-size: 1.2rem; }

.record { padding: 1.35rem 1.5rem 1.6rem; }
.record h2 { font-family: Arial, Helvetica, sans-serif; font-size: 1.22rem; letter-spacing: -.02em; line-height: 1.25; }
.record-label { margin-bottom: .55rem; color: var(--green); }

.record-grid {
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.record-grid div { padding: .75rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.record-grid dt { margin-bottom: .2rem; color: var(--steel); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.record-grid dd { margin: 0; font-weight: 700; }
.record-reason { margin: 0; font-size: .95rem; }
.record-reason strong { color: var(--green); }

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.trust-grid > div { padding: 1.3rem 1.5rem; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong { display: block; margin-bottom: .15rem; font-size: .96rem; }
.trust-grid span { color: var(--steel); font-size: .86rem; }

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-kicker { color: var(--orange-dark); }
.section-intro { max-width: 42rem; margin: 1.5rem 0 0; color: var(--steel); font-size: 1.1rem; }

.difference-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: 3rem;
}

.old-way { padding: 1.75rem; color: #33434b; border: 1px solid var(--line); }
.old-way h3, .new-way h3, .pilot h3 { margin: 0 0 .8rem; font-size: 1.1rem; }
.old-way p { margin: 0; color: var(--steel); }

.new-way { border-top: 4px solid var(--ink); }
.decision-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.decision-row strong { font-family: Georgia, serif; font-size: 1.18rem; }
.decision-row span { color: var(--steel); }

.dark-section { color: var(--paper); background: var(--ink); }
.dark-section .section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; }
.dark-section h2 { max-width: 14ch; }
.dark-section .section-intro { color: #bdc8c4; }

.factor-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.factor-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.factor-list b { color: #ff9a70; font-family: Georgia, serif; font-size: 1.35rem; }
.factor-list span { color: #dbe3e0; }
.factor-list em { color: #9eafaa; font-size: .86rem; font-style: normal; }

.flow {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.flow article { min-height: 230px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-number { margin: 0 0 2.75rem; color: var(--orange-dark); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 700; }
.flow h3 { margin: 0 0 .65rem; font-size: 1.05rem; }
.flow p { margin: 0; color: var(--steel); font-size: .94rem; }

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: 4rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--paper);
  background: var(--green);
}
.pilot h2 { max-width: 12ch; }
.pilot-label { color: #b9eadf; }
.pilot-list { margin: 1.6rem 0 0; padding-left: 1.2rem; }
.pilot-list li { margin: .55rem 0; }

.price-panel { align-self: stretch; padding: 1.75rem; color: var(--ink); background: var(--paper); }
.price { margin: .35rem 0 0; font-family: Georgia, serif; font-size: 3.2rem; font-weight: 700; line-height: 1; }
.price span { font-family: Arial, sans-serif; font-size: 1rem; font-weight: 400; color: var(--steel); }
.price-note { margin: .75rem 0 1.5rem; color: var(--steel); }
.price-panel .button { width: 100%; }
.capacity { margin: 1rem 0 0; color: var(--steel); font-size: .85rem; text-align: center; }
.pilot-form { margin-top: 1.4rem; }
.form-row { margin-bottom: .85rem; }
.form-row label { display: block; margin-bottom: .32rem; font-size: .78rem; font-weight: 800; letter-spacing: .02em; }
.form-row label span { color: var(--steel); font-weight: 400; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: .72rem .78rem; border: 1px solid #aebbb7; border-radius: 0; color: var(--ink); background: #fff; font: inherit; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 3px solid rgba(242, 98, 55, .25); border-color: var(--orange-dark); }
.form-row textarea { resize: vertical; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-privacy { margin: .7rem 0 0; color: var(--steel); font-size: .78rem; text-align: center; }
.thanks-page { width: min(760px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 0; }
.thanks-page h1 { max-width: 14ch; }
.thanks-page > p:not(.section-kicker):not(.capacity) { max-width: 42rem; color: var(--steel); font-size: 1.15rem; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.thanks-page .capacity { text-align: left; }

.closing { padding: clamp(5rem, 10vw, 9rem) 0; text-align: center; }
.closing-copy { max-width: 18ch; margin: 0 auto 2rem; font-size: clamp(2.45rem, 5vw, 4.6rem); }

.site-footer { color: #c5d0cc; background: var(--ink); }
.footer-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-grid p { margin: 0; font-size: .88rem; }
.footer-grid a { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .dark-section .section, .pilot { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 4.5rem; }
  .opportunity { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2n) { border-right: 1px solid var(--line); }
  .difference-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .nav { min-height: 66px; }
  .nav-cta { padding: .55rem .72rem; font-size: .8rem; }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-note { text-align: center; }
  .opportunity-head { grid-template-columns: 1fr; }
  .score { font-size: 3rem; }
  .record-grid, .trust-grid, .flow { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 1px solid var(--line); }
  .decision-row { grid-template-columns: 1fr; gap: .25rem; }
  .factor-list li { grid-template-columns: 2rem 1fr; }
  .factor-list em { grid-column: 2; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.resources-band { background: #e9efed; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resource-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--ink); border-left: 1px solid var(--line); }
.resource-grid article { min-height: 250px; padding: 1.5rem; background: var(--paper); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resource-grid h3 { margin: .5rem 0 .8rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.18; letter-spacing: -.025em; }
.resource-grid h3 a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.resource-grid p { color: var(--steel); }
.resource-type { margin: 0; color: var(--orange-dark) !important; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resource-all { margin: 1.5rem 0 0; font-weight: 800; }

.article-shell { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) 0 7rem; display: grid; grid-template-columns: minmax(0, 720px) 260px; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.article-main h1 { max-width: 15ch; font-size: clamp(2.8rem, 6vw, 5.2rem); }
.article-main h2 { max-width: 23ch; margin: 3.5rem 0 1rem; font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
.article-main h3 { margin: 2rem 0 .5rem; font-size: 1.15rem; }
.article-main p, .article-main li { color: #34454e; font-size: 1.04rem; }
.article-main li + li { margin-top: .55rem; }
.article-main a { text-underline-offset: 3px; }
.article-lede { max-width: 42rem; margin: 1.4rem 0 0; color: var(--ink) !important; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.3vw, 1.65rem) !important; line-height: 1.4; }
.article-meta { margin: 1rem 0 2.5rem; color: var(--steel); font-size: .88rem; }
.answer-box { margin: 2rem 0; padding: 1.4rem 1.5rem; background: #e9efed; border-left: 6px solid var(--green); }
.answer-box p { margin: 0; color: var(--ink); }
.checklist { padding-left: 1.25rem; }
.evidence-table { width: 100%; margin: 1.5rem 0 2rem; border-collapse: collapse; font-size: .92rem; }
.evidence-table th, .evidence-table td { padding: .75rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.evidence-table th { background: #e9efed; }
.article-aside { position: sticky; top: 1.5rem; padding: 1.25rem; background: var(--ink); color: var(--paper); border-top: 7px solid var(--orange); }
.article-aside h2 { margin: 0 0 .75rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; letter-spacing: -.025em; }
.article-aside p { color: #d0dad7; font-size: .9rem; }
.article-aside .button { width: 100%; margin-top: .5rem; }
.source-note { padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .9rem !important; }
.breadcrumbs { margin-bottom: 2rem; color: var(--steel); font-size: .85rem; }
.breadcrumbs a { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid article { min-height: 0; }
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}
