/* ============ HELIOS VAULT — site styles ============ */
:root {
  --bg: #0b1827;
  --bg-deep: #071120;
  --surface: #14202e;
  --surface-2: #1a2a3c;
  --gold: #f5b450;
  --gold-soft: rgba(245, 180, 80, .35);
  --gold-faint: rgba(245, 180, 80, .12);
  --text: #eef3f9;
  --text-dim: #b9c7d6;
  --line: rgba(255, 255, 255, .08);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* full-window starfield from the HELIOS app — behind everything */
#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

::selection { background: var(--gold-soft); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.is-scrolled {
  background: rgba(7, 17, 32, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text);
  text-decoration: none;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
  transition: color .25s;
}
.nav__links a:hover { color: var(--text); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--gold {
  background: linear-gradient(180deg, #ffd08a, var(--gold));
  color: #33230d;
  box-shadow: 0 6px 30px rgba(245, 180, 80, .35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245, 180, 80, .5); }
.btn--ghost {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn--small { padding: 10px 20px; font-size: 13px; }
.btn--wide { width: 100%; }
.btn__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

/* ============ JOURNEY (hero + scroll story) ============ */
.journey { height: 560vh; position: relative; }
.journey__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* translucent washes only — the fixed starfield shows through */
  background:
    radial-gradient(ellipse 80% 60% at 50% 118%, rgba(245, 180, 80, .08), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(26, 42, 60, .55), transparent 65%);
}

/* --- Orb: the HELIOS app centerpiece, canvas-rendered --- */
.orb {
  position: absolute;
  width: min(58vmin, 540px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  will-change: transform;
}
/* canvas is 1.5x the stage so orbit trails and moon rings never clip */
.orb canvas#core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
}
/* the HELIOS letters living in the planet's hollow center — same as the app */
.orb__brand {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.orb__brand h1 {
  font-family: "Cinzel", "Trajan Pro", "Optima", "Times New Roman", serif;
  font-size: min(6.2vmin, 58px);
  font-weight: 400;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffd36b;
  text-shadow: 0 0 18px rgba(255, 180, 60, .55), 0 0 46px rgba(245, 166, 35, .30);
  animation: breathe 5.5s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .92 } 50% { opacity: 1 } }

/* --- Beats --- */
.beat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.beat.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.beat--left, .beat--right { align-items: flex-start; text-align: left; }
.beat--left  { padding-right: 55%; }
.beat--right { padding-left: 55%; }

.beat__eyebrow {
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.beat__title {
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #ffffff 30%, #c8d6e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}
.beat__title--md { font-size: clamp(32px, 4.6vw, 58px); }
.beat__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 560px;
}
.beat__cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }
.beat__scrollhint {
  position: absolute;
  bottom: 32px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.chevron { animation: chevron-drop 2s ease-in-out infinite; font-size: 18px; }
@keyframes chevron-drop {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Hero beat: headline above the centerpiece, CTAs below it */
.beat--hero {
  z-index: 2;
  justify-content: space-between;
  padding-top: 96px;
  padding-bottom: 28px;
}
.beat__title--hero { font-size: clamp(30px, 4.4vw, 56px); }
.beat__top { display: flex; flex-direction: column; align-items: center; }
.beat__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 40px;
}
.beat__bottom .beat__sub { margin-top: 0; }
.beat__bottom .beat__cta { margin-top: 22px; }
.beat__scrollhint { bottom: -14px; }

/* ============ SECTIONS ============ */
.section {
  position: relative;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section__eyebrow {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.section__sub {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ FEATURE CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 0 0 1px var(--gold-faint);
}
.card__icon { font-size: 30px; margin-bottom: 18px; }
.card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step__num {
  font-family: "Cinzel", "Trajan Pro", "Optima", serif;
  font-size: 40px;
  color: #ffd36b;
  text-shadow: 0 0 16px rgba(255, 180, 60, .45);
  margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -.01em; }
.step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }

/* ============ CREW ============ */
.crew {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.crewcard {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.crewcard:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 0 0 1px var(--gold-faint);
}
.crewcard__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Cinzel", "Trajan Pro", "Optima", serif;
  font-size: 30px;
  color: #ffd36b;
  text-shadow: 0 0 12px rgba(255, 180, 60, .55);
  background: radial-gradient(circle at 38% 32%, rgba(245, 180, 80, .28), rgba(245, 180, 80, .07) 70%);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 0 24px var(--gold-faint);
  margin-bottom: 18px;
}
.crewcard__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.12);   /* crop the sigil's dark margin so the art fills the circle */
  transition: transform .4s ease;
}
.crewcard:hover .crewcard__avatar img { transform: scale(1.2); }
.crewcard h3 { font-size: 19px; letter-spacing: .02em; }
.crewcard__role {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 12px;
}
.crewcard > p:last-child { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }
.crewcard--ghost {
  background: transparent;
  border-style: dashed;
  border-color: var(--gold-soft);
}
.crewcard--ghost .crewcard__avatar { background: transparent; }

/* ============ DEMO ============ */
.demo {
  margin-top: 56px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, var(--gold-faint), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--bg-deep));
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
  overflow: hidden;
}
.demo__placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.demo__playbtn {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #33230d;
  padding-left: 6px;
  background: linear-gradient(180deg, #ffd08a, var(--gold));
  box-shadow: 0 0 60px var(--gold-soft);
  animation: pulse-dot 3s ease-in-out infinite;
  margin-bottom: 12px;
}
.demo__label { font-size: 20px; font-weight: 600; }
.demo__sublabel { font-size: 14px; color: var(--text-dim); }

/* ============ PRICING ============ */
.pricecard {
  margin: 56px auto 0;
  max-width: 420px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-soft);
  border-radius: calc(var(--radius) + 6px);
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4), 0 0 60px var(--gold-faint);
}
.pricecard__badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pricecard__price { font-size: 72px; font-weight: 700; letter-spacing: -.03em; }
.pricecard__note { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 14px 0 30px; }

/* ============ PRICING BREAKDOWN ============ */
.breakdown { margin-top: 72px; text-align: left; max-width: 820px; margin-inline: auto; }
.breakdown__title {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -.01em;
  text-align: center;
}
.breakdown__sub {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.breakdown__rows { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.brow {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.brow--helios { border-color: var(--gold-soft); box-shadow: 0 0 40px var(--gold-faint); }
.brow__icon { font-size: 26px; flex-shrink: 0; }
.brow__body { flex: 1; }
.brow__body h4 { font-size: 16px; margin-bottom: 6px; letter-spacing: -.01em; }
.brow__body p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.brow__body strong { color: var(--text); }
.brow__cost {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}
.breakdown__fine {
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(185, 199, 214, .55);
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .brow { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brow__cost { align-self: flex-start; }
}

/* ============ WAITLIST ============ */
.section--waitlist {
  max-width: 760px;
}
.wform {
  margin-top: 48px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 5vw, 48px);
  text-align: left;
}
.wform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.wform label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text-dim);
}
.wform input, .wform select {
  background: rgba(7, 17, 32, .6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.wform input:focus, .wform select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}
.wform input::placeholder { color: rgba(185, 199, 214, .45); }
.wform .btn { margin-top: 8px; }
.wform__disclaimer {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
}
.wform__status {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  min-height: 20px;
  color: var(--gold);
}

/* ============ FAQ ============ */
.faq {
  margin-top: 48px;
  text-align: left;
  max-width: 720px;
  margin-inline: auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 6px;
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ============ FOUNDER'S NOTE ============ */
.section--founder { max-width: 820px; padding-top: 0; }
.founder {
  border-top: 1px solid var(--line);
  padding-top: clamp(60px, 8vw, 100px);
}
.founder__label {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.founder__quote {
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text);
  font-style: italic;
  text-wrap: balance;
}
.founder__sig { margin-top: 24px; color: var(--text-dim); font-size: 15px; }

/* honeypot — off-screen for humans, plain field for bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  pointer-events: none;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px clamp(20px, 6vw, 80px);
  text-align: center;
  background: var(--bg-deep);
}
.footer__brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 22px;
}
.footer__brand span { color: var(--gold); }
.footer__links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .25s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact { margin-bottom: 18px; font-size: 13.5px; }
.footer__contact a { color: var(--text-dim); text-decoration: none; transition: color .25s; }
.footer__contact a:hover { color: var(--gold); }
.footer__sep { color: rgba(185, 199, 214, .4); margin: 0 10px; }
.footer__copy { font-size: 12.5px; color: rgba(185, 199, 214, .55); }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: rgba(20, 32, 46, .92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-soft);
  color: var(--text);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  z-index: 100;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ============ ASK HELIOS ============ */
.askbtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: rgba(20, 32, 46, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45), 0 0 30px var(--gold-faint);
  transition: transform .25s ease, box-shadow .25s ease;
}
.askbtn:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0, 0, 0, .5), 0 0 40px var(--gold-soft); }
.askbtn__orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff3d8, #f5b450 60%, #b06f24);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 3s ease-in-out infinite;
}
.chat[hidden] { display: none; }
.chat {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 95;
  width: min(380px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(26, 42, 60, .97), rgba(11, 24, 39, .97));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-soft);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6), 0 0 60px var(--gold-faint);
  overflow: hidden;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.chat__title {
  font-family: "Cinzel", "Trajan Pro", "Optima", serif;
  font-size: 15px;
  color: #ffd36b;
  text-shadow: 0 0 12px rgba(255, 180, 60, .5);
}
.chat__status { font-size: 11px; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; }
.chat__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}
.chat__close:hover { color: var(--text); }
.chat__log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat__msg {
  max-width: 85%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}
.chat__msg--helios {
  align-self: flex-start;
  background: rgba(245, 180, 80, .1);
  border: 1px solid var(--gold-faint);
  border-bottom-left-radius: 6px;
}
.chat__msg--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-bottom-right-radius: 6px;
}
.chat__msg--typing { color: var(--gold); letter-spacing: 3px; animation: pulse-dot 1.2s ease-in-out infinite; }
.chat__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}
.chat__form input {
  flex: 1;
  background: rgba(7, 17, 32, .6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.chat__form input:focus { outline: none; border-color: var(--gold); }
.chat__send { padding: 10px 18px; font-size: 16px; }
.chat__fine {
  padding: 0 14px 12px;
  font-size: 10.5px;
  color: rgba(185, 199, 214, .5);
  text-align: center;
}
@media (max-width: 480px) {
  .chat { right: 8px; bottom: 80px; }
}

/* ============ MOBILE ============ */
@media (max-width: 760px) {
  .nav__links { display: none; }

  .journey { height: 460vh; }
  .orb { width: min(78vmin, 340px); top: 44%; }
  .beat--hero { padding-top: 84px; }

  .beat--left, .beat--right {
    padding: 0 24px;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 12vh;
  }
  .wform__row { grid-template-columns: 1fr; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .orb__ring, .chevron, .btn__dot, .demo__playbtn { animation: none; }
  .beat, .reveal { transition-duration: .01s; }
}
