/* ═══════════════════════════════════════════════════════════
   EVE Tribes — landing · Apple-glass dark cinematic system
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --text: #f5f5f7;
  --text-2: #a7a7ae;
  --crimson: #e0414d;
  --crimson-deep: #9e1520;
  --rose: #ff8a93;
  --peach: #ffc6a0;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Chrome scroll-anchoring fights the infinite marquee/float animations
     and makes the page wander on its own — anchoring must stay off. */
  overflow-anchor: none;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a, button, input { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid rgba(224, 65, 77, 0.6); outline-offset: 3px; border-radius: 6px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.container { width: min(1180px, 92vw); margin: 0 auto; }
section[id] { scroll-margin-top: 96px; }
.container.narrow { width: min(880px, 92vw); }
.center { text-align: center; }

/* ── Type ── */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(34px, 5vw, 60px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 56ch; }
.lead.center { margin-inline: auto; }
.kicker {
  font-size: 14px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #98989f;
  margin-bottom: 18px;
}
.grad {
  background: linear-gradient(92deg, var(--rose) 10%, var(--peach) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-weight: 600; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(211, 32, 43, 0.6); outline-offset: 3px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(224, 65, 77, 0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(224, 65, 77, 0.4), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-glass {
  background: var(--glass); color: var(--text);
  border-color: var(--stroke);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}
.btn-glass:hover { background: var(--glass-strong); }
.btn-light { background: #f5f5f7; color: #111; }
.btn-light:hover { background: #fff; }

/* ── Glass primitive ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border-radius: 999px;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 0 14px;
  transition: padding 0.35s var(--ease);
}
.nav-inner {
  width: min(1180px, 94vw); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(9, 9, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.nav.scrolled { padding: 8px 0; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: auto; }
.nav-wordmark { font-weight: 700; letter-spacing: 0.02em; font-size: 18px; }
.nav-wordmark em { font-style: normal; font-weight: 500; color: var(--text-2); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh; /* fallback for browsers without svh */
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -8% 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
  transform-origin: 50% 35%;
}
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 112%, rgba(120, 60, 160, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,12,0.74) 0%, rgba(10,10,12,0.28) 38%, rgba(10,10,12,0.58) 72%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(1180px, 92vw); margin: 0 auto;
  padding: 140px 0 120px;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero-title {
  font-size: clamp(56px, 10vw, 128px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 26px;
  text-shadow: 0 10px 60px rgba(0, 0, 0, 0.45);
}
.hero-sub {
  font-size: clamp(18px, 1.9vw, 22px);
  color: #d9d9de; max-width: 54ch; margin-bottom: 38px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero device: animated EVE splash in an iPhone frame ── */
.hero-device { display: flex; justify-content: center; position: relative; }
.iphone {
  position: relative;
  width: clamp(230px, 20vw, 290px);
  border-radius: 46px;
  background: #101013;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.6),
    inset 0 0 0 2px #1c1c21;
  transform: rotate(5deg);
  animation: floaty 9s ease-in-out infinite;
}
.iphone-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 24px; z-index: 3;
  background: #101013; border-radius: 0 0 15px 15px;
}
.splash {
  position: relative; overflow: hidden;
  height: clamp(470px, 42vw, 590px);
  border-radius: 36px;
  background:
    radial-gradient(120% 70% at 50% 0%, #a8161e 0%, #8c1017 58%, #740b12 100%);
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 22px 16px;
  color: #fff; text-align: center;
}
.splash::after { /* passing light sweep */
  content: ""; position: absolute; inset: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.13) 50%, transparent 58%);
  transform: translateX(-70%) rotate(0.001deg);
  animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 55% { transform: translateX(-70%); }
  85%, 100% { transform: translateX(70%); }
}
.splash-status {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; opacity: 0.95; padding: 0 4px;
}
.splash-status .sig { display: inline-flex; gap: 3px; align-items: flex-end; }
.splash-status .sig i {
  width: 3.5px; background: #fff; border-radius: 1px; display: block;
}
.splash-status .sig i:nth-child(1) { height: 5px; }
.splash-status .sig i:nth-child(2) { height: 8px; }
.splash-status .sig i:nth-child(3) { height: 11px; }
.splash-center { margin: auto 0; }
.splash-logo {
  width: clamp(96px, 9vw, 128px); height: auto; margin: 0 auto 22px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
  animation: breathe 3.2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.splash-quote {
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1.55;
}
.splash-load { margin-top: auto; width: 78%; }
.load-bar {
  display: flex; gap: 4px;
  border: 2px solid rgba(255, 255, 255, 0.92); border-radius: 6px;
  padding: 4px; margin-bottom: 10px;
}
.load-bar span {
  flex: 1; height: 12px; border-radius: 2px; background: #fff;
  opacity: 0.14;
  animation: blockfill 2.6s ease-in-out infinite;
}
.load-bar span:nth-child(1) { animation-delay: 0s; }
.load-bar span:nth-child(2) { animation-delay: 0.16s; }
.load-bar span:nth-child(3) { animation-delay: 0.32s; }
.load-bar span:nth-child(4) { animation-delay: 0.48s; }
.load-bar span:nth-child(5) { animation-delay: 0.64s; }
.load-bar span:nth-child(6) { animation-delay: 0.8s; }
.load-bar span:nth-child(7) { animation-delay: 0.96s; }
.load-bar span:nth-child(8) { animation-delay: 1.12s; }
@keyframes blockfill {
  0% { opacity: 0.14; }
  12%, 62% { opacity: 1; }
  74%, 100% { opacity: 0.14; }
}
.splash-load em {
  font-style: normal; font-size: 12px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase; opacity: 0.9;
  animation: lpulse 2.6s ease-in-out infinite;
}
@keyframes lpulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
.splash-foot { margin-top: 14px; font-size: 9.5px; letter-spacing: 0.06em; opacity: 0.65; }

/* floating live chips */
.hero-chips { position: absolute; inset: 0; pointer-events: none; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; font-size: 14px; font-weight: 500;
  color: #e9e9ee;
}
.chip b { font-weight: 700; }
.chip svg { width: 16px; height: 16px; stroke: #d9d9de; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.dot.live {
  width: 8px; height: 8px; border-radius: 50%; background: #34d17c; flex: none;
  box-shadow: 0 0 0 0 rgba(52, 209, 124, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 209, 124, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(52, 209, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 209, 124, 0); }
}
.hero-chips { z-index: 3; }
.hero-chips .chip { position: absolute; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45); }
.float-a { right: 27%; top: 17%; animation: floaty 7s ease-in-out infinite; }
.float-b { right: 1%; top: 55%; animation: floaty 8.5s ease-in-out 0.8s infinite; }
.float-c { right: 25%; top: 76%; animation: floaty 7.6s ease-in-out 1.6s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 30px; z-index: 2;
  width: 26px; height: 42px; margin-left: -13px;
  border: 2px solid rgba(255, 255, 255, 0.35); border-radius: 999px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px; margin-left: -2px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ═══════════ MARQUEE ═══════════ */
.marquee-band { padding: 90px 0 40px; overflow: hidden; }
.band-title {
  text-align: center; color: var(--text-2); font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 34px;
}
.marquee { overflow: hidden; padding: 12px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 34px;
  white-space: nowrap; will-change: transform;
  animation: slide 46s linear infinite;
}
.marquee[data-dir="right"] .marquee-track { animation-direction: reverse; animation-duration: 54s; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-track span {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.02em;
  color: rgba(245, 245, 247, 0.85);
}
.marquee-track i { color: #5c5c64; font-style: normal; font-size: 20px; }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto { padding: 130px 0; text-align: center; }
.manifesto-line { font-size: clamp(24px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-2); }
.manifesto-line s { opacity: 0.55; }
.manifesto-line.big { font-size: clamp(34px, 5.4vw, 64px); color: var(--text); margin-top: 10px; }
.manifesto-line.big em {
  font-style: normal;
  background: linear-gradient(92deg, var(--rose), var(--peach));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.manifesto-sub { margin: 44px auto 0; color: var(--text-2); font-size: clamp(17px, 1.6vw, 20px); max-width: 52ch; }

/* posting vs living — the manifesto, illustrated */
.versus {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2.6vw, 30px); align-items: stretch;
  max-width: 940px; margin: 56px auto 0; text-align: left;
}
.v-card {
  border-radius: 24px; border: 1px solid var(--stroke);
  background: var(--bg-2); overflow: hidden;
  display: flex; flex-direction: column;
  height: 400px;
}
.v-head {
  display: flex; align-items: center; gap: 9px;
  padding: 16px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.v-dot { width: 8px; height: 8px; border-radius: 50%; background: #5a5a62; flex: none; }
.v-old { opacity: 0.85; }
.fposts-clip {
  flex: 1; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent);
  mask-image: linear-gradient(180deg, #000 70%, transparent);
}
.fposts { animation: doomscroll 14s linear infinite; }
@keyframes doomscroll { to { transform: translateY(-50%); } }
.fpost {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; filter: grayscale(1);
}
.fpost i {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: #2c2c31;
}
.fpost > div { flex: 1; display: grid; gap: 7px; }
.fpost u {
  display: block; height: 8px; border-radius: 4px;
  background: #2c2c31; text-decoration: none;
}
.fpost u.short { width: 55%; }
.fpost em { font-style: normal; color: #55555c; font-size: 12px; flex: none; }
.v-tag {
  padding: 14px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #6a6a72;
  border-top: 1px solid rgba(255, 255, 255, 0.07); text-align: center;
}
.v-tag.alive {
  color: var(--rose);
  background: linear-gradient(180deg, transparent, rgba(224, 65, 77, 0.07));
}
.v-mid { display: flex; align-items: center; }
.v-mid span {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: var(--text-2);
  background: var(--glass); border: 1px solid var(--stroke);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.v-new {
  border-color: rgba(224, 65, 77, 0.28);
  box-shadow: 0 24px 70px rgba(224, 65, 77, 0.1);
}
.eposts { flex: 1; padding: 8px 0; }
.epost {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 20px;
}
.epost img {
  flex: none; width: 52px; height: 52px; border-radius: 14px; object-fit: cover;
}
.epost > div { flex: 1; min-width: 0; }
.epost b { display: block; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.epost small { color: var(--text-2); font-size: 13px; }
.epost .join {
  flex: none; font-size: 13px; font-weight: 700; color: #fff;
  padding: 7px 16px; border-radius: 999px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-deep));
}
@media (max-width: 860px) {
  .versus { grid-template-columns: 1fr; }
  .v-mid { justify-content: center; margin: -6px 0; z-index: 1; }
  .v-card { height: auto; }
  .v-old .fposts-clip { height: 180px; flex: none; }
}

/* ═══════════ FEATURE SPLITS ═══════════ */
.feature { padding: 110px 0; position: relative; }
.feature.alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.025) 30%, rgba(255,255,255,0.025) 70%, transparent); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.rev .split-media { order: 0; } /* media stays left on desktop */
.split-copy h2 { margin-bottom: 22px; }
.split-copy .lead { margin-bottom: 34px; }
.feature-list { list-style: none; display: grid; gap: 22px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list b { display: block; font-size: 17px; letter-spacing: -0.01em; }
.feature-list small { color: var(--text-2); font-size: 15px; line-height: 1.5; display: block; margin-top: 2px; }
.fico {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--stroke);
}
.fico svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* phone stage */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.phone-stage.single { min-height: 620px; }
.glow {
  position: absolute; width: 70%; height: 70%; border-radius: 50%;
  filter: blur(90px); opacity: 0.45; z-index: 0;
}
@supports (aspect-ratio: 1) {
  .glow { height: auto; aspect-ratio: 1; }
}
.glow-red { background: radial-gradient(circle, rgba(224,65,77,0.4), transparent 65%); }
.glow-teal { background: radial-gradient(circle, rgba(60,190,160,0.4), transparent 65%); }
.phone {
  position: relative; z-index: 1;
  width: clamp(240px, 26vw, 340px);
  border-radius: clamp(30px, 3.4vw, 44px);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.7s var(--ease);
}
.phone img { width: 100%; height: auto; }
.phone.tilt-l { transform: rotate(-5deg) translateY(8px); }
.phone.tilt-r { transform: rotate(5deg) translateY(-6px); }
.phone.back {
  position: absolute; width: clamp(200px, 21vw, 280px);
  z-index: 0; opacity: 0.9;
}
.tilt-l.back { left: 2%; }
.tilt-r.back { right: 2%; }
.phone-stage:hover .phone.tilt-l { transform: rotate(-3deg) translateY(0); }
.phone-stage:hover .phone.tilt-r { transform: rotate(3deg) translateY(-12px); }

/* ═══════════ BENTO ═══════════ */
.bento-section { padding: 120px 0; }
.bento-section h2 { margin-bottom: 12px; }
.bento {
  margin-top: 60px;
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
}
.bcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--bg-2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.b-lg { grid-row: span 2; }
.bcard-img { position: absolute; inset: 0; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.bcard:hover .bcard-img img { transform: scale(1.06); }
.bcard-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(8,8,10,0.05) 30%, rgba(8,8,10,0.88) 82%);
}
.bcard-body {
  position: absolute; inset: auto 0 0 0; padding: 26px;
}
.bcard-body h3 { margin-bottom: 6px; }
.bcard-body p { color: #c9c9d0; font-size: 15px; line-height: 1.55; max-width: 42ch; }

/* ═══════════ SOCIAL FIRST — Apple-style product showcase ═══════════ */
.social { padding: 130px 0; position: relative; overflow: hidden; }
.social-stage {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
  margin-top: 70px;
}
.social-points { list-style: none; display: grid; gap: 36px; }
.social-points.left { text-align: right; justify-items: end; }
.social-points li { max-width: 34ch; }
.social-points b { display: block; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 6px; }
.social-points small { color: var(--text-2); font-size: 15px; line-height: 1.55; }

.social-phone {
  position: relative; display: flex; justify-content: center; align-items: center;
  padding: 46px 56px 56px;
}
/* slow-turning studio light behind the device */
.social-phone::before {
  content: ""; position: absolute; width: 120%; height: 120%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(224, 65, 77, 0.3), rgba(130, 70, 190, 0.2),
    rgba(255, 179, 138, 0.24), rgba(224, 65, 77, 0.3));
  filter: blur(80px); opacity: 0.75;
  animation: halospin 18s linear infinite;
}
@keyframes halospin { to { transform: rotate(360deg); } }
.social-phone .phone {
  width: clamp(250px, 24vw, 330px); z-index: 1;
  opacity: 0; transform: translateY(70px) scale(0.9);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.social-phone.in .phone { opacity: 1; transform: none; }

/* floating UI fragments — spring in, then drift */
.frag {
  position: absolute; z-index: 2; border-radius: 18px;
  opacity: 0; transform: scale(0.4) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.social-phone.in .frag { opacity: 1; transform: none; }
.social-phone.in .frag-stories { transition-delay: 0.55s; animation: floaty 7s ease-in-out 1.5s infinite; }
.social-phone.in .frag-likes { transition-delay: 0.75s; animation: floaty 8s ease-in-out 2s infinite; }
.social-phone.in .frag-dm { transition-delay: 0.95s; animation: floaty 7.5s ease-in-out 2.4s infinite; }
.social-phone.in .frag-book { transition-delay: 1.15s; animation: floaty 6.5s ease-in-out 2.8s infinite; }

.frag-stories {
  top: 4%; left: -6%;
  display: flex; align-items: center; gap: 8px; padding: 12px 18px;
}
.frag-stories em { font-style: normal; font-size: 13px; font-weight: 600; color: #e6e6eb; margin-left: 4px; }
.ring {
  width: 30px; height: 30px; border-radius: 50%; position: relative; flex: none;
  background: conic-gradient(#e0414d, #ffb38a, #a855f7, #e0414d);
  animation: ringspin 5s linear infinite;
}
.ring::after {
  content: ""; position: absolute; inset: 2.5px; border-radius: 50%;
  background: #202024;
}
.ring.r2 { animation-duration: 6.4s; }
.ring.r3 { animation-duration: 7.8s; }
@keyframes ringspin { to { transform: rotate(360deg); } }

.frag-likes {
  top: 16%; right: -7%;
  display: flex; align-items: center; gap: 8px; padding: 12px 18px;
  font-size: 15px;
}
.frag-likes b { font-size: 15px; }
.frag-likes svg {
  width: 18px; height: 18px; fill: none;
  stroke: var(--rose); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round;
}
.frag-likes svg:first-child { animation: heartbeat 1.9s ease-in-out infinite; fill: var(--rose); stroke: none; }
@keyframes heartbeat {
  0%, 30%, 100% { transform: scale(1); }
  12% { transform: scale(1.3); }
  20% { transform: scale(1.08); }
}
.frag-dm {
  bottom: 15%; left: -9%; max-width: 225px;
  padding: 13px 17px; font-size: 13.5px; line-height: 1.5; color: #e6e6eb;
  border-radius: 18px 18px 18px 5px;
}
.frag-dm b { color: #fff; }
.frag-book {
  bottom: 4%; right: -3%; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-deep));
  box-shadow: 0 16px 44px rgba(224, 65, 77, 0.4);
}
.frag-book svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.frag-book::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-110%);
  animation: sheen 4.2s ease-in-out 2.2s infinite;
}

/* ═══════════ TRIBES COLLAGE ═══════════ */
.tribes { padding: 120px 0; }
.tribes-head { margin-bottom: 60px; }
.tribes-head h2 { margin-bottom: 22px; }
.collage {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.collage figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 240px; /* fallback when aspect-ratio unsupported */
  border: 1px solid var(--stroke);
}
@supports (aspect-ratio: 1) {
  .collage figure { min-height: 0; aspect-ratio: 4 / 3.4; }
}
.collage img { position: absolute; inset: 0; }
.collage img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.collage figure:hover img { transform: scale(1.07); }
.collage figcaption {
  position: absolute; left: 18px; bottom: 14px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}
.collage figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, transparent 55%, rgba(8, 8, 10, 0.75));
}
.collage figcaption { z-index: 1; }
.interest-chips {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.interest-chips .chip { font-size: 14px; padding: 10px 20px; }

/* ═══════════ STATS ═══════════ */
.stats-band { padding: 90px 0; border-block: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat b {
  display: block; font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #9a9aa2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { color: var(--text-2); font-size: 15px; }

/* ═══════════ HOSTS ═══════════ */
.hosts { padding: 110px 0; }
.hosts-card {
  display: grid; grid-template-columns: 1.15fr 1fr;
  border-radius: 32px; overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, #121216 0%, #0b0b0f 100%);
}
.hosts-copy { padding: clamp(36px, 5vw, 76px); }
.hosts-copy h2 { margin-bottom: 20px; }
.hosts-copy .lead { margin-bottom: 36px; color: #d4d4da; }
.host-list { grid-template-columns: 1fr 1fr; margin-bottom: 40px; }
.host-list li { align-items: center; }
.hosts-visual { position: relative; min-height: 480px; }
.hosts-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 38%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 38%);
}
.hwidget {
  position: absolute; border-radius: 20px; padding: 16px 20px;
  background: rgba(12, 12, 16, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.hwidget small { display: block; color: var(--text-2); font-size: 12.5px; letter-spacing: 0.04em; }
.hwidget b { display: block; font-size: 20px; letter-spacing: -0.02em; margin: 2px 0 8px; }
.hwidget svg { display: block; }
.w-sales { right: 10%; top: 16%; width: min(220px, 60%); animation: floaty 8s ease-in-out infinite; }
.w-sales > svg { width: 100%; height: 36px; }
.w-checkin {
  left: 14%; bottom: 12%;
  display: flex; align-items: center; gap: 14px;
  animation: floaty 9s ease-in-out 1.2s infinite;
}
.w-checkin b { margin: 0; font-size: 17px; }
.w-checkin small { letter-spacing: 0; }
.wtick {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(74, 222, 128, 0.16); border: 1px solid rgba(74, 222, 128, 0.35);
}
.wtick svg { width: 20px; height: 20px; stroke: #4ade80; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════ REPUTATION CARD ═══════════ */
.rep-card {
  display: inline-flex; align-items: center; gap: 20px;
  border-radius: 22px; padding: 20px 26px;
}
.rep-ring {
  flex: none; width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(closest-side, var(--bg-2) 78%, transparent 79%),
    conic-gradient(var(--crimson) 0 92%, rgba(255,255,255,0.12) 92%);
}
.rep-ring b { font-size: 26px; line-height: 1; }
.rep-ring small { color: var(--text-2); font-size: 11px; }
.rep-info b { display: block; font-size: 16px; margin-bottom: 4px; }
.rep-info span { color: var(--text-2); font-size: 13.5px; line-height: 1.5; display: block; max-width: 34ch; }

/* ═══════════ FRANCHISE ═══════════ */
.franchise { position: relative; padding: 96px 0 100px; overflow: hidden; }
.franchise-bg { position: absolute; inset: 0; }
.franchise-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; }
.franchise-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(85% 60% at 50% 45%, rgba(10, 10, 12, 0.5) 0%, rgba(10, 10, 12, 0.88) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}
.franchise-body { position: relative; }
.franchise h2 { margin-bottom: 36px; text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6); }
.fr-prose {
  text-align: left;
  font-size: clamp(17px, 1.7vw, 20px); line-height: 1.85; color: #dededf;
  max-width: 62ch; margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.fr-prose p + p { margin-top: 20px; }
.fr-prose b { color: #fff; }
.fr-prose em { color: var(--peach); font-style: italic; }
.fr-mini {
  margin: 70px 0 22px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.fr-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; text-align: left;
}
.fr-pillar {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--stroke); min-height: 360px;
  display: flex; align-items: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.fr-pillar:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55); }
.fr-pillar-img { position: absolute; inset: 0; }
.fr-pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.fr-pillar:hover .fr-pillar-img img { transform: scale(1.06); }
.fr-pillar-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(8, 8, 10, 0.08) 22%, rgba(8, 8, 10, 0.93) 76%);
}
.fr-pillar-body { position: relative; padding: 24px 24px 26px; }
.fr-pillar-body .fico {
  margin-bottom: 14px;
  background: rgba(10, 10, 14, 0.55);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.fr-pillar-body b { display: block; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.fr-pillar-body p { color: #d2d2d9; font-size: 14.5px; line-height: 1.6; }

/* live global-ticker chips floating over the section */
.fr-chips { position: absolute; inset: 0; pointer-events: none; }
.fr-chips .chip { position: absolute; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); }
.fr-float-a { left: 3%; top: 16%; animation: floaty 8s ease-in-out infinite; }
.fr-float-b { right: 2%; top: 30%; animation: floaty 7s ease-in-out 1.1s infinite; }
.fr-float-c { left: 5%; top: 62%; animation: floaty 9s ease-in-out 2.2s infinite; }

/* chapter icon badges */
.fr-ico {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(224, 65, 77, 0.18), rgba(255, 179, 138, 0.08));
  border: 1px solid rgba(224, 65, 77, 0.32);
}
.fr-ico svg {
  width: 22px; height: 22px; stroke: var(--rose);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.fr-ico-flame svg { animation: flamePulse 2.4s ease-in-out infinite; transform-origin: 50% 85%; }
@keyframes flamePulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12) rotate(-2deg); }
  70% { transform: scale(1.05) rotate(2deg); }
}
.fr-ico-city svg { animation: cityGlow 3s ease-in-out infinite; }
@keyframes cityGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 138, 147, 0)); opacity: 0.85; }
  50% { filter: drop-shadow(0 0 7px rgba(255, 138, 147, 0.9)); opacity: 1; }
}
.fr-ico-spread svg { animation: spinSlow 14s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.fr-chapters {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; text-align: left;
}
.fr-chapter {
  border-radius: 22px; padding: 24px 24px 26px;
  background: rgba(12, 12, 16, 0.55);
}
.fr-chapter span {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--rose); margin-bottom: 10px;
}
.fr-chapter b { display: block; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.fr-chapter p { color: #c9c9d0; font-size: 14.5px; line-height: 1.6; }
.fr-flags { margin: 64px 0 22px; }
.fr-flags .marquee { padding: 8px 0; }
.fr-flags .marquee-track { gap: 14px; animation-duration: 42s; }
.fpill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px 11px 14px;
  font-size: clamp(14px, 1.6vw, 17px); font-weight: 600; letter-spacing: -0.01em;
  color: rgba(245, 245, 247, 0.94);
  background: rgba(12, 12, 16, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.fpill i { font-style: normal; font-size: 22px; line-height: 1; }
.fr-scarcity {
  margin: 0 auto; max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px); color: #cfcfd6; line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.fr-scarcity b { color: #fff; font-size: clamp(17px, 1.8vw, 21px); letter-spacing: -0.01em; }
.fr-cta { margin-top: 46px; }
.fr-contact-cards {
  margin-top: 26px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.fr-ccard {
  display: inline-flex; align-items: center; gap: 13px;
  border-radius: 18px; padding: 12px 22px 12px 14px; text-align: left;
  background: rgba(12, 12, 16, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.fr-ccard:hover { transform: translateY(-3px); background: rgba(20, 20, 26, 0.7); }
.cc-ico {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
}
.cc-mail { background: rgba(224, 65, 77, 0.14); border: 1px solid rgba(224, 65, 77, 0.35); }
.cc-mail svg { width: 19px; height: 19px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cc-wa { background: rgba(74, 222, 128, 0.12); border: 1px solid rgba(74, 222, 128, 0.35); }
.cc-wa svg { width: 20px; height: 20px; fill: #4ade80; }
.cc-txt small { display: block; font-size: 11.5px; color: var(--text-2); letter-spacing: 0.02em; }
.cc-txt b { font-size: 14.5px; letter-spacing: -0.01em; color: #fff; }
.fr-fineprint {
  margin: 18px auto 0; max-width: 58ch;
  font-size: 13px; font-style: italic; color: #a3a3ab; line-height: 1.6;
}

/* ═══════════ FOUNDER — editorial, restrained, premium ═══════════ */
.founder { padding: 90px 0 60px; position: relative; overflow: hidden; }
.founder h2 { margin-bottom: 42px; }
.founder-card {
  display: grid; grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
  border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, #131317 0%, #0a0a0d 100%);
  padding: clamp(26px, 3.5vw, 48px);
}
.founder-visual { position: relative; }
.founder-photo {
  position: relative; border-radius: 20px; overflow: hidden;
  max-width: 380px; margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.founder-photo::after { /* quiet cinematic grade */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10, 10, 13, 0) 55%, rgba(10, 10, 13, 0.55) 100%);
}
.founder-photo img {
  width: 100%; height: auto;
  filter: grayscale(0.9) contrast(1.04) brightness(0.96);
  transition: filter 1s var(--ease);
}
.founder-card:hover .founder-photo img { filter: grayscale(0.2) contrast(1.02) brightness(1); }
.founder-cred {
  margin-top: 20px; text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #8e8e96; white-space: nowrap;
}
.founder-cred i { font-style: normal; color: #4b4b52; margin: 0 10px; }
.founder-quote { margin-bottom: 34px; }
.qrule {
  display: block; width: 44px; height: 2px; margin-bottom: 30px;
  background: linear-gradient(90deg, var(--crimson), var(--peach));
}
.founder-quote p {
  font-size: clamp(25px, 2.7vw, 37px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.22; color: var(--text);
}
.founder-bio {
  color: var(--text-2); font-size: 16px; line-height: 1.8;
  max-width: 58ch; margin-bottom: 38px;
}
.founder-bio b { color: #fff; font-weight: 600; }
.founder-bio em { color: #d9d9de; font-style: italic; }
.founder-stats {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 38px; max-width: 520px;
}
.founder-stats li { padding: 2px clamp(16px, 2vw, 28px); border-left: 1px solid rgba(255, 255, 255, 0.1); }
.founder-stats li:first-child { padding-left: 0; border-left: 0; }
.founder-stats b {
  display: block; font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--text);
}
.founder-stats span { color: #8e8e96; font-size: 13px; letter-spacing: 0.02em; }
.founder-sign { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 24px; }
.founder-sign b { display: block; font-size: 18px; letter-spacing: -0.01em; font-weight: 700; }
.founder-sign span {
  display: block; margin-top: 6px; color: #8e8e96;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ═══════════ CTA ═══════════ */
.cta { position: relative; padding: 110px 0 120px; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 50% 100%, rgba(166,21,28,0.2), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, rgba(10,10,12,0.66) 30%, rgba(10,10,12,0.78) 100%);
}
.cta .container { position: relative; }
.cta-logo { margin: 0 auto 30px; width: 110px; filter: drop-shadow(0 10px 44px rgba(0,0,0,0.6)); }
.cta-title { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -0.035em; margin-bottom: 20px; }
.cta .lead { margin-bottom: 44px; }
.waitlist {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 560px; margin: 0 auto 14px;
}
.waitlist input {
  flex: 1 1 280px; min-height: 56px; padding: 0 24px;
  border-radius: 999px; font-size: 16px; font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  transition: border-color 0.25s, background 0.25s;
}
.waitlist input::placeholder { color: #9a9aa2; }
.waitlist input:focus { outline: none; border-color: rgba(211, 32, 43, 0.8); background: rgba(255,255,255,0.12); }
.form-note { color: #b9b9c0; font-size: 14px; }
.form-note.ok { color: #4ade80; font-weight: 600; }
.store-badges { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  border-radius: 16px; padding: 10px 22px; text-align: left;
}
.store svg { width: 26px; height: 26px; fill: #fff; }
.store small { display: block; font-size: 11px; color: var(--text-2); line-height: 1.2; }
.store b { font-size: 16px; letter-spacing: -0.01em; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 80px 0 calc(40px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.07); background: #08080a;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { margin-bottom: 18px; }
.footer-brand p { color: var(--text-2); font-size: 15px; }
.footer-col b { display: block; margin-bottom: 16px; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #8e8e96; }
.footer-col a { display: block; color: var(--text-2); font-size: 15px; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.brahma-band {
  text-align: center;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.brahma-band img { display: inline-block; height: 30px; width: auto; margin-bottom: 18px; opacity: 0.95; }
.brahma-band p {
  color: var(--text-2); font-size: 15px; line-height: 1.7;
  max-width: 62ch; margin: 0 auto 12px;
}
.brahma-band p b, .brahma-band small b { color: #d4d4da; font-weight: 600; }
.brahma-band small { display: block; color: #77777e; font-size: 13px; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06);
  color: #77777e; font-size: 14px;
}
.crafted { display: inline-flex; align-items: center; gap: 10px; color: #9a9aa2; }
.crafted img { height: 22px; width: auto; opacity: 0.9; }

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-chips .float-b { display: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-device { display: none; }
  .social-stage { grid-template-columns: 1fr; }
  .social-points.left { text-align: left; justify-items: start; }
  .social-phone { order: -1; padding: 30px 8px 40px; }
  .frag-stories { left: 0; }
  .frag-likes { right: 0; }
  .frag-dm { left: 0; }
  .frag-book { right: 0; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
  .phone-stage { min-height: 480px; }
  .collage { grid-template-columns: repeat(2, 1fr); }
  .fr-chapters { grid-template-columns: 1fr; }
  .fr-pillars { grid-template-columns: 1fr; }
  .fr-pillar { min-height: 300px; }
  .fr-chips { display: none; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-visual { max-width: 380px; margin: 0 auto; }
  .founder-cred { white-space: normal; }
  .hosts-card { grid-template-columns: 1fr; }
  .hosts-visual { min-height: 340px; order: -1; }
  .hosts-visual img {
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .host-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-chips .float-a { top: 18%; right: 2%; }
  .hero-chips .float-c { display: none; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .b-lg { grid-row: span 1; }
  .collage { grid-template-columns: 1fr; }
  .collage figure { aspect-ratio: 16 / 10; }
  .hero-chips { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img, .marquee-track, .float-a, .float-b, .float-c,
  .dot.live, .scroll-hint span, .iphone, .splash::after,
  .splash-logo, .load-bar span, .splash-load em, .fposts,
  .social-phone::before, .frag, .ring, .frag-likes svg:first-child,
  .frag-book::after, .fr-chips .chip, .fr-ico svg { animation: none !important; }
  .social-phone .phone, .frag { opacity: 1; transform: none; transition: none; }
  .load-bar span { opacity: 0.85; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone, .bcard, .bcard-img img, .collage img, .btn { transition: none; }
}
