/* ============================================
   PIELOGIC.COM — INCLUSIONISM: FINALLY!
   Design: Dark economic-movement aesthetic
   Palette: Near-black + gold + electric teal
   Type: Bebas Neue (display) + Inter (body) + Space Mono (data)
   ============================================ */

/* --- TOKENS --- */
:root {
  --black:       #0a0a0c;
  --surface:     #111116;
  --surface-2:   #18181f;
  --surface-3:   #222230;
  --border:      #2a2a3a;
  --gold:        #d4a94a;
  --gold-light:  #e8c46a;
  --gold-dark:   #a07828;
  --teal:        #2dd4bf;
  --teal-dim:    #1a8a7a;
  --white:       #f4f4f8;
  --white-dim:   #b0b0c0;
  --white-muted: #606070;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --max-width: 1160px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION LABELS --- */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--black); }
.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--white-dim); color: var(--white); }
.btn-large { padding: 16px 36px; font-size: 13px; }
.btn-download {
  background: var(--surface-3);
  color: var(--teal);
  border: 1px solid var(--teal-dim);
  font-size: 11px;
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.btn-download:hover { background: var(--teal); color: var(--black); }
.btn-download--featured {
  background: var(--gold-dark);
  color: var(--black);
  border-color: var(--gold);
}
.btn-download--featured:hover { background: var(--gold-light); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--black); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.nav-mobile .nav-cta {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,169,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100px;
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(45,212,191,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Ticker */
.hero-ticker {
  background: var(--gold);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 40px;
  width: 100%;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-dim);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-pull {
  font-size: 1rem;
  color: var(--white-dim);
  font-style: italic;
  margin-bottom: 4px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.hero-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  padding-left: 18px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-all-retailers a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-all-retailers a:hover { color: var(--white-dim); }

/* Cover image */
.hero-cover {
  position: relative;
  flex-shrink: 0;
}
.cover-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(212,169,74,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cover-img {
  position: relative;
  z-index: 1;
  width: 400px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,169,74,0.15);
  transition: transform 0.4s ease;
}
.cover-img:hover { transform: translateY(-6px) rotate(0.5deg); }

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  color: var(--white-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement .container { text-align: center; }
.statement-text {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 40px;
}
.statement-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white-dim);
  background: var(--surface-2);
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 470px);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
  text-align: left;
}

.statement .statement-layout {
  text-align: left;
}

.statement-copy {
  max-width: 740px;
}

.statement-layout .statement-text {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}

.statement-layout .statement-badges {
  justify-content: flex-start;
}

.statement-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.statement-logo {
  width: min(100%, 440px);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.42));
}

@media (min-width: 901px) {
  .statement-logo-wrap {
    justify-content: flex-end;
  }

  .statement-logo {
    transform: translate(24px, -8px);
  }
}

/* ============================================
   CHAPTERS / DOWNLOADS
   ============================================ */
.chapters {
  padding: 100px 0;
  background: var(--black);
}
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.download-card:hover {
  border-color: var(--teal-dim);
  transform: translateY(-3px);
}
.download-card--featured {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--surface) 60%, rgba(212,169,74,0.06));
}
.download-card--featured:hover { border-color: var(--gold); }
.download-badge-pill {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}
.download-icon {
  font-size: 2rem;
}
.download-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.download-card p {
  color: var(--white-dim);
  font-size: 0.9rem;
  flex: 1;
}

/* ============================================
   VIDEOS
   ============================================ */
.videos {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-item { display: flex; flex-direction: column; gap: 12px; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--white-muted);
}

/* ============================================
   AUTHORS
   ============================================ */
.authors {
  padding: 100px 0;
  background: var(--black);
}
.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}
.author-card:hover { border-color: var(--gold-dark); }
.author-card--center {
  border-color: var(--gold-dark);
  background: linear-gradient(180deg, var(--surface) 70%, rgba(212,169,74,0.04));
  transform: translateY(-8px);
}
.author-sigil {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  margin-bottom: 20px;
}
.author-sigil--human {
  background: rgba(212,169,74,0.12);
  border-color: var(--gold-dark);
  color: var(--gold);
}
.author-sigil--soraya {
  background: rgba(45,212,191,0.08);
  border-color: var(--teal-dim);
  color: var(--teal);
}
.author-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.author-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.author-tagline {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.author-bio {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}
.author-cyberg {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-top: 16px;
  text-transform: uppercase;
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-block .container { max-width: 760px; text-align: center; }
.quote-block blockquote {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}
.quote-block blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -30px; left: -20px;
  line-height: 1;
  pointer-events: none;
}
.quote-block cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONVERSATIONS
   ============================================ */
.conversations {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
}
.conversations .section-sub { margin: 0 auto 40px; }

/* ============================================
   ORDER
   ============================================ */
.order {
  padding: 120px 0;
  background: linear-gradient(135deg, #0e0c08 0%, var(--black) 50%, #080c0c 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.order::before {
  content: 'ORDER';
  font-family: var(--font-display);
  font-size: 30vw;
  color: rgba(212,169,74,0.03);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.order-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.order-sub {
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
}
.order-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================
   SIGNUP
   ============================================ */
.signup {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.signup-text { flex: 1; }
.signup-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.signup-text p {
  color: var(--white-dim);
  font-size: 0.95rem;
  max-width: 400px;
}
.signup-form { flex: 1; max-width: 460px; }
.signup-row {
  display: flex;
  gap: 8px;
}
.signup-row input[type="email"] {
  flex: 1;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-row input[type="email"]:focus { border-color: var(--gold); }
.signup-row input[type="email"]::placeholder { color: var(--white-muted); }
.signup-fine {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface-2);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 4px;
}
.footer-address, .footer-contact {
  font-size: 0.85rem;
  color: var(--white-muted);
}
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4, .footer-social h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 4px;
}
.footer-links a, .footer-social a {
  font-size: 0.88rem;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p, .footer-bottom a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white-muted);
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-body {
    flex-direction: column-reverse;
    padding-top: 40px;
    text-align: center;
  }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-buttons { justify-content: center; }
  .hero-pull { text-align: left; }
  .cover-img { width: 240px; }

  .statement-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .statement .statement-layout { text-align: center; }

  .statement-layout .statement-text {
    margin-left: auto;
    margin-right: auto;
  }

  .statement-layout .statement-badges { justify-content: center; }

  .statement-logo { width: min(82vw, 260px); }

  .downloads-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .authors-grid { grid-template-columns: 1fr; }
  .author-card--center { transform: none; }

  .signup-inner { flex-direction: column; gap: 32px; }
  .signup-form { max-width: 100%; width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .order::before { display: none; }
  .signup-row { flex-direction: column; }
  .signup-row .btn { width: 100%; text-align: center; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .scroll-arrow { animation: none; }
  * { transition: none !important; }
}


/* ============================================
   SLIDESHOW
   ============================================ */
.slideshow-section {
  position: relative;
  padding: 78px 20px 86px;
  background: radial-gradient(circle at top, rgba(212,169,74,0.16), transparent 38%), var(--black);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.slideshow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.06), transparent 28%, transparent 70%, rgba(255,255,255,0.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.slideshow-inner {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.slideshow-copy .section-eyebrow {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.slideshow-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.slideshow-title em {
  color: var(--gold-light);
  font-style: normal;
}

.slideshow-lede {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.62;
  color: var(--white-dim);
}

.slideshow-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--white-dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.slideshow-stage {
  position: relative;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(212,169,74,0.32), rgba(255,255,255,0.08));
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
  width: min(100%, 540px);
  justify-self: center;
}

.slideshow-frame {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.14);
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.64);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slideshow-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-light);
}

@media (max-width: 860px) {
  .slideshow-section {
    padding: 62px 20px 70px;
  }

  .slideshow-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slideshow-title,
  .slideshow-lede,
  .slideshow-copy .section-eyebrow {
    text-align: center;
  }

  .slideshow-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .slideshow-note {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }
}


/* Hide slideshow captions so the cover art remains fully visible. */
.slide-caption {
  display: none !important;
}

/* Section #4: flip the visual/text positions while keeping mobile stacked cleanly. */
.slideshow-section--reverse {
  background: radial-gradient(circle at top right, rgba(45,212,191,0.10), transparent 34%), radial-gradient(circle at top left, rgba(212,169,74,0.12), transparent 36%), var(--surface);
  border-top: 1px solid var(--border);
}

.slideshow-section--reverse .slideshow-inner {
  grid-template-columns: minmax(280px, 1.08fr) minmax(0, 0.92fr);
}

.slideshow-section--reverse .slideshow-copy {
  max-width: 560px;
}

.slideshow-section--reverse .slideshow-title em {
  color: var(--teal);
}

.slideshow-section--reverse .slideshow-note {
  border-color: rgba(45,212,191,0.35);
}

@media (max-width: 860px) {
  .slideshow-section--reverse .slideshow-inner {
    grid-template-columns: 1fr;
  }

  .slideshow-section--reverse .slideshow-stage {
    order: 2;
  }

  .slideshow-section--reverse .slideshow-copy {
    order: 1;
    margin: 0 auto;
  }
}


/* ============================================
   COMING SOON BADGE + STATEMENT TITLE
   ============================================ */
.coming-soon-badge {
  position: absolute;
  top: 34px;
  right: clamp(18px, 6vw, 90px);
  z-index: 3;
  width: clamp(150px, 18vw, 260px);
  height: auto;
  transform: rotate(6deg);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.46));
  pointer-events: none;
}

.statement-eyebrow {
  color: var(--teal);
}

.statement-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 24px;
}

.statement-title em {
  color: var(--gold-light);
  font-style: normal;
}

@media (max-width: 900px) {
  .coming-soon-badge {
    top: 18px;
    right: 14px;
    width: clamp(120px, 34vw, 180px);
    transform: rotate(4deg);
  }

  .statement-title {
    text-align: center;
  }

  .statement-eyebrow {
    text-align: center;
  }
}
