/* =========================================================================
   HVNEY — public site (polished)
   Direction: cinematic void + honey. Tokens mirror /brand/tokens.css.
   ========================================================================= */

:root {
  --hv-void: #0A0A0B;
  --hv-void-2: #111114;
  --hv-comb: #16161B;
  --hv-comb-line: #24242C;
  --hv-honey: #F5A623;
  --hv-honey-bright: #FFC94D;
  --hv-ember: #E26705;
  --hv-bronze: #7A3B0F;
  --hv-pollen: #FFE8A3;
  --hv-wax: #F8EDDC;
  --hv-wax-dim: #B9B2A3;
  --hv-wax-faint: #6E6A62;
  --hv-alert: #FF5C5C;

  --hv-font-display: "Space Grotesk", system-ui, sans-serif;
  --hv-font-serif: "Fraunces", Georgia, serif;
  --hv-font-body: "Inter", system-ui, sans-serif;
  --hv-font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --hv-ease: cubic-bezier(.22, 1, .36, 1);
  --hv-radius: 14px;
  --hv-radius-pill: 999px;
  --maxw: 1180px;
  --nav-h: 4.25rem;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
}

/* ----- reset / base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + .75rem) }
body {
  background: var(--hv-void);
  color: var(--hv-wax);
  font-family: var(--hv-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto }
a { color: inherit }
button, input { font: inherit }
::selection {
  background: rgba(245,166,35,.28);
  color: var(--hv-wax);
}
:focus-visible {
  outline: 2px solid var(--hv-honey);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----- type ------------------------------------------------------------ */
.honey {
  background: linear-gradient(135deg, var(--hv-honey-bright), var(--hv-honey) 55%, var(--hv-ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.honey-inline { color: var(--hv-honey); font-weight: 600 }
.honey-soft { color: var(--hv-wax-dim); font-weight: 500 }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--hv-font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hv-honey);
  margin-bottom: 1.35rem;
}
.eyebrow__rule {
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--hv-honey), transparent);
}
h2 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 760px }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 3.75rem) }
.section-head__lede {
  margin-top: 1.15rem;
  color: var(--hv-wax-dim);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  max-width: 34rem;
}

/* ----- buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: var(--hv-radius-pill);
  padding: .9rem 1.45rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--hv-ease), filter .25s var(--hv-ease), background .25s var(--hv-ease), border-color .25s var(--hv-ease), color .25s var(--hv-ease), box-shadow .25s var(--hv-ease);
  white-space: nowrap;
}
.btn--sm { padding: .55rem 1rem; font-size: .88rem }
.btn--primary {
  color: var(--hv-void);
  background: linear-gradient(135deg, var(--hv-honey-bright), var(--hv-honey) 60%, var(--hv-ember));
  box-shadow: 0 0 0 1px rgba(245,166,35,.15), 0 10px 40px rgba(245,166,35,.18);
}
.btn--primary:hover { filter: brightness(1.06); transform: translateY(-1px) }
.btn--ghost {
  color: var(--hv-wax);
  background: rgba(17,17,20,.45);
  border-color: rgba(248,237,220,.14);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  border-color: rgba(245,166,35,.45);
  background: rgba(22,22,27,.7);
}
.btn__arrow { transition: transform .25s var(--hv-ease) }
.btn--ghost:hover .btn__arrow { transform: translateX(3px) }
.btn:disabled { opacity: .65; cursor: default; transform: none }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.75rem;
  color: var(--hv-honey);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}
.text-link:hover span { transform: translateX(3px) }
.text-link span { transition: transform .25s var(--hv-ease); display: inline-block }

/* ----- canvas backdrop ------------------------------------------------- */
#comb {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .18;
  pointer-events: none;
}

/* ----- nav ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  backdrop-filter: blur(18px) saturate(1.25);
  background: linear-gradient(to bottom, rgba(10,10,11,.88), rgba(10,10,11,.4) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--hv-ease), background .3s var(--hv-ease);
}
.nav.is-scrolled {
  border-bottom-color: rgba(36,36,44,.85);
  background: rgba(10,10,11,.86);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--hv-wax);
  justify-self: start;
}
.brand__mark { width: 1.55rem; height: 1.55rem; flex: 0 0 auto }
.brand__word {
  font-family: var(--hv-font-serif);
  font-weight: 600;
  letter-spacing: .03em;
  font-size: 1.2rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 1.85rem);
  justify-self: center;
}
.nav__links a {
  color: var(--hv-wax-dim);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s var(--hv-ease);
  position: relative;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--hv-wax) }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.45rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--hv-honey-bright), var(--hv-ember));
}
.nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav__menu {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--hv-comb-line);
  border-radius: 50%;
  background: rgba(17,17,20,.6);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.nav__menu span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--hv-wax);
  transition: transform .25s var(--hv-ease), opacity .2s;
}
.nav__menu[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg) }
.nav__menu[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg) }

.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 40;
  background: rgba(10,10,11,.96);
  backdrop-filter: blur(20px);
  padding: 2rem var(--gutter);
}
.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 20rem;
}
.drawer__links a:not(.btn) {
  font-family: var(--hv-font-display);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--hv-wax);
  letter-spacing: -.02em;
}
.drawer__links .btn { margin-top: 1rem; align-self: flex-start }

/* ----- hero ------------------------------------------------------------ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0 }
.hero__void {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  transform: scale(1.04);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.9) 0%, rgba(10,10,11,.55) 42%, rgba(10,10,11,.2) 72%, rgba(10,10,11,.5) 100%),
    linear-gradient(180deg, rgba(10,10,11,.5) 0%, transparent 26%, transparent 68%, rgba(10,10,11,.92) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}
.hero__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: end;
}
.hero__robot {
  position: relative;
  z-index: 3;
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  opacity: 1;
}
.hero__robot-glow {
  position: absolute;
  inset: 12% 8% 8%;
  border-radius: 40% 40% 20% 20%;
  background: radial-gradient(ellipse at 50% 40%, rgba(245,166,35,.28), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.hero__robot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: min(82svh, 780px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(245,166,35,.18),
    0 0 60px rgba(245,166,35,.12);
}
.hero__robot-cap {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hv-font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hv-honey);
  padding: .45rem 1rem;
  border-radius: 999px;
  background: rgba(10,10,11,.78);
  border: 1px solid rgba(245,166,35,.32);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-bottom: clamp(1.5rem, 4vw, 3.5rem);
  justify-self: start;
  opacity: 1;
}
.hero__title {
  font-family: var(--hv-font-display);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .95;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  margin-bottom: 1.4rem;
}
.hero__line { display: block }
.hero__sub {
  max-width: 32rem;
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  color: var(--hv-wax-dim);
  margin-bottom: 2.1rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.hero__whisper {
  margin-top: 1.5rem;
  font-size: .98rem;
  color: var(--hv-wax-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .55rem .85rem;
}
.hero__whisper em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--hv-font-display);
  font-size: 1.05em;
}
.hero__whisper-note {
  font-family: var(--hv-font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hv-wax-faint);
}
.scrollcue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-decoration: none;
}
.scrollcue__ring {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(185,178,163,.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scrollcue__dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--hv-honey);
  animation: cue 1.7s var(--hv-ease) infinite;
}
@keyframes cue {
  0% { opacity: 0; transform: translateY(0) }
  30% { opacity: 1 }
  100% { opacity: 0; transform: translateY(12px) }
}

/* ----- belief ---------------------------------------------------------- */
.belief {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: center;
}
.belief__lead {
  font-family: var(--hv-font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}
.belief__sub {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--hv-wax-dim);
  max-width: 34rem;
  margin: 0 auto;
}

/* ----- pillars --------------------------------------------------------- */
.pillars {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(4rem, 10vw, 7rem);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hv-comb-line);
  border: 1px solid var(--hv-comb-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.pillar {
  background: rgba(17,17,20,.94);
  padding: 1.9rem 1.55rem 2.05rem;
  transition: background .3s var(--hv-ease);
  min-height: 100%;
}
.pillar:hover { background: var(--hv-comb) }
.pillar__no {
  font-family: var(--hv-font-mono);
  font-size: .78rem;
  color: var(--hv-honey);
  letter-spacing: .12em;
}
.pillar h3 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -.015em;
  margin: .7rem 0 .55rem;
}
.pillar p { color: var(--hv-wax-dim); font-size: .94rem; line-height: 1.55 }

/* ----- product gallery ------------------------------------------------- */
.body {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(245,166,35,.06), transparent 60%),
    linear-gradient(180deg, transparent, rgba(17,17,20,.55), transparent);
}
.gallery {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.gallery__hero,
.gallery__card,
.gallery__wide {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hv-comb-line);
  background: var(--hv-comb);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  transition: border-color .3s var(--hv-ease), transform .35s var(--hv-ease);
}
.gallery__hero:hover,
.gallery__card:hover,
.gallery__wide:hover {
  border-color: rgba(245,166,35,.28);
  transform: translateY(-2px);
}
.gallery__hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.gallery__hero figcaption,
.gallery__wide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: linear-gradient(transparent, rgba(10,10,11,.9));
  font-size: .92rem;
  color: var(--hv-wax);
}
.gallery__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}
.gallery__card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.gallery__wide { grid-column: 1 / -1 }
.gallery__wide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.cell__tag {
  font-family: var(--hv-font-mono);
  font-size: .72rem;
  color: var(--hv-honey);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ----- model line ------------------------------------------------------ */
.line {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}
.line__track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}
.cell {
  position: relative;
  background: linear-gradient(165deg, rgba(22,22,27,.95), rgba(17,17,20,.98));
  border: 1px solid var(--hv-comb-line);
  border-radius: 16px;
  padding: 1.35rem 1.2rem 1.4rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--hv-ease), transform .3s var(--hv-ease), box-shadow .3s var(--hv-ease);
}
.cell:hover {
  border-color: rgba(245,166,35,.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.cell__name {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  margin: .55rem 0 .45rem;
}
.cell__desc {
  color: var(--hv-wax-dim);
  font-size: .9rem;
  margin-top: auto;
  line-height: 1.45;
}
.cell--now {
  border-color: rgba(245,166,35,.28);
  background: linear-gradient(165deg, rgba(245,166,35,.1), rgba(17,17,20,.98));
}
.cell--horizon {
  background: linear-gradient(160deg, rgba(245,166,35,.14), rgba(22,22,27,.95));
  border-color: rgba(245,166,35,.38);
}

/* ----- hive viz -------------------------------------------------------- */
.omb {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  background: radial-gradient(ellipse 55% 60% at 80% 50%, rgba(245,166,35,.07), transparent 65%);
}
.omb__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.omb__copy h2 { margin: .2rem 0 1.2rem }
.omb__copy p {
  color: var(--hv-wax-dim);
  font-size: 1.08rem;
  max-width: 30rem;
  line-height: 1.65;
}
.omb__viz {
  aspect-ratio: 1;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  border-radius: 20px;
  border: 1px solid var(--hv-comb-line);
  background:
    radial-gradient(circle at 50% 50%, rgba(245,166,35,.08), transparent 55%),
    linear-gradient(160deg, rgba(22,22,27,.9), rgba(10,10,11,.95));
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
#hive-canvas { width: 100%; height: 100%; display: block }
.omb__caption {
  position: absolute;
  left: 1rem;
  bottom: .85rem;
  font-family: var(--hv-font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hv-wax-faint);
}

/* ----- voice + apps ---------------------------------------------------- */
.voice {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 8rem) 0;
  background:
    radial-gradient(ellipse 50% 45% at 20% 40%, rgba(245,166,35,.08), transparent 60%),
    linear-gradient(180deg, transparent, rgba(17,17,20,.4), transparent);
}
.voice__layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.voice__copy h2 { margin: .15rem 0 .75rem }
.voice__pronounce {
  font-family: var(--hv-font-display);
  font-size: 1.15rem;
  color: var(--hv-wax-dim);
  margin-bottom: 1.15rem;
}
.voice__pronounce em {
  font-style: italic;
  color: var(--hv-honey);
  font-family: var(--hv-font-serif);
}
.voice__sub {
  color: var(--hv-wax-dim);
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.voice__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-width: 28rem;
}
.voice__points li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--hv-comb-line);
  background: rgba(17,17,20,.55);
}
.voice__point-label {
  font-family: var(--hv-font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hv-honey);
  align-self: center;
}
.voice__points li span:last-child {
  color: var(--hv-wax-dim);
  font-size: .95rem;
}

.voice__panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(245,166,35,.22);
  background:
    radial-gradient(circle at 50% 18%, rgba(245,166,35,.14), transparent 45%),
    linear-gradient(165deg, rgba(22,22,27,.98), rgba(10,10,11,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(245,166,35,.06) inset;
  padding: 2.25rem 1.75rem 1.85rem;
  text-align: center;
}
.voice__orb {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
}
.voice__ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,166,35,.7);
  animation: ripple 3.2s var(--hv-ease) infinite;
}
.voice__ring:nth-child(2) { animation-delay: 1.05s }
.voice__ring:nth-child(3) { animation-delay: 2.1s }
@keyframes ripple {
  0% { transform: scale(1); opacity: .65 }
  100% { transform: scale(2.55); opacity: 0 }
}
.voice__mark {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(245,166,35,.5));
  animation: breathe 3.2s var(--hv-ease) infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) }
  50% { transform: scale(1.06) }
}
.voice__panel-title {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.voice__panel-sub {
  color: var(--hv-wax-dim);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

/* Store buttons */
.store-row {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.25rem;
}
.store-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: .85rem;
  text-align: left;
  text-decoration: none;
  color: var(--hv-wax);
  padding: .85rem 1rem .85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(248,237,220,.14);
  background: rgba(10,10,11,.65);
  transition: border-color .25s var(--hv-ease), transform .25s var(--hv-ease), background .25s var(--hv-ease), box-shadow .25s var(--hv-ease);
}
.store-btn:hover {
  border-color: rgba(245,166,35,.45);
  background: rgba(22,22,27,.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.store-btn__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(245,166,35,.18), rgba(226,103,5,.08));
  color: var(--hv-wax);
  flex: 0 0 auto;
}
.store-btn__text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  min-width: 0;
  flex: 1;
}
.store-btn__kicker {
  font-size: .7rem;
  color: var(--hv-wax-faint);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.store-btn__name {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.store-btn__badge {
  font-family: var(--hv-font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hv-honey);
  border: 1px solid rgba(245,166,35,.35);
  background: rgba(245,166,35,.08);
  border-radius: 999px;
  padding: .35rem .55rem;
  flex: 0 0 auto;
  white-space: nowrap;
}
.voice__panel-note {
  font-size: .85rem;
  color: var(--hv-wax-faint);
  line-height: 1.5;
  max-width: 22rem;
  margin: 0 auto;
}

/* ----- join ------------------------------------------------------------ */
.join {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 12vw, 9rem) 0 clamp(5rem, 12vw, 8rem);
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(245,166,35,.1), transparent 60%);
}
.join__lede {
  color: var(--hv-wax-dim);
  font-size: 1.12rem;
  margin: 1.15rem auto 2.25rem;
  max-width: 30rem;
}
.capture { max-width: 520px; margin: 0 auto }
.capture__row {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: center;
}
.capture__input {
  flex: 1 1 240px;
  min-width: 0;
  background: rgba(22,22,27,.9);
  border: 1px solid var(--hv-comb-line);
  color: var(--hv-wax);
  font-size: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--hv-radius-pill);
  transition: border-color .2s var(--hv-ease), box-shadow .2s var(--hv-ease);
}
.capture__input::placeholder { color: var(--hv-wax-faint) }
.capture__input:focus {
  outline: none;
  border-color: var(--hv-honey);
  box-shadow: 0 0 0 3px rgba(245,166,35,.16);
}
.capture__input.is-invalid {
  border-color: var(--hv-alert);
  box-shadow: 0 0 0 3px rgba(255,92,92,.14);
}
.capture__btn { flex: 0 0 auto }
.capture__error {
  margin-top: .75rem;
  color: var(--hv-alert);
  font-size: .9rem;
}
.capture__note {
  margin-top: 1.05rem;
  font-size: .84rem;
  color: var(--hv-wax-faint);
}
.capture__note a {
  color: var(--hv-wax-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.capture__success {
  font-family: var(--hv-font-mono);
  color: var(--hv-honey);
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  animation: fadein .5s var(--hv-ease);
}
.capture__check {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.45);
  font-size: .8rem;
}
@keyframes fadein { from { opacity: 0 } to { opacity: 1 } }

/* ----- footer ---------------------------------------------------------- */
.foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hv-comb-line);
  padding: 2.75rem 0 3.25rem;
}
.foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.foot__top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--hv-font-serif);
  font-weight: 600;
  letter-spacing: .03em;
  font-size: 1.1rem;
}
.foot__brand img { width: 1.2rem; height: 1.2rem }
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  justify-content: center;
}
.foot__nav a {
  color: var(--hv-wax-dim);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s var(--hv-ease);
}
.foot__nav a:hover { color: var(--hv-wax) }
.foot__lockup {
  font-family: var(--hv-font-display);
  color: var(--hv-honey);
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.foot__meta {
  font-family: var(--hv-font-mono);
  font-size: .72rem;
  color: var(--hv-wax-faint);
  letter-spacing: .04em;
  max-width: 40rem;
  line-height: 1.65;
}

/* ----- reveals --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--hv-ease), transform .8s var(--hv-ease);
}
.reveal.in { opacity: 1; transform: none }

/* ----- responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr) }
  .line__track { grid-template-columns: repeat(2, 1fr) }
  .cell--horizon { grid-column: 1 / -1 }
  .gallery { grid-template-columns: 1fr }
  .gallery__hero img { min-height: 420px }
  .omb__grid { grid-template-columns: 1fr; text-align: center }
  .omb__copy p { margin-inline: auto }
  .omb__viz { justify-self: center }
  .text-link { justify-content: center }
  .voice__layout { grid-template-columns: 1fr; gap: 2.5rem }
  .voice__copy { text-align: center }
  .voice__sub { margin-inline: auto }
  .voice__points { margin-inline: auto }
  .voice__points li {
    grid-template-columns: 1fr;
    gap: .25rem;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero__stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
  .hero__robot {
    order: -1;
    max-width: min(380px, 78vw);
  }
  .hero__robot img { max-height: min(52svh, 460px) }
  .hero__content {
    justify-self: center;
    padding-bottom: 1rem;
  }
  .hero__sub { margin-inline: auto }
  .hero__ctas { justify-content: center }
  .hero__whisper { justify-content: center }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem) }
}

@media (max-width: 760px) {
  .nav { grid-template-columns: 1fr auto }
  .nav__links { display: none }
  .nav__menu { display: grid }
  .nav__actions .btn--primary { display: none }
  .pillars__grid { grid-template-columns: 1fr }
  .line__track { grid-template-columns: 1fr }
  .cell--horizon { grid-column: auto }
  .gallery__stack { grid-template-columns: 1fr 1fr }
  .gallery__card img { min-height: 180px }
  .gallery__wide img { height: 160px }
  .hero__ctas { width: 100% }
  .hero__ctas .btn { flex: 1 1 auto }
  .foot__top { flex-direction: column }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .reveal { opacity: 1; transform: none; transition: none }
  .scrollcue__dot,
  .voice__ring,
  .voice__mark { animation: none }
  .voice__ring:first-child { opacity: .35 }
  #comb { opacity: .1 }
  .btn, .cell, .store-btn, .gallery__hero, .gallery__card { transition: none }
}
