/* ═══════════════════════════════════════════════════
   Detective Bureau — AAA Landing Page
   Endless Thyme brand: navy · gold · noir
   ═══════════════════════════════════════════════════ */

:root {
  --et-navy: #1e2945;
  --et-navy-deep: #0f1528;
  --et-navy-mid: #151d32;
  --et-gold: #ffc33d;
  --et-gold-bright: #ffca3c;
  --et-gold-warm: #fcc93a;
  --et-gold-dim: rgba(255, 195, 61, 0.35);
  --et-green: #4d872f;
  --et-black: #050508;
  --et-white: #fafafa;
  --font-hero: 'Bebas Neue', 'Oswald', sans-serif;
  --font-display: 'Vollkorn', Georgia, serif;
  --font-label: 'Oswald', 'Trebuchet MS', sans-serif;
  --font-body: 'Changa One', Impact, sans-serif;
  --nav-h: 72px;
  --text-sm: 0.95rem;
  --text-base: 1.0625rem;
  --text-md: 1.1875rem;
  --text-lg: 1.3125rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body.endless-thyme {
  margin: 0;
  background: var(--et-navy-deep);
  color: var(--et-white);
  font-family: var(--font-label);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Atmospheric overlays ── */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

.spotlight {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 195, 61, 0.04) 0%,
    transparent 60%
  );
  transition: background 0.15s ease;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Animations ── */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
html.js .fade-in {
  opacity: 0;
  transform: translateY(32px);
}
html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes btn-shine-move {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(40px) scale(0.97); letter-spacing: 0.3em; }
  to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0.06em; }
}

/* ── Navigation ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.top-nav--scrolled {
  background: rgba(15, 21, 40, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 195, 61, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo img {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(250, 250, 250, 0.85);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--et-gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--et-gold), #e6a820) !important;
  color: var(--et-black) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 4px;
  font-size: var(--text-sm) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(255, 195, 61, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.nav-cta:hover {
  color: var(--et-black) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 195, 61, 0.5);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--et-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .top-nav { padding: 0 1.25rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(15, 21, 40, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 195, 61, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 195, 61, 0.08);
    text-align: center;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* ── Cinematic Hero ── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,8,0.7) 0%, rgba(15,21,40,0.35) 40%, rgba(15,21,40,0.85) 85%, var(--et-navy-deep) 100%),
    linear-gradient(90deg, rgba(5,5,8,0.5) 0%, transparent 50%, rgba(5,5,8,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--et-green);
  margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-title {
  margin: 0 0 1.25rem;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title-line {
  display: block;
  font-family: var(--font-hero);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--et-white);
  text-shadow:
    0 0 60px rgba(255, 195, 61, 0.15),
    0 4px 24px rgba(0, 0, 0, 0.8);
  animation: hero-title-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-title-accent {
  color: var(--et-gold);
  text-shadow:
    0 0 80px rgba(255, 195, 61, 0.4),
    0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(250, 250, 250, 0.82);
  margin: 0 auto 2.25rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero--lg {
  padding: 1.2rem 2.85rem;
  font-size: var(--text-base);
}

.btn-hero--gold {
  background: linear-gradient(135deg, var(--et-gold-bright), #d4a020);
  color: var(--et-black);
  border: 2px solid rgba(0,0,0,0.3);
  box-shadow:
    0 8px 32px rgba(255, 195, 61, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-hero--gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 195, 61, 0.55);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btn-shine-move 3s ease-in-out infinite;
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--et-white);
  border: 2px solid rgba(255, 195, 61, 0.45);
  backdrop-filter: blur(8px);
}

.btn-hero--ghost:hover {
  background: rgba(255, 195, 61, 0.12);
  border-color: var(--et-gold);
  transform: translateY(-3px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--et-gold);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 195, 61, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--et-gold);
  box-shadow: 0 0 12px var(--et-gold);
  animation: pulse-dot 2s ease infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--et-gold);
  animation: scroll-line 2s ease infinite;
}

/* ── Highlights strip ── */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--et-gold);
  border-top: 3px solid var(--et-black);
  border-bottom: 3px solid var(--et-black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.highlight-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.highlight-cell:last-child { border-right: none; }

.highlight-cell strong {
  font-family: var(--font-label);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-navy-deep);
  margin-bottom: 0.25rem;
}

.highlight-cell span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(15, 21, 40, 0.75);
}

@media (max-width: 720px) {
  .highlights-strip { grid-template-columns: repeat(2, 1fr); }
  .highlight-cell:nth-child(2) { border-right: none; }
  .highlight-cell { border-bottom: 1px solid rgba(0,0,0,0.12); }
}

@media (max-width: 640px) {
  .container-wide { padding: 0 1.25rem; }

  .hero-content { padding: calc(var(--nav-h) + 1.5rem) 1.25rem 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-hero { width: 100%; padding: 1rem 1.5rem; }
  .hero-badge { font-size: 0.78rem; letter-spacing: 0.1em; }
  .hero-scroll { display: none; }

  .pitch-section,
  .trailer-section,
  .features-section,
  .roadmap-section { padding: 3.5rem 0; }

  .feature-index { font-size: 2.75rem; }
  .feature-desc { max-width: none; }

  .roadmap-cta-row { flex-direction: column; align-items: stretch; }
  .roadmap-cta-row .btn-hero { width: 100%; }

  .finale-section { min-height: auto; padding: 4rem 1.25rem; }
  .finale-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .finale-actions .btn-hero { width: 100%; }

  .footer-social-link {
    font-size: var(--text-sm);
    max-width: 100%;
    word-break: break-word;
    justify-content: center;
    text-align: center;
  }
}

/* ── Atmospheric backgrounds (replaces texture image) ── */
.et-bg-mesh {
  background-color: var(--et-navy-deep);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(255, 195, 61, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 95% 45%, rgba(77, 135, 47, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 75%, rgba(96, 130, 200, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--et-navy-deep) 0%, var(--et-navy) 48%, var(--et-navy-deep) 100%);
}

.et-bg-mesh--warm {
  background-color: var(--et-navy);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(255, 195, 61, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 20%, rgba(255, 195, 61, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--et-navy) 0%, var(--et-navy-mid) 55%, var(--et-navy-deep) 100%);
}

.et-bg-mesh--deep {
  background-color: var(--et-navy-deep);
  background-image:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255, 195, 61, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(30, 41, 69, 0.9) 0%, transparent 55%),
    linear-gradient(165deg, #0a0f1c 0%, var(--et-navy-deep) 45%, var(--et-navy) 100%);
}

/* ── Pitch section ── */
.pitch-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pitch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 195, 61, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 195, 61, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.pitch-section .container-wide {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--et-gold);
  margin: 0 0 1rem;
}

.pitch-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--et-white);
  margin: 0 auto 1.5rem;
  max-width: 720px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.pitch-body {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.78);
  margin: 0 auto;
  max-width: 620px;
}

/* ── Trailer section ── */
.trailer-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.trailer-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--et-gold-dim), transparent);
  pointer-events: none;
}

.trailer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--et-gold-dim), transparent);
  z-index: 1;
}

.trailer-section .container-wide {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--et-gold-warm);
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.cinema-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 3px;
  background: linear-gradient(135deg, var(--et-gold), rgba(255,195,61,0.2), var(--et-gold));
  border-radius: 6px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 195, 61, 0.08);
}

.cinema-frame__corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(var(--et-gold), var(--et-gold)) top left / 24px 2px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) top left / 2px 24px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) top right / 24px 2px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) top right / 2px 24px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) bottom left / 24px 2px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) bottom left / 2px 24px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) bottom right / 24px 2px no-repeat,
    linear-gradient(var(--et-gold), var(--et-gold)) bottom right / 2px 24px no-repeat;
  opacity: 0.6;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--et-black);
  border-radius: 4px;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.steam-block iframe,
.steam-widget {
  max-width: 100%;
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.steam-block {
  width: 100%;
  max-width: 646px;
  margin: 0 auto;
}

/* ── Features ── */
.features-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 195, 61, 0.08);
  border-radius: 8px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-block:hover {
  border-color: rgba(255, 195, 61, 0.22);
  box-shadow: 0 0 60px rgba(255, 195, 61, 0.06);
}

.feature-block:last-child { margin-bottom: 0; }

.feature-block--flip .feature-block__copy { order: 2; }
.feature-block--flip .feature-block__media { order: 1; }

@media (max-width: 800px) {
  .feature-block,
  .feature-block--flip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }
  .feature-block--flip .feature-block__copy,
  .feature-block--flip .feature-block__media { order: unset; }
}

.feature-block__copy {
  padding: 1rem;
}

.feature-index {
  display: block;
  font-family: var(--font-hero);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 195, 61, 0.12);
  margin-bottom: -0.5rem;
}

.feature-tag {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--et-green);
  border: 1px solid rgba(77, 135, 47, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--et-gold-bright);
  margin: 0 0 1rem;
  text-shadow: 0 2px 16px rgba(255, 195, 61, 0.2);
}

.feature-desc {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.82);
  margin: 0;
  max-width: 440px;
}

.monitor-frame {
  position: relative;
  border: 3px solid var(--et-black);
  border-radius: 6px;
  overflow: hidden;
  background: var(--et-black);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 195, 61, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-block:hover .monitor-frame {
  transform: scale(1.02) translateY(-4px);
}

.monitor-frame__bar {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,195,61,0.1);
}

.monitor-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.monitor-frame__bar span:first-child { background: rgba(255, 80, 80, 0.6); }
.monitor-frame__bar span:nth-child(2) { background: rgba(255, 195, 61, 0.5); }
.monitor-frame__bar span:nth-child(3) { background: rgba(80, 200, 120, 0.5); }

.monitor-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.monitor-frame__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,195,61,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Roadmap / Early Access ── */
.roadmap-section {
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.roadmap-section .container-wide {
  max-width: 1200px;
}

.roadmap-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.roadmap-lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.78);
  margin: 0 0 2rem;
}

.roadmap-lead strong {
  color: var(--et-gold-bright);
  font-weight: 600;
}

.roadmap-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .roadmap-timeline {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 0.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--et-gold) var(--et-navy-deep);
  }

  .roadmap-card,
  .roadmap-card--live {
    flex: 0 0 min(72vw, 340px);
    scroll-snap-align: start;
  }
}

.roadmap-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roadmap-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.roadmap-card__step {
  font-family: var(--font-hero);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 195, 61, 0.25);
  line-height: 1;
}

.roadmap-card--live .roadmap-card__step {
  color: rgba(255, 195, 61, 0.55);
}

.roadmap-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  border: 1px solid transparent;
}

.roadmap-card__badge--live {
  color: var(--et-gold-bright);
  background: rgba(255, 195, 61, 0.12);
  border-color: rgba(255, 195, 61, 0.35);
}

.roadmap-card__badge--planned {
  color: rgba(250, 250, 250, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.roadmap-card__frame {
  border: 3px solid var(--et-black);
  border-radius: 6px;
  overflow: hidden;
  background: var(--et-black);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 195, 61, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.roadmap-card:hover .roadmap-card__frame {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(255, 195, 61, 0.1);
}

.roadmap-card--live .roadmap-card__frame {
  border-color: var(--et-gold);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(255, 195, 61, 0.15);
}

.roadmap-card__frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.roadmap-card__label {
  font-family: var(--font-label);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
  text-align: center;
  margin: 0;
}

.roadmap-card--live .roadmap-card__label {
  color: var(--et-gold);
}

.roadmap-footnote {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(250, 250, 250, 0.4);
  margin: 2.5rem 0 0;
}

/* ── Finale CTA ── */
.finale-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.finale-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.finale-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.35);
  transform: scale(1.1);
}

.finale-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(255,195,61,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--et-navy-deep) 0%, transparent 30%, transparent 70%, var(--et-navy-deep) 100%);
}

.finale-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.finale-logo {
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

.finale-title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
  color: var(--et-white);
  margin: 0 0 0.75rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

.finale-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(250,250,250,0.75);
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

.finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--et-black);
  border-top: 1px solid rgba(255, 195, 61, 0.12);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 1rem;
  opacity: 0.85;
}

.footer-tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--et-green);
  margin: 0 0 1rem;
}

.footer-social {
  margin-bottom: 1.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--et-gold);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 195, 61, 0.25);
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: var(--et-gold-bright);
  border-color: rgba(255, 195, 61, 0.5);
  background: rgba(255, 195, 61, 0.08);
}

.footer-text {
  font-size: var(--text-base);
  line-height: 1.85;
  color: rgba(250, 250, 250, 0.55);
  margin: 0;
}

.footer-text a {
  color: var(--et-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-text a:hover {
  color: var(--et-gold-bright);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--et-navy-deep); }
::-webkit-scrollbar-thumb { background: var(--et-gold); border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-img { transform: scale(1.08) !important; }
}
