/* ============================================================
   BernieZule Films LLC — Zulema, Stay Here
   Equity Crowdfunding Landing Page
   ============================================================ */

:root {
  /* Brand palette (pulled from the logo + investor deck) */
  --black:        #0a0705;
  --night:        #120c08;
  --panel:        #1a110b;
  --panel-2:      #241710;
  --gold:         #e8b04b;
  --gold-bright:  #f4cd72;
  --gold-deep:    #b8842b;
  --red:          #d12a22;
  --red-deep:     #9b1c16;
  --cream:        #f6ecd7;
  --sand:         #cdb999;
  --muted:        #9c8a70;
  --line:         rgba(232, 176, 75, 0.22);
  --line-soft:    rgba(232, 176, 75, 0.12);

  --shadow:       0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-sm:    0 10px 30px rgba(0, 0, 0, 0.45);

  --maxw:         1180px;
  --radius:       16px;

  --font-impact:  'Anton', 'Oswald', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Yellowtail', cursive;
  --font-quote:   'Playfair Display', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* Texture: subtle film grain + warm vignette over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(209,42,34,0.10), transparent 60%),
    radial-gradient(140% 100% at 50% 120%, rgba(232,176,75,0.07), transparent 55%);
  mix-blend-mode: screen;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 96px 0; z-index: 2; }
.section--tight { padding: 64px 0; }
.section--alt { background: linear-gradient(180deg, var(--night), var(--black)); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: "★"; color: var(--red); font-size: 0.7em; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.04; }
.section-title {
  font-family: var(--font-impact);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  letter-spacing: 0.01em;
  color: var(--cream);
}
.section-title .accent { color: var(--gold); }
.section-title .accent-red { color: var(--red); }
.section-intro {
  max-width: 680px;
  color: var(--sand);
  font-size: 1.06rem;
  margin: 0 0 8px;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #2a1602;
  box-shadow: 0 14px 30px rgba(232,176,75,0.28);
}
.btn--primary:hover { box-shadow: 0 18px 40px rgba(232,176,75,0.40); }
.btn--red {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(209,42,34,0.30);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 7, 5, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px rgba(0,0,0,0.4);
}
/* Purpose tag bar */
.nav__bar { background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold-deep)); }
.nav__bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 12px 0;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.12em; color: #2a1602;
  text-align: center;
}
.nav__bar-main { font-weight: 800; font-size: 1.05rem; }
.nav__bar-sub { font-weight: 600; font-size: 0.74rem; opacity: 0.82; padding-left: 18px; border-left: 1px solid rgba(42,22,2,0.4); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.nav.scrolled .nav__inner { padding: 9px 0; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 56px; width: auto; transition: height 0.3s ease; }
.nav.scrolled .nav__brand img { height: 46px; }
.nav__brand-text { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.04em; line-height: 1.1; font-size: 0.82rem; text-transform: uppercase; }
.nav__brand-text span { color: var(--gold); display: block; font-size: 0.66rem; letter-spacing: 0.18em; color: var(--sand); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--sand);
  transition: color 0.18s ease;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 1.6rem; line-height: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 156px 0 70px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -30px; z-index: 0;
  background-image: url('../img/poster-full.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: blur(9px) saturate(1.08);
  transform: scale(1.08);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,7,5,0.60) 0%, rgba(10,7,5,0.80) 55%, rgba(10,7,5,0.97) 100%),
    linear-gradient(90deg, rgba(10,7,5,0.92) 0%, rgba(10,7,5,0.55) 58%, rgba(10,7,5,0.42) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero__brand { text-align: center; margin-bottom: 30px; }
.hero__logo { display: block; width: 340px; max-width: 82%; margin: 0 auto 14px; filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6)); }
.hero__art { display: flex; justify-content: center; }
.hero__art img {
  width: 100%;
  max-width: 530px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0,0,0,0.7);
}
.hero__owner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.hero__owner b {
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}
.hero__owner span {
  color: var(--sand);
  font-size: 0.94rem;
  letter-spacing: 0.24em;
}
.hero__title {
  margin: 0 0 14px;
  line-height: 0;
}
.hero__title img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 10px 34px rgba(0,0,0,0.55));
}
.hero__title .script {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  color: #f3b431;
  font-size: 0.64em;
  line-height: 1.05;
  margin: 0 0 2px;
  letter-spacing: 0;
  padding-bottom: 4px;
  border-bottom: 4px solid #f3b431;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}
.hero__title .stay {
  display: block;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.hero__tag {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--sand);
  margin: 18px 0 8px;
}
.hero__byline {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.hero__byline b { color: var(--gold); font-weight: 600; }
.hero__location {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold-bright);
  margin: 0 0 28px;
  display: flex; align-items: center; gap: 8px;
}
.hero__location::before { content: "📍"; font-size: 0.9em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b {
  font-family: var(--font-impact);
  font-size: 1.7rem;
  color: var(--gold-bright);
  line-height: 1;
  font-weight: 400;
}
.hero__stat span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--sand);
  margin-top: 6px;
}
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--sand);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   STAT STRIP (investment highlights)
   ============================================================ */
.highlights {
  background: linear-gradient(180deg, var(--panel), var(--night));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.hl {
  padding: 40px 22px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.hl:last-child { border-right: 0; }
.hl__icon { font-size: 1.6rem; margin-bottom: 10px; }
.hl b {
  display: block;
  font-family: var(--font-impact);
  font-size: 1.5rem;
  color: var(--gold-bright);
  font-weight: 400;
  line-height: 1.05;
}
.hl span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   CARDS / PANELS
   ============================================================ */
.panel {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Project structure */
.structure { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.struct-card { padding: 34px; }
.struct-card h3 {
  font-family: var(--font-impact); font-weight: 400; text-transform: uppercase;
  font-size: 1.5rem; color: var(--gold-bright);
}
.struct-card .role {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.72rem; color: var(--sand); margin-bottom: 18px; display: block;
}
.struct-card ul li { padding: 8px 0 8px 26px; position: relative; color: var(--sand); border-top: 1px solid var(--line-soft); }
.struct-card ul li:first-child { border-top: 0; }
.struct-card ul li::before { content: "▸"; position: absolute; left: 4px; color: var(--red); }
.struct-arrow {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.7rem; color: var(--gold); text-align: center;
}
.struct-arrow .chevron { font-size: 2rem; color: var(--gold); display: block; line-height: 1; }

/* Why-this-film market cards */
.market-card { padding: 30px; }
.market-card .num {
  font-family: var(--font-impact); font-size: 2.4rem; color: var(--red); line-height: 1; font-weight: 400;
}
.market-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--gold-bright); margin-top: 8px; }
.market-card p { color: var(--sand); margin: 0; font-size: 0.96rem; }

/* Story */
.story-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.story-body p { color: var(--sand); margin: 0 0 16px; font-size: 1.05rem; }
.story-body strong { color: var(--cream); }
.pullquote {
  font-family: var(--font-quote); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; color: var(--cream);
  padding: 30px 34px; border-left: 3px solid var(--gold);
  background: linear-gradient(120deg, rgba(155,28,22,0.18), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote .gold { color: var(--gold-bright); }
.pullquote cite { display: block; font-style: normal; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--sand); margin-top: 16px; }

.themes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.74rem; color: var(--gold-bright);
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(232,176,75,0.06);
}

/* Showcase image frame (deck slides) */
.showcase {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.showcase:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.showcase img { width: 100%; }
.showcase__tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(10,7,5,0.92), transparent);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.72rem; color: var(--gold-bright);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.showcase__tag .zoom { color: var(--sand); font-size: 0.66rem; }

/* Character cards */
.char-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.char { overflow: hidden; }
.char__img { position: relative; }
.char__img img { width: 100%; display: block; }
.char__body { padding: 26px 28px 30px; }
.char__name { font-family: var(--font-impact); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.char__name .gold { color: var(--gold-bright); }
.char__role { font-family: var(--font-quote); font-style: italic; color: var(--red); margin: 6px 0 14px; font-size: 1rem; }
.char__body p { color: var(--sand); font-size: 0.96rem; margin: 0 0 14px; }
.char__traits { display: flex; flex-wrap: wrap; gap: 8px; }
.char__traits span {
  font-family: var(--font-head); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.08em;
  color: var(--gold-bright); padding: 5px 12px; border: 1px solid var(--line-soft); border-radius: 999px;
}

/* Comparables */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.comp { padding: 28px; }
.comp h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.15rem; color: var(--gold-bright); letter-spacing: 0.02em; }
.comp .num { color: var(--red); font-family: var(--font-impact); margin-right: 8px; }
.comp ul li { color: var(--sand); padding: 5px 0 5px 20px; position: relative; font-size: 0.94rem; }
.comp ul li::before { content: "•"; color: var(--gold); position: absolute; left: 4px; }
.fit-banner {
  margin-top: 26px; padding: 26px 30px; text-align: center;
  background: linear-gradient(120deg, rgba(155,28,22,0.22), rgba(232,176,75,0.10));
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream);
  font-size: 1.05rem;
}
.fit-banner b { color: var(--gold-bright); }

/* Revenue streams */
.rev-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.rev { padding: 24px 20px; text-align: center; }
.rev__icon { font-size: 1.7rem; margin-bottom: 12px; }
.rev h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.08em; color: var(--gold-bright); }
.rev ul li { color: var(--sand); font-size: 0.84rem; padding: 3px 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.team-card { padding: 0; overflow: hidden; }
.team-meta h3 { font-family: var(--font-impact); font-weight: 400; text-transform: uppercase; font-size: 2.2rem; color: var(--gold-bright); }
.team-meta .role { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.14em; color: var(--sand); font-size: 0.82rem; margin-bottom: 18px; }
.team-meta p { color: var(--sand); }
.team-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.team-stat { padding: 16px 18px; border: 1px solid var(--line-soft); border-radius: 12px; }
.team-stat b { font-family: var(--font-impact); color: var(--gold-bright); font-size: 1.4rem; font-weight: 400; display: block; line-height: 1; }
.team-stat span { font-family: var(--font-head); text-transform: uppercase; font-size: 0.64rem; letter-spacing: 0.1em; color: var(--sand); }

/* Roadmap */
.roadmap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.stage { padding: 26px 20px; position: relative; }
.stage__num { font-family: var(--font-impact); color: var(--red); font-size: 1rem; }
.stage h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 0.96rem; letter-spacing: 0.06em; color: var(--gold-bright); margin: 6px 0 12px; }
.stage ul li { color: var(--sand); font-size: 0.84rem; padding: 4px 0 4px 16px; position: relative; }
.stage ul li::before { content: "★"; color: var(--gold-deep); position: absolute; left: 0; font-size: 0.7em; }
.status-banner { margin-top: 22px; text-align: center; padding: 22px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); background: linear-gradient(90deg, rgba(155,28,22,0.3), rgba(155,28,22,0.1)); border-radius: var(--radius); border: 1px solid var(--line-soft); }
.status-banner b { color: var(--gold-bright); }

/* Budget */
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.donut {
  width: 280px; height: 280px; border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0% 25%,
    var(--red) 25% 95%,
    var(--cream) 95% 100%
  );
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.donut::after {
  content: ""; position: absolute; inset: 64px;
  background: var(--night); border-radius: 50%;
  border: 1px solid var(--line-soft);
}
.donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; }
.donut__center b { font-family: var(--font-impact); font-size: 1.9rem; color: var(--gold-bright); font-weight: 400; line-height: 1; }
.donut__center span { font-family: var(--font-head); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--sand); }
.legend { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
.legend li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--sand); }
.legend .dot { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.legend b { color: var(--cream); margin-left: auto; font-family: var(--font-head); }

.alloc { display: flex; flex-direction: column; gap: 18px; }
.alloc-row { }
.alloc-row .top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.alloc-row .top b { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem; color: var(--cream); }
.alloc-row .top .pct { font-family: var(--font-impact); color: var(--gold-bright); font-size: 1.2rem; }
.alloc-row .desc { color: var(--sand); font-size: 0.86rem; margin-bottom: 8px; }
.bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; }
.eff-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.eff { text-align: center; padding: 22px; }
.eff b { font-family: var(--font-impact); font-size: 1.8rem; color: var(--gold-bright); font-weight: 400; display: block; line-height: 1; }
.eff span { font-family: var(--font-head); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.1em; color: var(--sand); }

/* Partnership / sponsor tiers */
.tier-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.tier { padding: 28px 22px; display: flex; flex-direction: column; position: relative; transition: transform 0.2s ease, border-color 0.2s ease; }
.tier:hover { transform: translateY(-6px); border-color: var(--gold); }
.tier--feature { border-color: var(--gold); box-shadow: 0 18px 50px rgba(232,176,75,0.18); }
.tier__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.6rem;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.tier__name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.84rem; color: var(--sand); }
.tier__price { font-family: var(--font-impact); font-size: 2rem; color: var(--gold-bright); font-weight: 400; line-height: 1; margin: 8px 0 4px; }
.tier__price small { font-size: 0.9rem; color: var(--sand); }
.tier ul { margin: 18px 0 22px; flex: 1; }
.tier ul li { color: var(--sand); font-size: 0.82rem; padding: 6px 0 6px 18px; position: relative; border-top: 1px solid var(--line-soft); }
.tier ul li:first-child { border-top: 0; }
.tier ul li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; }

/* Invest / CTA section */
.invest { position: relative; overflow: hidden; }
.invest__bg { position: absolute; inset: 0; background-image: url('../img/deck-web/page-19.jpg'); background-size: cover; background-position: center; }
.invest__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,5,0.92), rgba(10,7,5,0.96)); }
.invest__inner { position: relative; z-index: 2; }
.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ways li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.ways li:first-child { border-top: 0; }
.ways .ic { font-size: 1.4rem; flex: none; width: 34px; }
.ways b { color: var(--cream); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.92rem; display: block; }
.ways p { margin: 2px 0 0; color: var(--sand); font-size: 0.9rem; }

.signup { padding: 36px; }
.signup h3 { font-family: var(--font-impact); font-weight: 400; text-transform: uppercase; font-size: 1.6rem; color: var(--gold-bright); }
.signup p { color: var(--sand); font-size: 0.95rem; }
.field { margin-bottom: 14px; }
.field label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; color: var(--sand); display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--line);
  color: var(--cream); font-family: var(--font-body); font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.72rem; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none; padding: 20px; border-radius: 12px; margin-top: 16px;
  background: rgba(232,176,75,0.12); border: 1px solid var(--gold);
  color: var(--cream); font-size: 0.95rem;
}
.form-success.show { display: block; }
.form-error {
  display: none; margin-top: 12px; padding: 12px 16px; border-radius: 10px;
  background: rgba(209,42,34,0.12); border: 1px solid rgba(209,42,34,0.5);
  color: #f3c0bc; font-size: 0.86rem;
}
.form-error.show { display: block; }
.btn[disabled] { opacity: 0.6; cursor: progress; pointer-events: none; }

/* Deck gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .showcase__tag { font-size: 0.62rem; padding: 10px 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { padding: 30px; text-align: center; }
.contact-card .ic { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card .lbl { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; color: var(--sand); }
.contact-card a, .contact-card span { display: block; color: var(--gold-bright); font-size: 1.05rem; margin-top: 6px; word-break: break-word; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid var(--line-soft); padding: 60px 0 40px; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand img { width: 200px; margin-bottom: 16px; }
.footer__brand p { color: var(--sand); font-size: 0.9rem; max-width: 320px; }
.footer__col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: var(--gold); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--sand); font-size: 0.9rem; padding: 5px 0; transition: color 0.18s; }
.footer__col a:hover { color: var(--gold-bright); }
.disclaimer {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.7;
}
.disclaimer p { margin: 0 0 12px; }
.disclaimer b { color: var(--sand); }
.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  font-size: 0.78rem; color: var(--muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,3,2,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.lightbox__close { position: absolute; top: 20px; right: 28px; font-size: 2.4rem; color: var(--cream); background: none; border: 0; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.6rem; color: var(--cream); background: none; border: 0; padding: 20px; opacity: 0.7; transition: opacity 0.2s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav.prev { left: 10px; }
.lightbox__nav.next { right: 10px; }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-family: var(--font-head); letter-spacing: 0.16em; font-size: 0.74rem; color: var(--sand); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   SIZZLE VIDEO
   ============================================================ */
.video-frame {
  position: relative;
  max-width: 960px;
  margin: 38px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #000;
}
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background:
    linear-gradient(180deg, rgba(10,7,5,0.55), rgba(10,7,5,0.78)),
    url('../img/deck-web/page-01.jpg') center/cover;
  text-align: center;
}
.video-placeholder .play {
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #2a1602; box-shadow: 0 14px 40px rgba(232,176,75,0.4);
  margin-bottom: 6px;
  transition: transform 0.2s ease;
}
.video-frame:hover .play { transform: scale(1.06); }
.video-placeholder .play span { font-size: 2rem; margin-left: 6px; }
.vp-title { font-family: var(--font-impact); text-transform: uppercase; font-size: 1.3rem; color: var(--cream); margin: 0; }
.vp-sub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--sand); margin: 0; }

/* ============================================================
   HOW IT WORKS (3 steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; position: relative; }
.step { padding: 34px 28px; text-align: center; position: relative; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-impact); font-size: 1.4rem; color: #2a1602;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}
.step h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; color: var(--gold-bright); }
.step p { color: var(--sand); margin: 0; font-size: 0.96rem; }
.step__arrow { position: absolute; top: 58px; right: -16px; color: var(--gold-deep); font-size: 1.6rem; z-index: 2; }
.step:last-child .step__arrow { display: none; }

/* ============================================================
   INVESTOR PERKS
   ============================================================ */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.perk { padding: 26px 24px; display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s ease; }
.perk:hover { transform: translateY(-5px); border-color: var(--gold); }
.perk__amt { font-family: var(--font-impact); font-size: 1.9rem; color: var(--gold-bright); line-height: 1; }
.perk__name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--red); margin: 6px 0 14px; }
.perk p { color: var(--sand); font-size: 0.92rem; margin: 0; }
.perk p .add { color: var(--gold-bright); font-weight: 600; }
.perk--feature { border-color: var(--gold); box-shadow: 0 18px 50px rgba(232,176,75,0.18); }
.perk__flag {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.58rem; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px;
}
.perks-note { text-align: center; color: var(--muted); font-size: 0.78rem; margin: 24px auto 0; max-width: 760px; }

/* ============================================================
   MOMENTUM / TRACTION
   ============================================================ */
.mo-status { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.mo-stat { padding: 24px; text-align: center; }
.mo-stat .check { color: var(--gold-bright); font-size: 1.3rem; }
.mo-stat b { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1rem; color: var(--cream); margin: 8px 0 2px; }
.mo-stat span { font-family: var(--font-head); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.12em; color: var(--gold-bright); }
.mo-adv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.mo-adv li { padding: 18px 20px 18px 48px; position: relative; color: var(--sand); font-size: 0.94rem; }
.mo-adv li::before { content: "★"; position: absolute; left: 20px; top: 17px; color: var(--gold); }
.mo-adv li b { color: var(--cream); display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.84rem; }
.partners { margin-top: 34px; text-align: center; }
.partners h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; color: var(--sand); margin-bottom: 18px; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partner-logo {
  width: 150px; height: 70px; border-radius: 10px;
  border: 1px dashed var(--line); display: grid; place-items: center;
  color: var(--muted); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.62rem;
  background: rgba(255,255,255,0.02);
}

/* ============================================================
   RISK & TRANSPARENCY
   ============================================================ */
.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.risk-col { padding: 32px 30px; }
.risk-col h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; }
.risk-col.risks h3 { color: var(--red); }
.risk-col.commit h3 { color: var(--gold-bright); }
.risk-col ul li { padding: 10px 0 10px 28px; position: relative; color: var(--sand); border-top: 1px solid var(--line-soft); font-size: 0.94rem; }
.risk-col ul li:first-of-type { border-top: 0; }
.risk-col.risks ul li::before { content: "!"; position: absolute; left: 6px; top: 9px; color: var(--red); font-weight: 700; }
.risk-col.commit ul li::before { content: "✓"; position: absolute; left: 4px; top: 9px; color: var(--gold); }
.risk-legal { margin-top: 22px; padding: 18px 22px; border-radius: 12px; border: 1px solid var(--line-soft); background: rgba(0,0,0,0.3); color: var(--muted); font-size: 0.78rem; line-height: 1.6; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 860px; margin: 42px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  overflow: hidden; transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: 0.98rem; color: var(--cream); transition: color 0.18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item .q-ic {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--line);
  color: var(--gold-bright); font-size: 1.2rem; line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s;
}
.faq-item[open] .q-ic { transform: rotate(45deg); background: var(--gold); color: #2a1602; border-color: var(--gold); }
.faq-answer { padding: 0 24px 22px; color: var(--sand); font-size: 0.96rem; line-height: 1.75; }
.faq-answer a { color: var(--gold-bright); text-decoration: underline; }
.faq-item[open] .faq-answer { animation: faqIn 0.3s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   FLOATING / STICKY CTA
   ============================================================ */
.floating-cta {
  position: fixed; z-index: 90;
  right: 24px; bottom: 24px;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.floating-cta.show { opacity: 1; visibility: visible; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 0.72rem; letter-spacing: 0.06em; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .hl:nth-child(2n) { border-right: 0; }
  .hl { border-bottom: 1px solid var(--line-soft); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; right: 16px; left: 16px;
    background: rgba(18,12,8,0.98); border: 1px solid var(--line); border-radius: 14px;
    padding: 16px; backdrop-filter: blur(12px);
  }
  .nav__links.open a { padding: 10px 6px; }
  .nav__links.open .nav__cta { margin: 6px 0 0; }
  .nav__toggle { display: block; }
  .nav__bar-sub { display: none; }
  .nav__bar-inner { letter-spacing: 0.08em; padding: 9px 12px; }
  .nav__bar-main { font-size: 0.8rem; }
  .structure { grid-template-columns: 1fr; }
  .struct-arrow .chevron { transform: rotate(90deg); }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__art { order: -1; }
  .hero__art img { max-width: 300px; }
  .hero__logo { width: 260px; }
  .story-grid, .team-grid, .budget-grid, .invest-grid { grid-template-columns: 1fr; }
  .char-grid, .grid-2, .grid-3, .grid-4, .comp-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .eff-strip, .team-stats { grid-template-columns: 1fr; }
  .steps, .perk-grid, .mo-status, .mo-adv, .risk-grid { grid-template-columns: 1fr; }
  .step__arrow { display: none; }
  .floating-cta { right: 12px; left: 12px; bottom: 12px; }
  .floating-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .nav__bar-inner { letter-spacing: 0.04em; padding: 8px 10px; }
  .nav__bar-main { font-size: 0.64rem; }
  .highlights__grid { grid-template-columns: 1fr; }
  .hl { border-right: 0; }
  .rev-grid, .tier-grid, .roadmap, .gallery, .contact-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 14px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__logo { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
