/* Olympic Outreach preview — "the page is the mailer"
   Palette + specs from 09-visual/output/visual-direction.md */

:root {
  --paper: #faf9f5;
  --card: #ffffff;
  --navy: #1c2d4a;
  --ink: #2a3442;
  --muted: #5c6875;
  --green: #2e5d46;
  --green-hover: #244937;
  --chart-green: #2e7d54;
  --chart-neutral: #98a2b3;
  --red: #c0432c;
  --rule: #e4e1d8;
  --tint-green: #edf3ee;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    17px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}
@media (min-width: 700px) {
  body {
    font-size: 18px;
  }
}

h1,
h2,
h3 {
  font-family:
    "Archivo",
    -apple-system,
    sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 {
  font-weight: 800;
  font-size: clamp(34px, 6vw, 56px);
  margin: 14px 0 18px;
}
h2 {
  font-weight: 800;
  font-size: clamp(25px, 4vw, 34px);
  margin: 0 0 22px;
}
a {
  color: var(--green);
}
strong {
  color: var(--navy);
}
p {
  margin: 0 0 1.1em;
}

/* preview banner */
.preview-bar {
  background: var(--navy);
  color: #f4f1e8;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.preview-bar a {
  color: #ffd9a8;
  font-weight: 600;
}

/* layout */
.section {
  padding: 72px 20px;
}
@media (max-width: 700px) {
  .section {
    padding: 48px 18px;
  }
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
}
.wrap-wide {
  max-width: 1060px;
  margin: 0 auto;
}
.section.alt {
  background: var(--card);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section.dark {
  background: var(--navy);
}
.section.dark h2,
.section.dark p,
.section.dark strong {
  color: #f4f1e8;
}
.section.dark .muted {
  color: #b9c0cc;
}

/* hero */
.hero {
  text-align: center;
  padding: 64px 20px 72px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.subhead {
  font-size: clamp(18px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 30px;
}

/* buttons + cta */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: 10px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}
.cta-block {
  text-align: center;
  margin: 8px 0;
}
.cta-micro {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 560px;
  margin: 14px auto 0;
}
.section.dark .cta-micro {
  color: #b9c0cc;
}

/* hero visual + placeholders */
.ph-visual {
  border: 2px dashed #c9c4b4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  padding: 34px 26px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin: 30px auto;
  max-width: 640px;
}
.ph-visual .ph-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.ph {
  background: #fdf2d9;
  border-bottom: 2px dotted #c9a35c;
  border-radius: 3px;
  padding: 0 4px;
  font-style: normal;
  color: #7a5c1e;
  white-space: nowrap;
  font-size: 0.92em;
}
.indicia {
  display: inline-block;
  border: 1.5px solid var(--muted);
  color: var(--muted);
  font:
    700 10px/1.4 ui-monospace,
    Menlo,
    monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  text-align: left;
  border-radius: 2px;
}

/* pain card treatment */
.rule-left {
  border-left: 4px solid var(--navy);
  padding-left: 26px;
}

/* mechanism tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 6px;
}
@media (max-width: 640px) {
  .tiles {
    grid-template-columns: 1fr;
  }
}
.tile {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 18px;
  background: var(--card);
}
.tile b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 6px;
}
.tile span {
  font-size: 14.5px;
  color: var(--muted);
}

/* steps */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 26px 0;
  padding: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 26px 66px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -4px;
  font:
    800 30px/1 "Archivo",
    sans-serif;
  color: var(--navy);
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 4px;
  width: 1px;
  background: var(--rule);
}
.included-strip {
  background: var(--tint-green);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 16px;
}

/* chart */
.chart {
  margin: 30px 0 8px;
}
.chart-row {
  margin-bottom: 18px;
}
.chart-row .chart-label {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 5px;
  display: block;
}
.chart-track {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chart-bar {
  height: 14px;
  border-radius: 0 4px 4px 0;
  min-width: 3px;
}
.chart-bar.hero-bar {
  background: var(--chart-green);
}
.chart-bar.ctx-bar {
  background: var(--chart-neutral);
}
.chart-val {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  white-space: nowrap;
}
.chart-base {
  border-left: 2px solid var(--rule);
  padding-left: 0;
}
figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* stat bullets */
.stat-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.stat-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.stat-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* comparison table */
table.compare {
  border-collapse: collapse;
  width: 100%;
  margin: 28px 0;
  font-size: 15.5px;
}
table.compare th,
table.compare td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
table.compare th {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
table.compare tr.you {
  background: var(--tint-green);
}
table.compare tr.you td {
  border-left: none;
  font-weight: 600;
  color: var(--navy);
}
table.compare tr.you td:first-child {
  border-left: 4px solid var(--green);
}
@media (max-width: 640px) {
  table.compare thead {
    display: none;
  }
  table.compare tr {
    display: block;
    border: 1px solid var(--rule);
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 8px 4px;
    background: var(--card);
  }
  table.compare tr.you {
    background: var(--tint-green);
  }
  table.compare td {
    display: block;
    border: none !important;
    padding: 6px 12px;
  }
  table.compare td::before {
    content: attr(data-k);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
}

/* category grid */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}
@media (max-width: 860px) {
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cat {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 14px 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.cat small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
}
.cat small::before {
  content: "●";
  color: var(--chart-neutral);
  margin-right: 5px;
  font-size: 9px;
  vertical-align: 1px;
}

/* pull quote */
.pull {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--navy);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
  line-height: 1.3;
}

/* origin */
.origin-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 760px) {
  .origin-grid {
    grid-template-columns: 1fr;
  }
}

/* testimonial placeholders */
.testi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .testi-row {
    grid-template-columns: 1fr;
  }
}
.testi {
  border: 2px dashed #c9c4b4;
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.5);
}

/* for / not for */
.fornot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 26px;
}
@media (max-width: 700px) {
  .fornot {
    grid-template-columns: 1fr;
  }
}
.fornot h3 {
  font-size: 17px;
  margin: 0 0 12px;
}
.fornot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fornot li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 16px;
}
.fornot .yes li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 800;
}
.fornot .no li::before {
  content: "—";
  position: absolute;
  left: 2px;
  color: var(--muted);
  font-weight: 700;
}

/* objections */
.objection {
  margin-bottom: 26px;
}
.objection .q {
  font-weight: 700;
  color: var(--navy);
  font-size: 17.5px;
  display: block;
  margin-bottom: 6px;
}

/* pricing */
.prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 10px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .prices {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .prices {
    grid-template-columns: 1fr;
  }
}
.price {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price.popular {
  border-top: 4px solid var(--green);
  box-shadow: 0 10px 28px rgba(28, 45, 74, 0.1);
}
.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.price h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.price .amt {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 33px;
  color: var(--navy);
  margin: 2px 0 12px;
}
.price .amt small {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.price p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* tier diagram */
.tier-diagram {
  margin: 30px auto 0;
  max-width: 560px;
}
.tier-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--card);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(28, 45, 74, 0.07);
}
.tier-zone {
  position: absolute;
  border: 1.5px dashed var(--green);
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: flex-end;
  padding: 6px;
}
.tier-zone.z-large {
  left: 4%;
  top: 6%;
  width: 44%;
  height: 55%;
  background: var(--tint-green);
}
.tier-zone.z-medium {
  left: 52%;
  top: 6%;
  width: 44%;
  height: 34%;
}
.tier-zone.z-small {
  left: 52%;
  top: 44%;
  width: 21%;
  height: 17%;
}
.tier-zone.z-starter {
  left: 77%;
  top: 44%;
  width: 19%;
  height: 10%;
}

/* risk (dark) */
.risk-list {
  list-style: none;
  margin: 24px 0 6px;
  padding: 0;
}
.risk-list li {
  padding: 9px 0 9px 32px;
  position: relative;
  font-size: 17px;
  color: #f4f1e8;
}
.risk-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fc79f;
  font-weight: 800;
}

/* faq */
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  padding: 14px 26px 14px 0;
  list-style: none;
  position: relative;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 12px;
  font-size: 22px;
  color: var(--green);
}
.faq details[open] summary::after {
  content: "–";
}
.faq .a {
  padding: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
}

/* crossroads */
.fridge-a {
  border-left: 3px solid var(--green);
  padding-left: 20px;
}
.fridge-b {
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

/* ps + footer */
.ps p {
  font-size: 16.5px;
}
footer {
  background: var(--navy);
  color: #cfd5df;
  padding: 44px 20px 36px;
  font-size: 14px;
}
footer a {
  color: #ffd9a8;
}
footer .fine {
  font-size: 12px;
  color: #8e99ab;
  margin-top: 18px;
  line-height: 1.6;
}
footer .ph {
  background: rgba(253, 242, 217, 0.14);
  color: #ffd9a8;
  border-bottom-color: #a98b4f;
}

/* sticky mobile cta */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  z-index: 60;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}
.sticky-cta span {
  color: #f4f1e8;
  font-size: 13.5px;
}
.sticky-cta .btn {
  padding: 10px 16px;
  font-size: 14px;
}
.sticky-cta.on {
  display: flex;
}
@media (min-width: 900px) {
  .sticky-cta.on {
    display: none;
  }
}

/* notes page */
.notes-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.blocker {
  background: var(--card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.blocker.decision {
  border-left-color: #c9a35c;
}
.blocker.recommend {
  border-left-color: var(--chart-neutral);
}
.blocker b {
  color: var(--navy);
}
.blocker p {
  font-size: 15px;
  margin: 6px 0 0;
  color: var(--ink);
}
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
