/* Hallmark · macrostructure: Marquee Hero · fold: canvas flow field "ten thousand small gifts" · question below fold
 * genre: editorial · theme: custom · vibe: "dark field, streaming light, glowing beating heart"
 * paper: oklch(15% 0.02 320) · ink: oklch(93% 0.01 40) · accent: oklch(68% 0.15 15) · gold: oklch(80% 0.12 85)
 * display: Fraunces · body: Newsreader · axes: dark / roman-serif / warm (rose ~15°)
 * nav: N9 edge-aligned · footer: none · CTA: C3 typographic
 * enrichment: canvas particle system — heart-contour flow field (rose→gold), radial glow, lub-dub beat, intensifies on hover
 * motion: flow field · link-thicken (2 primitives)
 * contrast: pass (40–41) · slop: pass (42–45) · honest: pass (46) · chrome: pass (47)
 * tokens: pass (48) · responsive: pass (49) · icons: pass (30) · mobile: pass (34, 49, 50–57)
 * studied: no · context: inferred · Hallmark · pre-emit critique: P5 H5 E4 S5 R4 V5
 */

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; }
body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

/* film grain — light noise, screened over the dark field */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-raised);
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

::selection { background: var(--color-accent); color: var(--color-accent-ink); }

/* ---------- nav · N9 edge-aligned minimal ---------- */

.nav-edge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--page-gutter);
  position: relative;
  z-index: var(--z-base);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
}

.mark {
  height: 1.1em;
  width: auto;
  display: block;
  transform-origin: center;
  transition: transform var(--dur-short) var(--ease-out);
}
/* the heart grows and jiggles when you greet it */
.wordmark:hover .mark {
  transform: scale(1.28);
  animation: mark-jiggle 0.55s var(--ease-in-out) both;
}
@keyframes mark-jiggle {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.34) rotate(-8deg); }
  50%  { transform: scale(1.24) rotate(7deg); }
  75%  { transform: scale(1.3) rotate(-4deg); }
  100% { transform: scale(1.28) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .wordmark:hover .mark { animation: none; transform: scale(1.15); }
}

.nav-edge--solo { justify-content: flex-end; }

/* the wordmark at the nexus — breathing with the heart (--p: beat, --e: attention) */
.nexus {
  position: absolute;
  left: 50%;
  top: calc(47% - 50px);
  transform: translate(-50%, -50%) scale(calc(1 + var(--p, 0) * 0.055 + var(--e, 0) * 0.04));
  z-index: var(--z-base);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18em;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  user-select: none;
}
.nexus { cursor: pointer; }
.nexus--pop { --hov: 1; }
.nexus--pop .nexus__mark {
  animation: mark-jiggle 0.55s var(--ease-in-out) both;
  filter: drop-shadow(0 0 26px color-mix(in oklab, var(--gift-rose) 70%, transparent));
}
.nexus--pop .nexus__love {
  text-shadow:
    -1.5px 0 0 var(--color-ink), 1.5px 0 0 var(--color-ink),
    0 -1.5px 0 var(--color-ink), 0 1.5px 0 var(--color-ink),
    -1px -1px 0 var(--color-ink), 1px 1px 0 var(--color-ink),
    -1px 1px 0 var(--color-ink), 1px -1px 0 var(--color-ink),
    0 0 40px color-mix(in oklab, var(--gift-rose) 90%, transparent);
}
.nexus--pop .nexus__fund {
  text-shadow: 0 0 40px color-mix(in oklab, var(--color-ink-2) 80%, transparent);
}
/* the wordmark rides up beside the light-bars, tucked under the heart */
.nexus__word { margin-top: -50px; }

.nexus__mark {
  height: 2.1em;
  width: auto;
  display: block;
  transform-origin: center;
  transform-box: fill-box;
  filter: drop-shadow(0 0 14px color-mix(in oklab, var(--gift-rose) 45%, transparent));
}
.nexus__love {
  font-family: var(--font-love);
  font-weight: 600;
  color: var(--gift-rose);
  /* a light keyline lifts the rose word off the rose particles behind it */
  text-shadow:
    -1.5px 0 0 var(--color-ink), 1.5px 0 0 var(--color-ink),
    0 -1.5px 0 var(--color-ink), 0 1.5px 0 var(--color-ink),
    -1px -1px 0 var(--color-ink), 1px 1px 0 var(--color-ink),
    -1px 1px 0 var(--color-ink), 1px -1px 0 var(--color-ink),
    0 0 24px color-mix(in oklab, var(--gift-rose) 60%, transparent);
}
.nexus__dot {
  font-family: var(--font-fund);
  font-weight: 500;
  color: var(--color-ink-2);
  padding-inline: 0.04em;
}
.nexus__fund {
  font-family: var(--font-fund);
  font-weight: 600;
  font-size: 0.94em;
  letter-spacing: 0.02em;
  color: var(--color-ink-2);
  text-shadow: 0 0 24px color-mix(in oklab, var(--color-ink-2) 50%, transparent);
}
.nexus::before {
  content: "";
  position: absolute;
  inset: -55% -28%;
  z-index: -1;
  background: radial-gradient(closest-side,
    color-mix(in oklab, var(--gift-rose) 26%, transparent), transparent 72%);
  opacity: calc(0.45 + var(--p, 0) * 0.45 + var(--e, 0) * 0.3 + var(--hov, 0) * 0.25);
}

/* four light-bars — up, right, down, left — converging on the lockup,
   brightest where they near it. they breathe with the heartbeat. */
.nexus::after {
  content: "";
  position: absolute;
  left: calc(-1 * min(20.8vw, 273px));
  right: calc(-1 * min(20.8vw, 273px));
  top: calc(-1 * min(13vh, 150px));
  bottom: calc(-1 * min(13vh, 150px));
  z-index: -1;
  pointer-events: none;
  --nb-l: linear-gradient(90deg, transparent, color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%, var(--color-ink));
  --nb-ls: linear-gradient(90deg, transparent, color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%, color-mix(in oklab, var(--color-ink) 30%, transparent));
  --nb-r: linear-gradient(270deg, transparent, color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%, var(--color-ink));
  --nb-rs: linear-gradient(270deg, transparent, color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%, color-mix(in oklab, var(--color-ink) 30%, transparent));
  --nb-t: linear-gradient(180deg, transparent, color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%, var(--color-ink));
  --nb-ts: linear-gradient(180deg, transparent, color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%, color-mix(in oklab, var(--color-ink) 30%, transparent));
  --nb-b: linear-gradient(0deg, transparent, color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%, var(--color-ink));
  --nb-bs: linear-gradient(0deg, transparent, color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%, color-mix(in oklab, var(--color-ink) 30%, transparent));
  background-image: var(--nb-ls), var(--nb-l), var(--nb-rs), var(--nb-r),
                    var(--nb-ts), var(--nb-t), var(--nb-bs), var(--nb-b);
  background-position: left center, left center, right center, right center,
                       center top, center top, center bottom, center bottom;
  background-size: min(18.2vw, 240px) 9px, min(18.2vw, 240px) 3px,
                   min(18.2vw, 240px) 9px, min(18.2vw, 240px) 3px,
                   9px min(11vh, 125px), 3px min(11vh, 125px),
                   9px min(11vh, 125px), 3px min(11vh, 125px);
  background-repeat: no-repeat;
}
@media (max-width: 40rem) {
  .nexus::after { display: none; }
  .nexus__word { margin-top: 0; }   /* no bars to align with on small screens */
}

/* ---------- links · C3 typographic ---------- */

.link {
  font-family: var(--font-body);
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  white-space: nowrap;
  transition: text-decoration-thickness var(--dur-micro) var(--ease-out),
              color var(--dur-micro) var(--ease-out);
}
.link:hover { text-decoration-thickness: 3px; }
.link:active { color: var(--color-accent); }
.link:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- the fold · the painting ---------- */

.canvas {
  position: relative;
  height: 92svh;
  min-height: 34rem;
}

.canvas__art {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--field);
  z-index: 0;
}

/* ---------- the question · below the fold, centered ---------- */

.question {
  padding: var(--space-3xl) var(--page-gutter) var(--space-3xl);
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.hero__question {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-optical-sizing: auto;
  font-weight: 380;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 auto;
  overflow-wrap: anywhere;
  min-width: 0;
  max-width: 18ch;
}

.hero__question .loved {
  position: relative;
  white-space: nowrap;
}
/* hand-pulled underline beneath “love” — the page's one loud accent */
.hero__question .loved svg {
  position: absolute;
  left: -2%;
  bottom: -0.18em;
  width: 104%;
  height: 0.34em;
  overflow: visible;
  color: var(--color-accent);
  opacity: 0.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero__second {
  font-family: var(--font-display);
  font-size: var(--text-display-s);
  font-weight: 340;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-ink-2);
  margin: var(--space-lg) auto 0;
  max-width: 24ch;
  overflow-wrap: anywhere;
  min-width: 0;
}

.hero__breath {
  font-size: var(--text-md);
  color: var(--color-muted);
  margin: var(--space-xl) auto 0;
  max-width: 45ch;
}

.hero__cta {
  display: inline-block;
  margin-top: var(--space-xl);
  font-size: var(--text-lg);
}

/* ---------- brushstroke divider ---------- */

.brush {
  display: block;
  width: min(34rem, 72%);
  height: 1.1rem;
  margin: 0 auto;
  color: var(--gift-rose);
  opacity: 0.65;
}

/* ---------- the asking ---------- */

.ask {
  position: relative;
  padding: var(--space-3xl) var(--page-gutter) var(--space-4xl);
  max-width: 46rem;
  margin-inline: auto;
}

.ask__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 420;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
}

.ask__helper {
  color: var(--color-muted);
  margin: var(--space-md) 0 var(--space-xl);
  max-width: 46ch;
}

.ask__form { display: grid; gap: var(--space-lg); }

.ask__field {
  width: 100%;
  min-height: 9.5rem;
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.58;
  color: var(--color-ink);
  background: var(--color-paper-2);
  border: var(--rule-hairline);
  border-radius: var(--radius-soft) 1.4rem var(--radius-soft) 1.6rem / 1.5rem var(--radius-soft) 1.2rem var(--radius-soft);
  resize: vertical;
  transition: border-color var(--dur-short) var(--ease-out),
              background-color var(--dur-short) var(--ease-out);
}
.ask__field::placeholder { color: var(--color-muted); opacity: 1; }
.ask__field:hover { border-color: var(--color-muted); }
.ask__field:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-color: var(--color-accent);
  background: var(--color-paper);
}

.ask__send {
  justify-self: start;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-ink);
  background: none;
  border: 1px solid var(--color-ink-2);
  border-radius: 999px;
  padding: var(--space-sm) var(--space-lg);
  min-height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--dur-short) var(--ease-out),
              color var(--dur-short) var(--ease-out),
              transform 100ms var(--ease-out);
}
.ask__send:hover { background: var(--color-ink); color: var(--color-paper); }
.ask__send:active { transform: translateY(1px); }
.ask__send:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}
.ask__send:disabled {
  color: var(--color-muted);
  border-color: var(--color-rule);
  cursor: not-allowed;
  background: none;
  transform: none;
}

/* the acknowledgment — replaces the form once an answer exists */
.ask__ack[hidden] { display: none; }
.ask__ack { max-width: 46ch; }
.ask__ack-echo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 var(--space-lg);
  padding-left: var(--space-lg);
  border-left: 2px solid var(--gift-rose);
  overflow-wrap: anywhere;
}
.ask__ack-note { color: var(--color-ink-2); margin: 0 0 var(--space-lg); }
.ask__ack-keep { color: var(--color-muted); font-size: var(--text-base); margin: var(--space-md) 0 0; }

/* ---------- the laboratory ---------- */

.lab { padding-top: var(--space-3xl); }

/* the lockup — beaker above, split word below, same DNA as the nexus */
.lab__lockup {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22em;
  margin: 0 0 var(--space-lg);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}

.lab__beaker {
  height: 2.2em;
  width: auto;
  display: block;
  transform-origin: center;
  filter: drop-shadow(0 0 12px color-mix(in oklab, var(--gift-rose) 40%, transparent));
}
/* greet the beaker: it jiggles, glows, and the bubbles simmer */
.lab__lockup:hover .lab__beaker {
  animation: mark-jiggle 0.55s var(--ease-in-out) both;
  filter: drop-shadow(0 0 20px color-mix(in oklab, var(--gift-rose) 65%, transparent));
}
.lab__liquid { fill: color-mix(in oklab, var(--gift-rose) 22%, transparent); }
.lab__bub {
  transform-box: fill-box;
  transform-origin: center;
}
.lab__lockup:hover .lab__bub { animation: bub-rise 1.1s var(--ease-out) infinite; }
.lab__lockup:hover .lab__bub:nth-of-type(2) { animation-delay: 0.18s; }
.lab__lockup:hover .lab__bub:nth-of-type(3) { animation-delay: 0.36s; }
.lab__lockup:hover .lab__bub:nth-of-type(4) { animation-delay: 0.54s; }
@keyframes bub-rise {
  0%   { transform: translateY(0);      opacity: 1; }
  100% { transform: translateY(-2.6px); opacity: 0.15; }
}
@media (prefers-reduced-motion: reduce) {
  .lab__lockup:hover .lab__beaker,
  .lab__lockup:hover .lab__bub { animation: none; }
}

/* lab = love's voice · oratory = fund's voice */
.lab__lab {
  font-family: var(--font-love);
  font-weight: 600;
  color: var(--gift-rose);
  text-shadow: 0 0 24px color-mix(in oklab, var(--gift-rose) 55%, transparent);
}
.lab__oratory {
  font-family: var(--font-fund);
  font-weight: 600;
  font-size: 0.94em;
  letter-spacing: 0.02em;
  color: var(--color-ink-2);
  text-shadow: 0 0 24px color-mix(in oklab, var(--color-ink-2) 40%, transparent);
}

/* flanking light-bars, same treatment as the prompt above the toc */
.lab__word { position: relative; display: block; }
.lab__word::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * min(19vw, 230px));
  right: calc(-1 * min(19vw, 230px));
  pointer-events: none;
  z-index: -1;
  --lb-l: linear-gradient(90deg,
    transparent,
    color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%,
    var(--color-ink));
  --lb-ls: linear-gradient(90deg,
    transparent,
    color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%,
    color-mix(in oklab, var(--color-ink) 30%, transparent));
  --lb-r: linear-gradient(270deg,
    transparent,
    color-mix(in oklab, var(--gift-rose) 80%, transparent) 55%,
    var(--color-ink));
  --lb-rs: linear-gradient(270deg,
    transparent,
    color-mix(in oklab, var(--gift-rose) 26%, transparent) 55%,
    color-mix(in oklab, var(--color-ink) 30%, transparent));
  background-image: var(--lb-ls), var(--lb-l), var(--lb-rs), var(--lb-r);
  background-position: left center, left center, right center, right center;
  background-size: min(17vw, 210px) 9px, min(17vw, 210px) 3px, min(17vw, 210px) 9px, min(17vw, 210px) 3px;
  background-repeat: no-repeat;
}
@media (max-width: 40rem) {
  .lab__word::after { display: none; }
}

.lab__sub {
  text-align: center;
  text-wrap: balance;
  color: var(--color-muted);
  margin: 0 auto var(--space-xl);
  max-width: 44ch;
}

/* the experiment log — notebook rows, one per trial */
.lab__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lab__list > li { border-top: var(--rule-hairline); }
.lab__list > li:last-child { border-bottom: var(--rule-hairline); }

.exp {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) var(--space-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-short) var(--ease-out);
}
.exp__id {
  font-family: var(--font-fund);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}
.exp__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 460;
  line-height: 1.25;
  color: var(--color-ink);
}
.exp__tldr {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 58ch;
}
.exp__status {
  font-family: var(--font-fund);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1px solid var(--color-rule);
  border-radius: 999px;
  padding: 0.28em 0.85em;
  white-space: nowrap;
}
.exp__status--live {
  color: var(--gift-rose);
  border-color: color-mix(in oklab, var(--gift-rose) 55%, transparent);
  box-shadow: 0 0 14px color-mix(in oklab, var(--gift-rose) 18%, transparent);
}
.exp__arrow {
  color: var(--color-muted);
  font-size: var(--text-lg);
  transition: transform var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out);
}
a.exp:hover { transform: translateX(4px); }
a.exp:hover .exp__arrow { transform: translateX(4px); color: var(--color-accent); }
a.exp:hover .exp__title {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}
a.exp:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}
/* still-brewing rows sit quieter */
.exp--tba .exp__title { color: var(--color-ink-2); font-weight: 400; }
.exp--tba .exp__status { border-style: dashed; }

@media (max-width: 40rem) {
  .exp { grid-template-columns: auto minmax(0, 1fr); }
  .exp__status { grid-column: 2; justify-self: start; }
  .exp__arrow { display: none; }
}

/* ---------- exp-01 · the countdown ---------- */

.cd {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100svh - 14rem);
  padding: var(--space-xl) var(--page-gutter) var(--space-3xl);
  max-width: 62rem;
  margin-inline: auto;
}

.cd__tag {
  font-family: var(--font-fund);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 var(--space-lg);
}

.cd__mark {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--space-md);
}

.cd__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw + 0.6rem, 3.2rem);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
  text-wrap: balance;
  max-width: 16ch;
}

.cd__sub {
  color: var(--color-ink-2);
  text-wrap: balance;
  margin: var(--space-md) auto 0;
  max-width: 40ch;
}

/* the clock — fund's hard-edged digits, love beating between them */
.cd__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-sm), 2.5vw, var(--space-xl));
  margin-top: var(--space-2xl);
}
.cd__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  min-width: 4.2ch;
}
.cd__num {
  font-family: var(--font-fund);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--color-ink);
  text-shadow: 0 0 28px color-mix(in oklab, var(--gift-rose) 35%, transparent);
}
.cd__lbl {
  font-family: var(--font-fund);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.cd__sep {
  color: var(--gift-rose);
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  line-height: 1;
  padding-bottom: 1.6em;   /* optically centers on the digits, above the labels */
  animation: cd-beat 2.4s var(--ease-in-out) infinite;
  text-shadow: 0 0 16px color-mix(in oklab, var(--gift-rose) 60%, transparent);
}
/* lub-dub */
@keyframes cd-beat {
  0%, 26%, 100% { transform: scale(1); }
  6%            { transform: scale(1.35); }
  13%           { transform: scale(1); }
  19%           { transform: scale(1.2); }
}

.cd__date {
  font-family: var(--font-fund);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gift-rose);
  margin: var(--space-xl) 0 0;
}

.cd__ctas {
  margin: var(--space-xl) 0 0;
  line-height: 2.4;
}

@media (max-width: 40rem) {
  .cd__clock {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg) var(--space-xl);
    width: min(100%, 20rem);
  }
  .cd__sep { display: none; }
  .cd__ctas .link { white-space: normal; }
}

/* ---------- footer ---------- */

.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl) var(--page-gutter) var(--space-2xl);
  border-top: var(--rule-hairline);
}
.foot .link { font-size: var(--text-base); }
.foot__label {
  color: var(--color-muted);
  font-size: var(--text-base);
  margin-right: var(--space-sm);
}
.foot .link + .link { margin-left: var(--space-lg); }

/* ---------- responsive ---------- */

@media (max-width: 40rem) {
  body { font-size: var(--text-base); }
  .canvas { height: 80svh; min-height: 30rem; }
  .question { padding-block: var(--space-2xl); }
  .hero__second { margin-top: var(--space-md); }
  .ask__send { justify-self: stretch; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 150ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 150ms !important;
  }
}
