:root {
  --ink: #17231b;
  --ink-soft: #4f5e54;
  --forest: #244a35;
  --forest-deep: #153724;
  --sage: #78977d;
  --sage-pale: #e8efe7;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --clay: #c66f57;
  --clay-pale: #f4dfd7;
  --line: #dce3db;
  --shadow: 0 24px 70px rgba(23, 35, 27, .12);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.65 var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 76px 0; }
.bg-sage { background: var(--sage-pale); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest-deep); color: var(--white); }
.center { text-align: center; }
.centered-intro { margin-inline: auto; }
.center-actions { justify-content: center; }
.section-top-compact { padding-top: 30px; }
.medicine-note { margin: 24px 0 0; }
.receipt-note { margin: 24px 0 0; }
.story-photo { margin: 0; }
.message-page { min-height: 70vh; display: flex; align-items: center; }
.message-page-full { min-height: 100vh; display: flex; align-items: center; }
.brand-center { justify-content: center; margin-bottom: 60px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--forest);
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}
.bg-forest .eyebrow { color: #c8ddc8; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, .display { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 6.8vw, 6.65rem); line-height: .96; }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); line-height: 1.02; }
h3 { font-size: 1.2rem; line-height: 1.35; }
.section-title { max-width: 780px; margin-bottom: 28px; }
.section-intro { max-width: 690px; color: var(--ink-soft); font-size: 1.14rem; }
.bg-forest .section-intro { color: #d3dfd5; }
.kicker { color: var(--forest); font-size: 1.08rem; font-weight: 800; }
.fine { color: var(--ink-soft); font-size: .94rem; line-height: 1.55; }

.announcement {
  background: var(--forest-deep);
  color: #e8f1e9;
  padding: 10px 24px;
  text-align: center;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.announcement a { text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 35, 27, .09);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand-word {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .26em;
  line-height: 1;
}
.nav { display: flex; flex: 1; align-items: center; gap: 27px; }
.nav a {
  color: #324239;
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.nav a:not(.button):hover, .nav a[aria-current="page"] { color: var(--clay); }
.nav .button { margin-left: auto; }
.nav a.button { color: var(--white); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--forest-deep);
  border-radius: 999px;
  background: var(--forest-deep);
  color: var(--white);
  padding: 12px 23px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--forest); }
.button.light { border-color: var(--white); background: var(--white); color: var(--forest-deep); }
.button.light:hover { background: #edf4ed; }
.button.ghost { background: transparent; color: var(--forest-deep); }
.button.ghost:hover { background: var(--sage-pale); }
.text-link { color: var(--forest); font-weight: 800; text-underline-offset: 4px; }
.text-link:hover { color: var(--clay); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero { overflow: hidden; background: linear-gradient(135deg, #f7f2e8 0%, #edf2e9 65%, #dfeadf 100%); }
.hero-grid { min-height: 750px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 92px 72px 92px max(24px, calc((100vw - 1200px) / 2)); }
.hero-copy h1 { max-width: 730px; margin-bottom: 26px; }
.hero-copy .lead { max-width: 650px; color: #435249; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.status-line { display: flex; align-items: center; gap: 11px; margin-top: 27px; color: var(--ink-soft); font-size: .94rem; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 6px var(--clay-pale); }
.hero-photo { position: relative; min-height: 620px; overflow: hidden; }
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,241,231,.23), transparent 30%); content: ""; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.photo-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.proof-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof { padding: 28px 34px; border-right: 1px solid var(--line); }
.proof:first-child { padding-left: 0; }
.proof:last-child { border-right: 0; }
.proof strong { display: block; margin-bottom: 3px; color: var(--forest); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.proof span { color: var(--ink-soft); font-size: .94rem; }

.stat-story { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: end; }
.big-stat { color: var(--forest); font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 9rem); line-height: .75; letter-spacing: -.08em; }
.big-stat-label { max-width: 320px; margin-top: 26px; color: var(--ink-soft); font-size: 1.04rem; }
.source { font-size: .94rem; }
.source a { color: var(--forest); font-weight: 800; text-underline-offset: 3px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.value-card { min-height: 280px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 34px; }
.value-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 60px; border-radius: 50%; background: var(--sage-pale); color: var(--forest); font-family: var(--serif); font-size: 1.25rem; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { margin-bottom: 0; color: var(--ink-soft); }

.medicine-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.medicine-head .section-title { margin-bottom: 0; }
.medicine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.medicine-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 20px; }
.medicine-card .visual { display: grid; min-height: 255px; place-items: center; border-radius: 15px; background: #f2f4ef; }
.medicine-card .visual img { width: 92%; height: 240px; object-fit: contain; transition: transform .35s ease; }
.medicine-card:hover .visual img { transform: translateY(-6px); }
.medicine-card h3 { margin: 21px 0 4px; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; }
.medicine-type { margin: 0; color: var(--ink-soft); font-size: .94rem; font-weight: 750; }
.medicine-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.medicine-meta strong { color: var(--forest); }
.tag { display: inline-flex; align-items: center; border-radius: 999px; background: var(--clay-pale); color: #7f3f2f; padding: 6px 10px; font-size: .94rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }

.pricing-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: center; }
.receipt { position: relative; border-radius: 8px; background: #fff; padding: 45px; box-shadow: var(--shadow); color: var(--ink); transform: rotate(-1.2deg); }
.receipt::before, .receipt::after { position: absolute; left: 0; width: 100%; height: 10px; background: radial-gradient(circle at 5px -2px, transparent 7px, #fff 8px) 0 0/18px 10px repeat-x; content: ""; }
.receipt::before { top: -9px; transform: rotate(180deg); }
.receipt::after { bottom: -9px; }
.receipt-logo { margin-bottom: 28px; font-size: .94rem; font-weight: 900; letter-spacing: .24em; text-align: center; }
.receipt-label { margin-bottom: 24px; color: var(--ink-soft); font-size: .94rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.receipt-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px dashed #bfc7bf; }
.receipt-row.total { margin-top: 10px; border-bottom: 0; color: var(--forest); font-family: var(--serif); font-size: 1.45rem; }
.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 14px 0; padding-left: 33px; }
.check-list li::before { position: absolute; left: 0; top: 3px; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #cfe0d0; color: var(--forest); content: "✓"; font-size: .94rem; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.2); }
.step { position: relative; padding: 42px 36px 18px 0; border-right: 1px solid rgba(255,255,255,.2); }
.step + .step { padding-left: 36px; }
.step:last-child { border-right: 0; }
.step-no { color: #a9c3ac; font: 1.15rem var(--serif); }
.step h3 { margin: 40px 0 12px; color: var(--white); font-family: var(--serif); font-size: 1.48rem; font-weight: 400; }
.step p { color: #cedad0; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.story-photo { position: relative; }
.story-photo img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); object-fit: cover; }
.story-photo::before { position: absolute; z-index: -1; right: -22px; bottom: -22px; width: 65%; height: 65%; border-radius: var(--radius); background: var(--clay-pale); content: ""; }
.quote { margin: 34px 0; color: var(--forest); font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.45rem); line-height: 1.25; }

.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.roadmap-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 32px; }
.roadmap-card.current { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(36,74,53,.08); }
.roadmap-card .phase { color: var(--clay); font-size: .94rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.roadmap-card h3 { margin: 38px 0 12px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.roadmap-card p { color: var(--ink-soft); }

.science-card { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border-radius: calc(var(--radius) + 8px); background: var(--forest-deep); color: var(--white); }
.science-copy { padding: clamp(42px, 6vw, 84px); }
.science-copy h2 { max-width: 670px; }
.science-copy p { max-width: 650px; color: #d7e3d8; }
.science-side { display: flex; flex-direction: column; justify-content: space-between; background: #d8e6d7; color: var(--forest-deep); padding: clamp(40px, 5vw, 70px); }
.science-side .signal { font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); line-height: .88; letter-spacing: -.06em; }
.science-side p { margin-bottom: 0; }

.faq-list { max-width: 880px; margin-top: 48px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; font-size: 1.08rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 6px; top: 24px; content: "+"; color: var(--forest); font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 40px 25px 0; color: var(--ink-soft); }

.waitlist { background: var(--clay-pale); }
.waitlist-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.waitlist h2 { max-width: 650px; }
.waitlist-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.waitlist-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.waitlist-form input[type="email"] {
  min-width: 0;
  min-height: 56px;
  border: 1px solid #9bafa0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 21px;
}
.waitlist-form input::placeholder { color: #68766d; opacity: 1; }
.waitlist-form .button { border: 0; cursor: pointer; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-note { margin: 13px 0 0; color: #5b645e; font-size: .94rem; }

.page-hero { position: relative; overflow: hidden; padding: 110px 0 90px; background: var(--cream); }
.page-hero::after { position: absolute; right: -140px; bottom: -220px; width: 520px; height: 520px; border: 1px solid #cad7c9; border-radius: 50%; content: ""; }
.page-hero h1 { max-width: 950px; font-size: clamp(3.2rem, 7vw, 6.4rem); }
.page-hero p { max-width: 700px; color: var(--ink-soft); font-size: 1.16rem; }
.status-banner { border-left: 4px solid var(--clay); background: #fff2ed; padding: 18px 22px; color: #663829; }

.content-grid { display: grid; grid-template-columns: 270px 1fr; gap: 74px; align-items: start; }
.side-nav { position: sticky; top: 115px; border-top: 1px solid var(--line); }
.side-nav a { display: block; border-bottom: 1px solid var(--line); padding: 14px 4px; color: var(--ink-soft); font-size: .94rem; font-weight: 750; text-decoration: none; }
.side-nav a:hover { color: var(--clay); }
.prose { max-width: 780px; }
.prose h2 { margin: 62px 0 18px; font-size: clamp(2rem, 3.8vw, 3.4rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--forest); font-weight: 750; text-underline-offset: 3px; }
.pullquote { margin: 48px 0; border-left: 4px solid var(--clay); padding: 8px 0 8px 30px; color: var(--forest); font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.3; }
.info-box { margin: 34px 0; border-radius: 16px; background: var(--sage-pale); padding: 26px 28px; }
.info-box p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; margin-top: 35px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th { background: var(--forest-deep); color: var(--white); font-size: .94rem; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
td { color: var(--ink-soft); }
td strong { color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 36px; }
.contact-card h2 { margin-bottom: 60px; font: 1.6rem var(--serif); }
.contact-card a { color: var(--forest); font-weight: 800; overflow-wrap: anywhere; }
.contact-card p { color: var(--ink-soft); }

.site-footer { background: var(--ink); color: #e5ede6; padding: 78px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1.2fr; gap: 58px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 360px; margin: 24px 0; color: #bbc9be; }
.site-footer h2 { margin-bottom: 22px; color: var(--white); font: .94rem var(--sans); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.site-footer nav a { display: block; margin: 11px 0; color: #cfdbd1; font-size: .94rem; text-decoration: none; }
.site-footer nav a:hover { color: var(--white); text-decoration: underline; }
.site-footer .waitlist-form { grid-template-columns: 1fr; }
.site-footer .waitlist-form input { min-height: 50px; }
.site-footer .button { min-height: 48px; border-color: #dbe6dc; background: #dbe6dc; color: var(--forest-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 62px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 25px; color: #aebcb1; font-size: .94rem; }
.footer-bottom p { max-width: 860px; margin-bottom: 0; }
.footer-bottom a { text-underline-offset: 3px; }

@media (max-width: 1050px) {
  .nav { gap: 18px; }
  .nav a { font-size: .94rem; }
  .nav a:nth-child(4) { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 88px max(24px, calc((100vw - 900px) / 2)); }
  .hero-photo { min-height: 620px; }
  .medicine-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .story-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .shell, .narrow { width: min(100% - 32px, 700px); }
  .section { padding: 82px 0; }
  .announcement { padding-inline: 16px; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 112px 16px auto;
    display: none;
    max-height: calc(100vh - 128px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .announcement + .site-header .nav { inset-top: 122px; }
  .nav.open { display: flex; }
  .nav a, .nav a:nth-child(4) { display: block; padding: 14px 10px; font-size: .98rem; }
  .nav .button { margin: 10px 0 0; }
  .hero-copy { padding: 74px 24px; }
  .hero-photo { min-height: 510px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof, .proof:first-child { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof:last-child { border-bottom: 0; }
  .stat-story, .pricing-grid, .story-grid, .waitlist-grid, .science-card { grid-template-columns: 1fr; }
  .value-grid, .steps, .roadmap, .contact-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 240px; }
  .value-icon { margin-bottom: 40px; }
  .medicine-head { display: block; }
  .medicine-head .button { margin-top: 22px; }
  .receipt { transform: none; }
  .step, .step + .step { padding: 33px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .step:last-child { border-bottom: 0; }
  .step h3 { margin-top: 22px; }
  .content-grid { grid-template-columns: 1fr; }
  .side-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-word { font-size: .94rem; letter-spacing: .2em; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-copy { padding-block: 60px; }
  .hero-photo { min-height: 420px; }
  .photo-caption { right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .actions { display: grid; }
  .button { width: 100%; }
  .medicine-grid { grid-template-columns: 1fr; }
  .medicine-card .visual { min-height: 230px; }
  .medicine-card .visual img { height: 220px; }
  .receipt { padding: 32px 24px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form .button { width: 100%; }
  .page-hero { padding: 78px 0 65px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: 1 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .announcement, .site-header, .site-footer, .waitlist, .actions { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 32px 0; }
}
