/* GemFlare marketing site — shares the app's palette, dark-first. */

:root {
  --bg: #0e1116; --panel: #1a1f27; --panel-2: #232a35;
  --text: #e8ecf1; --muted: #8b95a3;
  --accent: #26a5ff; --accent-2: #1b7fd4;
  --green: #2ecc71; --red: #e74c3c; --radius: 16px;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #f4f6f9; --panel: #ffffff; --panel-2: #e8edf3; --text: #16202b; --muted: #5c6773; }
}
/* Explicit themes (set by theme.js) override the OS preference.
   Three modes: Dark, Gray (dim), White. */
:root[data-theme="dark"] {
  --bg: #0e1116; --panel: #1a1f27; --panel-2: #232a35; --text: #e8ecf1; --muted: #8b95a3;
}
:root[data-theme="gray"] {
  --bg: #23262b; --panel: #2e3238; --panel-2: #3a3f46; --text: #e6e9ed; --muted: #a5adb8;
}
:root[data-theme="light"] {
  --bg: #f4f6f9; --panel: #ffffff; --panel-2: #e8edf3; --text: #16202b; --muted: #5c6773;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }
p { margin: 0 0 12px; }
a { color: var(--accent); text-decoration: none; }
svg { width: 26px; height: 26px; }

.btn {
  display: inline-block; padding: 10px 20px; border-radius: 12px;
  background: var(--panel-2); color: var(--text); font-weight: 600;
  transition: transform .15s ease, filter .2s ease;
}
.btn:hover { filter: brightness(1.1); }
.btn:active { transform: scale(.97); }
.btn.primary { background: var(--accent); color: #fff; }
.btn.big { padding: 16px 32px; font-size: 1.1rem; border-radius: 14px; }
.btn.ghost { background: transparent; color: var(--muted); border: 1px solid var(--panel-2); }
.theme-btn { min-width: 72px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- Nav --- */
.nav {
  display: flex; align-items: center; gap: 24px;
  max-width: 1080px; margin: 0 auto; padding: 18px 24px;
}
.brand { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.brand span { color: var(--accent); }
.nav-links { flex: 1; display: flex; gap: 20px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 640px) { .nav-links { display: none; } .nav { justify-content: space-between; } }

/* --- Hero --- */
.hero {
  max-width: 1080px; margin: 0 auto; padding: 48px 24px 72px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center;
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; padding-top: 24px; } }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--accent); }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 34em; }
.hero-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-note { color: var(--muted); font-size: .95rem; }

/* Store-style badges: Web is live, the app stores are honest "coming soon". */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px; min-height: 56px;
  border: 1px solid #ffffff1f; color: var(--text);
  transition: transform .15s ease, filter .2s ease;
}
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge small { font-size: .72rem; color: inherit; opacity: .75; }
.store-badge strong { font-size: 1.05rem; }
.store-badge.web { background: var(--accent); color: #fff; border-color: transparent; }
.store-badge.web:hover { filter: brightness(1.1); }
.store-badge.web:active { transform: scale(.97); }
.store-badge.soon { color: var(--muted); background: var(--panel); cursor: default; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone {
  width: 260px; aspect-ratio: 9 / 19; border-radius: 36px; padding: 10px;
  background: #05070a; box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px #ffffff14;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background: #101820;
}
.mock-remote {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 65% 30%, #2c74b155, transparent 55%),
    radial-gradient(circle at 30% 75%, #7c3aed33, transparent 60%),
    linear-gradient(160deg, #1d2b3a, #0b0e12);
}
.mock-top {
  position: absolute; left: 14px; right: 14px; top: 14px;
  display: flex; justify-content: space-between; color: #fff;
}
.mock-name { font-weight: 700; }
.mock-timer { color: #9fb0c0; font-size: .8rem; }
.mock-bars { display: flex; gap: 2px; align-items: flex-end; height: 14px; }
.mock-bars i { width: 4px; border-radius: 2px; background: var(--green); }
.mock-bars i:nth-child(1) { height: 5px; } .mock-bars i:nth-child(2) { height: 9px; } .mock-bars i:nth-child(3) { height: 13px; }
.mock-pip {
  position: absolute; right: 12px; top: 52px; width: 30%; aspect-ratio: 3/4; border-radius: 10px;
  background: linear-gradient(200deg, #3b5266, #141c24); box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.mock-controls {
  position: absolute; left: 0; right: 0; bottom: 18px;
  display: flex; justify-content: center; gap: 12px;
}
.mock-btn { width: 40px; height: 40px; border-radius: 50%; background: #ffffff2b; }
.mock-btn.red { background: var(--red); }

/* --- Sections --- */
.section { max-width: 1080px; margin: 0 auto; padding: 64px 24px; }
.section.alt { background: rgba(128, 138, 152, 0.08); background: color-mix(in srgb, var(--panel) 55%, transparent); }
.section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 32px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature {
  background: var(--panel); border-radius: var(--radius); padding: 24px;
  border: 1px solid #ffffff0d;
}
.feature h3 { font-size: 1.05rem; margin: 14px 0 8px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.f-icon {
  width: 46px; height: 46px; border-radius: 12px; color: var(--accent);
  background: rgba(38, 165, 255, 0.14); background: color-mix(in srgb, var(--accent) 14%, transparent);
  display: flex; align-items: center; justify-content: center;
}

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.steps li { background: var(--panel); border-radius: var(--radius); padding: 24px; border: 1px solid #ffffff0d; }
.step-n {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700;
  align-items: center; justify-content: center; margin-bottom: 12px;
}
.steps h3 { font-size: 1.05rem; }
.steps p { color: var(--muted); font-size: .95rem; margin: 0; }

/* --- Pricing --- */
.pricing-grid { max-width: 1000px; }
.price-tier .price { font-size: 2rem; font-weight: 800; margin: 4px 0 12px; }
.price-tier .price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-tier ul { margin: 0; padding-left: 20px; color: var(--muted); }
.price-tier li { margin-bottom: 6px; }
.price-tier.pro { border-color: var(--accent); }
.soon-tag {
  font-size: .7rem; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 20px; padding: 2px 10px;
  vertical-align: 3px; margin-left: 6px;
}

/* --- FAQ --- */
.faq { max-width: 720px; }
.faq details {
  background: var(--panel); border-radius: 12px; border: 1px solid #ffffff0d;
  padding: 4px 20px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: '+'; color: var(--muted); font-size: 1.3rem; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* --- CTA band + footer --- */
.cta-band {
  text-align: center; padding: 72px 24px;
  background:
    radial-gradient(circle at 50% 120%, rgba(38, 165, 255, 0.22), transparent 60%);
}
.cta-band h2 { margin-bottom: 24px; }
.footer {
  max-width: 1080px; margin: 0 auto; padding: 28px 24px 40px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); border-top: 1px solid #ffffff0d;
}
.footer nav { display: flex; gap: 20px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

/* --- Verification explainer (#verification) ---
   CSS-only stepper: :checked ~ sibling selectors drive four radios (steps)
   plus one checkbox (the hidden-number branch). No JS — see
   docs/superpowers/specs/2026-08-22-reverse-auth-explainer-design.md.

   Active/focus states deliberately avoid --accent as a text or outline
   colour: measured by hand, white-on-accent and accent-on-panel both drop
   under 3:1 in the light theme (this page's accent blue is tuned for the
   dark palette). The active tab, active-step contrast and focus ring below
   all use the --text/--bg pair instead, which measures 10.5:1 or better in
   every theme this page ships (dark, light, gray). --accent stays reserved
   for decorative, aria-hidden elements that carry no contrast requirement. */
.verify-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0 40px; }
@media (max-width: 640px) { .verify-contrast { grid-template-columns: 1fr; } }
.verify-contrast-panel { background: var(--panel); border-radius: var(--radius); padding: 20px 24px; border: 1px solid #ffffff0d; }
.verify-contrast-label { font-weight: 700; margin: 0 0 14px; }
.verify-flow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.verify-node { flex: none; font-size: .85rem; color: var(--muted); }
.verify-track { position: relative; flex: 1; height: 6px; border-radius: 999px; background: var(--panel-2); box-shadow: inset 0 0 0 1px #ffffff0a; }
/* The section's thesis in one glance: two labelled packets, running
   continuously, travelling the same way across the screen while their
   endpoint labels are reversed. Sized to be noticed — a 9px dot on a 2px
   hairline was technically animating and visually nothing. */
.verify-dot {
  position: absolute; top: 50%; left: 0; width: 54px; height: 22px; margin-top: -11px;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--accent); color: #04121f;
  font-size: .56rem; font-weight: 800; letter-spacing: .09em;
  box-shadow: 0 0 16px rgba(38, 165, 255, .55);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 55%, transparent);
  animation: verify-travel 1.9s cubic-bezier(.55, .06, .4, .95) infinite;
}
.verify-dot::after { content: 'CODE'; }
.verify-dot-b {
  background: var(--green); color: #04120a; animation-delay: .95s;
  box-shadow: 0 0 16px rgba(46, 204, 113, .55);
  box-shadow: 0 0 16px color-mix(in srgb, var(--green) 55%, transparent);
}
.verify-contrast-caption { margin: 0; color: var(--muted); font-size: .9rem; }

@keyframes verify-travel {
  0%, 8% { left: 0; opacity: 0; }
  20%, 80% { opacity: 1; }
  92%, 100% { left: calc(100% - 54px); opacity: 0; }
}

.verify-stepper { position: relative; background: var(--panel); border-radius: var(--radius); padding: 28px 28px 24px; border: 1px solid #ffffff0d; }

/* Visually hidden but NOT display:none/visibility:hidden — both would drop
   these inputs from the tab order and break keyboard access. Zero size and
   zero opacity keep them invisible while staying focusable, so a real
   <label for> sibling can carry the visible focus ring for them below. */
.verify-input { position: absolute; width: 0; height: 0; margin: 0; padding: 0; border: 0; opacity: 0; }

.verify-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.verify-tab {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none;
  padding: 9px 16px 9px 10px; border-radius: 999px; background: var(--panel-2); color: var(--muted);
  font-weight: 600; font-size: .92rem; transition: background .2s ease, color .2s ease;
}
/* Chip background is tied to --text/--bg, not the tab's own (--muted)
   ink colour: --muted only clears ~4.7-4.9:1 against --panel-2 to begin
   with, so tinting a chip with any real strength of --muted-on-itself
   drops the numeral under the 4.5:1 floor for 12px text in every theme.
   --text/--bg keeps a wide enough margin to stay AA at the same 18% mix
   the rest of the page's translucent chips use (see #verify-step-1
   below for the matching active-state override). */
.verify-tab-n {
  display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px;
  border-radius: 50%; font-size: .75rem; font-weight: 700;
  color: var(--text);
  background: rgba(232, 236, 241, .18);
  background: color-mix(in srgb, var(--text) 18%, transparent);
}
#verify-step-1:checked ~ .verify-tabs label[for="verify-step-1"],
#verify-step-2:checked ~ .verify-tabs label[for="verify-step-2"],
#verify-step-3:checked ~ .verify-tabs label[for="verify-step-3"],
#verify-step-4:checked ~ .verify-tabs label[for="verify-step-4"] {
  background: var(--text); color: var(--bg);
}
#verify-step-1:checked ~ .verify-tabs label[for="verify-step-1"] .verify-tab-n,
#verify-step-2:checked ~ .verify-tabs label[for="verify-step-2"] .verify-tab-n,
#verify-step-3:checked ~ .verify-tabs label[for="verify-step-3"] .verify-tab-n,
#verify-step-4:checked ~ .verify-tabs label[for="verify-step-4"] .verify-tab-n {
  color: var(--bg);
  background: rgba(14, 17, 22, .18);
  background: color-mix(in srgb, var(--bg) 18%, transparent);
}
#verify-step-1:focus-visible ~ .verify-tabs label[for="verify-step-1"],
#verify-step-2:focus-visible ~ .verify-tabs label[for="verify-step-2"],
#verify-step-3:focus-visible ~ .verify-tabs label[for="verify-step-3"],
#verify-step-4:focus-visible ~ .verify-tabs label[for="verify-step-4"],
#verify-branch:focus-visible ~ .verify-toggle {
  outline: 2px solid var(--text); outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(38, 165, 255, .25);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 25%, transparent);
}

.verify-stage { display: grid; }
/* visibility:hidden rides alongside opacity so an inactive panel drops out
   of the accessibility tree — without it, every branch's copy is read back
   to back by a linear screen-reader pass. It stays paired with opacity in
   the transition list (see the reduced-motion block at the end of this
   file) so the fade still animates: visibility flips to "visible" at the
   start of a fade-in and to "hidden" only at the end of a fade-out. The
   radio/checkbox INPUTS are separate elements from the panels they
   reveal, so hiding a panel this way never touches their own place in the
   tab order. */
.verify-panel {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.verify-panel h3 { font-size: 1.05rem; margin: 0 0 8px; }
.verify-panel p { margin: 0; color: var(--muted); }
#verification code {
  background: var(--panel-2); color: var(--text); border-radius: 6px; padding: 1px 6px;
  font: 600 .85em/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}
#verify-step-1:checked ~ .verify-stage [data-step="1"],
#verify-step-2:checked ~ .verify-stage [data-step="2"],
#verify-step-3:checked ~ #verify-branch:not(:checked) ~ .verify-stage [data-step="3"].verify-branch-a,
#verify-step-3:checked ~ #verify-branch:checked ~ .verify-stage [data-step="3"].verify-branch-b,
#verify-step-4:checked ~ #verify-branch:not(:checked) ~ .verify-stage [data-step="4"].verify-branch-a,
#verify-step-4:checked ~ #verify-branch:checked ~ .verify-stage [data-step="4"].verify-branch-b {
  position: relative; z-index: 1; opacity: 1; visibility: visible; transform: none; pointer-events: auto;
}

.verify-toggle { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; cursor: pointer; user-select: none; }
.verify-toggle-track {
  position: relative; flex: none; width: 40px; height: 22px; border-radius: 999px;
  background: var(--panel-2); border: 1px solid var(--muted); transition: border-color .2s ease;
}
.verify-toggle-thumb {
  position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--text); transition: transform .2s ease;
}
#verify-branch:checked ~ .verify-toggle .verify-toggle-track { border-color: var(--text); }
#verify-branch:checked ~ .verify-toggle .verify-toggle-thumb { transform: translateX(18px); }
.verify-toggle-text { color: var(--text); font-weight: 600; font-size: .95rem; }

.verify-note { margin-top: 20px; padding-top: 20px; border-top: 1px solid #ffffff0d; color: var(--muted); font-size: .92rem; }
.verify-note strong { color: var(--text); }

/* --- The mechanism, drawn -------------------------------------------------
   Three nodes and one packet. Which node is lit, and where the packet flies,
   are both driven by the same `:checked` radios that drive the panels — so
   the picture and the words can never disagree. Still no JavaScript.

   The packet animates `left` rather than `transform`: translateX percentages
   resolve against the ELEMENT's own width, not the rail's, so a transform
   cannot express "travel from the You node to the WhatsApp node" responsively.
   It is one 
   absolutely-positioned badge, so the reflow is confined and cheap. */
.verify-diagram { position: relative; margin: 4px 0 22px; padding: 18px 4px 26px; }
.vd-rail { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; }
.vd-node {
  display: grid; place-items: center; padding: 10px 14px; border-radius: 12px;
  background: var(--panel-2); color: var(--muted); font-size: .82rem; font-weight: 600;
  white-space: nowrap; transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.vd-wire { height: 2px; border-radius: 2px; background: #ffffff14; }
.vd-packet {
  position: absolute; top: 50%; left: 12%; width: 74px; margin: -34px 0 0 -37px;
  display: grid; place-items: center; height: 24px; border-radius: 999px;
  background: var(--accent); color: #04121f; font-size: .68rem; font-weight: 700;
  letter-spacing: .04em; opacity: 0; pointer-events: none;
}
.vd-packet-text::after { content: 'GEMF'; }

/* Which node is lit, per step. */
#verify-step-1:checked ~ .verify-diagram .vd-gf,
#verify-step-2:checked ~ .verify-diagram .vd-you,
#verify-step-3:checked ~ .verify-diagram .vd-wa,
#verify-step-4:checked ~ .verify-diagram .vd-gf {
  background: color-mix(in srgb, var(--accent) 22%, var(--panel-2));
  color: var(--text); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
}
/* Step 1 mints the code but sends nothing — the packet sits still at GemFlare. */
#verify-step-1:checked ~ .verify-diagram .vd-packet { left: 88%; opacity: 1; animation: vd-hold 2.4s ease-in-out infinite; }
/* Step 2: you send it. Step 3: WhatsApp passes it on, vouching for the sender. */
#verify-step-2:checked ~ .verify-diagram .vd-packet { animation: vd-you-wa 2.2s ease-in-out infinite; }
#verify-step-3:checked ~ .verify-diagram .vd-packet { animation: vd-wa-gf 2.2s ease-in-out infinite; }
/* Step 4, fast path: verified, nothing travels back. */
#verify-step-4:checked ~ .verify-diagram .vd-packet { left: 88%; opacity: 1; background: var(--green); color: #04120a; animation: vd-hold 2.4s ease-in-out infinite; }
#verify-step-4:checked ~ .verify-diagram .vd-packet .vd-packet-text::after { content: 'VERIFIED'; }
#verify-step-4:checked ~ .verify-diagram .vd-gf { background: color-mix(in srgb, var(--green) 22%, var(--panel-2)); box-shadow: 0 0 0 1px color-mix(in srgb, var(--green) 45%, transparent); }

/* Hidden-number branch: WhatsApp cannot say who you are, so step 4 reverses —
   the one leg of this design that does travel back to your phone. */
#verify-branch:checked ~ .verify-diagram .vd-wa .vd-glyph::after { content: ' ?'; color: var(--accent); }
#verify-step-4:checked ~ #verify-branch:checked ~ .verify-diagram .vd-packet { animation: vd-gf-you 2.4s ease-in-out infinite; }
#verify-step-4:checked ~ #verify-branch:checked ~ .verify-diagram .vd-packet { background: var(--accent); color: #04121f; }
#verify-step-4:checked ~ #verify-branch:checked ~ .verify-diagram .vd-packet .vd-packet-text::after { content: '6 DIGITS'; }
#verify-step-4:checked ~ #verify-branch:checked ~ .verify-diagram .vd-you { background: color-mix(in srgb, var(--accent) 22%, var(--panel-2)); color: var(--text); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent); }

@keyframes vd-hold { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes vd-you-wa { 0% { left: 12%; opacity: 0; } 12% { opacity: 1; } 82% { opacity: 1; } 100% { left: 50%; opacity: 0; } }
@keyframes vd-wa-gf { 0% { left: 50%; opacity: 0; } 12% { opacity: 1; } 82% { opacity: 1; } 100% { left: 88%; opacity: 0; } }
@keyframes vd-gf-you { 0% { left: 88%; opacity: 0; } 12% { opacity: 1; } 82% { opacity: 1; } 100% { left: 12%; opacity: 0; } }

@media (max-width: 620px) {
  .vd-node { padding: 8px 9px; font-size: .72rem; }
  .vd-packet { width: 62px; margin-left: -31px; font-size: .6rem; }
}

/* Explainer stepper, reduced motion: no travelling dots, panels swap
   instantly instead of sliding in. This has to live AFTER every .verify-*
   rule above — media queries add no specificity, so with equal-specificity
   selectors the rule that is later in the file wins regardless of the
   media query wrapping it. A duplicate of this block used to sit inside
   the very first @media (prefers-reduced-motion: reduce) block near the
   top of the file (before any of the rules it was meant to override), so
   source order buried it and it never actually applied. */
@media (prefers-reduced-motion: reduce) {
  .verify-dot { animation: none; }
  .verify-panel { transition: none; transform: none; }
  .verify-toggle-thumb { transition: none; }
  /* The diagram keeps its lit node and its packet — those carry the meaning —
     but the packet stops flying and simply rests at its destination. */
  .vd-packet { animation: none !important; opacity: 1; }
  .vd-node { transition: none; }
  #verify-step-2:checked ~ .verify-diagram .vd-packet { left: 50%; }
  #verify-step-3:checked ~ .verify-diagram .vd-packet { left: 88%; }
  #verify-step-4:checked ~ #verify-branch:checked ~ .verify-diagram .vd-packet { left: 12%; }
}

/* --- Privacy page --- */
.prose { max-width: 720px; margin: 0 auto; padding: 32px 24px 64px; }
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.2rem; margin-top: 32px; }
.prose p, .prose li { color: var(--muted); }
