:root {
  color-scheme: dark;
  --ink: #0c0a12;
  --ink-2: #13101c;
  --panel: #1b1625;
  --panel-2: #241c31;
  --paper: #f7f5f9;
  --paper-2: #ece8f1;
  --text: #faf7fc;
  --muted: #beb6c9;
  --dark-text: #201a28;
  --dark-muted: #665e70;
  --coral: #ff8754;
  --rose: #d54b79;
  --violet: #7447a2;
  --aqua: #9be4df;
  --line: rgba(255, 255, 255, 0.13);
  --light-line: rgba(32, 26, 40, 0.13);
  --gradient: linear-gradient(120deg, var(--coral) 0%, var(--rose) 48%, var(--violet) 100%);
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(213, 75, 121, 0.11), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(116, 71, 162, 0.12), transparent 30rem),
    var(--ink);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  z-index: 1000;
  background: var(--paper);
  color: var(--dark-text);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(12, 10, 18, 0.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { font-size: 1.1rem; font-weight: 760; letter-spacing: -0.035em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] { color: var(--text); }

.site-nav .nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--text);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0.62rem 0.82rem;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1060px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--aqua);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  text-wrap: balance;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.65rem);
  font-weight: 780;
}

.hero h1 .gradient-text,
.page-hero h1 .gradient-text,
.quote-block .gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.33rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.78rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gradient); color: #fff; box-shadow: 0 12px 32px rgba(213,75,121,0.23); }
.button-secondary { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.04); color: var(--text); }
.button-dark { background: var(--dark-text); color: white; }

.hero-mark {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    radial-gradient(circle at 22% 15%, rgba(255,135,84,0.15), transparent 35%),
    radial-gradient(circle at 80% 78%, rgba(116,71,162,0.2), transparent 42%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 50%;
  z-index: -1;
}

.hero-mark::before { width: 72%; aspect-ratio: 1; }
.hero-mark::after { width: 52%; aspect-ratio: 1; border-style: dashed; animation: orbit 24s linear infinite; }
.hero-mark img { width: min(68%, 330px); filter: drop-shadow(0 22px 36px rgba(0,0,0,0.26)); }

.orbit-label {
  position: absolute;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12,10,18,0.74);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-label.one { top: 9%; left: 7%; }
.orbit-label.two { top: 19%; right: 5%; }
.orbit-label.three { bottom: 16%; left: 4%; }
.orbit-label.four { bottom: 8%; right: 7%; }

@keyframes orbit { to { transform: rotate(360deg); } }

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.022);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal {
  padding: 1.55rem 1.8rem;
  border-right: 1px solid var(--line);
}

.signal:last-child { border-right: 0; }
.signal strong { display: block; margin-bottom: 0.22rem; color: var(--text); font-size: 1rem; }
.signal span { color: var(--muted); font-size: 0.9rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-light { color: var(--dark-text); background: var(--paper); }
.section-soft { background: var(--ink-2); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.55fr);
  justify-content: space-between;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4.2rem);
}

.section h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.section-head p { margin-bottom: 0; color: var(--muted); }
.section-light .section-head p { color: var(--dark-muted); }

.two-paths,
.cards-3,
.cards-4,
.service-grid,
.choice-grid {
  display: grid;
  gap: 1rem;
}

.two-paths { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.choice-grid { grid-template-columns: repeat(2, 1fr); }

.path-card,
.card,
.service-card,
.choice-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}

.path-card { min-height: 460px; padding: clamp(1.7rem, 4vw, 3.15rem); display: flex; flex-direction: column; }
.path-card::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -100px;
  bottom: -115px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,0.025), 0 0 0 70px rgba(255,255,255,0.018);
}

.path-index { color: var(--aqua); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em; }
.path-card h3 { margin: auto 0 1rem; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -0.035em; }
.path-card p { max-width: 540px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--text); font-weight: 820; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.principle {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.principle-statement {
  position: sticky;
  top: 120px;
}

.principle-statement .kicker { color: var(--rose); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.principle-statement h2 { margin: 0.75rem 0 1.1rem; }
.principle-statement p { color: var(--dark-muted); }

.sequence { counter-reset: step; border-top: 1px solid var(--light-line); }
.sequence-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1.25rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--light-line);
}
.sequence-item::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.sequence-item h3 { margin-bottom: 0.4rem; font-size: 1.25rem; }
.sequence-item p { margin: 0; color: var(--dark-muted); }

.card,
.service-card { padding: 1.65rem; }
.card h3,
.service-card h3 { margin-bottom: 0.65rem; font-size: 1.25rem; }
.card p,
.service-card p { margin-bottom: 0; color: var(--muted); }
.card .icon,
.service-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: white;
  font-weight: 900;
}

.service-card ul,
.content-card ul,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.content-card li,
.check-list li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.45rem 0;
  color: var(--muted);
}

.service-card li::before,
.content-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.section-light .service-card,
.section-light .card,
.section-light .content-card,
.section-light .choice-card {
  border-color: var(--light-line);
  background: white;
}
.section-light .service-card p,
.section-light .service-card li,
.section-light .card p,
.section-light .content-card p,
.section-light .content-card li { color: var(--dark-muted); }

.pcaa-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  color: white;
}
.pcaa-band::before { content: "P · C · A · A"; position: absolute; right: -1vw; bottom: -3vw; color: rgba(255,255,255,0.08); font-size: clamp(5rem, 15vw, 13rem); font-weight: 900; line-height: 0.8; letter-spacing: -0.07em; white-space: nowrap; }
.pcaa-band .section-head p { color: rgba(255,255,255,0.82); }
.pcaa-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-md); overflow: hidden; }
.pcaa-step { min-height: 240px; padding: 1.55rem; border-right: 1px solid rgba(255,255,255,0.25); background: rgba(12,10,18,0.08); }
.pcaa-step:last-child { border-right: 0; }
.pcaa-letter { display: block; margin-bottom: 2.5rem; font-size: 2.8rem; line-height: 1; font-weight: 900; }
.pcaa-step h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.pcaa-step p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.93rem; }

.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
}
.founder-monogram {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: white;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    radial-gradient(circle at 25% 20%, rgba(255,135,84,0.42), transparent 36%),
    radial-gradient(circle at 75% 80%, rgba(116,71,162,0.56), transparent 45%),
    var(--panel);
  border: 1px solid var(--line);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}
.founder-photo {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy h2 { margin-bottom: 1.3rem; }
.founder-copy p { color: var(--muted); font-size: 1.06rem; }
.founder-copy .team-note { margin: 1.9rem 0 1.5rem; color: var(--text); font-size: 1.272rem; font-weight: 850; text-align: right; }
.founder-facts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }
.fact { border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 0.72rem; color: var(--muted); font-size: 0.82rem; font-weight: 700; }

.faq { max-width: 880px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.45rem 2.5rem 1.45rem 0; font-size: 1.08rem; font-weight: 790; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 1.3rem; color: var(--coral); font-size: 1.45rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 2rem 1.4rem 0; color: var(--muted); }
.section-light .faq details { border-color: var(--light-line); }
.section-light .faq details p { color: var(--dark-muted); }

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(255,135,84,0.25), transparent 30%),
    radial-gradient(circle at 95% 90%, rgba(116,71,162,0.35), transparent 35%),
    var(--panel);
}
.cta-panel h2 { max-width: 850px; margin-bottom: 1.2rem; }
.cta-panel p { max-width: 720px; margin-bottom: 2rem; color: var(--muted); font-size: 1.08rem; }

.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(2, 0.65fr); gap: 2rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { max-width: 430px; color: var(--muted); }
.footer-col h3 { margin-bottom: 0.9rem; font-size: 0.9rem; letter-spacing: 0.09em; text-transform: uppercase; }
.footer-col a { display: block; margin: 0.45rem 0; color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.6rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #8f879d; font-size: 0.82rem; }

.page-hero { padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(3.3rem, 7vw, 5.5rem); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; gap: 0.55rem; margin-bottom: 2.2rem; color: #9d95a9; font-size: 0.83rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.65fr; gap: clamp(2.5rem, 8vw, 7rem); align-items: end; }
.page-hero h1 { margin-bottom: 1.3rem; font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: clamp(1.06rem, 1.6vw, 1.25rem); }
.page-aside { border-left: 1px solid var(--line); padding-left: 2rem; }
.page-aside strong { display: block; margin-bottom: 0.7rem; color: var(--aqua); font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; }
.page-aside p { margin: 0; font-size: 0.98rem; }

.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.content-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.4rem, 3vw, 2.2rem); background: rgba(255,255,255,0.025); }
.content-card h3 { margin-bottom: 0.7rem; font-size: 1.42rem; }
.content-card p { color: var(--muted); }
.content-card p:last-child { margin-bottom: 0; }
.content-card .label { display: block; margin-bottom: 2rem; color: var(--rose); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }

.quote-block { max-width: 980px; margin-inline: auto; text-align: center; }
.quote-block blockquote { margin: 0 0 1.2rem; font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -0.04em; font-weight: 780; text-wrap: balance; }
.quote-block cite { color: var(--muted); font-style: normal; }

.method-stage { display: grid; grid-template-columns: 90px minmax(0, 0.45fr) minmax(280px, 0.8fr); gap: 2rem; align-items: start; padding: 2.1rem 0; border-top: 1px solid var(--line); }
.method-stage:last-child { border-bottom: 1px solid var(--line); }
.method-stage .letter { font-size: 3.8rem; line-height: 1; font-weight: 900; color: transparent; -webkit-text-stroke: 1px var(--coral); }
.method-stage h3 { margin-bottom: 0.5rem; font-size: 1.7rem; }
.method-stage .question { color: var(--text); font-weight: 750; }
.method-stage p { color: var(--muted); }

.notice { border-left: 3px solid var(--coral); padding: 1.25rem 1.4rem; background: rgba(255,255,255,0.035); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--muted); }
.section-light .notice { background: white; color: var(--dark-muted); }

.choice-card { padding: clamp(1.6rem, 4vw, 2.7rem); }
.choice-card h3 { margin-bottom: 0.75rem; font-size: 1.6rem; }
.choice-card p { color: var(--muted); }
.choice-card .button { margin-top: 0.7rem; }

.contact-list { margin: 1.6rem 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 0.8rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); }
.contact-list a { text-decoration: none; font-weight: 750; }
.section-light .contact-list li { border-color: var(--light-line); }
.section-light .contact-list span { color: var(--dark-muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .principle, .founder { grid-template-columns: 1fr; }
  .hero-mark { min-height: 420px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .principle-statement { position: static; }
  .service-grid, .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .pcaa-steps { grid-template-columns: repeat(2, 1fr); }
  .pcaa-step:nth-child(2) { border-right: 0; }
  .pcaa-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .page-aside { border-left: 0; padding: 0; max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 1.25rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(12, 10, 18, 0.98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0; }
  .site-nav .nav-cta { margin-top: 0.45rem; text-align: center; padding-inline: 1rem; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 1.35rem)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 1rem; }
  .site-nav { top: 70px; }
  h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero { padding-top: 3.4rem; }
  .hero-mark { min-height: 350px; }
  .signal-grid, .two-paths, .service-grid, .cards-3, .cards-4, .content-grid, .choice-grid { grid-template-columns: 1fr; }
  .signal { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .signal:last-child { border-bottom: 0; }
  .path-card { min-height: 380px; }
  .pcaa-steps { grid-template-columns: 1fr; }
  .pcaa-step, .pcaa-step:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .pcaa-step:last-child { border-bottom: 0; }
  .method-stage { grid-template-columns: 54px 1fr; gap: 1rem; }
  .method-stage .letter { font-size: 2.8rem; }
  .method-stage > div:last-child { grid-column: 2; }
  .sequence-item { grid-template-columns: 48px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .actions .button { width: 100%; }
}

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