/* landing.css — Ergogen Landing Page */
/* Matches the Next.js version design system */

/* ============================================================
   Google Fonts Import
   ============================================================ */
/* Font is loaded via <link> in index.html — no @import needed */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg: #f8f9fa;
  --text: #0e0e10;
  --text-muted: rgba(0, 0, 0, 0.5);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --card-bg-hover: #f1f3f5;
  --accent: #2563eb;
  --red: #ef4444;
  --green: #10b981;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 120px rgba(239, 68, 68, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --text: #fafafa;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 120px rgba(239, 68, 68, 0.2);
  }
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 64px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   Typography — Desktop (default)
   ============================================================ */
h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}

.text-muted {
  color: var(--text-muted);
}

/* ============================================================
   Sticky Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Full-screen mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay ul a {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.nav-overlay ul a:hover {
  color: var(--accent);
}

/* Mobile slide-down menu (loaded by components.js navbar) */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-menu.is-open {
  display: flex;
}

.nav-mobile-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-mobile-link:hover {
  color: var(--accent);
}

/* Nav right container */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-signin {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-signin:hover {
  color: var(--text);
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

/* ============================================================
   Hero — Two-column grid
   ============================================================ */
.hero {
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

/* ============================================================
   Scroll-Pinned Section
   ============================================================ */
.scroll-section {
  height: 200vh;
  position: relative;
}

.film-intro.scroll-section {
  height: 150vh;
}

.scroll-section .sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Film Scenes — normal flow (no pinning) — see bottom of file for full .film-scene definition */

/* ============================================================
   Flat Cards (no glassmorphism)
   ============================================================ */
.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 24px;
}

.card-lg {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 40px;
}

.card-sm {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
}

/* ============================================================
   Browser Frame Chrome
   ============================================================ */
.browser-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: black;
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 8px;
}

.browser-frame-dots {
  display: flex;
  gap: 6px;
}

.browser-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-frame-dot:nth-child(1) { background: #ff5f57; }
.browser-frame-dot:nth-child(2) { background: #febc2e; }
.browser-frame-dot:nth-child(3) { background: #28c840; }

.browser-frame-url {
  flex: 1;
  height: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-left: 8px;
}

.browser-frame-content {
  position: relative;
  width: 100%;
}

/* ============================================================
   Game Card — SpotTheAI
   ============================================================ */
.game-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.game-card:active {
  transform: translateY(0);
}

/* Guess buttons */
.guess-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: all 0.2s ease;
  cursor: pointer;
}

.guess-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.guess-btn-ai {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
  color: var(--red);
}

.guess-btn-ai:hover {
  border-color: rgba(239, 68, 68, 0.7);
  background: rgba(239, 68, 68, 0.15);
}

.guess-btn-human {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
  color: var(--green);
}

.guess-btn-human:hover {
  border-color: rgba(16, 185, 129, 0.7);
  background: rgba(16, 185, 129, 0.15);
}

/* Reveal states */
.border-emerald {
  border-color: var(--green) !important;
}

.border-red {
  border-color: var(--red) !important;
}

.text-emerald {
  color: var(--green);
}

.text-red {
  color: var(--red);
}

.game-result-correct {
  border-color: var(--green);
  background: rgba(16, 185, 129, 0.08);
}

.game-result-wrong {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.08);
}

/* ============================================================
   Collage / Slop Posts
   ============================================================ */
.slop-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.slop-post {
  position: absolute;
  max-width: 320px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  will-change: transform, opacity, filter;
  transform: translateZ(0);
}

.slop-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.slop-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.slop-name {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.slop-handle {
  font-size: 12px;
  color: var(--text-muted);
}

.slop-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   CTA Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 15px;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 20px;
}

/* ============================================================
   Footer — 4-column grid
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 16px;
}

.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1152px;
  margin: 0 auto 64px;
}

.footer-col-brand {
  grid-column: span 1;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1152px;
  margin: 0 auto;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ============================================================
   Misc Utility
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.25);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Tablet Breakpoint (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .hero-headline {
    font-size: 56px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col-brand {
    grid-column: span 2;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 96px 0;
  }
}

/* ============================================================
   Mobile Breakpoint (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  /* Show hamburger, hide desktop nav links */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 14px 16px;
  }

  /* Hero stacks on mobile */
  .hero {
    padding: 64px 0 48px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  /* Footer: 1 column on mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 16px;
  }

  .card-lg {
    padding: 24px;
  }

  .game-card {
    padding: 20px;
  }

  /* Disable sticky scroll-pinning on mobile — natural flow */
  .scroll-section {
    height: auto;
  }

  .scroll-section .sticky-inner {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  /* Scroll of Shame: vertical feed on mobile */
  .slop-collage {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    align-items: center;
  }

  .slop-post {
    position: static !important;
    transform: none !important;
    max-width: 100%;
    width: 100%;
  }

  /* Show only first 6 posts on mobile */
  .slop-post:nth-child(n+7) {
    display: none;
  }

  /* Shame section: stack vertically on mobile */
  .shame-section .sticky-inner {
    flex-direction: column;
  }

  /* Shame message: visible by default on mobile (no scroll reveal) */
  .shame-center {
    position: relative;
    inset: auto;
    padding: 48px 16px;
  }

  .shame-line-1,
  .shame-line-2 {
    opacity: 1 !important;
  }

  .shame-dissolve {
    display: none;
  }

  /* Film intro: natural flow on mobile */
  .film-intro.scroll-section {
    height: auto;
  }

  .film-intro-inner {
    position: relative;
    top: auto;
    height: auto;
    padding: 64px 16px;
  }

  /* Tighten section padding */
  .pricing-section,
  .closer-section,
  .connect-section {
    padding: 64px 16px;
  }
}

/* ============================================================
   Reduced Motion Fallbacks
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Disable sticky scroll-pinned sections — collapse to natural height */
  .scroll-section {
    height: auto;
  }

  .scroll-section .sticky-inner {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  /* Disable parallax transforms */
  .slop-collage [style*="transform"] {
    transform: none !important;
  }

  /* Disable hover lifts */
  .btn-primary:hover,
  .btn-secondary:hover,
  .game-card:hover {
    transform: none;
  }
}

/* ============================================================
   Hero Section (specific classes used by index.html)
   ============================================================ */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-copy {
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.hero-section--minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 80px 24px 64px;
  position: relative;
}

.hero-section--minimal .hero-copy {
  margin-bottom: 80px;
}

.hero-section--minimal .hero-cta-group {
  margin-bottom: 0;
}

.scroll-nudge {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.35);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-cta-group {
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #3b82f6;
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.5);
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #60a5fa;
  transform: translateY(-1px);
}

.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Scroll of Shame
   ============================================================ */
.shame-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 16px;
}

.shame-line-1 {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 768px;
  line-height: 1.25;
}

.shame-line-2 {
  margin-top: 24px;
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 768px;
  line-height: 1.25;
}

.shame-dissolve {
  position: absolute;
  inset: 0;
  background: black;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

/* ============================================================
   Film Intro
   ============================================================ */
.film-intro-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.film-intro-text {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 768px;
  padding: 0 16px;
}

/* ============================================================
   Film Scene Lines & Videos
   ============================================================ */
.scene-line {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  max-width: 896px;
  text-align: center;
  margin: 0 auto 40px;
  line-height: 1.25;
  padding: 0 16px;
}

.scene-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Browser frame inner elements (HTML uses shorter names) */
.browser-bar {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 8px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
  margin-left: 8px;
}

.browser-content {
  position: relative;
  width: 100%;
}

/* Custom video controls overlay */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.browser-content:hover .video-controls {
  opacity: 1;
}

.video-controls button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  opacity: 0.85;
  transition: opacity 0.15s;
  font-size: 18px;
  line-height: 1;
}

.video-controls button:hover {
  opacity: 1;
}

.video-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.video-progress-bar {
  height: 100%;
  background: #22d3ee;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   Platform Cards
   ============================================================ */
.platform-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.platform-card {
  width: 140px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.platform-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .platform-cards {
    gap: 60px;
  }
  .platform-card {
    width: 160px;
  }
}

/* ============================================================
   Game Section (SpotTheAI)
   ============================================================ */
.game-section {
  padding: 128px 16px;
}

.game-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 64px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.game-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 896px;
  margin: 0 auto;
}

.game-platform {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.game-post-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.game-buttons {
  display: flex;
  gap: 12px;
}

.game-guess-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.game-guess-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.game-reveal-correct {
  font-size: 14px;
  font-weight: 600;
  color: #34d399;
  margin-top: 12px;
}

.game-reveal-wrong {
  font-size: 14px;
  font-weight: 600;
  color: #f87171;
  margin-top: 12px;
}

.game-summary {
  margin-top: 48px;
  text-align: center;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .game-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-post-text {
    font-size: 16px;
  }
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-section {
  padding: 128px 16px;
  text-align: center;
}

.pricing-line {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  max-width: 672px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.pricing-line + .pricing-line {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.pricing-discount {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Connect to Claude Section
   ============================================================ */
.connect-section {
  padding: 128px 16px;
  text-align: center;
}

.connect-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin: 0 auto 16px;
}

.connect-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.connect-clients {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.connect-client {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 24px;
  width: 200px;
  transition: border-color 0.2s;
}

.connect-client:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.connect-client-icon {
  color: #3b82f6;
  margin-bottom: 16px;
}

.connect-client-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.connect-client-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.connect-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   Closer CTA Section
   ============================================================ */
.closer-section {
  padding: 128px 16px;
  text-align: center;
}

.closer-line {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  max-width: 672px;
  margin: 0 auto 32px;
}

.closer-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   Film Scene layout centering
   ============================================================ */
.film-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 16px;
}

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}


/* ============================================================
   Footer social links
   ============================================================ */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
}
