/* ∴ drrey.health — vX4 mockup styles. Radical simplification: minimal hero with
   three-line title ladder, standalone question, venn (western × eastern),
   flaws constellation, journey → results → purpose. Accessible type scale. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono:  'JetBrains Mono', 'Courier New', monospace;
  --white:       #ffffff;
  --text:        rgba(255,255,255,0.94);
  --text-2:      rgba(255,255,255,0.80);
  --text-dim:    rgba(255,255,255,0.66);
  --text-faint:  rgba(255,255,255,0.52);
  --rule:        rgba(255,255,255,0.16);
  --rule-strong: rgba(255,255,255,0.42);
  --accent:      #c3d6ea;
}

html { scroll-behavior: smooth; }
body {
  background: #000; color: var(--text);
  font-family: var(--serif); font-weight: 400; font-size: 20px; line-height: 1.75;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: rgba(195,214,234,0.26); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1s ease, transform 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem clamp(1.2rem, 4vw, 2.4rem);
  opacity: 0; pointer-events: none; transition: opacity 0.6s ease;
  background: linear-gradient(#000 35%, rgba(0,0,0,0));
}
.nav.show { opacity: 1; pointer-events: auto; }
.nav-mark { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--white); text-decoration: none; }
.nav-mark .dot { color: var(--accent); margin-right: 0.4rem; }
.nav-cta {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  border: 1px solid var(--rule-strong); padding: 0.65rem 1.1rem; transition: border-color 0.3s;
}
.nav-cta:hover { border-color: var(--accent); }

/* ─── BUTTON ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  background: transparent; border: 1px solid var(--rule-strong);
  padding: 1.1rem 2rem; cursor: pointer;
  transition: border-color 0.4s, color 0.4s, box-shadow 0.4s, background 0.4s;
}
.btn:hover { border-color: rgba(255,255,255,0.75); color: var(--white); box-shadow: 0 0 45px rgba(255,255,255,0.08); }
.btn .arr { transition: transform 0.4s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--white); color: #000; border-color: var(--white); font-weight: 500; }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #000; }

/* ─── HERO — super simple ─── */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 4vh 1.5rem 9vh; position: relative;
}
.pyramid-stage {
  width: min(92vw, 680px); height: 42svh; min-height: 240px; position: relative;
  opacity: 0; animation: fadeIn 2s ease 0.2s forwards;
}
.pyramid-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-name {
  font-family: var(--serif); font-size: clamp(4.2rem, 12vw, 7.6rem); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1; color: var(--white); margin-top: 0.6rem;
  opacity: 0; animation: fadeIn 1.6s ease 0.5s forwards;
}
.hero-titles { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; opacity: 0; animation: fadeIn 1.6s ease 0.9s forwards; }
/* the ladder: Doctor of Health (same serif as the name, biggest) →
   physician of the future (italic, middle) → not a Doctor of Medicine (smallest) */
.hero-titles .t1 {
  font-family: var(--serif); font-size: clamp(1.4rem, 3.1vw, 1.85rem); font-weight: 500;
  letter-spacing: 0.03em; color: var(--white);
}
.hero-titles .t2 {
  font-family: var(--serif); font-size: clamp(1.05rem, 2.2vw, 1.28rem); font-style: italic;
  font-weight: 400; color: var(--text-2); letter-spacing: 0.04em;
}
.hero-titles .t3 {
  font-family: var(--serif); font-size: clamp(0.95rem, 1.9vw, 1.1rem); font-weight: 400;
  color: var(--text-dim); letter-spacing: 0.04em;
}
.hero-cue { position: absolute; bottom: 3vh; font-family: var(--mono); font-size: 1rem; color: var(--text-dim); opacity: 0; animation: fadeIn 1.5s ease 1.8s forwards; }
.hero-cue span { display: inline-block; animation: drift 2.6s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─── SECTION SCAFFOLD ─── */
.section { padding: clamp(4.5rem, 11vh, 8rem) 1.5rem; }
.wrap { max-width: 780px; margin: 0 auto; }
.wrap-wide { max-width: 1000px; margin: 0 auto; }
.eyebrow {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.3em; text-indent: 0.3em;
  text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 1.8rem;
}
.eyebrow.center, .center { text-align: center; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 500; color: var(--white); line-height: 1.2; }

/* ─── QUESTION — standalone screen ─── */
.question {
  min-height: 82svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem;
}
.question h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 500;
  font-style: italic; line-height: 1.22; color: var(--white); max-width: 800px;
}

/* ─── ABOUT ─── */
.about { border-top: 1px solid var(--rule); }
.about-top { display: flex; flex-direction: column; align-items: center; text-align: center; }
.headshot-ring {
  width: clamp(160px, 22vw, 210px); height: clamp(160px, 22vw, 210px); border-radius: 50%; padding: 5px;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 0 35px rgba(255,255,255,0.10), 0 0 90px rgba(255,255,255,0.05), inset 0 0 18px rgba(255,255,255,0.05);
  margin-bottom: 2.4rem;
}
.headshot-ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; filter: grayscale(10%); }
.hey {
  font-family: var(--mono); font-size: clamp(0.85rem, 1.8vw, 1rem); letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 1.4rem;
}
.about-lead {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.45;
  color: var(--text); max-width: 660px; margin: 0 auto 1.2rem;
}
.about-lead em { font-style: italic; color: var(--white); font-weight: 500; }
.practice { font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.6rem); color: var(--text-2); }
.practice em { font-style: italic; color: var(--white); }

/* ─── VENN ─── */
.venn-wrap { margin-top: clamp(2.6rem, 6vh, 4rem); text-align: center; }
.venn { width: min(92vw, 560px); height: auto; display: block; margin: 0 auto; overflow: visible; }
.venn .vc {
  fill: none; stroke: rgba(255,255,255,0.85); stroke-width: 1.3;
  stroke-dasharray: 754; stroke-dashoffset: 754;
  transition: stroke-dashoffset 2.4s ease 0.2s;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.18));
}
.reveal.visible .vc, .venn-wrap.visible .vc { stroke-dashoffset: 0; }
.venn .v-label {
  font-family: var(--serif); font-style: italic; font-size: 27px; fill: var(--white);
  text-anchor: middle; opacity: 0; transition: opacity 1.2s ease 1.6s;
}
.venn .v-mark {
  font-family: var(--mono); font-size: 30px; fill: #c3d6ea; text-anchor: middle;
  opacity: 0; transition: opacity 1.2s ease 2.2s;
}
.reveal.visible .v-label, .reveal.visible .v-mark,
.venn-wrap.visible .v-label, .venn-wrap.visible .v-mark { opacity: 1; }
.venn-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 4rem);
  max-width: 720px; margin: 1.6rem auto 0;
}
.v-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.v-list.v-left  { text-align: right; }
.v-list.v-right { text-align: left; }
.v-list li { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-2); line-height: 1.5; }

/* ─── FLAWS — fading constellation ─── */
.flaws {
  position: relative; min-height: 88svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem; border-top: 1px solid var(--rule); overflow: hidden;
}
.flaws h2 {
  position: relative; z-index: 2;
  font-family: var(--serif); font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 500;
  line-height: 1.3; color: var(--white); max-width: 620px;
}
.flaw-field { position: absolute; inset: 0; z-index: 1; }
.flaw {
  position: absolute; font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem); color: var(--text); white-space: nowrap;
  opacity: 0; animation: flawFade 18s ease-in-out infinite;
}
/* each word: ~1.4s fade in → ~4s fully readable → ~1.8s fade out */
@keyframes flawFade {
  0%   { opacity: 0; }
  8%   { opacity: 0.95; }
  30%  { opacity: 0.95; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
.f1 { top: 8%;  left: 6%;   animation-delay: 0s; }
.f2 { top: 5%;  right: 7%;  animation-delay: 2s; }
.f3 { top: 32%; left: 3%;   animation-delay: 4s; }
.f4 { top: 34%; right: 3%;  animation-delay: 6s; }
.f5 { bottom: 30%; left: 5%;  animation-delay: 8s; }
.f6 { bottom: 32%; right: 5%; animation-delay: 10s; }
.f7 { bottom: 9%; left: 12%;  animation-delay: 12s; }
.f8 { bottom: 6%; right: 10%; animation-delay: 14s; }
.f9 { top: 17%; left: 50%; transform: translateX(-50%); animation-delay: 16s; }

/* ─── JOURNEY → RESULTS ─── */
.journey { border-top: 1px solid var(--rule); text-align: center; }
.j-line {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.8vw, 1.8rem); color: var(--text);
  line-height: 1.55; max-width: 680px; margin: 0 auto 2.2rem;
}
.j-line em { font-style: italic; color: var(--white); }
.j-verdict {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--accent); margin-bottom: clamp(2.8rem, 6vh, 4rem);
}
.ages { display: flex; align-items: baseline; justify-content: center; gap: clamp(2.5rem, 8vw, 5.5rem); margin-bottom: clamp(2.6rem, 5vh, 3.4rem); flex-wrap: wrap; }
.age { display: flex; flex-direction: column; gap: 0.7rem; }
.age .a-num { font-family: var(--serif); font-weight: 500; line-height: 0.9; }
.age.bio .a-num { font-size: clamp(4.6rem, 13vw, 7.4rem); color: var(--white); text-shadow: 0 0 45px rgba(195,214,234,0.5); }
.age.chrono .a-num { font-size: clamp(3rem, 8.5vw, 4.6rem); color: var(--text-faint); }
.age .a-lab { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.age.bio .a-lab { color: var(--accent); }
.markers { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 620px; margin: 0 auto; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.marker { padding: clamp(1.7rem, 3vw, 2.3rem) 1rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.marker .m-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.marker .m-value { font-family: var(--mono); font-size: clamp(1.5rem, 3.4vw, 1.95rem); color: var(--white); text-shadow: 0 0 26px rgba(255,255,255,0.4); }
.marker .m-unit { font-size: 0.76rem; color: var(--text-2); }
.marker .m-note { font-family: var(--serif); font-style: italic; font-size: 1.04rem; color: var(--accent); }
.proof-foot { margin-top: 1.8rem; font-family: var(--mono); font-size: 0.72rem; line-height: 2; color: var(--text-faint); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── PURPOSE ─── */
.purpose {
  min-height: 52svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem; border-top: 1px solid var(--rule);
}
.purpose p {
  font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 500;
  color: var(--text); line-height: 1.35; max-width: 760px;
}
.purpose em { font-style: italic; color: var(--white); text-shadow: 0 0 40px rgba(195,214,234,0.35); }

/* ─── TESTIMONIES ─── */
.testi { border-top: 1px solid var(--rule); text-align: center; }
.testi .eyebrow { margin-bottom: clamp(2.6rem, 6vh, 4rem); }
.t-quote { max-width: 820px; margin: 0 auto; }
.t-quote p {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--text-2); line-height: 1.55;
}
.t-quote .big { font-style: italic; font-weight: 500; color: var(--white); font-size: 1.22em; }
.t-quote .glow { font-style: italic; font-weight: 500; color: var(--accent); font-size: 1.12em; text-shadow: 0 0 30px rgba(195,214,234,0.45); }
.t-by { margin-top: 1.6rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }
.t-sep { margin: clamp(3rem, 7vh, 4.5rem) auto; font-family: var(--mono); font-size: 1.3rem; color: var(--accent); opacity: 0.7; }

/* ─── METHOD ─── */
.method { border-top: 1px solid var(--rule); text-align: center; }
.m-line {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.7vw, 1.7rem); color: var(--text);
  line-height: 1.6; max-width: 700px; margin: 0 auto;
}
.m-line + .m-line { margin-top: 2.2rem; }
.m-line em { font-style: italic; color: var(--white); }

/* ─── OFFERS ─── */
.offers { border-top: 1px solid var(--rule); }
.offers-head { text-align: center; margin-bottom: clamp(2.6rem, 5vh, 3.6rem); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 860px; margin: 0 auto; }
.card { border: 1px solid var(--rule); padding: clamp(1.9rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; position: relative; transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s; }
.card:hover { border-color: var(--rule-strong); transform: translateY(-3px); box-shadow: 0 0 60px rgba(255,255,255,0.04); }
.card.featured { border-color: rgba(195,214,234,0.45); }
.card-badge { position: absolute; top: -1px; right: -1px; font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #000; background: var(--accent); padding: 0.4rem 0.8rem; }
.card-tag { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }
.card-name { font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2rem); font-weight: 500; color: var(--white); margin: 0.8rem 0 0.5rem; line-height: 1.1; }
.card-price { font-family: var(--mono); font-size: 1.2rem; color: var(--text); margin-bottom: 1.4rem; }
.card-price .was { text-decoration: line-through; color: var(--text-faint); margin-right: 0.5rem; }
.card-price .now { color: var(--accent); font-weight: 500; }
.card-price .per { display: block; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-top: 0.5rem; }
.card-incl { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.card-incl li { font-size: 1.12rem; color: var(--text); padding-left: 1.5rem; position: relative; line-height: 1.5; }
.card-incl li::before { content: '∴'; position: absolute; left: 0; color: var(--accent); font-size: 0.9rem; top: 0.15rem; }
.card-cta { margin-top: auto; width: 100%; justify-content: space-between; }
.offers-loc { margin-top: 2.4rem; text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.1vw, 1.28rem); color: var(--text-2); }
.offers-foot { margin-top: 1rem; text-align: center; font-family: var(--serif); font-size: clamp(1.1rem, 2.1vw, 1.28rem); color: var(--text-2); }
.offers-foot a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(195,214,234,0.5); }
.offers-foot a:hover { color: var(--white); border-color: var(--white); }

/* ─── SIGNUP ─── */
.signup { border-top: 1px solid var(--rule); display: flex; flex-direction: column; align-items: center; }
.signup-head { text-align: center; margin-bottom: clamp(2.4rem, 5vh, 3.2rem); }
.signup-head h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 500; font-style: italic; color: var(--white); line-height: 1.3; }
form { width: 100%; max-width: 560px; display: flex; flex-direction: column; gap: 2rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.field { display: flex; flex-direction: column; gap: 0.65rem; }
.field label { font-family: var(--mono); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.field input {
  background: transparent; border: none; border-bottom: 1px solid var(--rule-strong); color: var(--white);
  font-family: var(--serif); font-size: 1.3rem; padding: 0.6rem 0; outline: none; width: 100%; border-radius: 0;
  transition: border-bottom-color 0.4s; caret-color: var(--accent); -webkit-appearance: none; appearance: none;
}
.field input:focus { border-bottom-color: rgba(255,255,255,0.8); }
.field input::placeholder { color: var(--text-faint); font-style: italic; }
.consent-row { display: flex; align-items: flex-start; gap: 1rem; cursor: pointer; }
.consent-row input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.cbox { width: 18px; height: 18px; border: 1px solid var(--rule-strong); flex-shrink: 0; margin-top: 3px; position: relative; transition: border-color 0.3s; }
.cbox::after { content: ''; position: absolute; inset: 3px; background: var(--accent); opacity: 0; transition: opacity 0.2s; box-shadow: 0 0 10px rgba(195,214,234,0.8); }
.consent-row input:checked ~ .cbox { border-color: rgba(255,255,255,0.85); }
.consent-row input:checked ~ .cbox::after { opacity: 1; }
.consent-row input:focus-visible ~ .cbox { outline: 2px solid rgba(195,214,234,0.7); outline-offset: 3px; }
.consent-row .c-text { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--text-2); line-height: 1.55; }
.btn-submit { width: 100%; justify-content: space-between; color: var(--text); }
.btn-submit:disabled { opacity: 0.4; cursor: default; }
.form-message { display: none; font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--text-2); text-align: center; }
.privacy-note { margin-top: 0.4rem; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.03em; line-height: 1.9; color: var(--text-dim); text-align: center; }

/* formspree honeypot — visually removed, invisible to humans */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ─── FAQ ─── */
.faq { border-top: 1px solid var(--rule); }
.faq h2 { text-align: center; margin-bottom: clamp(2.4rem, 5vh, 3.2rem); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-family: var(--serif); font-size: clamp(1.24rem, 2.3vw, 1.45rem); font-weight: 500; color: var(--white); }
.faq-q .ico { font-family: var(--mono); font-size: 1.3rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 1.18rem; color: var(--text-2); line-height: 1.7; padding: 0 0 1.2rem; max-width: 700px; }
.faq-a p:last-child { padding-bottom: 1.6rem; }
.faq-a em { font-style: italic; color: var(--white); }

/* ─── FOOTER (page footer only — .t-by uses <footer> inside blockquotes) ─── */
body > footer { border-top: 1px solid var(--rule); padding: clamp(2.6rem, 6vh, 4rem) 1.5rem 3rem; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.footer-inner p, .footer-inner a { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--text-dim); text-decoration: none; }
.footer-inner a:hover { color: var(--white); }
.footer-mark { color: var(--accent); margin-right: 0.3rem; }
.disclaimer { max-width: 1000px; margin: 2.4rem auto 0; padding-top: 1.8rem; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.01em; line-height: 2; color: var(--text-faint); }

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .flaws { flex-direction: column; justify-content: center; min-height: 80svh; }
  .flaw-field { position: static; text-align: center; }
  .flaw-field.ff-top { order: 1; margin-bottom: 2.2rem; }
  .flaws h2 { order: 2; }
  .flaw-field.ff-bot { order: 3; margin-top: 2.2rem; }
  .flaw { position: static; display: inline-block; margin: 0.32em 0.5em; white-space: normal; transform: none; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 2rem; }
  .venn-cols { gap: 1.4rem; }
  .markers { grid-template-columns: 1fr; }
  .pyramid-stage { height: 30svh; }
}
@media (min-width: 641px) and (max-width: 880px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
  .reveal, [class*="hero-"], .pyramid-stage { opacity: 1 !important; transform: none !important; }
  .flaw { opacity: 0.6 !important; }
  .venn .vc { stroke-dashoffset: 0 !important; }
  .venn .v-label, .venn .v-mark { opacity: 1 !important; }
}

/* form privacy notice */
.form-notice {
  font-family: var(--serif); font-size: 1.02rem; color: var(--text-2);
  line-height: 1.6; text-align: center; max-width: 480px; margin: -0.4rem auto 0;
}
.form-notice a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(195,214,234,0.5); }
.form-notice a:hover { color: #fff; border-color: #fff; }
