/* ============================================================
   ELENCO — Editorial Bold
   Revista de tecnologia premium. Tipografia gigante,
   grid editorial, um acento corajoso (vermelho-vivo).
   ============================================================ */

@font-face {
  font-family: 'Display';
  src: url('fonts/space-grotesk.woff2') format('woff2');
  font-weight: 300 700; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Sans';
  src: url('fonts/geist.woff2') format('woff2');
  font-weight: 100 900; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Text';
  src: url('fonts/inter.woff2') format('woff2');
  font-weight: 100 900; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Mono';
  src: url('fonts/geist-mono.woff2') format('woff2');
  font-weight: 100 900; font-display: swap; font-style: normal;
}

:root {
  /* paper + ink */
  --paper: #f4f1ea;        /* warm off-white canvas */
  --paper-2: #efeae0;      /* slightly deeper panel */
  --card: #fbfaf6;
  --ink: #14110d;          /* near-black, warm */
  --ink-soft: #4b463d;
  --ink-faint: #8a8377;
  --line: #ddd6c8;
  --line-strong: #c8c0ae;

  /* the one brave accent */
  --accent: #ee3a1f;       /* electric vermilion */
  --accent-deep: #c92c12;
  --accent-tint: #fbe3dc;

  /* dark inversion blocks */
  --night: #161310;
  --night-2: #1f1b16;
  --night-line: #322c24;
  --night-ink: #f4f1ea;
  --night-soft: #b3aa99;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --r: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms!important; transition-duration:.001ms!important; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Text', system-ui, sans-serif;
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* mono kicker / labels */
.kicker {
  font-family: 'Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep);
}
.kicker.muted { color: var(--ink-faint); }

.display {
  font-family: 'Display', sans-serif;
  font-weight: 600; line-height: .92;
  letter-spacing: -.025em;
}

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-word {
  font-family: 'Display', sans-serif; font-weight: 700;
  font-size: 21px; letter-spacing: -.03em; color: var(--ink);
}
.brand-word b { color: var(--accent); }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-soft); font-weight: 500;
  position: relative; padding: 4px 0; transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Text', sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--accent) 55%, transparent); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); box-shadow: 0 12px 34px -8px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-lg { font-size: 16.5px; padding: 16px 28px; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.nav-burger { display: none; }

/* ============================================================ HERO */
.hero { position: relative; padding-top: clamp(40px, 7vw, 90px); padding-bottom: clamp(48px, 6vw, 80px); }

/* faint editorial grid lines behind hero */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 64px, 25% 100%;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 78%);
  opacity: .5;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-bottom: 22px; flex-wrap: wrap;
}
.hero-issue { font-family: 'Mono', monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.hero-issue b { color: var(--accent-deep); font-weight: 600; }
.beta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Mono', monospace; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); padding: 6px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--card);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 color-mix(in srgb,var(--accent) 60%,transparent); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--accent) 55%,transparent)} 70%{box-shadow:0 0 0 8px transparent} 100%{box-shadow:0 0 0 0 transparent} }

.hero-rule { height: 2px; background: var(--ink); margin: 4px 0 30px; }

.hero-h1 {
  font-family: 'Display', sans-serif; font-weight: 600;
  font-size: clamp(54px, 11.5vw, 168px); line-height: .86; letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-h1 .line { display: block; }
.hero-h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero-h1 .thin { font-weight: 300; }

.hero-grid {
  display: grid; grid-template-columns: 1.55fr .9fr; gap: clamp(28px, 5vw, 64px);
  align-items: end; margin-top: clamp(28px, 4vw, 48px);
}
.hero-lede {
  font-family: 'Text', sans-serif; font-size: clamp(18px, 2vw, 22px); line-height: 1.5;
  color: var(--ink-soft); max-width: 46ch; font-weight: 400;
}
.hero-lede b { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-note { font-family: 'Mono', monospace; font-size: 12px; color: var(--ink-faint); margin-top: 16px; letter-spacing: .03em; }
.hero-note b { color: var(--accent-deep); }

/* side stat stack */
.hero-side { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.stat { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px; }
.stat-n { font-family: 'Display', sans-serif; font-weight: 600; font-size: clamp(36px, 4.5vw, 56px); line-height: 1; letter-spacing: -.03em; color: var(--ink); min-width: 2.4ch; }
.stat-n.accent { color: var(--accent); }
.stat-l { font-size: 14px; color: var(--ink-soft); line-height: 1.3; }
.stat-l b { color: var(--ink); font-weight: 600; display: block; font-size: 14.5px; }

/* marquee ticker */
.ticker { border-block: 1px solid var(--line); margin-top: clamp(36px, 5vw, 60px); overflow: hidden; background: var(--paper-2); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 28px; font-family: 'Mono', monospace; font-size: 13px;
  letter-spacing: .04em; color: var(--ink-soft); white-space: nowrap;
}
.ticker-item span { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ SECTION SHELL */
.section { padding-block: clamp(72px, 9vw, 130px); position: relative; }
.section-head { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 56px); align-items: start; margin-bottom: clamp(40px, 5vw, 64px); }
.section-num {
  font-family: 'Display', sans-serif; font-weight: 600;
  font-size: clamp(40px, 6vw, 84px); line-height: .85; letter-spacing: -.04em;
  color: var(--paper); -webkit-text-stroke: 1.5px var(--line-strong);
}
.section-head .h-block { max-width: 62ch; }
.section-title {
  font-family: 'Display', sans-serif; font-weight: 600;
  font-size: clamp(34px, 5.5vw, 72px); line-height: .95; letter-spacing: -.03em;
  margin: 12px 0 0; text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-soft); margin-top: 18px; max-width: 52ch; }

/* ============================================================ EQUIPE / CAST */
.cast-meta { display: flex; flex-wrap: wrap; gap: 28px 48px; padding: 22px 0; border-block: 1px solid var(--line); margin-bottom: 36px; font-family: 'Mono', monospace; font-size: 12.5px; color: var(--ink-soft); letter-spacing: .04em; }
.cast-meta b { color: var(--ink); }

.cast {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.cast-card {
  position: relative; padding: 26px 24px 24px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper); transition: background .3s var(--ease), color .3s var(--ease);
  overflow: hidden; min-height: 232px; display: flex; flex-direction: column;
}
.cast-card::after {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: translateY(101%); transition: transform .4s var(--ease); z-index: 0;
}
.cast-card:hover::after { transform: translateY(0); }
.cast-card > * { position: relative; z-index: 1; transition: color .3s var(--ease); }
.cast-card:hover { color: #fff; }
.cast-card:hover .c-role, .cast-card:hover .c-mission, .cast-card:hover .c-idx, .cast-card:hover .c-init { color: rgba(255,255,255,.92); }
.cast-card:hover .c-init { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.cast-card:hover .c-tag { background: rgba(255,255,255,.16); color:#fff; border-color: transparent; }

.c-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.c-init {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  font-family: 'Display', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.02em;
  background: var(--card); border: 1px solid var(--line-strong); color: var(--ink);
}
.c-idx { font-family: 'Mono', monospace; font-size: 12px; color: var(--ink-faint); letter-spacing: .1em; }
.c-name { font-family: 'Display', sans-serif; font-weight: 600; font-size: 22px; letter-spacing: -.02em; line-height: 1.05; }
.c-role { font-family: 'Mono', monospace; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); margin-top: 7px; }
.c-mission { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; margin-top: 13px; flex: 1; }
.c-tag { align-self: flex-start; margin-top: 14px; font-family: 'Mono', monospace; font-size: 11px; letter-spacing: .04em; padding: 4px 9px; border-radius: 6px; background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-soft); }

/* ============================================================ COMO FUNCIONA */
#como { background: var(--night); color: var(--night-ink); }
#como .section-num { color: var(--night); -webkit-text-stroke: 1.5px var(--night-line); }
#como .section-title { color: var(--night-ink); }
#como .section-sub { color: var(--night-soft); }
#como .kicker { color: var(--accent); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--night-line); margin-top: 12px; }
.step { padding: 34px 28px 30px; border-bottom: 1px solid var(--night-line); position: relative; }
.step + .step { border-left: 1px solid var(--night-line); }
.step-n { font-family: 'Display', sans-serif; font-weight: 600; font-size: 64px; line-height: 1; letter-spacing: -.04em; color: var(--accent); }
.step-t { font-family: 'Display', sans-serif; font-weight: 600; font-size: 24px; letter-spacing: -.02em; margin: 18px 0 10px; color: var(--night-ink); }
.step-d { font-size: 15px; line-height: 1.55; color: var(--night-soft); }
.step-tools { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.step-tools span { font-family: 'Mono', monospace; font-size: 11px; padding: 4px 9px; border-radius: 6px; border: 1px solid var(--night-line); color: var(--night-soft); }

/* product shot showcase in dark block */
.showcase { margin-top: clamp(40px, 5vw, 64px); }
.showcase-lead { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--night-line); padding-bottom: 20px; margin-bottom: 26px; }
.showcase-lead h3 { font-family: 'Display', sans-serif; font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.025em; color: var(--night-ink); }
.showcase-lead p { color: var(--night-soft); font-size: 15px; max-width: 38ch; }

.shots { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: auto auto; gap: 18px; }
.shot { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--night-line); background: var(--night-2); box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); }
.shot.big { grid-row: span 2; }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--night-line); background: color-mix(in srgb, var(--night-2) 80%, #000); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #44403a; display: block; }
.shot-bar i:nth-child(1){ background:#ef5f4c } .shot-bar i:nth-child(2){ background:#e6b34a } .shot-bar i:nth-child(3){ background:#5bbf7a }
.shot-bar span { margin-left: 8px; font-family: 'Mono', monospace; font-size: 11px; color: var(--night-soft); letter-spacing: .04em; }
.shot img { width: 100%; height: auto; display: block; }
.shot-cap { padding: 13px 16px; border-top: 1px solid var(--night-line); display: flex; align-items: center; gap: 10px; }
.shot-cap b { font-family: 'Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.shot-cap span { font-size: 13.5px; color: var(--night-soft); }

/* ============================================================ RECURSOS */
.feat { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.fcard {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--card);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(20,17,13,.3); border-color: var(--line-strong); }
.f-wide { grid-column: span 7; }
.f-tall { grid-column: span 5; grid-row: span 2; display: flex; flex-direction: column; }
.f-half { grid-column: span 6; }
.f-third { grid-column: span 4; }
.f-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-deep); margin-bottom: 20px; }
.f-icon svg { width: 22px; height: 22px; }
.f-num { font-family: 'Mono', monospace; font-size: 11px; letter-spacing: .12em; color: var(--ink-faint); position: absolute; top: 22px; right: 24px; }
.f-title { font-family: 'Display', sans-serif; font-weight: 600; font-size: 23px; letter-spacing: -.02em; margin-bottom: 9px; }
.f-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.f-tall .f-desc { flex: 1; }
.f-list { margin-top: 18px; display: grid; gap: 11px; }
.f-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.f-list li::before { content: ''; width: 6px; height: 6px; border-radius: 2px; background: var(--accent); margin-top: 7px; flex: none; }
.f-accent { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.f-accent .f-title { color: var(--paper); }
.f-accent .f-desc { color: var(--night-soft); }
.f-accent .f-icon { background: rgba(238,58,31,.18); color: var(--accent); }
.f-accent .f-num { color: #6a6258; }

/* big quote / manifesto strip */
.manifesto { background: var(--accent); color: #fff; }
.manifesto .wrap { padding-block: clamp(70px, 9vw, 120px); }
.manifesto-q {
  font-family: 'Display', sans-serif; font-weight: 500;
  font-size: clamp(30px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -.03em;
  text-wrap: balance; max-width: 18ch;
}
.manifesto-q em { font-style: normal; color: var(--ink); }
.manifesto-by { font-family: 'Mono', monospace; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-top: 32px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 12px; }
.manifesto-by::before { content: ''; width: 40px; height: 2px; background: #fff; }

/* ============================================================ BETA */
#beta { background: var(--night); color: var(--night-ink); }
#beta .kicker { color: var(--accent); }
.beta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.beta-h { font-family: 'Display', sans-serif; font-weight: 600; font-size: clamp(40px, 6.5vw, 92px); line-height: .9; letter-spacing: -.035em; color: var(--night-ink); }
.beta-h em { font-style: normal; color: var(--accent); }
.beta-p { color: var(--night-soft); font-size: clamp(16px, 1.7vw, 19px); margin-top: 22px; max-width: 44ch; }
.beta-meta { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 30px; font-family: 'Mono', monospace; font-size: 13px; color: var(--night-soft); }
.beta-meta b { color: var(--night-ink); }
.beta-meta .free { color: var(--accent); }

.waitlist {
  background: var(--night-2); border: 1px solid var(--night-line); border-radius: 20px;
  padding: 32px; position: relative; overflow: hidden;
}
.waitlist::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 100% at 100% 0%, rgba(238,58,31,.14), transparent 55%); pointer-events: none; }
.waitlist h4 { font-family: 'Display', sans-serif; font-weight: 600; font-size: 22px; letter-spacing: -.02em; margin-bottom: 6px; }
.waitlist p { color: var(--night-soft); font-size: 14.5px; margin-bottom: 20px; }
.wl-field { display: flex; gap: 10px; flex-wrap: wrap; }
.wl-input {
  flex: 1; min-width: 180px; background: #100d0a; border: 1px solid var(--night-line); border-radius: 12px;
  padding: 14px 16px; color: var(--night-ink); font-family: 'Text', sans-serif; font-size: 15px; outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s;
}
.wl-input::placeholder { color: #6a6155; }
.wl-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(238,58,31,.18); }
.wl-note { font-family: 'Mono', monospace; font-size: 11.5px; color: #6a6155; margin-top: 16px; letter-spacing: .03em; }
.wl-ok { display: none; align-items: center; gap: 10px; color: #5bbf7a; font-size: 14.5px; margin-top: 16px; font-family: 'Mono', monospace; }
.wl-ok.show { display: flex; }

/* ============================================================ FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 26px 0; display: flex; align-items: center; gap: 24px;
  font-family: 'Display', sans-serif; font-weight: 600; font-size: clamp(19px, 2.4vw, 27px);
  letter-spacing: -.02em; color: var(--ink); transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-qn { font-family: 'Mono', monospace; font-size: 13px; color: var(--ink-faint); min-width: 3ch; }
.faq-ic { margin-left: auto; flex: none; width: 26px; height: 26px; position: relative; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), background .2s; }
.faq-ic::before { left: 0; top: 12px; width: 26px; height: 2px; }
.faq-ic::after { left: 12px; top: 0; width: 2px; height: 26px; }
.faq-item[open] .faq-ic::after { transform: scaleY(0); }
.faq-item[open] .faq-q { color: var(--accent); }
.faq-item[open] .faq-ic::before { background: var(--accent); }
.faq-a { padding: 0 0 28px 0; max-width: 64ch; }
.faq-a p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; padding-left: calc(3ch + 24px); }
details.faq-item summary { list-style: none; } details.faq-item summary::-webkit-details-marker { display: none; }

/* ============================================================ FOOTER */
.foot { background: var(--ink); color: var(--paper); padding-block: clamp(60px, 7vw, 96px) 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid #2a251f; }
.foot-brand .brand-word { color: var(--paper); font-size: 26px; }
.foot-brand .brand-word b { color: var(--accent); }
.foot-tag { color: var(--night-soft); font-size: 15px; margin-top: 16px; max-width: 30ch; line-height: 1.5; }
.foot-col h5 { font-family: 'Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #6a6258; margin-bottom: 16px; }
.foot-col a { display: block; color: var(--night-soft); font-size: 15px; padding: 6px 0; transition: color .2s var(--ease), transform .2s; }
.foot-col a:hover { color: var(--accent); transform: translateX(3px); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; flex-wrap: wrap; }
.foot-bottom small { color: #6a6258; font-family: 'Mono', monospace; font-size: 12px; letter-spacing: .03em; }

.bigword {
  font-family: 'Display', sans-serif; font-weight: 700; letter-spacing: -.05em; line-height: .8;
  font-size: clamp(80px, 22vw, 340px); color: transparent; -webkit-text-stroke: 1px #2a251f;
  margin-top: 56px; user-select: none; text-align: center; overflow: hidden;
}

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

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { margin-top: 8px; }
  .feat { grid-template-columns: repeat(6, 1fr); }
  .f-wide, .f-tall, .f-half, .f-third { grid-column: span 6; grid-row: auto; }
  .beta-grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; }
  .shot.big { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-inner { gap: 12px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 14px; }
  .cast { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; }
  .section-head { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cast { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .shot.big { grid-column: span 1; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-side { border-top-width: 2px; }
}
