/* =========================================================
   Market Ready Creative — PREMIUM (award-style immersive)
   Bold · kinetic · cinematic — champagne-gold on blue-black
   ========================================================= */

:root {
  --bg:        #050609;
  --bg-2:      #080b11;
  --bg-3:      #0b0f17;
  --surface:   #11161f;
  --surface-2: #161d28;
  --line:      rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.06);

  --text:    #f4f6fa;
  --muted:   #9aa3b3;
  --muted-2: #646c7c;

  --gold-1: #f8e3bd;
  --gold-2: #edb579;
  --gold-3: #dd9a4f;
  --gold-grad: linear-gradient(104deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);

  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --pill: 999px;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 0.96; letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
}
.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244,246,250,0.45);
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow svg { width: 14px; height: 14px; }

/* film grain + vignette overlays (global) */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor { width: 7px; height: 7px; background: var(--gold-2); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 40px; height: 40px; border: 1px solid rgba(237,181,121,0.55);
  transform: translate(-50%, -50%); transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #1a1206;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: transparent; background: var(--gold-2); }
.cursor-ring.media { width: 84px; height: 84px; background: var(--gold-2); border-color: transparent; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ===================== LOADER ===================== */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.loader.done { transform: translateY(-100%); transition: transform 0.9s var(--ease); }
.loader-logo { width: 120px; opacity: 0; transform: translateY(14px); }
.loader-bar { width: min(280px, 60vw); height: 2px; background: rgba(255,255,255,0.12); overflow: hidden; border-radius: 2px; }
.loader-bar span { display: block; height: 100%; width: 0; background: var(--gold-grad); }
.loader-count { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.2em; color: var(--muted); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: center; align-items: center; gap: 14px;
  padding: 22px 32px;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.nav.hide { transform: translateY(-140%); }
.nav > * { pointer-events: auto; }
.nav-pill {
  display: flex; align-items: center; gap: 28px;
  padding: 9px 12px 9px 22px;
  background: rgba(10,13,20,0.55);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.nav-brand img { height: 30px; }
/* ---- MRC wordmark (replaces logo image) ---- */
.wordmark { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); display: inline-flex; align-items: baseline; line-height: 1; }
.nav-brand.wordmark { font-size: 1.3rem; }
.loader-word { font-size: clamp(2.2rem, 6vw, 3rem); opacity: 0; transform: translateY(14px); }
.footer-brand .wordmark { font-size: 1.9rem; margin-bottom: 18px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 500; font-size: 0.95rem; }
.nav-links a { opacity: 0.82; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { background: var(--text); color: #0a0d14; padding: 10px 20px; border-radius: var(--pill); font-weight: 600; transition: transform 0.2s; }
.nav-cta:hover { transform: translateY(-1px); }
.nav-login {
  padding: 13px 24px; border-radius: var(--pill);
  background: rgba(10,13,20,0.55); border: 1px solid var(--line);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  font-weight: 500; transition: background 0.2s;
}
.nav-login:hover { background: rgba(255,255,255,0.08); }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: rgba(10,13,20,0.55); border: 1px solid var(--line); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 199; background: rgba(5,6,9,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 2rem; opacity: 0.92; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: var(--pill); font-weight: 600; font-size: 0.95rem; padding: 14px 26px; transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s; }
.btn-gold { background: var(--gold-grad); color: #1f1407; box-shadow: 0 14px 40px -14px rgba(237,181,121,0.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 54px -14px rgba(237,181,121,0.75); }
.btn-light { background: var(--text); color: #0a0d14; }
.btn-light:hover { transform: translateY(-3px); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }

/* ===================== HERO ===================== */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; display: flex; align-items: flex-end; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; will-change: transform; }
.hero-media video, .hero-media img { width: 100%; height: 120%; object-fit: cover; object-position: center 55%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(130% 90% at 50% 18%, rgba(5,6,9,0) 0%, rgba(5,6,9,0.25) 55%, rgba(5,6,9,0.85) 100%),
    linear-gradient(180deg, rgba(5,6,9,0.55) 0%, rgba(5,6,9,0) 28%, rgba(5,6,9,0.92) 100%);
}
.hero-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 32px 9vh; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.6rem); text-transform: uppercase; font-weight: 800; max-width: 16ch; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero-sub { margin-top: 22px; max-width: 42ch; font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(244,246,250,0.82); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-scroll { position: absolute; right: 32px; bottom: 8vh; display: flex; align-items: center; gap: 12px; writing-mode: vertical-rl; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,246,250,0.65); }
.hero-scroll .dot { writing-mode: horizontal-tb; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(7px);} }

/* ===================== MARQUEE ===================== */
.marquee { position: relative; padding: 26px 0; border-block: 1px solid var(--line-soft); background: var(--bg-2); overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem, 3vw, 2.4rem); letter-spacing: -0.01em; padding: 0 26px; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .sep { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-grad); }

/* ===================== SECTION SHELL ===================== */
.section { position: relative; padding: clamp(64px, 8vw, 110px) 0; z-index: 2; }
.sec-label { display: flex; align-items: center; gap: 14px; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.sec-label::before { content: ""; width: 40px; height: 1px; background: var(--gold-2); }

/* ===================== SHOWCASE (horizontal pin) ===================== */
.showcase { background: var(--bg-2); position: relative; padding-bottom: clamp(50px, 6vw, 90px); }
.showcase-head { padding: clamp(56px, 7vw, 92px) 32px 0; }
.showcase-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); text-transform: uppercase; max-width: 18ch; }
.showcase-viewport { position: relative; }
.showcase-track { display: flex; flex-direction: column; gap: 60px; padding: clamp(40px,5vw,72px) 32px; max-width: var(--maxw); margin-inline: auto; }
/* JS upgrades to horizontal on desktop via .is-horizontal */
.showcase-track.is-horizontal { flex-direction: row; flex-wrap: nowrap; gap: 0; padding: 0; margin: 0; max-width: none; height: 100svh; align-items: center; width: max-content; }
.panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.showcase-track.is-horizontal .panel { width: 100vw; height: 100svh; padding: 0 clamp(40px, 7vw, 120px); align-content: center; }
.panel-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); cursor: pointer; }
.panel-media img, .panel-media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.panel:hover .panel-media img { transform: scale(1.05); }
.panel-num { display: none; }
.media-play { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 11px; border-radius: var(--pill); background: rgba(8,11,18,0.5); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.media-play .mp-ic { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; }
.panel-media:hover .media-play { background: var(--gold-grad); color: #1f1407; border-color: transparent; }
.panel-media:hover .media-play .mp-ic { background: rgba(31,20,7,0.22); }
.panel-copy { position: relative; z-index: 1; }
.panel-index { position: absolute; top: 14px; left: 22px; z-index: 2; font-family: var(--font-display); font-weight: 800; line-height: 1; font-size: clamp(2.8rem, 4.4vw, 4rem); letter-spacing: -0.01em; color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,0.8); text-shadow: 0 2px 16px rgba(0,0,0,0.35); pointer-events: none; user-select: none; }
.panel-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; margin-bottom: 18px; }
.panel-copy p { color: var(--muted); font-size: clamp(0.98rem,1.2vw,1.08rem); max-width: 46ch; }
.panel-client { margin-top: 24px; display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-weight: 500; font-size: 0.95rem; }
.panel-client::before { content: ""; width: 26px; height: 1px; background: var(--gold-2); }
.panel-watch { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; font-weight: 600; font-size: 0.95rem; }
.panel-watch .pw { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: background 0.25s, color 0.25s; }
.panel-watch:hover .pw { background: var(--gold-2); color: #1f1407; }
.showcase-progress { display: flex; gap: 8px; }
.showcase-progress i { width: 26px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.18); transition: background 0.3s; }
.showcase-progress i.on { background: var(--gold-grad); }

/* ===================== PROCESS (pinned crossfade) ===================== */
.process { background: var(--bg); position: relative; padding: clamp(70px, 8vw, 120px) 0; }
.process-head { margin-bottom: clamp(30px, 4vw, 56px); }
.process-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); text-transform: uppercase; max-width: 20ch; }
.process-stage { position: relative; }
.process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,6vw,90px); align-items: center; }
/* base (fallback) = simple vertical list */
.proc-step { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,70px); align-items: center; padding: 40px 0; border-top: 1px solid var(--line-soft); }
.proc-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.proc-visual img { width: 100%; height: 100%; object-fit: cover; }
.proc-step-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem,1.4vw,1.1rem); letter-spacing: 0.2em; color: var(--gold-2); }
.proc-step h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; margin: 14px 0 16px; }
.proc-step p { color: var(--muted); font-size: clamp(0.98rem,1.2vw,1.08rem); max-width: 44ch; }

/* pinned variant (desktop, JS-on) */
.process.is-pinned .process-track { /* tall scroll track */ }
.process.is-pinned .process-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; }
.process.is-pinned .proc-step { display: none; }
.process.is-pinned .pin-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px,6vw,90px); align-items: center; width: 100%; }
.process.is-pinned .pin-visual-wrap { height: min(64vh, 540px); aspect-ratio: 4/5; width: auto; justify-self: start; }
.pin-visual-wrap { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.pin-visual { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity 0.6s var(--ease), transform 0.8s var(--ease); }
.pin-visual.on { opacity: 1; transform: scale(1); }
.pin-visual img { width: 100%; height: 100%; object-fit: cover; }
.pin-text { position: relative; }
.pin-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); pointer-events: none; }
.pin-panel.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.pin-panel .proc-step-num { color: var(--gold-2); }
.pin-rail { display: flex; gap: 10px; margin-top: 40px; }
.pin-rail i { flex: 1; height: 3px; background: rgba(255,255,255,0.14); border-radius: 3px; overflow: hidden; position: relative; }
.pin-rail i::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--gold-grad); transition: width 0.4s var(--ease); }
.pin-rail i.on::after { width: 100%; }

/* ===================== BOOK / CTA ===================== */
.book { background: var(--bg-3); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: center; }
.book h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
.book-arrow { display: inline-flex; align-items: center; gap: 14px; margin-top: 20px; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.1rem,2vw,1.5rem); color: var(--muted); transition: color 0.3s, gap 0.3s; }
.book-arrow:hover { color: var(--text); gap: 26px; }
.book-arrow svg { color: var(--gold-2); }
.cal-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9); min-height: 640px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ===================== FAQ ===================== */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px,5vw,80px); align-items: start; }
.faq-grid h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); text-transform: uppercase; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 20px; padding: 26px 4px; text-align: left; color: var(--text); }
.faq-n { font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: var(--muted-2); letter-spacing: 0.12em; min-width: 38px; }
.faq-q h3 { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.02rem, 1.5vw, 1.25rem); text-transform: none; letter-spacing: -0.01em; transition: color 0.25s; }
.faq-item.open .faq-q h3 { color: var(--gold-1); }
.faq-ic { position: relative; width: 22px; height: 22px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--muted); border-radius: 2px; transition: transform 0.35s var(--ease), background 0.3s; }
.faq-ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-ic::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item.open .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-ic::before { background: var(--gold-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 4px 30px 58px; color: var(--muted); font-size: 1.02rem; max-width: 70ch; }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg); border-top: 1px solid var(--line-soft); padding: clamp(70px,9vw,120px) 0 44px; position: relative; z-index: 2; }
.footer-cta { text-align: center; margin-bottom: clamp(60px,8vw,100px); }
.footer-cta .sec-label { justify-content: center; }
.footer-cta h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); text-transform: uppercase; line-height: 0.92; }
.footer-cta .btn { margin-top: 38px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: var(--muted); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--muted-2); font-size: 0.86rem; }

/* ===================== PORTFOLIO ===================== */
.pf-top { padding-top: 88px; }
.pf-top > .pf-block:first-child { padding-top: clamp(28px, 4vw, 52px); }
.pf-block { padding: clamp(70px,9vw,130px) 0; position: relative; z-index: 2; }
.pf-block:nth-child(even) { background: var(--bg-2); }
.pf-block .sec-label { justify-content: center; }
.pf-block h2 { text-align: center; font-size: clamp(1.9rem, 3.6vw, 3rem); text-transform: uppercase; margin-bottom: clamp(36px,4vw,56px); }
.video-frame { max-width: 1080px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9); background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.pf-desc { max-width: 72ch; margin: clamp(32px,4vw,48px) auto 0; text-align: center; color: var(--muted); font-size: clamp(1rem,1.4vw,1.18rem); }
.shorts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1020px; margin: 0 auto; align-items: center; }
.short { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/16; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.85); background: var(--surface); }
.short.featured { transform: scale(1.08); z-index: 2; }
.short iframe { width: 100%; height: 100%; border: 0; }

/* ===================== REVEAL (fallback when no GSAP) ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in, .no-motion .reveal { opacity: 1; transform: none; }
.no-motion .loader { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-scroll .dot, .marquee-track { animation: none !important; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .panel, .proc-step, .process-grid, .pin-grid { grid-template-columns: 1fr; }
  .book-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-grid h2 { position: static; }
}
@media (max-width: 760px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
  .nav { justify-content: space-between; }
  .container { padding-inline: 22px; }
  .hero-scroll { display: none; }
  .shorts { grid-template-columns: 1fr; max-width: 360px; }
  .short.featured { transform: none; }
  .panel-num { font-size: 5rem; }
}

/* =========================================================
   RICHNESS LAYER — section contrast, glows, dividers, fills
   ========================================================= */
body { background: #070a11; }
.marquee { background: #0b0f18; }

.showcase {
  background:
    radial-gradient(78% 56% at 50% -8%, rgba(112,142,212,0.20), transparent 60%),
    linear-gradient(180deg, #171f2c 0%, #0f141e 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.process {
  background:
    radial-gradient(66% 48% at 50% 0%, rgba(237,181,121,0.13), transparent 62%),
    #070a11;
}
.book {
  background:
    radial-gradient(72% 54% at 82% -6%, rgba(112,142,212,0.18), transparent 58%),
    linear-gradient(180deg, #171f2c 0%, #0f141e 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.faq {
  background:
    radial-gradient(62% 44% at 16% 0%, rgba(237,181,121,0.11), transparent 60%),
    #070a11;
}
.footer { background: #070a11; }

/* hairline gold dividers between sections */
.marquee, .showcase, .process, .book, .faq, .footer { position: relative; }
.showcase::before, .process::before, .book::before, .faq::before, .footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 5;
  background: linear-gradient(90deg, transparent, rgba(237,181,121,0.42), transparent);
}

/* big faint ghost numerals behind big section heads (desktop) */
.showcase-head, .process-head { position: relative; }
.showcase-head > *, .process-head > * { position: relative; z-index: 1; }
.head-index {
  position: absolute; top: -0.42em; right: 0; z-index: 0;
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(6rem, 13vw, 12rem); color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none; user-select: none;
}
@media (max-width: 1024px) { .head-index { display: none; } }

/* BOOK supporting column */
.book-points { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.book-points li { position: relative; padding-left: 26px; color: var(--muted); font-size: 1rem; max-width: 40ch; }
.book-points li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-grad); }
.book-host { display: flex; align-items: center; gap: 14px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.book-host-badge { width: 48px; height: 48px; border-radius: 50%; flex: none; background: var(--gold-grad); color: #1f1407; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; overflow: hidden; }
.book-host-badge img { width: 100%; height: 100%; object-fit: cover; }
.book-host strong { display: block; font-weight: 600; color: var(--text); }
.book-host span { display: block; color: var(--muted-2); font-size: 0.9rem; margin-top: 2px; }

/* FAQ supporting prompt */
.faq-aside { margin-top: 30px; padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,0.02); }
.faq-aside p { color: var(--muted); margin-bottom: 16px; }

/* FOOTER ghost monogram */
.footer { overflow: hidden; }
.footer .container { position: relative; z-index: 1; }
.footer-ghost {
  position: absolute; left: 50%; bottom: -0.34em; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800; line-height: 0.8;
  font-size: clamp(11rem, 36vw, 42rem); color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  z-index: 0; pointer-events: none; user-select: none; white-space: nowrap;
}

/* ---- static showcase / process formatting (no pin) ---- */
.showcase-progress-wrap { display: none; }
.showcase-track { gap: clamp(64px, 8vw, 120px); }
.showcase-track .panel { align-items: center; }
.proc-step:first-child { border-top: none; padding-top: 8px; }
@media (min-width: 1025px) {
  .showcase-track .panel:nth-child(even) .panel-media { order: 2; }
  .process .proc-step:nth-child(even) .proc-visual { order: 2; }
}
