:root {
  --ink: #09040f;
  --ink-2: #130a22;
  --ink-3: #1b1030;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4eefb;
  --muted: #a99bc0;
  --pink: #ff32e6;
  --peach: #ffb682;
  --violet: #8b5cff;
  --mint: #3ce6b0;
  --grad: linear-gradient(112deg, #ff32e6 0%, #ff6fb0 45%, #ffb682 100%);
  --shell: min(1180px, 100% - 48px);
  --radius: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Baloo 2', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 { font-size: clamp(2.9rem, 6.4vw, 4.9rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.06; }
h3 { font-size: 1.3rem; line-height: 1.2; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section[id] { scroll-margin-top: 112px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

/* ---------- background ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; }

.aurora__blob {
  position: absolute;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: drift 26s var(--ease) infinite alternate;
}

.aurora__blob--pink { background: #ff2ee0; top: -22vw; left: -14vw; }
.aurora__blob--peach { background: #ff9d5c; top: 34vh; right: -22vw; opacity: 0.34; animation-duration: 32s; }
.aurora__blob--violet { background: #6a3cff; bottom: -28vw; left: 18vw; opacity: 0.4; animation-duration: 38s; }

.aurora__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 78%);
  opacity: 0.5;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6vw, 8vh, 0) scale(1.18); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: var(--shell);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 8, 26, 0.55);
  backdrop-filter: blur(18px);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav.is-stuck {
  background: rgba(11, 6, 20, 0.86);
  box-shadow: 0 20px 50px -30px rgba(255, 50, 230, 0.7);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.nav__brand img { border-radius: 12px; }

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
}

.nav__links a { position: relative; transition: color 0.25s; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  will-change: transform;
}

.btn--solid {
  background: var(--grad);
  color: #200a1c;
  box-shadow: 0 18px 44px -20px rgba(255, 50, 230, 0.9);
}

.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -20px rgba(255, 50, 230, 1); }

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(60, 230, 176, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(60, 230, 176, 0.05); }
}

/* ---------- hero ---------- */
.hero {
  width: var(--shell);
  margin: clamp(56px, 11vh, 120px) auto clamp(60px, 10vh, 110px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero__copy h1 { margin: 22px 0 26px; }

.lede {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 40px;
}

.hero__facts {
  display: flex;
  gap: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.55rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__facts span { font-size: 0.85rem; color: var(--muted); }

/* stage */
.stage {
  position: relative;
  aspect-ratio: 1 / 1.06;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.stage__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.stage__rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stage__rings span:nth-child(1) { width: 62%; height: 62%; border-color: rgba(255, 50, 230, 0.42); animation: spin 18s linear infinite; border-style: dashed; }
.stage__rings span:nth-child(2) { width: 84%; height: 84%; animation: spin 34s linear reverse infinite; border-style: dashed; }
.stage__rings span:nth-child(3) {
  width: 100%;
  height: 100%;
  border: none;
  background: radial-gradient(circle, rgba(255, 50, 230, 0.28), transparent 62%);
  filter: blur(28px);
}

@keyframes spin { to { transform: rotate(360deg); } }

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1a1030;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* 截图自带营销标题，上移裁掉顶部文字只留手机 */
.shot img {
  position: relative;
  top: -19%;
  width: 100%;
  height: 119%;
  object-fit: cover;
  object-position: 50% 0;
}

/* 两行标题的截图需要多裁一点 */
.shot--viewer img {
  top: -23%;
  height: 123%;
}

.shot--hero {
  width: 66%;
  aspect-ratio: 9 / 17.1;
  transform: rotate(-3.2deg);
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  50% { transform: rotate(-3.2deg) translateY(-16px); }
}

.bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 210px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(20, 12, 36, 0.78);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.9);
}

.bubble__who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--peach);
}

.bubble__from {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.bubble--a { left: -12%; top: 14%; animation: float 11s ease-in-out infinite; }
.bubble--b { right: -9%; bottom: 24%; animation: float 13s ease-in-out 0.6s infinite; }

.pill {
  position: absolute;
  left: 4%;
  bottom: 9%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad);
  color: #23081e;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 20px 40px -18px rgba(255, 50, 230, 0.9);
}

.pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23081e;
  animation: pulse 1.6s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  opacity: 0.75;
  animation: twinkle 3.4s ease-in-out infinite;
}
.spark--1 { top: 8%; right: 18%; }
.spark--2 { top: 46%; right: 4%; width: 18px; height: 18px; animation-delay: 0.8s; }
.spark--3 { bottom: 6%; left: 26%; width: 9px; height: 9px; animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.18; transform: scale(0.7); }
  50% { opacity: 0.9; transform: scale(1.12); }
}

/* ---------- marquee ---------- */
.marquee {
  position: relative;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transform: rotate(-2.2deg) scale(1.06);
  overflow: hidden;
  margin: 30px 0 clamp(80px, 12vh, 150px);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: slide 34s linear infinite;
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  white-space: nowrap;
}

.marquee__track span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.marquee__track i { color: rgba(255, 255, 255, 0.28); font-size: 0.8em; }

@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sticky stack ---------- */
.stack { width: var(--shell); margin: 0 auto clamp(90px, 14vh, 170px); }
.stack__head { max-width: 620px; margin-bottom: clamp(40px, 6vh, 76px); }

.stack__body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.stack__viewer { position: sticky; top: 130px; }

.viewer { position: relative; display: grid; place-items: center; padding: 8px; }

.viewer__glow {
  position: absolute;
  inset: 12% 4%;
  background: var(--grad);
  filter: blur(70px);
  opacity: 0.42;
  border-radius: 50%;
}

.shot--viewer {
  position: absolute;
  width: 86%;
  aspect-ratio: 9 / 17.1;
  opacity: 0;
  transform: translateY(26px) scale(0.96) rotate(2deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.shot--viewer.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-1.4deg);
}

.steps { display: flex; flex-direction: column; gap: 14px; }

.step {
  position: relative;
  padding: 26px 30px 26px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  opacity: 0.44;
  transition: opacity 0.5s var(--ease), background 0.5s, transform 0.5s var(--ease);
}

.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}

.step.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(6px);
}
.step.is-active::before { transform: scaleY(1); }

.step__no {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--pink);
}

.step h3 { margin: 8px 0 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- bento ---------- */
.values { width: var(--shell); margin: 0 auto clamp(90px, 14vh, 170px); }
.values__head { max-width: 560px; margin-bottom: clamp(34px, 5vh, 60px); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tile {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  transition: transform 0.45s var(--ease), border-color 0.45s;
}

.tile::after {
  content: '';
  position: absolute;
  inset: -40% 40% 60% -40%;
  background: radial-gradient(circle, rgba(255, 50, 230, 0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
}

.tile:hover { transform: translateY(-6px); border-color: rgba(255, 122, 217, 0.45); }
.tile:hover::after { opacity: 1; }

.tile h3 { margin-bottom: 10px; }
.tile p { color: var(--muted); font-size: 0.96rem; position: relative; }

.tile--wide { grid-column: span 4; padding: 36px; }
.tile--globe { grid-column: span 2; }
.tile--soft { grid-column: span 2; background: var(--grad); color: #26071f; }
.tile--soft p { color: rgba(38, 7, 31, 0.78); }
.tile--soft::after { display: none; }

.tile__badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--grad);
  color: #26071f;
}

.tile__proof { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 600;
}
.tag--mint { color: var(--mint); border-color: rgba(60, 230, 176, 0.4); }

.flags { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.flags li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
  font-weight: 500;
}
.flags em { font-style: normal; color: var(--peach); font-weight: 700; }

.translate { margin-top: 18px; font-size: 0.92rem; }
.translate__from { color: var(--muted); }
.translate__to {
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 50, 230, 0.16);
  border: 1px solid rgba(255, 50, 230, 0.3);
  font-weight: 600;
}

.gifts { display: flex; gap: 10px; margin-top: 20px; font-size: 1.6rem; }
.gifts span { animation: float 6s ease-in-out infinite; }
.gifts span:nth-child(2) { animation-delay: 0.4s; }
.gifts span:nth-child(3) { animation-delay: 0.8s; }
.gifts span:nth-child(4) { animation-delay: 1.2s; }

/* ---------- safety ---------- */
.safety {
  width: var(--shell);
  margin: 0 auto clamp(90px, 14vh, 170px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.safety__intro p { margin-top: 20px; color: var(--muted); max-width: 42ch; }
.safety__links { display: flex; gap: 12px; margin-top: 28px; }

.shields { display: flex; flex-direction: column; }

.shields li {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 20px;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.shields li:last-child { border-bottom: 1px solid var(--line); }

.shields strong {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}
.shields span { color: var(--muted); font-size: 0.95rem; }

/* ---------- faq ---------- */
.faq {
  width: var(--shell);
  margin: 0 auto clamp(90px, 14vh, 160px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.faq__head { position: sticky; top: 130px; }

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

details[open] { background: rgba(255, 255, 255, 0.055); border-color: rgba(255, 122, 217, 0.35); }

summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
}
summary::-webkit-details-marker { display: none; }

summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
}
details[open] summary::after { transform: translateY(-30%) rotate(225deg); }

details p { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }
details a { color: var(--peach); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- cta + footer ---------- */
.cta { width: var(--shell); margin: 0 auto clamp(70px, 10vh, 120px); }

.cta__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(46px, 8vw, 90px) 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 50, 230, 0.36), transparent 62%), var(--ink-2);
}

.cta__panel::before {
  content: '';
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255, 182, 130, 0.3), transparent 66%);
  filter: blur(40px);
}

.cta__logo { position: relative; margin: 0 auto 24px; border-radius: 26px; box-shadow: 0 24px 60px -24px rgba(255, 50, 230, 0.9); }
.cta__panel h2 { position: relative; }
.cta__panel p { position: relative; margin: 16px auto 32px; color: var(--muted); max-width: 40ch; }
.cta__panel .btn { position: relative; }
.cta__note { position: relative; display: block; margin-top: 18px; font-size: 0.82rem; color: var(--muted); }

.foot {
  width: var(--shell);
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 34px;
}

.foot__brand { display: flex; align-items: center; gap: 12px; }
.foot__brand img { border-radius: 11px; }
.foot__brand div { display: flex; flex-direction: column; line-height: 1.3; }
.foot__brand strong { font-family: 'Baloo 2', sans-serif; font-size: 1.06rem; }
.foot__brand span { font-size: 0.82rem; color: var(--muted); }

.foot__links { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; font-size: 0.9rem; color: var(--muted); }
.foot__links a:hover { color: var(--text); }
.foot__copy { width: 100%; font-size: 0.82rem; color: rgba(169, 155, 192, 0.6); }

/* ---------- legal pages ---------- */
.legal { width: min(820px, 100% - 48px); margin: 60px auto 100px; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.legal__back:hover { color: var(--text); }

.legal__doc h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 26px; }
.legal__doc h2 {
  font-size: 1.5rem;
  margin: 46px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal__doc h3 { font-size: 1.1rem; margin: 26px 0 10px; color: var(--peach); }
.legal__doc p { margin: 12px 0; color: #cfc4e0; }
.legal__doc ul { margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.legal__doc li {
  position: relative;
  padding-left: 22px;
  color: #cfc4e0;
}
.legal__doc li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}
.legal__doc blockquote {
  margin: 20px 0;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 50, 230, 0.3);
  background: rgba(255, 50, 230, 0.08);
}
.legal__doc blockquote p { color: var(--text); margin: 0; }
.legal__doc a { color: var(--peach); text-decoration: underline; text-underline-offset: 3px; }
.legal__doc strong { color: #fff; }
.legal__doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.92rem; }
.legal__doc th, .legal__doc td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; color: #cfc4e0; }
.legal__doc th { background: rgba(255, 255, 255, 0.05); color: var(--text); }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .stage { max-width: 460px; margin: 0 auto; }
  .stack__body, .safety, .faq { grid-template-columns: 1fr; }
  .stack__viewer { position: relative; top: 0; max-width: 380px; margin: 0 auto 24px; }
  .faq__head { position: relative; top: 0; }
  .shot--viewer { width: 74%; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile, .tile--globe, .tile--soft { grid-column: span 2; }
  .tile--wide { grid-column: span 4; }
}

@media (max-width: 720px) {
  :root { --shell: min(1180px, 100% - 32px); }
  .nav { gap: 12px; padding: 8px 8px 8px 12px; }
  .nav__links { display: none; }
  .hero__facts { gap: 20px; flex-wrap: wrap; }
  .bubble { max-width: 160px; font-size: 0.8rem; }
  .bubble--a { left: -4%; }
  .bubble--b { right: -2%; }
  .marquee { transform: rotate(-2.4deg) scale(1.12); }
  .bento { grid-template-columns: 1fr; }
  .tile, .tile--wide, .tile--globe, .tile--soft { grid-column: span 1; }
  .shields li { grid-template-columns: 1fr; gap: 8px; }
  .foot__links { margin-left: 0; }
}

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