
:root {
  color-scheme: dark;
  --bg: #17191c;
  --bg-2: #1d2024;
  --bg-veil: rgba(23, 25, 28, 0.92);
  --bg-veil-0: rgba(23, 25, 28, 0);
  --panel: rgba(33, 36, 41, 0.9);
  --panel-2: rgba(25, 28, 32, 0.94);
  --panel-solid: #202329;
  --line: rgba(255, 247, 230, 0.12);
  --line-strong: rgba(255, 247, 230, 0.24);
  --text: #f4f6f2;
  --text-2: #d9d4cc;
  --muted: #a9a49e;
  --faint: #8a857f;
  --gold: #ffc629;
  --gold-deep: #d4a017;
  --gold-soft: rgba(255, 198, 41, 0.12);
  --gold-line: rgba(255, 198, 41, 0.45);
  --gold-glow: rgba(255, 198, 41, 0.32);
  --leaf: #556239;
  --leaf-soft: rgba(85, 98, 57, 0.35);
  --on-gold: #17191c;
  --z-base: #fff7e6;
  --shadow: 0 24px 80px rgba(8, 9, 11, 0.6);
  --card-shadow: 0 12px 40px rgba(8, 9, 11, 0.5);
}
html[data-theme="light"] {
  color-scheme: light;
  --bg: #fbf6ea;
  --bg-2: #f3ecdc;
  --bg-veil: rgba(251, 246, 234, 0.94);
  --bg-veil-0: rgba(251, 246, 234, 0);
  --panel: rgba(255, 252, 245, 0.92);
  --panel-2: rgba(248, 242, 229, 0.96);
  --panel-solid: #fffcf5;
  --line: rgba(23, 25, 28, 0.1);
  --line-strong: rgba(23, 25, 28, 0.22);
  --text: #17191c;
  --text-2: #33363b;
  --muted: #5b5f66;
  --faint: #7a7e85;
  --gold: #e0ab1c;
  --gold-deep: #b98a12;
  --gold-soft: rgba(212, 160, 23, 0.14);
  --gold-line: rgba(212, 160, 23, 0.55);
  --gold-glow: rgba(212, 160, 23, 0.26);
  --leaf: #556239;
  --leaf-soft: rgba(85, 98, 57, 0.18);
  --on-gold: #17191c;
  --z-base: #17191c;
  --shadow: 0 24px 60px rgba(60, 50, 20, 0.16);
  --card-shadow: 0 12px 36px rgba(60, 50, 20, 0.12);
}
html { background: var(--bg); }
body { background: var(--bg); color: var(--text); transition: background-color 0.35s ease, color 0.35s ease; }

/* --- the public header: lockup left, actions right --------------------------- */
.pub-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px clamp(14px, 4vw, 44px);
  background: linear-gradient(180deg, var(--bg-veil) 0%, var(--bg-veil-0) 100%);
}
.pub-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  min-height: 44px;
}
.pub-lockup .mark { width: 40px; height: 32px; flex: none; filter: drop-shadow(0 2px 10px var(--gold-glow)); }
.pub-lockup .pub-word { font-weight: 850; letter-spacing: 0.34em; font-size: 0.82rem; }
.pub-lockup .pub-tag { display: none; font-size: 0.56rem; letter-spacing: 0.22em; font-weight: 700; color: var(--gold); }
@media (min-width: 720px) {
  .pub-lockup .pub-word { font-size: 0.9rem; }
  .pub-lockup .pub-text { display: flex; flex-direction: column; gap: 2px; }
  .pub-lockup .pub-tag { display: block; }
}
.pub-actions { display: flex; align-items: center; gap: 10px; }
.pub-link {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 8px 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.pub-link:hover { color: var(--gold); }
@media (max-width: 560px) { .pub-link { display: none; } }
.pub-signin {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 18px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  background: var(--panel);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.pub-signin:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-1px); }

/* --- the light / dark toggle ------------------------------------------------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 8px 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text-2);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .tt-sun { display: none; }
.theme-toggle[aria-pressed="true"] .tt-sun { display: block; }
.theme-toggle[aria-pressed="true"] .tt-moon { display: none; }
.tt-track {
  position: relative;
  width: 32px; height: 18px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 0.25s;
}
.tt-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle[aria-pressed="true"] .tt-track { background: var(--gold-soft); }
.theme-toggle[aria-pressed="true"] .tt-knob { transform: translateX(14px); }

/* --- buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary {
  color: var(--on-gold);
  background: linear-gradient(180deg, #ffd452, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 8px 30px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35); filter: brightness(1.04); }
.btn-ghost { color: var(--text); border: 1px solid var(--line-strong); background: var(--panel); }
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  body, .tt-knob, .btn, .pub-signin, .theme-toggle { transition: none; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
#stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 38%, var(--gold-soft), transparent 60%),
    linear-gradient(180deg, var(--bg-veil-0) 55%, var(--bg-veil) 92%);
}

/* --- the hero ------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 104px 20px 72px;
}
.logo-wrap {
  width: clamp(150px, 24vh, 220px);
  height: auto;
  aspect-ratio: 300 / 240;
  opacity: 0;
  transform: scale(0.8);
  filter: drop-shadow(0 0 34px var(--gold-glow));
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-wrap .mark { width: 100%; height: 100%; display: block; }
body.arrived .logo-wrap { opacity: 1; transform: scale(1); }

.kicker a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: 3px;
}
.kicker a:hover, .kicker a:focus-visible { text-decoration-color: var(--gold); }
.kicker {
  margin: 26px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--muted);
}
.headline {
  margin: 12px 0 0;
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--text);
}
.headline .hl-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.headline .hl-gold { color: var(--gold); }
body.arrived .headline .hl-word { opacity: 1; transform: none; }
body.arrived .headline .hl-word:nth-child(2) { transition-delay: 0.1s; }
body.arrived .headline .hl-word:nth-child(3) { transition-delay: 0.2s; }
.slogan {
  margin: 20px 0 0;
  font-size: clamp(0.82rem, 2.2vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--gold);
}
@media (max-width: 560px) { .slogan { letter-spacing: 0.18em; text-indent: 0.18em; } }
.subline {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2.6vw, 1.32rem);
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 500;
}
.wordline {
  margin: 14px 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--gold);
  font-weight: 800;
}
@media (max-width: 560px) { .wordline { font-size: 0.62rem; letter-spacing: 0.22em; text-indent: 0.22em; } }
.reveal-late { opacity: 0; transform: translateY(14px); transition: opacity 0.45s ease, transform 0.45s ease; }
body.arrived .reveal-late { opacity: 1; transform: none; }
body.arrived .kicker { transition-delay: 0.05s; }
body.arrived .slogan { transition-delay: 0.36s; }
body.arrived .subline { transition-delay: 0.46s; }
body.arrived .cta { transition-delay: 0.52s; }
body.arrived .wordline { transition-delay: 0.6s; }
body.arrived .pub-top { transition-delay: 0.6s; }
body.arrived .scroll-hint { transition-delay: 0.85s; }
.pub-top { opacity: 0; transform: translateY(-8px); transition: opacity 0.5s ease, transform 0.5s ease; }
body.arrived .pub-top { opacity: 1; transform: none; }
/* The intro starts with the hero hidden. If the page's script never runs —
   blocked, or three.js failed to load — the hero appears on its own after a
   few seconds instead of leaving an empty screen. A normal arrival sets
   body.arrived long before then, which takes these rules away. */
@keyframes zv-failsafe { to { opacity: 1; transform: none; } }
body:not(.arrived) .logo-wrap,
body:not(.arrived) .headline .hl-word,
body:not(.arrived) .reveal-late,
body:not(.arrived) .pub-top { animation: zv-failsafe 0.6s ease 3.5s forwards; }
/* Once the page scrolls, the header gets a solid, blurred ground so the
   screens and copy passing beneath it never show through its links. */
.pub-top.is-scrolled {
  background: var(--bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
/* STAFF SIGN IN stays one line. On a phone the pill and the wordmark
   tighten to make room; on the narrowest phones the mark stands alone. */
.pub-signin { white-space: nowrap; }
@media (max-width: 440px) {
  .pub-signin { padding: 0 12px; font-size: 0.72rem; letter-spacing: 0.06em; }
  .pub-actions { gap: 8px; }
  .pub-lockup .pub-word { letter-spacing: 0.26em; }
}
@media (max-width: 380px) {
  .pub-lockup .pub-word { display: none; }
}

.cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.cta .btn { min-width: 220px; }

.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); }
.scroll-hint span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* --- the product, on screen ------------------------------------------------ */
.showcase, .tour {
  position: relative;
  z-index: 2;
  padding: 104px clamp(16px, 5vw, 60px) 24px;
  background: linear-gradient(180deg, var(--bg-veil-0), var(--bg-veil) 7%, var(--bg-veil));
}
.tour { padding-top: 72px; background: var(--bg-veil); }
.showcase-inner, .tour-inner { max-width: 1180px; margin: 0 auto; }

/* The composition: the roster on a desk, two phones leaning in from the right. */
.stage { position: relative; max-width: 1120px; margin: 8px auto 0; padding-bottom: 7%; }
.frame { margin: 0; }
.frame picture { display: block; }
.frame img { display: block; width: 100%; height: auto; }
.frame-browser {
  width: 84%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #17191c;
  box-shadow: var(--shadow), 0 50px 120px -50px var(--gold-glow);
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  background: linear-gradient(180deg, #26292e, #1c1e22);
  border-bottom: 1px solid rgba(255, 247, 230, 0.07);
}
.frame-bar span { width: 10px; height: 10px; border-radius: 50%; background: #3b3e44; }
.frame-bar span:nth-child(1) { background: #d9644f; }
.frame-bar span:nth-child(2) { background: #e0ab1c; }
.frame-bar span:nth-child(3) { background: #6d8a47; }
.frame-bar .frame-url {
  width: auto;
  height: 20px;
  flex: 0 1 300px;
  margin-left: 14px;
  padding: 0 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  background: rgba(255, 247, 230, 0.06);
  color: #a9a49e;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
}
.frame-phone {
  padding: 8px;
  border-radius: 34px;
  background: linear-gradient(155deg, #34373d, #121315 55%, #1f2125);
  border: 1px solid rgba(255, 247, 230, 0.16);
  box-shadow: 0 34px 80px -24px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(0, 0, 0, 0.55);
}
.frame-phone img { border-radius: 27px; }
.stage-phones {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  display: flex;
  align-items: flex-end;
  gap: 5%;
}
.stage-phones .frame-phone { flex: 1 1 0; min-width: 0; }
.stage-phones .frame-phone:first-child { margin-bottom: 6%; }
.shot-note {
  margin: 26px auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--faint);
}
@media (max-width: 1100px) {
  .stage { padding-bottom: 0; }
  .frame-browser { width: 100%; }
  .frame-bar { height: 26px; padding: 0 10px; gap: 5px; }
  .frame-bar span { width: 7px; height: 7px; }
  .frame-bar .frame-url { height: 15px; font-size: 0.58rem; margin-left: 8px; }
  .stage-phones {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 22px auto 0;
    padding: 0 4%;
  }
  .frame-phone { border-radius: 26px; padding: 6px; }
  .frame-phone img { border-radius: 21px; }
}
/* On a phone the two phones sit side by side as a swipeable row, each big
   enough to read, the second peeking in to show there is more. */
@media (max-width: 600px) {
  .stage-phones {
    max-width: none;
    width: auto;
    margin: 22px calc(-1 * clamp(16px, 5vw, 60px)) 0;
    padding: 0 clamp(16px, 5vw, 60px) 6px;
    gap: 14px;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .stage-phones::-webkit-scrollbar { display: none; }
  .stage-phones .frame-phone { flex: 0 0 74%; scroll-snap-align: center; }
  .stage-phones .frame-phone:first-child { margin-bottom: 0; }
}

/* One screen at a time: the picture beside what it shows. */
.tour-row {
  display: grid;
  gap: 30px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media (max-width: 1099px) { .tour-copy { max-width: 40rem; } }
@media (min-width: 1100px) {
  .tour-row { grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 60px; }
  .tour-row.flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr); }
  .tour-row.flip .tour-media { order: 2; }
}
.tour-media { position: relative; }
.tour-media::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--gold-glow), transparent);
  filter: blur(36px);
}
.tour-media .frame-browser { width: 100%; }
.tour-media.phone-media { display: flex; justify-content: center; }
.phone-media .frame-phone { width: min(290px, 72%); }
.frame-paper {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}
/* Scoped so the row's paragraph style below never reaches the eyebrow. */
.tour-copy .eyebrow {
  margin: 0 0 12px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.34em;
  text-align: left;
  text-indent: 0;
  color: var(--gold);
}
.tour-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}
.tour-copy p { margin: 0 0 20px; color: var(--text-2); font-size: 1.02rem; line-height: 1.65; text-wrap: pretty; }
.tour-copy h3, .platform-title { text-wrap: balance; }
.platform-lead { text-wrap: pretty; }
.tour-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tour-points li { display: flex; gap: 12px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.tour-points li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* Screens rise into place as they scroll into view. The class that hides
   them is added by the page's script, so without it they simply show. */
.rise-ready .rise {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.rise-ready .rise.on { opacity: 1; transform: none; }

/* --- the platform --------------------------------------------------------- */
.platform {
  position: relative;
  z-index: 2;
  padding: 96px clamp(16px, 5vw, 60px) 80px;
  /* Opaque from its first pixel: it now follows the tour, not the hero. */
  background: var(--bg-veil);
}
.platform-inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--gold);
}
.platform-title {
  text-align: center;
  font-size: clamp(1.8rem, 4.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text);
}
.platform-lead {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 52px;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.6;
  color: var(--text-2);
}
.pillars { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--card-shadow);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
/* Hidden only once the page's script is there to reveal them. */
.rise-ready .pillar { opacity: 0; transform: translateY(26px); }
.rise-ready .pillar.on { opacity: 1; transform: none; }
.pillar:hover { border-color: var(--gold-line); box-shadow: var(--card-shadow), 0 0 0 1px var(--gold-soft); }
.pillar:nth-child(2) { transition-delay: 0.06s; }
.pillar:nth-child(3) { transition-delay: 0.12s; }
.pillar:nth-child(4) { transition-delay: 0.18s; }
.p-ico {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  border-radius: 13px;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  margin-bottom: 16px;
}
.p-ico .ico-svg { width: 22px; height: 22px; }
.pillar h3 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: 0.01em; color: var(--text); }
.pillar p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.62; }

.flow { margin: 64px auto 0; max-width: 980px; }
.flow-title { text-align: center; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.34em; text-indent: 0.34em; color: var(--muted); margin: 0 0 22px; }
.flow-steps { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .flow-steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; } }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px;
  background: var(--panel);
}
.step-n {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  color: var(--on-gold);
  background: linear-gradient(180deg, #ffd452, var(--gold));
}
.step h4 { margin: 2px 0 4px; font-size: 0.98rem; color: var(--text); }
.step p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.step-arrow { display: none; align-self: center; color: var(--gold); font-size: 1.4rem; }
@media (min-width: 760px) { .step-arrow { display: block; } }

.trust {
  margin: 44px auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px;
}
.trust span {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--text-2);
  background: var(--panel);
}
.trust .ico-svg { width: 15px; height: 15px; color: var(--gold); }
.platform-cta { margin-top: 44px; }

.foot {
  position: relative;
  z-index: 2;
  padding: 44px 16px 38px;
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: var(--bg-veil);
  border-top: 1px solid var(--line);
}
.foot a { color: var(--text-2); text-decoration: none; }
.foot a:hover, .foot a:focus-visible { color: var(--gold); }
.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
}
.foot-dot { opacity: 0.5; }
@media (max-width: 700px) { .foot-dot { display: none; } .foot-row { gap: 8px 18px; } }
/* Who makes ZUVLON: ADCA, with a way back to its site. */
.maker { margin: 0 auto 26px; text-align: center; }
.maker-eyebrow {
  margin: 0 0 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--gold);
}
.foot .maker-name {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}
.maker-meta { margin: 8px 0 0; line-height: 1.7; }
.maker-note {
  max-width: 40rem;
  margin: 10px auto 0;
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
/* Wattle gold is too light for small text on the light ground: small gold
   labels and the quiet notes take darker, AA-contrast colours there. */
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .maker-eyebrow { color: #86650a; }
html[data-theme="light"] .shot-note,
html[data-theme="light"] .maker-meta,
html[data-theme="light"] .maker-note,
html[data-theme="light"] .foot-row { color: var(--muted); }
html[data-theme="light"] .slogan,
html[data-theme="light"] .wordline,
html[data-theme="light"] .pub-tag { color: #86650a; }
html[data-theme="light"] .headline .hl-gold { color: #a67c0f; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-wrap, .headline .hl-word, .reveal-late, .pillar, .pub-top, .slogan, .rise-ready .rise { transition: none; }
  .rise-ready .rise { transform: none; }
  .scroll-hint span::after { animation: none; }
}
