/* Hayati — hayati.live
   Static landing page. Layout language follows the voice-room reference:
   cream canvas, evergreen/teal hero, gold accents.
   No external assets: the phone mockups, icons and logo are CSS + inline SVG. */

:root {
  --evergreen: #063f39;
  --green: #087266;
  --teal: #0d9787;
  --mint: #b8f3c9;
  --cream: #fff9e9;
  --gold: #ffc932;
  --gold-bright: #ffe36b;
  --ink: #083d35;
  --blue-night: #071c3d;
  --white: #ffffff;
  --muted: #55736b;
  --line: rgba(7, 77, 66, 0.16);
  --shell: 1240px;
  --header-height: 82px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, figure, ul, ol { margin-top: 0; }
ul, ol { padding: 0; list-style: none; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.page-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px;
  padding: 10px 16px; border-radius: 10px;
  color: var(--evergreen); background: var(--gold-bright);
  transform: translateY(-160%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- header ---------- */
.site-header {
  position: fixed; z-index: 100; top: 0; right: 0; left: 0;
  height: var(--header-height);
  transition: height 200ms ease, background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.is-scrolled {
  height: 70px;
  border-bottom: 1px solid rgba(6, 63, 57, 0.1);
  background: rgba(255, 249, 233, 0.92);
  box-shadow: 0 10px 26px rgba(4, 49, 44, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; height: 100%; gap: 28px; }
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--cream); font-size: 22px; font-weight: 800; letter-spacing: -0.05em;
}
.brand-mark {
  display: grid; place-items: center;
  width: 45px; height: 45px; border-radius: 14px;
  box-shadow: 0 8px 17px rgba(4, 59, 52, 0.15), 0 0 0 2px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand > span > span { color: var(--gold-bright); }
.primary-navigation { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-navigation a { position: relative; color: var(--cream); font-size: 13px; font-weight: 700; }
.primary-navigation a::after {
  position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; border-radius: 9px;
  background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right;
  transition: transform 180ms ease;
}
.primary-navigation a:hover::after, .primary-navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 17px;
  border-radius: 999px; color: var(--evergreen); background: var(--gold-bright);
  box-shadow: 0 13px 24px rgba(3, 55, 49, 0.18); font-size: 13px; font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible { background: #fff09b; transform: translateY(-2px); }
.site-header:not(.is-scrolled) .brand { color: var(--cream); }
.site-header.is-scrolled .brand { color: var(--evergreen); }
.site-header.is-scrolled .brand > span > span { color: var(--green); }
.site-header.is-scrolled .primary-navigation a { color: #315b53; }
.site-header.is-scrolled .header-cta { color: var(--cream); background: var(--evergreen); }
.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible { background: var(--green); }

.live-dot, .screen-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 201, 50, 0.18), 0 0 18px rgba(255, 227, 107, 0.9);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: .62; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

.menu-toggle {
  display: none; width: 45px; height: 45px; margin-left: auto; padding: 0;
  border: 1px solid rgba(255, 249, 233, 0.4); border-radius: 13px;
  background: rgba(255, 255, 255, 0.16); cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 9px; background: var(--cream); transition: transform 180ms ease; }
.site-header.is-scrolled .menu-toggle { border-color: var(--line); background: rgba(255, 255, 255, 0.76); }
.site-header.is-scrolled .menu-toggle span { background: var(--evergreen); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate; color: var(--cream);
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 220, 90, 0.33), transparent 21%),
    radial-gradient(circle at 21% 66%, rgba(12, 154, 133, 0.6), transparent 28%),
    linear-gradient(132deg, #073f39 0%, #075e54 48%, #0b7f70 100%);
}
.hero::before {
  position: absolute; z-index: -1; inset: 0; opacity: .3; content: "";
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.47) 1px, transparent 1px),
    linear-gradient(115deg, transparent 20%, rgba(255, 214, 64, 0.15) 20.2%, transparent 20.6%);
  background-size: 23px 23px, 180px 180px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero-moon {
  position: absolute; z-index: -1; top: 108px; right: 11%; width: 550px; height: 550px;
  border: 1px solid rgba(255, 231, 127, 0.34); border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(255, 229, 111, 0.04), 0 0 0 52px rgba(255, 255, 255, 0.025);
}
.hero-arch {
  position: absolute; z-index: -1; width: 460px; height: 660px;
  border: 1px solid rgba(255, 221, 87, 0.22); border-bottom: 0; border-radius: 240px 240px 0 0;
}
.hero-arch-one { bottom: -80px; left: -150px; transform: rotate(-11deg); }
.hero-arch-two { top: 40px; right: -190px; border-color: rgba(184, 243, 201, 0.16); transform: rotate(9deg); }
.hero-spark { position: absolute; z-index: -1; color: var(--gold-bright); font-size: 22px; opacity: .8; }
.hero-spark-one { top: 132px; left: 8%; }
.hero-spark-two { top: 400px; right: 6%; font-size: 15px; }

.hero-layout {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px; align-items: center; padding-top: calc(var(--header-height) + 62px);
}
.live-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding: 8px 15px; border: 1px solid rgba(255, 227, 107, 0.34); border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
}
.hero h1 {
  margin-bottom: 20px; font-size: clamp(38px, 5.2vw, 66px); font-weight: 850;
  line-height: 1.03; letter-spacing: -0.045em;
}
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero-description { max-width: 34rem; margin-bottom: 30px; color: rgba(255, 249, 233, 0.86); font-size: 17px; }

.store-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.store-button {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  min-width: 208px; padding: 12px 20px; border-radius: 16px;
  border: 1px solid rgba(255, 249, 233, 0.28); background: rgba(7, 28, 61, 0.55);
  color: var(--cream); font-size: 15px; font-weight: 700; line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.store-button span { display: flex; flex-direction: column; }
.store-button small { font-size: 10px; font-weight: 700; letter-spacing: .12em; opacity: .78; }
.store-icon { width: 28px; height: 30px; flex: none; }
.store-button-dark { background: rgba(255, 255, 255, 0.08); }
.store-button:not(.is-soon):hover, .store-button:not(.is-soon):focus-visible {
  transform: translateY(-3px); border-color: var(--gold-bright);
  box-shadow: 0 16px 30px rgba(3, 40, 36, 0.3);
}
/* 商店未上线：按钮保持可辨识的商店徽标形态，用内联 "Coming soon" 标签说明状态，
   不使用禁用态光标，避免看起来像失效控件。替换真实商店链接时，
   把 <span class="store-button is-soon"> 改为 <a href="..." class="store-button"> 并删掉 <em class="soon-tag"> 即可。 */
.store-button.is-soon { cursor: default; }
.soon-tag {
  flex: none; margin-left: 6px; padding: 4px 10px; border-radius: 999px;
  color: var(--evergreen); background: var(--gold-bright); white-space: nowrap;
  font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}

.live-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 38px; }
.live-stats div { display: flex; flex-direction: column; }
.live-stats strong { font-size: 19px; font-weight: 800; }
.live-stats span { color: rgba(255, 249, 233, 0.7); font-size: 12.5px; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 460px; }
.orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(255, 227, 107, 0.32); }
.orbit-one { width: 400px; height: 400px; animation: spin 26s linear infinite; }
.orbit-two { width: 300px; height: 300px; border-style: solid; border-color: rgba(184, 243, 201, 0.2); animation: spin 18s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-chip {
  position: absolute; z-index: 3; padding: 9px 15px; border-radius: 999px;
  border: 1px solid rgba(255, 227, 107, 0.32); background: rgba(7, 28, 61, 0.72);
  color: var(--cream); font-size: 12px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 14px 30px rgba(3, 33, 30, 0.34);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.chip-one { top: 34px; left: -6px; animation: bob 5.4s ease-in-out infinite; }
.chip-two { right: -10px; bottom: 76px; animation: bob 6.4s ease-in-out infinite .6s; }
.chip-two i { color: #57e08e; font-style: normal; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* phone mockup */
.phone {
  position: relative; width: 288px; padding: 12px; border-radius: 42px;
  background: linear-gradient(160deg, #0a2f2b, #061d1b);
  box-shadow: 0 40px 80px rgba(2, 25, 22, 0.55), 0 0 0 2px rgba(255, 227, 107, 0.16);
}
.phone-hero { z-index: 2; }
.phone-notch {
  position: absolute; z-index: 4; top: 20px; left: 50%; width: 84px; height: 8px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.16); transform: translateX(-50%);
}
.phone-screen { overflow: hidden; border-radius: 32px; background: linear-gradient(170deg, #0b4a43, #072f2b 70%); }

.room-top { display: flex; align-items: center; gap: 8px; padding: 30px 16px 14px; color: var(--cream); font-size: 12px; }
.room-live {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 999px;
  background: rgba(255, 71, 87, 0.2); color: #ffb3ba; font-size: 9px; font-weight: 800; letter-spacing: .1em;
}
.room-live i { width: 6px; height: 6px; border-radius: 50%; background: #ff4757; animation: blink 1.6s ease-in-out infinite; }
.room-name { flex: 1; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.room-count { color: var(--gold-bright); font-weight: 800; font-size: 11px; }

.seat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 4px 16px 14px; }
.seat-grid-wide { grid-template-columns: repeat(3, 1fr); }
.seat {
  position: relative; display: grid; place-items: center; aspect-ratio: 1;
  border-radius: 50%; border: 1px solid rgba(255, 249, 233, 0.18);
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  color: rgba(255, 249, 233, 0.72); font-size: 10px; font-weight: 700;
}
.seat b { font-weight: 700; }
.seat.is-speaking { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255, 201, 50, 0.2), 0 0 22px rgba(255, 227, 107, 0.36); }
.seat.is-muted { border-color: rgba(255, 71, 87, 0.5); }
.seat.is-empty { border-style: dashed; color: var(--gold-bright); font-size: 16px; }
.bars { position: absolute; bottom: -9px; display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.bars em { width: 3px; border-radius: 3px; background: var(--gold-bright); animation: bar 900ms ease-in-out infinite; }
.bars em:nth-child(1) { height: 6px; }
.bars em:nth-child(2) { height: 12px; animation-delay: 140ms; }
.bars em:nth-child(3) { height: 8px; animation-delay: 280ms; }
@keyframes bar { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

.room-chat { display: flex; flex-direction: column; gap: 6px; padding: 4px 16px 14px; }
.chat-line {
  display: flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 249, 233, 0.88); font-size: 10.5px;
}
.avatar-dot { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(140deg, #ff9f68, #ff5f6d); flex: none; }
.avatar-dot.alt { background: linear-gradient(140deg, #6ee7b7, #0d9787); }
.gem { width: 10px; height: 10px; display: inline-block; transform: rotate(45deg); background: linear-gradient(140deg, #ffe36b, #ffb300); border-radius: 2px; }
.room-bar { display: flex; align-items: center; justify-content: space-around; padding: 12px 18px 18px; border-top: 1px solid rgba(255, 249, 233, 0.1); }
.room-bar span { width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 249, 233, 0.14); }
.room-bar-mic { background: radial-gradient(circle at 50% 40%, var(--gold-bright) 40%, rgba(255, 227, 107, 0.2) 42%) !important; }
.room-bar-gift { background: radial-gradient(circle at 50% 45%, #ff6b81 40%, rgba(255, 107, 129, 0.2) 42%) !important; }

.waveform { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 46px; padding: 0 16px 8px; }
.waveform i { width: 4px; border-radius: 3px; background: linear-gradient(to top, rgba(255, 201, 50, 0.35), var(--gold-bright)); animation: wave 1.5s ease-in-out infinite; }
.waveform i:nth-child(1) { height: 34%; animation-delay: 0ms; }
.waveform i:nth-child(2) { height: 58%; animation-delay: 90ms; }
.waveform i:nth-child(3) { height: 80%; animation-delay: 180ms; }
.waveform i:nth-child(4) { height: 46%; animation-delay: 270ms; }
.waveform i:nth-child(5) { height: 92%; animation-delay: 360ms; }
.waveform i:nth-child(6) { height: 62%; animation-delay: 450ms; }
.waveform i:nth-child(7) { height: 100%; animation-delay: 540ms; }
.waveform i:nth-child(8) { height: 54%; animation-delay: 630ms; }
.waveform i:nth-child(9) { height: 78%; animation-delay: 720ms; }
.waveform i:nth-child(10) { height: 40%; animation-delay: 810ms; }
.waveform i:nth-child(11) { height: 66%; animation-delay: 900ms; }
.waveform i:nth-child(12) { height: 30%; animation-delay: 990ms; }
@keyframes wave { 0%, 100% { transform: scaleY(.55); opacity: .7; } 50% { transform: scaleY(1); opacity: 1; } }

.board { display: flex; flex-direction: column; gap: 7px; padding: 2px 16px 14px; }
.board li { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 12px; background: rgba(255, 255, 255, 0.07); color: var(--cream); font-size: 11px; }
.board-rank { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255, 249, 233, 0.14); font-size: 9.5px; font-weight: 800; flex: none; }
.board-rank.gold { background: var(--gold-bright); color: var(--evergreen); }
.board-rank.silver { background: #d8e3e0; color: var(--evergreen); }
.board-rank.bronze { background: #e4a672; color: #4a2a10; }
.board-avatar { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(140deg, #ff9f68, #ff5f6d); flex: none; }
.board-avatar.alt { background: linear-gradient(140deg, #6ee7b7, #0d9787); }
.board-avatar.alt2 { background: linear-gradient(140deg, #a5b4fc, #6366f1); }
.board-name { flex: 1; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board-score { color: var(--gold-bright); font-weight: 800; }
.badge-row { display: flex; gap: 6px; padding: 0 16px 14px; }
.badge { padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255, 227, 107, 0.34); color: var(--gold-bright); font-size: 9.5px; font-weight: 800; letter-spacing: .08em; }

/* ---------- ticker ---------- */
.ticker { overflow: hidden; margin-top: 66px; border-top: 1px solid rgba(255, 227, 107, 0.2); border-bottom: 1px solid rgba(255, 227, 107, 0.2); background: rgba(7, 28, 61, 0.28); }
.ticker-track { display: flex; align-items: center; gap: 26px; width: max-content; padding: 14px 0; animation: slide 26s linear infinite; }
.ticker-track span { color: var(--gold-bright); font-size: 12px; font-weight: 800; letter-spacing: .22em; white-space: nowrap; }
.ticker-track i { color: rgba(255, 249, 233, 0.5); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- stage section ---------- */
.mic-night { position: relative; overflow: hidden; padding: 104px 0 112px; color: var(--cream); background: linear-gradient(160deg, #052b28 0%, #063f39 46%, #075f54 100%); }
.stage-glow { position: absolute; border-radius: 50%; filter: blur(10px); }
.stage-glow-one { top: -120px; left: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(13, 151, 135, 0.5), transparent 68%); }
.stage-glow-two { right: -120px; bottom: -140px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255, 201, 50, 0.22), transparent 70%); }
.stage-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.stage-screen { margin: 0; }
.stage-screen-left { justify-self: start; }
.stage-screen-right { justify-self: end; margin-top: 56px; }
.stage-screen .phone { width: 248px; }
.screen-label {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 7px 13px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 249, 233, 0.86); font-size: 10px; font-weight: 800; letter-spacing: .14em;
}
.section-kicker { margin-bottom: 14px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.section-kicker-light { color: var(--gold-bright); }
.section-kicker-gold { color: var(--gold); }
.stage-copy h2 { margin-bottom: 18px; font-size: clamp(28px, 3.4vw, 42px); font-weight: 850; line-height: 1.08; letter-spacing: -0.035em; }
.stage-copy p { color: rgba(255, 249, 233, 0.82); }
.stage-list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.stage-list li { display: flex; align-items: center; gap: 14px; color: rgba(255, 249, 233, 0.9); font-size: 14.5px; }
.stage-list li span {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  border-radius: 10px; border: 1px solid rgba(255, 227, 107, 0.3);
  color: var(--gold-bright); font-size: 11px; font-weight: 800;
}
.outline-button {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px;
  border: 1px solid rgba(255, 227, 107, 0.5); border-radius: 999px;
  color: var(--gold-bright); font-size: 14px; font-weight: 800;
  transition: gap 180ms ease, background-color 180ms ease, color 180ms ease;
}
.outline-button:hover, .outline-button:focus-visible { gap: 16px; background: var(--gold-bright); color: var(--evergreen); }

/* ---------- download ---------- */
.download-stage { position: relative; overflow: hidden; padding: 96px 0; background: radial-gradient(circle at 88% 12%, rgba(13, 151, 135, 0.14), transparent 40%), var(--cream); }
.download-spark { position: absolute; color: var(--teal); opacity: .45; }
.download-spark-one { top: 62px; left: 9%; font-size: 20px; }
.download-spark-two { right: 12%; bottom: 70px; font-size: 14px; }
.download-layout { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 66px; align-items: center; }
.download-logo-wrap { position: relative; display: grid; place-items: center; width: 220px; height: 220px; }
.download-logo-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(13, 151, 135, 0.4); animation: spin 24s linear infinite; }
.download-logo { display: block; width: 150px; border-radius: 40px; overflow: hidden; box-shadow: 0 26px 50px rgba(4, 59, 52, 0.26); }
.download-copy h2 { margin-bottom: 16px; font-size: clamp(28px, 3.4vw, 42px); font-weight: 850; letter-spacing: -0.035em; }
.download-copy > p { max-width: 32rem; color: var(--muted); }
.download-copy .store-actions { margin-top: 28px; }
.download-copy .store-button { border-color: rgba(6, 63, 57, 0.16); background: var(--evergreen); color: var(--cream); }
.download-copy .store-button.is-soon { opacity: 1; }
.download-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.download-note a { color: var(--green); font-weight: 700; border-bottom: 1px solid rgba(8, 114, 102, 0.35); }

/* ---------- agreements ---------- */
.agreements { padding: 0 0 96px; background: var(--cream); }
.agreements-inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 54px; align-items: center; }
.agreements h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 850; letter-spacing: -0.035em; }
.agreement-list { display: grid; gap: 16px; }
.agreement-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: 20px;
  background: var(--white); box-shadow: 0 14px 30px rgba(4, 59, 52, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.agreement-card:hover, .agreement-card:focus-visible { transform: translateY(-3px); border-color: rgba(8, 114, 102, 0.5); box-shadow: 0 20px 40px rgba(4, 59, 52, 0.12); }
.agreement-index {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px;
  background: var(--evergreen); color: var(--gold-bright); font-size: 12.5px; font-weight: 800;
}
.agreement-title { font-size: 17px; font-weight: 800; }
.agreement-arrow { color: var(--teal); font-size: 20px; }

/* ---------- footer ---------- */
.site-footer { padding: 34px 0; background: #04231f; color: rgba(255, 249, 233, 0.72); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { color: var(--cream); font-size: 19px; }
.footer-inner p { margin: 0; font-size: 13px; }
.footer-top { font-size: 13px; font-weight: 700; color: var(--gold-bright); }

/* ---------- legal pages ---------- */
.legal-page { background: var(--cream); }
.legal-header { padding: calc(var(--header-height) + 46px) 0 34px; color: var(--cream); background: linear-gradient(140deg, #063f39, #0b7f70); }
.legal-header .brand { color: var(--cream); }
.legal-header h1 { margin: 26px 0 10px; font-size: clamp(28px, 4vw, 44px); font-weight: 850; letter-spacing: -0.04em; }
.legal-header p { margin: 0; color: rgba(255, 249, 233, 0.82); font-size: 14px; }
.legal-body { padding: 52px 0 88px; }
.legal-body .page-shell { max-width: 860px; }
.legal-body h2 { margin: 36px 0 12px; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #24463f; font-size: 15.5px; }
.legal-body ul { margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-body li { position: relative; padding-left: 20px; }
.legal-body li::before { position: absolute; top: 9px; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); content: ""; }
.legal-body a { color: var(--green); font-weight: 700; border-bottom: 1px solid rgba(8, 114, 102, 0.35); }
.legal-callout { margin: 26px 0; padding: 18px 22px; border-left: 4px solid var(--gold); border-radius: 12px; background: rgba(255, 201, 50, 0.13); }
.legal-footer { padding: 30px 0; background: #04231f; color: rgba(255, 249, 233, 0.72); font-size: 13px; }
.legal-footer .page-shell { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.legal-footer a { color: var(--gold-bright); font-weight: 700; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 34px; padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line); color: var(--evergreen); font-size: 13.5px; font-weight: 800; background: var(--white); }
.legal-back:hover, .legal-back:focus-visible { border-color: var(--teal); }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  :root { --header-height: 76px; }
  .hero-layout { grid-template-columns: 1fr; gap: 44px; padding-top: calc(var(--header-height) + 46px); }
  .hero-art { min-height: 420px; }
  .hero-moon { top: 40%; right: -14%; width: 420px; height: 420px; }
  .stage-layout { grid-template-columns: 1fr; gap: 34px; justify-items: center; }
  .stage-screen-left, .stage-screen-right { justify-self: center; margin-top: 0; }
  .stage-copy { order: -1; text-align: center; max-width: 40rem; margin-inline: auto; }
  .stage-list li { justify-content: center; }
  .download-layout { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 40px; }
  .download-copy > p { margin-inline: auto; }
  .agreements-inner { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 780px) {
  .page-shell { width: min(calc(100% - 32px), var(--shell)); }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .primary-navigation {
    position: fixed; top: var(--header-height); right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 4px; margin: 0; padding: 18px 24px 26px;
    background: rgba(255, 249, 233, 0.98); box-shadow: 0 22px 40px rgba(4, 49, 44, 0.16);
    transform: translateY(-130%); transition: transform 240ms ease; pointer-events: none;
  }
  .primary-navigation.is-open { transform: translateY(0); pointer-events: auto; }
  .primary-navigation a { padding: 13px 4px; color: #315b53 !important; font-size: 15px; border-bottom: 1px solid var(--line); }
  .hero { padding-bottom: 54px; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-description { font-size: 15.5px; }
  .hero-art { min-height: 380px; }
  .phone { width: 258px; }
  .float-chip { font-size: 11px; }
  .chip-one { left: -4px; }
  .chip-two { right: -4px; }
  .store-button { min-width: 0; flex: 1 1 190px; }
  .live-stats { gap: 24px; }
  .mic-night { padding: 74px 0 82px; }
  .stage-screen .phone { width: 236px; }
  .download-stage { padding: 68px 0; }
  .download-logo-wrap { width: 180px; height: 180px; }
  .download-logo { width: 124px; border-radius: 32px; }
  .agreements { padding-bottom: 68px; }
  .agreement-card { grid-template-columns: auto 1fr auto; padding: 18px; gap: 14px; }
  .agreements h2 { font-size: 24px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 31px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 40px; height: 40px; }
  .seat-grid { gap: 8px; }
}
