@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --hh-bg: #FDFAF6;
  --hh-surface: #FFFDFA;
  --hh-surface-muted: #F6EFE8;
  --hh-fg: #201914;
  --hh-fg-muted: #645C56;
  --hh-border: #E1D9D3;
  --hh-accent: #608A05;
  --hh-accent-text: #4A6B04;
  --hh-accent-fg: #FEFBF8;
  --hh-accent-soft: #E0EDD1;
  --hh-success: #3E8343;
  --hh-success-text: #2F6F35;
  --hh-success-soft: #DAEFDA;
  --hh-error: #C74A51;
  --hh-error-soft: #FFDFDE;
  --hh-font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hh-radius-sm: 8px;
  --hh-radius-md: 12px;
  --hh-radius-lg: 16px;
  --hh-radius-pill: 999px;
  --hh-logo-accent: #608A05;
  --hh-logo-accent-fg: #FEFBF8;
  --member-rose: #B4608A;
  --member-amber: #B36D2A;
  --member-teal: #009690;
  --member-indigo: #6C79C7;
  --member-moss: #688E3B;
  --member-clay: #BD615B;
  --header-bg: rgba(253, 250, 246, .82);
  --shadow-soft: 0 24px 70px rgba(65, 48, 33, .11);
  --shadow-card: 0 14px 34px rgba(65, 48, 33, .08);
  --grid-line: rgba(32, 25, 20, .055);
  --glow: rgba(96, 138, 5, .16);
  --ring: var(--hh-accent-text);
  --screen-bg: #FDFAF6;
  --ease: cubic-bezier(.22, .8, .26, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --max: 1240px;
  --gutter: max(28px, calc((100vw - var(--max)) / 2));

  /* Compatibility aliases for the unchanged privacy and 404 pages. */
  --m-terracotta: var(--member-clay);
  --m-gold: var(--member-amber);
  --m-olive: var(--member-moss);
  --m-sage: var(--member-moss);
  --m-teal: var(--member-teal);
  --m-blue: var(--member-indigo);
  --m-plum: var(--member-indigo);
  --m-rose: var(--member-rose);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --hh-bg: #1B1410;
    --hh-surface: #27201C;
    --hh-surface-muted: #312925;
    --hh-fg: #F4F1ED;
    --hh-fg-muted: #A9A39E;
    --hh-border: rgba(255, 255, 255, .12);
    --hh-accent: #7DA937;
    --hh-accent-text: #7DA937;
    --hh-accent-fg: #140B06;
    --hh-accent-soft: #2A3815;
    --hh-success: #60AD64;
    --hh-success-text: #68B96D;
    --hh-success-soft: #223A23;
    --hh-error: #F17074;
    --hh-error-soft: #492828;
    --hh-logo-accent: #7DA937;
    --hh-logo-accent-fg: #140B06;
    --member-rose: #BB6690;
    --member-amber: #BA7331;
    --member-teal: #009C96;
    --member-indigo: #727FCE;
    --member-moss: #6E9441;
    --member-clay: #C46761;
    --header-bg: rgba(27, 20, 16, .82);
    --shadow-soft: 0 28px 80px rgba(0, 0, 0, .34);
    --shadow-card: 0 16px 38px rgba(0, 0, 0, .24);
    --grid-line: rgba(255, 255, 255, .045);
    --glow: rgba(125, 169, 55, .18);
    --ring: var(--hh-accent-text);
    --screen-bg: #1B1410;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --hh-bg: #1B1410;
  --hh-surface: #27201C;
  --hh-surface-muted: #312925;
  --hh-fg: #F4F1ED;
  --hh-fg-muted: #A9A39E;
  --hh-border: rgba(255, 255, 255, .12);
  --hh-accent: #7DA937;
  --hh-accent-text: #7DA937;
  --hh-accent-fg: #140B06;
  --hh-accent-soft: #2A3815;
  --hh-success: #60AD64;
  --hh-success-text: #68B96D;
  --hh-success-soft: #223A23;
  --hh-error: #F17074;
  --hh-error-soft: #492828;
  --hh-logo-accent: #7DA937;
  --hh-logo-accent-fg: #140B06;
  --member-rose: #BB6690;
  --member-amber: #BA7331;
  --member-teal: #009C96;
  --member-indigo: #727FCE;
  --member-moss: #6E9441;
  --member-clay: #C46761;
  --header-bg: rgba(27, 20, 16, .82);
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, .34);
  --shadow-card: 0 16px 38px rgba(0, 0, 0, .24);
  --grid-line: rgba(255, 255, 255, .045);
  --glow: rgba(125, 169, 55, .18);
  --ring: var(--hh-accent-text);
  --screen-bg: #1B1410;
}

:root[data-theme="light"] { color-scheme: light; }

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

html {
  scroll-behavior: smooth;
  /* Clip bounds sideways paint without creating the scroll container that breaks sticky travel. */
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--hh-bg);
  color: var(--hh-fg);
  font-family: var(--hh-font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--hh-accent-soft); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; overflow-wrap: break-word; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  transform: translateY(-160%);
  border-radius: var(--hh-radius-sm);
  background: var(--hh-fg);
  color: var(--hh-bg);
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.anchor-alias {
  position: absolute;
  top: -88px;
  width: 1px;
  height: 1px;
}

.eyebrow, .story-kicker {
  margin-bottom: 17px;
  color: var(--hh-accent-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.section-heading h2,
.platforms h2,
.waitlist h2 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.platforms-copy h2 em { white-space: nowrap; }

h2 em {
  color: var(--hh-accent);
  font-style: normal;
}

.section-heading > p:last-child,
.lede {
  max-width: 650px;
  color: var(--hh-fg-muted);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--hh-accent-text);
  border-radius: var(--hh-radius-pill);
  background: var(--hh-accent-text);
  color: var(--hh-accent-fg);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 9px 24px color-mix(in srgb, var(--hh-accent) 24%, transparent);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px color-mix(in srgb, var(--hh-accent) 32%, transparent); }
.button span { transition: transform .22s var(--ease-out); }
.button:hover span { transform: translate(2px, -2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hh-fg);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}
.text-link span { color: var(--hh-accent); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--hh-border);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html:not(.js) .site-header {
  border-color: var(--hh-border);
  background: var(--header-bg);
}

.brand { width: 154px; min-width: 120px; text-decoration: none; }
.brand-lockup { width: 154px; height: auto; }
.brand-lockup-dark { display: none; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand-lockup-light { display: none; }
  :root:not([data-theme="light"]) .brand-lockup-dark { display: block; }
}
:root[data-theme="light"] .brand-lockup-light { display: block; }
:root[data-theme="light"] .brand-lockup-dark { display: none; }
:root[data-theme="dark"] .brand-lockup-light { display: none; }
:root[data-theme="dark"] .brand-lockup-dark { display: block; }

.site-nav { display: flex; gap: 30px; }
.site-nav a, .footer-links a {
  color: var(--hh-fg-muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover, .footer-links a:hover { color: var(--hh-fg); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--hh-border);
  border-radius: 50%;
  background: var(--hh-surface);
  color: var(--hh-fg);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.theme-toggle:hover { transform: rotate(8deg); background: var(--hh-surface-muted); }
.theme-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-moon { display: none; }
html:not(.js) .theme-toggle { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-sun { display: none; }
  :root:not([data-theme="light"]) .theme-moon { display: block; }
}
:root[data-theme="light"] .theme-sun { display: block; }
:root[data-theme="light"] .theme-moon { display: none; }
:root[data-theme="dark"] .theme-sun { display: none; }
:root[data-theme="dark"] .theme-moon { display: block; }

.hero {
  position: relative;
  overflow: clip;
  display: grid;
  grid-template-columns: minmax(420px, .83fr) minmax(520px, 1.17fr);
  grid-template-rows: auto auto;
  gap: 40px 50px;
  min-height: 960px;
  padding: 170px var(--gutter) 56px;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 66px 66px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--hh-bg) 0%, transparent 22%, transparent 78%, var(--hh-bg) 100%);
}

.hero-halo {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -7vw;
  width: min(72vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, color-mix(in srgb, var(--member-teal) 25%, transparent) 0 11%, transparent 34%),
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--member-rose) 23%, transparent) 0 9%, transparent 31%),
    radial-gradient(circle at 66% 70%, color-mix(in srgb, var(--member-indigo) 22%, transparent) 0 12%, transparent 36%),
    radial-gradient(circle, color-mix(in srgb, var(--hh-accent-soft) 92%, transparent) 0 38%, transparent 69%);
  filter: blur(10px);
}

.hero-copy, .hero-product, .week-ribbon { position: relative; z-index: 1; }
.hero-copy { align-self: center; padding-bottom: 34px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  padding: 7px 13px;
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-pill);
  background: color-mix(in srgb, var(--hh-surface) 82%, transparent);
  color: var(--hh-fg-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: var(--shadow-card);
}
.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--hh-success); box-shadow: 0 0 0 5px var(--hh-success-soft); }

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(60px, 6.6vw, 100px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .9;
}
h1 span {
  color: var(--hh-accent);
  background: linear-gradient(105deg, var(--hh-accent) 3%, var(--member-teal) 48%, var(--member-indigo) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--hh-fg-muted);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.45;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.hero-note { margin: 19px 0 0; color: var(--hh-fg-muted); font-size: 13px; font-weight: 700; }

.hero-product { align-self: center; min-height: 590px; perspective: 1400px; }

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-lg);
  background: var(--hh-surface);
  box-shadow: var(--shadow-soft);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 13px;
  border-bottom: 1px solid var(--hh-border);
  background: var(--hh-surface-muted);
}
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--hh-border); }
.browser-bar i:first-child { background: var(--member-clay); }
.browser-bar i:nth-child(2) { background: var(--member-amber); }
.browser-bar i:nth-child(3) { background: var(--member-moss); }
.browser-bar span { margin-left: auto; color: var(--hh-fg-muted); font-size: 10px; font-weight: 800; }

.hero-browser {
  position: absolute;
  z-index: 1;
  top: 45px;
  left: 0;
  width: 94%;
  transform: rotateY(-7deg) rotateZ(1.7deg);
}
.hero-browser img { width: 100%; }

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 5px solid #11100F;
  border-radius: 36px;
  background: #1B1715;
  box-shadow: var(--shadow-soft);
}
.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 30%;
  height: 15px;
  transform: translateX(-50%);
  border-radius: var(--hh-radius-pill);
  background: #11100F;
}
.phone-frame img { width: 100%; }
.hero-phone {
  position: absolute;
  z-index: 3;
  right: -5px;
  bottom: 0;
  width: 224px;
  transform: rotate(2.4deg);
}

.live-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-md);
  background: color-mix(in srgb, var(--hh-surface) 92%, transparent);
  color: var(--hh-fg);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.live-chip b { margin-left: 7px; color: var(--hh-fg-muted); font-size: 10px; letter-spacing: .06em; }
.live-chip-one { top: 13px; right: 2%; }
.live-chip-two { left: 5%; bottom: 8%; }

.member-dot { display: inline-block; flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; }
.member-dot.rose { background: var(--member-rose); }
.member-dot.amber { background: var(--member-amber); }
.member-dot.teal { background: var(--member-teal); }
.member-dot.indigo { background: var(--member-indigo); }
.member-dot.moss { background: var(--member-moss); }
.member-dot.clay { background: var(--member-clay); }

.week-ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px;
  align-items: stretch;
  padding-top: 20px;
  border-top: 1px solid var(--hh-border);
}
.week-intro { display: flex; flex-direction: column; justify-content: center; padding: 0 18px; }
.week-intro span { color: var(--hh-accent-text); font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.week-intro b { font-size: 15px; }
.week-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.day-card {
  min-width: 0;
  padding: 13px 12px 12px;
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-md);
  background: color-mix(in srgb, var(--hh-surface) 84%, transparent);
  transition: transform .2s ease, border-color .2s ease;
}
.day-card:nth-child(1) { border-top: 4px solid var(--member-teal); }
.day-card:nth-child(2) { border-top: 4px solid var(--member-rose); }
.day-card:nth-child(3) { border-top: 4px solid var(--member-indigo); }
.day-card:nth-child(4) { border-top: 4px solid var(--member-amber); }
.day-card:nth-child(5) { border-top: 4px solid var(--member-moss); }
.day-card:nth-child(6) { border-top: 4px solid var(--member-clay); }
.day-card:hover { transform: translateY(-4px); border-color: var(--hh-accent); }
.day-card.is-today { background: var(--hh-accent-soft); border-color: color-mix(in srgb, var(--hh-accent) 38%, var(--hh-border)); }
.day-card small { display: block; color: var(--hh-fg-muted); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.day-card strong { display: block; margin: -2px 0 7px; font-size: 25px; line-height: 1.1; }
.day-card p { display: flex; align-items: center; gap: 6px; overflow: hidden; color: var(--hh-fg-muted); font-size: 11px; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; }
.day-card .member-dot { width: 7px; height: 7px; }

.walkthrough {
  position: relative;
  padding: 150px var(--gutter) 100px;
  background:
    radial-gradient(circle at 92% 42%, color-mix(in srgb, var(--member-indigo) 11%, transparent) 0 9%, transparent 25%),
    radial-gradient(circle at 7% 72%, color-mix(in srgb, var(--member-teal) 10%, transparent) 0 8%, transparent 23%);
}

.story-layout {
  position: relative;
  display: grid;
  grid-template-columns: 3px minmax(350px, .78fr) minmax(530px, 1.22fr);
  gap: 0 58px;
  align-items: start;
}

.story-rail {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--hh-border);
}
.story-rail::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -5px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--hh-bg);
  border-radius: 50%;
  background: var(--hh-accent);
}
.story-rail span {
  display: block;
  width: 100%;
  height: var(--story-progress, 0%);
  border-radius: inherit;
  background: var(--hh-accent);
  transition: height .35s ease;
}

.story-copy { grid-column: 2; grid-row: 1; }
.story-step {
  min-height: 620px;
  padding: 4px 0 100px;
}
.story-step:nth-child(1) { --chapter: var(--member-teal); }
.story-step:nth-child(2) { --chapter: var(--member-amber); }
.story-step:nth-child(3) { --chapter: var(--member-rose); }
.story-step:nth-child(4) { --chapter: var(--member-indigo); }
.story-step:last-child { min-height: 520px; padding-bottom: 20px; }

.story-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border-radius: 14px;
  background: var(--hh-accent-soft);
  color: var(--hh-accent);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.story-icon svg { width: 25px; height: 25px; }
.story-step.is-active .story-icon {
  transform: rotate(-5deg) scale(1.12);
  background: color-mix(in srgb, var(--chapter) 24%, var(--hh-surface));
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--chapter) 10%, transparent);
}

.story-step h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.2vw, 40px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
}
.story-step > p:not(.story-kicker) { max-width: 46ch; color: var(--hh-fg-muted); font-size: 17px; }
.feature-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-points li { padding: 8px 12px; border-radius: var(--hh-radius-pill); background: var(--hh-surface-muted); color: var(--hh-fg-muted); font-size: 12px; font-weight: 800; }
.feature-points li::before { content: "✓"; margin-right: 6px; color: var(--hh-success); font-weight: 900; }
.step-preview { display: none; margin: 32px 0 0; overflow: hidden; border: 1px solid var(--hh-border); border-radius: var(--hh-radius-lg); box-shadow: var(--shadow-card); }

.story-stage {
  position: sticky;
  top: 118px;
  grid-column: 3;
  grid-row: 1;
}
.stage-browser {
  transform: rotate(1deg);
  border-color: color-mix(in srgb, var(--hh-accent) 45%, var(--hh-border));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22), 18px 18px 0 color-mix(in srgb, var(--hh-accent-soft) 78%, transparent);
  transition: transform .35s var(--ease);
}
.stage-browser:hover { transform: translateY(-5px) rotate(.2deg); }
.stage-image-wrap { aspect-ratio: 1200 / 843; overflow: hidden; background: var(--screen-bg); }
.stage-image-wrap picture, .stage-image-wrap img { width: 100%; height: 100%; }
.stage-image-wrap img { object-fit: cover; }
.stage-caption { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 17px 6px 0; color: var(--hh-fg-muted); }
.stage-caption span { font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.stage-caption p { color: var(--hh-fg); font-size: 13px; font-weight: 900; }
.stage-caption b { padding: 6px 10px; border-radius: var(--hh-radius-pill); background: var(--hh-success-soft); color: var(--hh-success-text); font-size: 10px; letter-spacing: .06em; }

.quiet-parts, .founders {
  position: relative;
  padding: 120px var(--gutter);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--hh-border);
  border-radius: 20px;
  background: var(--hh-surface);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
}
.content-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), var(--glow), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.content-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--hh-accent) 40%, var(--hh-border)); box-shadow: var(--shadow-soft); }
.content-card:hover::after { opacity: 1; }
.card-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--hh-accent-soft); color: var(--hh-accent); transition: transform .5s var(--ease-out); }
.card-icon svg { width: 26px; height: 26px; fill: currentColor; }
.content-card:hover .card-icon { transform: translateY(-3px) rotate(-4deg); }
.content-card h3 { font-size: 22px; font-weight: 900; line-height: 1.05; }
.content-card p { color: var(--hh-fg-muted); font-size: 17px; }
.swatches { display: flex; gap: 6px; margin-top: 4px; }
.swatches i { width: 18px; height: 18px; border-radius: 50%; background: var(--c); transition: transform .4s var(--ease-out); }
.content-card:hover .swatches i { transform: translateY(-3px); }
.content-card:hover .swatches i:nth-child(2n) { transition-delay: .05s; }
.content-card:hover .swatches i:nth-child(3n) { transition-delay: .1s; }

.platforms {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: 120px var(--gutter);
  background: linear-gradient(180deg, transparent, var(--hh-surface) 20%, var(--hh-surface) 80%, transparent);
}
.platforms-copy { display: grid; gap: 18px; }
.platforms-copy .eyebrow, .platforms-copy h2 { margin-bottom: 0; }
.platforms-copy .lede { font-size: 19px; }
.platform-list { display: grid; gap: 0; margin: 10px 0 0; padding: 0; border-top: 1px solid var(--hh-border); list-style: none; }
.platform-list li { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--hh-border); color: var(--hh-fg-muted); font-size: 17px; }
.platform-key { color: var(--hh-fg); font-weight: 800; }
.platforms-stage { position: relative; padding: 0 30px 50px 0; }
.platform-browser { width: 100%; transform-style: preserve-3d; transition: transform .5s var(--ease-out); }
.platform-browser picture, .platform-browser img { width: 100%; }
.platform-phone { position: absolute; right: -10px; bottom: 0; width: min(30%, 168px); margin: 0; rotate: -5deg; }
.platform-phone img { border-radius: 26px; }

.founders .section-heading { max-width: 760px; }
.people { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: end; }
.person {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--hh-border);
  border-radius: 22px;
  background: var(--hh-surface);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.person-photo { overflow: hidden; aspect-ratio: 1; margin-bottom: 10px; border-radius: 16px; background: var(--hh-surface-muted); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.person:hover .person-photo img { transform: scale(1.04); }
.person h3 { font-size: 22px; font-weight: 900; line-height: 1.05; }
.person-role { position: relative; width: max-content; color: var(--hh-accent-text); font-size: 15px; font-weight: 800; }
.person-role::after { content: ""; position: absolute; right: 0; bottom: -2px; left: 0; height: 2px; background: var(--hh-accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.person:hover .person-role::after { transform: scaleX(1); }
.person p:not(.person-role) { color: var(--hh-fg-muted); font-size: 17px; }
.person-link { width: max-content; margin-top: 6px; border-bottom: 2px solid var(--hh-border); color: var(--hh-fg); font-size: 15px; font-weight: 800; text-decoration: none; transition: border-color .2s; }
.person-link:hover { border-color: var(--hh-accent); }
.person-link-muted { border-color: transparent; color: var(--hh-fg-muted); }
.person-archer { transform: rotate(-1.5deg) scale(.96); transform-origin: bottom center; }
.person-archer:hover { transform: rotate(0deg) scale(.98) translateY(-4px); }

.waitlist {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(380px, 35vw, 420px);
  margin: 0 18px 18px;
  padding: 64px 28px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--hh-accent-soft);
  text-align: center;
}
.waitlist::before, .waitlist::after { content: ""; position: absolute; width: 560px; aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--hh-accent) 30%, transparent); border-radius: 50%; }
.waitlist::before { top: -390px; left: -140px; }
.waitlist::after { right: -280px; bottom: -420px; }
.waitlist-content { position: relative; z-index: 2; max-width: 920px; }
.waitlist .eyebrow { margin-bottom: 10px; }
.waitlist h2 { margin-bottom: 12px; font-size: clamp(44px, 4.5vw, 56px); line-height: .98; }
.waitlist-content > p:not(.eyebrow, .waitlist-email) { max-width: 760px; margin: 0 auto 12px; color: var(--hh-fg-muted); font-size: 17px; line-height: 1.45; }
.button-inverse { min-height: 50px; background: var(--hh-fg); border-color: var(--hh-fg); color: var(--hh-bg); box-shadow: none; }
.waitlist-email { margin: 10px 0 0; color: var(--hh-fg-muted); font-size: 13px; }
.waitlist-email a { font-weight: 900; text-underline-offset: 3px; }
.waitlist-orbit { position: absolute; z-index: 1; inset: 0; }
.waitlist-orbit i { position: absolute; width: 12px; height: 12px; border-radius: 50%; animation: orbitDrift 6s var(--ease) infinite alternate; }
.waitlist-orbit i:nth-child(1) { top: 18%; left: 14%; background: var(--member-rose); }
.waitlist-orbit i:nth-child(2) { top: 23%; right: 17%; background: var(--member-teal); animation-delay: -.9s; }
.waitlist-orbit i:nth-child(3) { bottom: 19%; left: 22%; background: var(--member-indigo); animation-delay: -1.8s; }
.waitlist-orbit i:nth-child(4) { right: 12%; bottom: 24%; background: var(--member-amber); animation-delay: -2.7s; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 50px;
  padding: 70px var(--gutter) 32px;
  background: var(--hh-bg);
}
.footer-brand p { margin: 10px 0 0; color: var(--hh-fg-muted); font-size: 13px; }
.footer-company { display: flex; flex-direction: column; color: var(--hh-fg-muted); font-size: 13px; }
.footer-company strong { color: var(--hh-fg); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 23px; }
.footer-meta { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 24px; border-top: 1px solid var(--hh-border); color: var(--hh-fg-muted); font-size: 11px; }

.reveal-js [data-reveal],
.reveal-js .story-step {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .8s var(--ease) var(--d, 0s), translate .9s var(--ease-out) var(--d, 0s);
}
.reveal-js [data-reveal].is-visible { opacity: 1; translate: none; }
.reveal-js .story-step.is-visible { opacity: 1; translate: none; }

html:not(.reveal-js) .story-stage,
.story-fallback .story-stage { display: none; }
html:not(.reveal-js) .story-layout,
.story-fallback .story-layout { grid-template-columns: minmax(0, 820px); }
html:not(.reveal-js) .story-copy,
.story-fallback .story-copy { grid-column: 1; }
html:not(.reveal-js) .story-rail,
.story-fallback .story-rail { display: none; }
html:not(.reveal-js) .story-step,
.story-fallback .story-step { min-height: 0; padding: 0 0 90px; opacity: 1; translate: none; }
html:not(.reveal-js) .step-preview,
.story-fallback .step-preview { display: block; }

@keyframes floatSlow {
  0%, 100% { transform: rotateY(-7deg) rotateZ(1.7deg) translateY(0); }
  50% { transform: rotateY(-7deg) rotateZ(1.7deg) translateY(-8px); }
}
@keyframes floatFast {
  0%, 100% { transform: rotate(2.4deg) translateY(0); }
  50% { transform: rotate(1.8deg) translateY(-11px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--hh-success-soft); }
  50% { box-shadow: 0 0 0 9px transparent; }
}
@keyframes orbitDrift {
  from { transform: translate3d(-5px, 4px, 0) scale(.9); }
  to { transform: translate3d(7px, -6px, 0) scale(1.12); }
}
@keyframes heroArrive {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.js [data-float="slow"] { animation: floatSlow 7s ease-in-out infinite; }
.js [data-float="fast"] { animation: floatFast 5.5s ease-in-out infinite; }
.js .status-pill span { animation: pulse 2.8s ease-in-out infinite; }
.js .hero-copy { animation: heroArrive .75s var(--ease) both; }
.js .hero-product { animation: heroArrive .9s .12s var(--ease) both; }
.js .week-ribbon { animation: heroArrive .8s .28s var(--ease) both; }

@media (min-width: 821px) {
  .platforms-copy h2 {
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.04;
  }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: .83fr 1.17fr; min-height: 860px; padding-top: 145px; }
  .hero-product { min-height: 500px; }
  .hero-phone { width: 190px; }
  .story-layout { grid-template-columns: 3px minmax(0, .8fr) minmax(0, 1.2fr); gap: 0 38px; }
}

@media (max-width: 900px) {
  .quiet-parts, .founders, .platforms { padding-block: 96px; }
  .cards { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr 1fr; }
  .person-archer { grid-column: 1 / -1; width: 100%; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; padding-inline: 20px; }
  .brand, .brand-lockup { width: 132px; }
  .header-actions .button { display: none; }
  .hero { display: block; min-height: 0; padding: 130px 20px 48px; }
  .hero-copy { padding: 0; }
  h1 { font-size: clamp(56px, 16vw, 82px); }
  .hero-product { min-height: 520px; margin-top: 46px; }
  .hero-browser { top: 24px; width: 96%; }
  .hero-phone { right: 4%; width: 190px; }
  .live-chip-two { left: 2%; }
  .week-ribbon { grid-template-columns: 1fr; margin-top: 42px; overflow: hidden; }
  .week-intro { padding: 0 0 10px; }
  .week-track { grid-template-columns: repeat(6, 145px); overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
  .week-track::-webkit-scrollbar { display: none; }
  .walkthrough { padding: 100px 20px 80px; }
  .section-heading { margin-bottom: 62px; }
  .story-layout { display: block; }
  .story-rail, .story-stage { display: none; }
  .story-step, .story-step:last-child { position: relative; min-height: 0; padding: 0 0 90px 36px; border-left: 2px solid var(--hh-border); }
  .story-step::before { content: ""; position: absolute; width: 10px; height: 10px; margin: 19px 0 0 -42px; border: 4px solid var(--hh-bg); border-radius: 50%; background: var(--hh-accent); box-sizing: content-box; }
  .story-step h3 { font-size: 33px; }
  .story-icon { margin-bottom: 25px; }
  .step-preview { display: block; }
  .platforms { grid-template-columns: minmax(0, 1fr); padding-inline: 20px; }
  .platforms-stage { padding: 0 0 70px; }
  .platform-phone { right: -4px; bottom: -20px; width: 104px; }
  .founders, .quiet-parts { padding-inline: 20px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .footer-links { justify-content: flex-end; }
  .footer-company { grid-row: 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .theme-toggle { width: 38px; height: 38px; }
  .status-pill { margin-bottom: 24px; }
  h1 { letter-spacing: -.06em; }
  .hero-lede { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-product { min-height: 410px; margin-top: 40px; }
  .hero-browser { top: 30px; left: -22px; width: 108%; }
  .hero-phone { right: -5px; width: 145px; border-width: 4px; border-radius: 27px; }
  .phone-speaker { top: 7px; height: 11px; }
  .live-chip { padding: 8px 10px; font-size: 10px; }
  .live-chip-one { top: 2px; right: -8px; }
  .live-chip-two { bottom: 5%; left: 0; }
  .section-heading h2, .platforms h2, .waitlist h2 { font-size: 44px; }
  .platforms-copy h2 em { white-space: normal; }
  .section-heading > p:last-child, .lede { font-size: 17px; }
  .story-step { padding-left: 26px; }
  .story-step::before { margin-left: -32px; }
  .step-preview { margin-left: -26px; border-radius: 12px; }
  .platform-list li { grid-template-columns: 72px 1fr; gap: 12px; font-size: 16px; }
  .people { grid-template-columns: 1fr; }
  .person-archer { grid-column: auto; }
  .waitlist { margin: 0 10px 10px; padding: 48px 18px; border-radius: 24px; }
  .waitlist .eyebrow { margin-bottom: 8px; }
  .waitlist h2 br { display: none; }
  .waitlist-orbit { display: none; }
  .waitlist-content > p:not(.eyebrow, .waitlist-email) { font-size: 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding-top: 55px; }
  .footer-company { grid-row: auto; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { grid-column: 1; }
}

@media (max-width: 390px) {
  h1 { font-size: 54px; }
  .hero { padding-inline: 18px; }
  .hero-product { min-height: 380px; }
  .live-chip-one { right: -14px; }
  .section-heading h2, .platforms h2 { font-size: 42px; }
  .platform-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal-js [data-reveal], .reveal-js .story-step { opacity: 1; translate: none; }
  .reveal-js .story-step.is-visible { opacity: 1; }
  .story-step.is-active .story-icon { transform: none; }
  .stage-browser:hover, .content-card:hover { transform: none; }
  .person:hover { transform: none; }
  .person-archer, .person-archer:hover { transform: rotate(-1.5deg) scale(.96); }
  .content-card:hover .card-icon, .content-card:hover .swatches i, .person:hover .person-photo img { transform: none; }
  .waitlist-orbit i { animation: none; }
}

/* Compatibility styles for privacy.html and 404.html, which remain unchanged. */
.wrap { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
body > main.wrap { padding-top: 78px; }
.site-header:has(> .wrap) { grid-template-columns: 1fr; border-color: var(--hh-border); background: var(--header-bg); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.site-header > .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header > .wrap > a { min-width: 120px; }
.site-header > .wrap .logo-icon { display: none; }
.site-header > .wrap nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-header > .wrap nav a { color: var(--hh-fg); font-size: 15px; font-weight: 700; text-decoration: none; }
main.wrap h1 { max-width: none; font-size: clamp(44px, 6vw, 72px); letter-spacing: -.04em; line-height: 1; }
main.wrap h2 { margin: 1.7em 0 .5em; font-size: 30px; font-weight: 900; line-height: 1.1; }
main.wrap p, main.wrap li { color: var(--hh-fg-muted); }
main.wrap a { color: var(--hh-accent-text); }
.policy-note { max-width: 720px; margin: 20px 0 0; padding: 14px 18px; border: 1px solid var(--hh-border); border-left: 4px solid var(--hh-accent); border-radius: var(--hh-radius-sm); background: var(--hh-accent-soft); font-size: 15px; }
.policy-note p { margin: 0; }
.btn { display: inline-flex; padding: 12px 22px; border: 1px solid var(--hh-border); border-radius: var(--hh-radius-sm); color: var(--hh-fg); font-weight: 800; text-decoration: none; }
.btn-primary { border-color: var(--hh-accent-text); background: var(--hh-accent-text); color: var(--hh-accent-fg) !important; }
.week-strip { display: flex; gap: 6px; height: 16px; margin: 40px 0 0; }
.week-strip span { flex: 1 1 auto; border-radius: var(--hh-radius-pill); }
.footer-mark { display: block; margin-bottom: 12px; color: var(--hh-logo-accent); }
.site-footer:has(> .wrap) { display: block; border-top: 1px solid var(--hh-border); }
.site-footer > .wrap { color: var(--hh-fg-muted); font-size: 14px; }
.site-footer > .wrap p { margin: 0 0 1em; }
.site-footer > .wrap a { color: var(--hh-accent-text); }

@media (max-width: 820px) {
  .site-header > .wrap nav { display: none; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 36px, 1120px); }
  main.wrap h1 { font-size: 44px; }
}
