/* ──────────────────────────────────────────────────────────────
   Ranbval Social — "The Living Network"
   A warm, human + AI aesthetic: deep plum night, alive with coral,
   amber, violet and aqua. Cinematic, letterboxed motion — but this
   one feels like people, not machines.
   ────────────────────────────────────────────────────────────── */

:root {
  --bg: #07040c;
  --bg-2: #0d0716;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-line: rgba(255, 255, 255, 0.09);
  --text: #f4eef9;
  --text-dim: #b0a3c4;
  --coral: #ff5e9c;
  --amber: #ffb347;
  --violet: #a06bff;
  --aqua: #3ce0d0;
  --blue: #6aa6ff;
  --green: #34d399;
  --max: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
@media (pointer: fine) { body { cursor: none; } }

.grad {
  background: linear-gradient(110deg, var(--coral), var(--amber) 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════ INTRO TITLE CARD ════════ */
.intro {
  position: fixed; inset: 0; z-index: 200; background: #000;
  display: grid; place-items: center; overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
}
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__inner { text-align: center; padding: 24px; }
.intro__pre {
  font-size: 0.78rem; letter-spacing: 0.55em; text-transform: uppercase;
  color: var(--text-dim); opacity: 0; animation: introPre 1s ease forwards 0.25s;
}
.intro__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 6rem); letter-spacing: 0.04em; line-height: 1;
  margin: 18px 0 14px;
  background: linear-gradient(120deg, #fff, var(--coral) 50%, var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 44px rgba(255, 94, 156, 0.5));
}
.intro__sub {
  font-size: clamp(0.85rem, 2vw, 1.1rem); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--amber); opacity: 0; animation: introPre 1s ease forwards 1.1s;
}
@keyframes introPre { to { opacity: 1; } }
.intro__sweep {
  position: absolute; top: 0; bottom: 0; width: 60%; left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: introSweep 1.6s ease-in-out 0.6s;
}
@keyframes introSweep { to { left: 120%; } }
.intro__skip {
  position: absolute; bottom: 32px; right: 32px; background: none;
  border: 1px solid var(--panel-line); color: var(--text-dim);
  font-family: var(--font-body); padding: 8px 16px; border-radius: 100px;
  cursor: pointer; letter-spacing: 0.08em; transition: color 0.2s, border-color 0.2s;
}
.intro__skip:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.3); }

/* ════════ SPOTLIGHT CURSOR ════════ */
.cursor, .cursor-dot { position: fixed; z-index: 999; pointer-events: none; border-radius: 50%; left: 0; top: 0; }
.cursor {
  width: 38px; height: 38px; border: 1.5px solid rgba(255, 94, 156, 0.7); margin: -19px 0 0 -19px;
  transition: width 0.25s, height 0.25s, margin 0.25s, background 0.25s, border-color 0.25s;
}
.cursor.hot {
  width: 64px; height: 64px; margin: -32px 0 0 -32px;
  background: rgba(160, 107, 255, 0.12); border-color: rgba(160, 107, 255, 0.8);
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--amber); }

/* ════════ AMBIENT BACKGROUND ════════ */
.bg-aurora {
  position: fixed; inset: -20%; z-index: -3; pointer-events: none; opacity: 0.6;
  background:
    radial-gradient(40% 50% at 20% 20%, rgba(255, 94, 156, 0.18), transparent 70%),
    radial-gradient(45% 55% at 80% 25%, rgba(160, 107, 255, 0.16), transparent 70%),
    radial-gradient(50% 60% at 50% 90%, rgba(60, 224, 208, 0.12), transparent 70%);
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
@keyframes auroraDrift { to { transform: translate3d(2%, -2%, 0) scale(1.06); } }
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 80%);
}
.bg-orb { position: fixed; z-index: -3; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5; }
.bg-orb--1 { width: 420px; height: 420px; background: var(--coral); top: -120px; left: -80px; animation: orb 26s ease-in-out infinite alternate; }
.bg-orb--2 { width: 460px; height: 460px; background: var(--violet); bottom: -160px; right: -100px; animation: orb 30s ease-in-out infinite alternate-reverse; }
.bg-orb--3 { width: 360px; height: 360px; background: var(--aqua); top: 40%; left: 60%; animation: orb 34s ease-in-out infinite alternate; }
@keyframes orb { to { transform: translate3d(60px, -40px, 0) scale(1.12); } }
.bg-grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════ SCROLL PROGRESS ════════ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--violet), var(--aqua));
}

/* ════════ NAV ════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--pad);
  background: rgba(7, 4, 12, 0); backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(7, 4, 12, 0.72); backdrop-filter: blur(16px); border-bottom-color: var(--panel-line); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.nav__logo { color: var(--coral); font-size: 1.3rem; filter: drop-shadow(0 0 10px rgba(255, 94, 156, 0.6)); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.2s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--coral); transition: width 0.25s; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.18s, box-shadow 0.25s, background 0.25s;
  will-change: transform;
}
.btn span { transition: transform 0.2s; }
.btn:hover span { transform: translateX(4px); }
.btn--primary { background: linear-gradient(110deg, var(--coral), var(--violet)); color: #fff; box-shadow: 0 10px 34px rgba(255, 94, 156, 0.3); }
.btn--primary:hover { box-shadow: 0 16px 48px rgba(160, 107, 255, 0.42); }
.btn--ghost { background: var(--panel); border-color: var(--panel-line); color: var(--text); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.07); }
.nav__cta { padding: 10px 18px; font-size: 0.88rem; }
@media (max-width: 540px) { .nav__cta { display: none; } }

/* ════════ SHARED SECTION ════════ */
section { padding: clamp(70px, 11vw, 130px) var(--pad); max-width: var(--max); margin: 0 auto; }
.section-eyebrow { font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.08; margin-bottom: 18px; }
.section-lead { color: var(--text-dim); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 660px; margin-bottom: 44px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ════════ HERO ════════ */
.hero { position: relative; min-height: 100svh; max-width: none; display: grid; place-items: center; text-align: center; padding-top: 120px; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.kicker {
  display: inline-block; padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--panel-line); background: var(--panel);
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 26px;
}
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 8.5vw, 6rem); line-height: 1.02; letter-spacing: -0.01em; }
.rotator {
  background: linear-gradient(110deg, var(--coral), var(--amber) 50%, var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; white-space: nowrap;
}
.hero__lead { color: var(--text-dim); font-size: clamp(1.02rem, 2.1vw, 1.28rem); max-width: 640px; margin: 26px auto 36px; }
.hero__lead strong { color: var(--text); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__stats { display: flex; gap: clamp(20px, 5vw, 56px); justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.hero__stat { text-align: center; }
.hero__stat-value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.6rem); }
.hero__stat-label { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.04em; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(var(--coral), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ════════ MARQUEE ════════ */
.marquee { overflow: hidden; border-top: 1px solid var(--panel-line); border-bottom: 1px solid var(--panel-line); background: rgba(255, 255, 255, 0.015); padding: 18px 0; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--text-dim); padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; }
.marquee__item::after { content: "❖"; color: var(--coral); font-size: 0.7em; }
.marquee__item:hover { color: var(--text); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ════════ THE IDEA ════════ */
.idea { text-align: center; }
.idea__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.1; margin-bottom: 22px; }
.idea__lead { color: var(--text-dim); font-size: clamp(1.02rem, 2.1vw, 1.22rem); max-width: 720px; margin: 0 auto 50px; }
.idea__lead strong { color: var(--text); }
.idea__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .idea__pillars { grid-template-columns: 1fr; } }
.idea__pillar { padding: 26px 22px; border-radius: 18px; border: 1px solid var(--panel-line); background: var(--panel); text-align: left; transition: transform 0.25s, border-color 0.25s; }
.idea__pillar:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.22); }
.idea__pillar-icon { font-size: 1.7rem; margin-bottom: 12px; }
.idea__pillar h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; }
.idea__pillar p { color: var(--text-dim); font-size: 0.95rem; }

/* ════════ SYSTEMS GRID ════════ */
.systems__controls { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.systems__search {
  flex: 1; min-width: 240px; padding: 15px 20px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--panel-line); color: var(--text);
  font-family: var(--font-body); font-size: 0.98rem; outline: none; transition: border-color 0.2s, background 0.2s;
}
.systems__search::placeholder { color: var(--text-dim); }
.systems__search:focus { border-color: var(--coral); background: rgba(255, 94, 156, 0.05); }
.systems__count { color: var(--text-dim); font-size: 0.88rem; white-space: nowrap; }
.systems__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.system {
  position: relative; padding: 24px; border-radius: 20px; cursor: pointer;
  background: var(--panel); border: 1px solid var(--panel-line); overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.28s, box-shadow 0.28s;
}
.system::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; background: radial-gradient(120% 100% at 0% 0%, var(--sys, var(--coral)), transparent 60%); mix-blend-mode: screen; }
.system:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.24); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.system:hover::before { opacity: 0.16; }
.system__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.system__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; font-size: 1.5rem; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--panel-line); }
.system__count { font-size: 0.78rem; color: var(--text-dim); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--panel-line); }
.system__name { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 8px; }
.system__tag { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 16px; min-height: 2.4em; }
.system__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.system__chip { font-size: 0.74rem; color: var(--text-dim); padding: 4px 9px; border-radius: 100px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--panel-line); }
.system__more { font-size: 0.74rem; color: var(--sys, var(--coral)); padding: 4px 9px; font-weight: 600; }
.system__open { margin-top: 16px; font-size: 0.85rem; color: var(--sys, var(--coral)); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.systems__empty { grid-column: 1 / -1; text-align: center; color: var(--text-dim); padding: 50px; }

/* ════════ DAY RAIL ════════ */
.day__rail { display: grid; gap: 14px; }
.day__item { display: grid; grid-template-columns: 92px 56px 1fr; gap: 18px; align-items: start; padding: 22px; border-radius: 18px; border: 1px solid var(--panel-line); background: var(--panel); transition: transform 0.25s, border-color 0.25s; }
.day__item:hover { transform: translateX(8px); border-color: rgba(255, 255, 255, 0.22); }
.day__time { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--amber); }
.day__icon { font-size: 1.6rem; }
.day__body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; }
.day__body p { color: var(--text-dim); font-size: 0.96rem; }
@media (max-width: 600px) { .day__item { grid-template-columns: 64px 1fr; } .day__icon { display: none; } }

/* ════════ PERSONA ════════ */
.persona { text-align: center; }
.persona__line { color: var(--text-dim); font-size: clamp(1.1rem, 2.6vw, 1.5rem); max-width: 620px; margin: 12px auto 30px; min-height: 2.4em; transition: opacity 0.4s; }
.persona__dots { display: flex; gap: 10px; justify-content: center; }
.persona__dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--panel-line); background: transparent; cursor: pointer; transition: transform 0.2s, background 0.2s; }
.persona__dot.active { transform: scale(1.35); }

/* ════════ POSITION ════════ */
.position__table { display: grid; gap: 12px; margin-bottom: 30px; }
.position__row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; padding: 20px 22px; border-radius: 16px; border: 1px solid var(--panel-line); background: var(--panel); transition: border-color 0.25s; }
.position__row:hover { border-color: rgba(255, 255, 255, 0.2); }
.position__them { color: var(--text-dim); font-size: 0.96rem; }
.position__vs { font-family: var(--font-display); font-weight: 800; color: var(--coral); font-size: 0.9rem; }
.position__us { color: var(--text); font-size: 0.98rem; font-weight: 500; }
.position__us::before { content: "✦ "; color: var(--amber); }
.position__note { color: var(--text-dim); font-size: 1.02rem; max-width: 720px; }
.position__note strong { color: var(--text); }
@media (max-width: 640px) { .position__row { grid-template-columns: 1fr; gap: 8px; text-align: left; } .position__vs { justify-self: start; } }

/* ════════ FOUNDER ════════ */
.founder__card { display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: center; padding: 36px; border-radius: 24px; border: 1px solid var(--panel-line); background: var(--panel); }
.founder__photo { width: 160px; height: 160px; border-radius: 20px; object-fit: cover; border: 1px solid var(--panel-line); }
.founder__photo--ph { display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 3rem; background: linear-gradient(140deg, var(--coral), var(--violet)); color: #fff; }
.founder__quote { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.5rem); line-height: 1.4; margin-bottom: 18px; }
.founder__name { font-weight: 700; }
.founder__role { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 14px; }
.founder__links { display: flex; gap: 12px; flex-wrap: wrap; }
.founder__link { font-size: 0.85rem; color: var(--text-dim); padding: 7px 14px; border-radius: 100px; border: 1px solid var(--panel-line); transition: color 0.2s, border-color 0.2s; }
.founder__link:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.28); }
@media (max-width: 640px) { .founder__card { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* ════════ CTA ════════ */
.cta { text-align: center; }
.cta__inner { padding: clamp(44px, 7vw, 76px) var(--pad); border-radius: 28px; border: 1px solid var(--panel-line); background: linear-gradient(160deg, rgba(255, 94, 156, 0.08), rgba(160, 107, 255, 0.06)); position: relative; overflow: hidden; }
.cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 16px; }
.cta__lead { color: var(--text-dim); font-size: clamp(1rem, 2vw, 1.18rem); max-width: 560px; margin: 0 auto 32px; }
.cta__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.cta__form input { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 100px; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--panel-line); color: var(--text); font-family: var(--font-body); font-size: 0.98rem; outline: none; transition: border-color 0.2s; }
.cta__form input:focus { border-color: var(--coral); }
.cta__micro { margin-top: 18px; font-size: 0.85rem; color: var(--text-dim); }

/* ════════ FOOTER ════════ */
.footer { text-align: center; padding: 48px var(--pad); border-top: 1px solid var(--panel-line); }
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.footer__tag { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 10px; }
.footer__copy { color: var(--text-dim); font-size: 0.82rem; opacity: 0.7; }

/* ════════ THEATER MODAL ════════ */
.theater { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: var(--pad); opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.theater.open { opacity: 1; visibility: visible; }
.theater__backdrop { position: absolute; inset: 0; background: rgba(3, 2, 6, 0.8); backdrop-filter: blur(8px); }
.theater__close { position: absolute; top: 22px; right: 22px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: var(--panel); border: 1px solid var(--panel-line); color: var(--text); font-size: 1.1rem; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.theater__close:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }
.theater__panel { position: relative; z-index: 1; width: min(720px, 100%); max-height: 86vh; overflow-y: auto; padding: clamp(26px, 4vw, 42px); border-radius: 24px; background: linear-gradient(160deg, var(--bg-2), var(--bg)); border: 1px solid var(--panel-line); box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6); transform: translateY(20px) scale(0.98); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.theater.open .theater__panel { transform: none; }
.theater__head { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.theater__icon { width: 64px; height: 64px; flex: none; display: grid; place-items: center; font-size: 2rem; border-radius: 18px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--panel-line); }
.theater__kicker { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }
.theater__name { font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 2rem); }
.theater__tag { color: var(--text-dim); font-size: 0.95rem; }
.theater__blurb { color: var(--text-dim); font-size: 1rem; line-height: 1.6; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--panel-line); }
.theater__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.theater__feat { display: flex; gap: 10px; align-items: flex-start; padding: 13px 15px; border-radius: 12px; background: var(--panel); border: 1px solid var(--panel-line); font-size: 0.92rem; opacity: 0; transform: translateY(10px); animation: featIn 0.4s ease forwards; }
@keyframes featIn { to { opacity: 1; transform: none; } }
.theater__feat::before { content: "✦"; color: var(--sys, var(--coral)); flex: none; }

/* ════════ REDUCED MOTION ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
