@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --void: #060606;
  --ember: #F97D5B;
  --ember-glow: rgba(249, 125, 91, 0.15);
  --ember-hot: #FF6B3D;
  --ash: #f0ece4;
  --ash-dim: rgba(240, 236, 228, 0.5);
  --ash-ghost: rgba(240, 236, 228, 0.07);
  --smoke: rgba(240, 236, 228, 0.25);
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.06);
  --green: #32D74B;
  --blue: #0A84FF;
  --font: 'Outfit', system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: auto; }

body {
  font-family: var(--font);
  background: var(--void);
  color: var(--ash);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font); border: none; background: none; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ━━━ Cursor glow ━━━ */
#cursor-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s;
  will-change: transform;
}
body:hover #cursor-glow { opacity: 1; }

/* ━━━ Grain ━━━ */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 18px 0;
  transition: all 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(6, 6, 6, 0.8);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-left img { width: 34px; height: 34px; border-radius: 9px; }
.nav-left span { font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-right a {
  font-size: 14px; font-weight: 500; color: var(--smoke);
  transition: color 0.25s;
}
.nav-right a:hover { color: var(--ash); }
.nav-cta {
  background: var(--ash) !important; color: var(--void) !important;
  padding: 8px 22px !important; border-radius: 980px;
  font-weight: 600 !important; font-size: 14px !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover { opacity: 0.85; transform: scale(1.04); }
.nav-lang {
  font-size: 11px !important; font-weight: 700 !important;
  color: var(--ash-dim) !important;
  padding: 4px 10px; border: 1px solid var(--card-border);
  border-radius: 6px; letter-spacing: 0.5px;
}
.menu-toggle {
  display: none; color: var(--ash); padding: 4px;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(6,6,6,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-size: 24px; font-weight: 600; color: var(--ash); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--ash); font-size: 32px; background: none; border: none; cursor: pointer;
}

@media (max-width: 768px) {
  .nav-right { display: none; }
  .menu-toggle { display: block; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACT 1 — HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}

/* The giant "П" background */
.hero-letter {
  position: absolute;
  font-size: clamp(300px, 50vw, 700px);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(249, 125, 91, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.hero-letter-glow {
  position: absolute;
  font-size: clamp(300px, 50vw, 700px);
  font-weight: 700;
  font-style: italic;
  color: var(--ember);
  opacity: 0.03;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  filter: blur(40px);
  animation: letterPulse 4s ease-in-out infinite alternate;
}
@keyframes letterPulse {
  0% { opacity: 0.02; filter: blur(40px); }
  100% { opacity: 0.06; filter: blur(60px); }
}

.hero-content { position: relative; z-index: 2; }

.hero-overline {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ember);
  margin-bottom: 32px;
  opacity: 0;
}

.hero-title {
  font-size: clamp(48px, 10vw, 110px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  opacity: 0;
}
.hero-accent {
  display: block;
  background: linear-gradient(135deg, var(--ember) 0%, #FFB088 50%, var(--ember-hot) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--ash-dim);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-desc {
  font-size: 17px; color: var(--smoke); max-width: 460px;
  margin: 0 auto 48px; line-height: 1.7; font-weight: 400;
  opacity: 0;
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
}

.btn-fire {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 980px;
  font-weight: 600; font-size: 16px;
  background: linear-gradient(135deg, var(--ember), var(--ember-hot));
  color: #fff;
  box-shadow: 0 0 40px var(--ember-glow), 0 4px 20px rgba(249,125,91,0.2);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-fire::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 980px;
  background: linear-gradient(135deg, var(--ember), var(--ember-hot), #FFB088, var(--ember));
  background-size: 300% 300%;
  z-index: -1; filter: blur(12px); opacity: 0;
  animation: gradientShift 4s ease-in-out infinite;
  transition: opacity 0.4s;
}
.btn-fire:hover { transform: translateY(-3px) scale(1.03); }
.btn-fire:hover::after { opacity: 0.6; }
.btn-fire:active { transform: scale(0.97); }

.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 980px;
  font-weight: 600; font-size: 16px;
  color: var(--ash); background: var(--ash-ghost);
  border: 1px solid var(--card-border);
  transition: all 0.35s var(--ease);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACT 2 — THE REVEAL (Phone)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-reveal {
  padding: 80px 0 160px;
  position: relative;
}
.act-reveal .wrap {
  display: flex; align-items: center; gap: 80px;
}

.reveal-text { flex: 1; }
.reveal-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 24px;
}
.reveal-text h2 em {
  font-style: italic; color: var(--ember);
  -webkit-text-fill-color: var(--ember);
}
.reveal-text p {
  font-size: 17px; color: var(--smoke); line-height: 1.7;
  max-width: 420px; margin-bottom: 32px;
}
.reveal-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.reveal-chip {
  font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: 980px;
  background: var(--ash-ghost);
  border: 1px solid var(--card-border);
  transition: all 0.3s;
}
.reveal-chip:hover {
  border-color: rgba(249,125,91,0.3);
  background: rgba(249,125,91,0.06);
}

.reveal-phone { flex-shrink: 0; position: relative; }
.phone {
  width: 280px; height: 580px;
  border-radius: 44px; padding: 8px;
  background: linear-gradient(160deg, #2A2A2A, #1A1A1A);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 80px var(--ember-glow);
  position: relative;
}
.phone-notch {
  width: 90px; height: 22px;
  background: #1A1A1A;
  border-radius: 0 0 14px 14px;
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 38px; overflow: hidden;
}

/* game screen rendered inline */
.gs {
  width: 100%; height: 100%;
  background: #F2EDE6;
  padding: 38px 14px 14px;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  font-family: var(--font);
}
.gs-lbl { font-size: 7px; font-weight: 600; color: rgba(30,33,40,.35); letter-spacing: 1.5px; text-transform: uppercase; }
.gs-name { font-size: 20px; font-weight: 700; color: #1E2128; }
.gs-chips { display: flex; gap: 5px; margin: 4px 0; flex-wrap: wrap; justify-content: center; }
.gs-chip { font-size: 8px; font-weight: 600; padding: 4px 9px; border-radius: 8px; white-space: nowrap; letter-spacing: 0.2px; }
.gs-chip--o { color: #F97D5B; background: rgba(249,125,91,.08); }
.gs-chip--n { color: rgba(30,33,40,.45); background: #fff; border: 1px solid rgba(30,33,40,.05); }
.gs-card {
  width: 100%; background: #fff; border-radius: 16px;
  border: 1px solid rgba(30,33,40,.05); padding: 14px; text-align: center;
  margin: 3px 0;
}
.gs-cat { font-size: 7px; font-weight: 600; color: rgba(30,33,40,.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.gs-word {
  font-size: 26px; font-weight: 700; color: #F97D5B;
  font-style: italic;
  transition: opacity 0.25s, transform 0.25s;
}
.gs-meta { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 3px; }
.gs-pill { font-size: 8px; font-weight: 600; color: #F97D5B; padding: 2px 7px; background: rgba(249,125,91,.08); border-radius: 6px; }
.gs-reroll {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,122,255,.08); color: #0A84FF;
  display: flex; align-items: center; justify-content: center;
}
.gs-timer-wrap { position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin: 3px 0; }
.gs-timer-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gs-time { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--green); }
.gs-btn {
  width: 100%; padding: 9px; margin-top: auto;
  background: #1E2128; color: #F2EDE6;
  font-size: 11px; font-weight: 600;
  text-align: center; border-radius: 980px;
}

.phone-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: -1;
  filter: blur(20px);
  animation: phoneGlow 5s ease-in-out infinite alternate;
}
@keyframes phoneGlow {
  0% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1.15); }
}

@media (max-width: 900px) {
  .act-reveal .wrap { flex-direction: column-reverse; text-align: center; }
  .reveal-text { align-items: center; display: flex; flex-direction: column; }
  .reveal-chips { justify-content: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACT 3 — FEATURES (horizontal scroll)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-features {
  padding: 120px 0 0;
  position: relative;
}
.act-features-header {
  text-align: center; margin-bottom: 64px;
  padding: 0 24px;
}
.act-features-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.06; margin-bottom: 16px;
}
.act-features-header p {
  font-size: 17px; color: var(--smoke); max-width: 440px; margin: 0 auto; line-height: 1.7;
}
.overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ember);
  margin-bottom: 20px;
}
.overline::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); }

.h-scroll {
  position: relative;
  overflow: hidden;
}
.h-scroll-track {
  display: flex; gap: 20px;
  padding: 0 clamp(20px, 4vw, 48px) 120px;
  width: max-content;
}
.feat-card {
  width: 340px; flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.feat-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat-icon--orange { background: rgba(249,125,91,.1); color: var(--ember); }
.feat-icon--blue { background: rgba(10,132,255,.1); color: var(--blue); }
.feat-icon--green { background: rgba(50,215,75,.1); color: var(--green); }
.feat-icon--purple { background: rgba(175,82,222,.1); color: #AF52DE; }
.feat-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.feat-card p { font-size: 15px; color: var(--smoke); line-height: 1.65; }
.feat-big-num {
  position: absolute; right: 20px; bottom: 12px;
  font-size: 80px; font-weight: 700; color: var(--ash);
  opacity: 0.03; line-height: 1; pointer-events: none;
}
.feat-pills { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.fpill { padding: 7px 16px; border-radius: 980px; font-size: 13px; font-weight: 600; }
.fpill--g { background: rgba(50,215,75,.08); color: var(--green); }
.fpill--b { background: rgba(10,132,255,.08); color: var(--blue); }
.fpill--o { background: rgba(249,125,91,.08); color: var(--ember); }
.feat-avatars { display: flex; margin-top: 24px; }
.feat-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember-hot));
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px; border: 3px solid var(--void);
  transition: transform 0.3s var(--ease);
}
.feat-av:first-child { margin-left: 0; }
.feat-av:hover { transform: translateY(-6px) scale(1.15); z-index: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACT 4 — HOW IT WORKS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-how {
  padding: 160px 0;
}
.act-how .wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.how-left { position: sticky; top: 120px; }
.how-left h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.06; margin-bottom: 20px;
}
.how-left p { font-size: 17px; color: var(--smoke); line-height: 1.7; }
.how-right { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; padding: 36px 0;
  border-bottom: 1px solid var(--card-border);
}
.how-step:last-child { border-bottom: none; }
.how-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ember), var(--ember-hot));
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px var(--ember-glow);
}
.how-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.how-step p { font-size: 15px; color: var(--smoke); line-height: 1.65; }

@media (max-width: 900px) {
  .act-how .wrap { grid-template-columns: 1fr; gap: 40px; }
  .how-left { position: static; text-align: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACT 5 — CATEGORIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-cats { padding: 120px 0; }
.act-cats-header { text-align: center; margin-bottom: 48px; padding: 0 24px; }
.act-cats-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 16px;
}
.act-cats-header p { font-size: 17px; color: var(--smoke); max-width: 400px; margin: 0 auto; }
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  display: flex; flex-direction: column; gap: 14px;
}
.m-track {
  display: flex; gap: 12px; width: max-content;
  animation: mq 45s linear infinite;
  padding-left: 0;
}
.m-track--r { animation-direction: reverse; animation-duration: 50s; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.m-chip {
  padding: 14px 26px; background: var(--card); border-radius: 980px;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--card-border); transition: all 0.35s var(--ease); cursor: default;
}
.m-chip:hover {
  background: rgba(249,125,91,.08); border-color: rgba(249,125,91,.2);
  transform: scale(1.06); box-shadow: 0 8px 24px var(--ember-glow);
}
.m-hot {
  display: inline-block; background: linear-gradient(135deg, var(--ember), var(--ember-hot));
  color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 5px; margin-left: 6px; vertical-align: middle;
}
.cats-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ash-dim); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRO BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-pro { padding: 40px 0 120px; }
.pro-card {
  max-width: 580px; margin: 0 auto;
  border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(118deg, #F97D5B 20%, #F9A87B 80%);
  padding: 48px 44px;
}
.pro-watermark {
  position: absolute; top: 4px; right: 20px;
  font-size: 90px; font-weight: 700; color: rgba(255,255,255,.07);
  pointer-events: none; line-height: 1;
}
.pro-card h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pro-card .pro-desc { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 24px; }
.pro-plans { display: flex; flex-direction: column; gap: 5px; margin-bottom: 28px; }
.pro-plan { font-size: 14px; color: rgba(255,255,255,.5); }
.pro-plan--hl { color: #fff; font-weight: 700; }
.pro-save {
  display: inline-block; background: rgba(255,255,255,.2);
  padding: 2px 8px; border-radius: 5px; font-size: 11px; font-weight: 700; margin-left: 6px;
}
.pro-btn {
  display: inline-block; padding: 14px 32px;
  background: #fff; color: #1a0a05;
  font-size: 15px; font-weight: 700; border-radius: 980px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.pro-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(0,0,0,.15); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DOWNLOAD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.act-download {
  padding: 140px 0 120px;
  text-align: center; position: relative; overflow: hidden;
}
.act-download::before {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at bottom, var(--ember-glow), transparent 70%);
  pointer-events: none;
}
.act-download h2 {
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 0.95; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.act-download .dl-sub {
  font-size: 18px; color: var(--smoke); max-width: 460px;
  margin: 0 auto 44px; line-height: 1.7;
  position: relative; z-index: 1;
}
.act-download .dl-note {
  display: block; margin-top: 20px; font-size: 14px;
  color: var(--ash-dim); position: relative; z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: #000; padding: 44px 0; border-top: 1px solid var(--card-border);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 8px; }
.footer-brand span { font-size: 16px; font-weight: 700; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--ash-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--smoke); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.15); }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FAQ */
.act-faq { padding: 120px 0 80px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  padding: 0;
}
.faq-item summary {
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ash);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--ember);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--ember); }
.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
}

.rv { opacity: 0; transform: translateY(40px); }
.rv.is-in { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.rv-d1 { transition-delay: 0.1s !important; }
.rv-d2 { transition-delay: 0.2s !important; }
.rv-d3 { transition-delay: 0.3s !important; }
.rv-d4 { transition-delay: 0.4s !important; }
