/* ═══════════════════════════════════════════════════════════════
   Acquisition Website — Editorial Crossword Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  /* Editorial Palette */
  --bg-primary: #FAF6F0;
  --bg-secondary: #F3EDE4;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFCFA;
  --bg-surface: #F7F3EC;
  --bg-dark: #1C1917;
  --bg-dark-subtle: #292524;

  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;
  --text-on-dark: #FAF6F0;

  --accent: #78716C;
  --accent-gold: #9A7B4F;
  --accent-gold-hover: #B08D5B;
  --accent-gold-subtle: rgba(154, 123, 79, 0.10);
  --accent-gold-border: rgba(154, 123, 79, 0.25);

  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.15);
  --border-gold: rgba(154, 123, 79, 0.20);

  --success: #4A7C59;
  --success-bg: rgba(74, 124, 89, 0.10);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1140px;

  /* Misc */
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(28, 25, 23, 0.06);
  --shadow-hover: 0 6px 24px rgba(28, 25, 23, 0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-gold-hover); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}
h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.35;
}

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

/* ── Section Headers ───────────────────────────────────────────── */
section { padding: var(--section-pad) 0; }

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

#what .section-header h2,
#value .section-header h2 {
  font-size: 2.6rem;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.btn-primary:hover {
  background: var(--bg-dark-subtle);
  color: var(--text-on-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(28, 25, 23, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo:hover { color: var(--text-primary); }

.nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--accent-gold); }

.nav-cta {
  background: var(--bg-dark) !important;
  color: var(--text-on-dark) !important;
  padding: 7px 18px !important;
  margin-left: 8px;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover {
  background: var(--bg-dark-subtle) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 123, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 123, 79, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  border: 1px solid rgba(154, 123, 79, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}

#hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #A8A29E;
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-ctas .btn-primary {
  background: var(--accent-gold);
  color: #fff;
}
.hero-ctas .btn-primary:hover {
  background: var(--accent-gold-hover);
  color: #fff;
}
.hero-ctas .btn-secondary {
  color: #A8A29E;
  border-color: rgba(168, 162, 158, 0.25);
}
.hero-ctas .btn-secondary:hover {
  color: var(--text-on-dark);
  border-color: rgba(168, 162, 158, 0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 560px;
  margin: 0 auto;
}

.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: #78716C;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════════════════
   ASSET OVERVIEW
   ═══════════════════════════════════════════════════════════════ */
#what {
  background: var(--bg-primary);
}

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

.asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.asset-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.asset-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.asset-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}
.asset-icon.accent-gold {
  background: var(--accent-gold-subtle);
}
.asset-icon.accent-gold svg {
  color: var(--accent-gold);
}

.asset-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.asset-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   VALUE SECTION
   ═══════════════════════════════════════════════════════════════ */
#value {
  background: var(--bg-secondary);
}

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

.value-card {
  padding: 28px 0;
  border-top: 2px solid var(--border-strong);
}

.value-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.value-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   INCLUDED IN SALE
   ═══════════════════════════════════════════════════════════════ */
#included {
  background: var(--bg-secondary);
}

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

.included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.included-item:hover { border-color: var(--border-strong); }

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}

.included-item h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.included-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL PROOF
   ═══════════════════════════════════════════════════════════════ */
#visuals {
  background: var(--bg-primary);
}

.proof-subsection {
  text-align: center;
  margin-bottom: 32px;
}
.proof-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.proof-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Screenshots */
.screenshots-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.screenshot-card {
  flex: 0 1 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.screenshot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-label {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tablet */
.tablet-showcase {
  text-align: center;
  margin-bottom: 80px;
}
.tablet-img {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Store Listing Proof */
.store-proof {
  text-align: center;
  margin-bottom: 80px;
}

.store-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
  min-width: 220px;
}
.store-badge:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.store-badge-status {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.store-badge-live .store-badge-status {
  color: var(--success);
}
.store-badge-planned .store-badge-status {
  color: var(--accent-gold);
}

.store-badge-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Puzzle Carousel */
.puzzle-carousel {
  margin-bottom: 80px;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 480px;
}

/* Solved Grid (left panel) */
.carousel-grid-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
}

.solved-grid {
  display: inline-grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 1px;
  background: var(--text-primary);
  border: 2px solid var(--text-primary);
  border-radius: 2px;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
}

.solved-grid .grid-cell {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--text-primary);
  aspect-ratio: 1;
  text-transform: uppercase;
}
.solved-grid .grid-cell.black {
  background: var(--text-primary);
}

.carousel-grid-caption {
  margin-top: 16px;
  text-align: center;
}
.carousel-grid-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.carousel-grid-caption p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Clue Panels (right panel) */
.carousel-clue-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.clue-panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.clue-tab {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.clue-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.clue-panel-body {
  overflow-y: auto;
  flex: 1;
  max-height: 420px;
}

.clue-list {
  padding: 0;
}
.clue-list.hidden {
  display: none;
}

.clue-entry {
  display: flex;
  gap: 10px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  line-height: 1.5;
}
.clue-entry:last-child {
  border-bottom: none;
}

.clue-entry-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 1px;
}
.clue-entry-text {
  color: var(--text-secondary);
  flex: 1;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.carousel-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: var(--shadow);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover {
  border-color: var(--border-strong);
  color: var(--text-secondary);
  box-shadow: none;
}
.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-indicator {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* Pipeline */
.pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 155px;
  text-align: center;
  transition: all var(--transition);
}
.pipeline-step:hover {
  border-color: var(--accent-gold-border);
  box-shadow: 0 0 16px var(--accent-gold-subtle);
}

.pipeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

.pipeline-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
}
.pipeline-sublabel {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pipeline-arrow {
  flex-shrink: 0;
}
.pipeline-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BUYER PROFILES
   ═══════════════════════════════════════════════════════════════ */
#buyers {
  background: var(--bg-secondary);
}

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

.buyer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.buyer-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.buyer-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.buyer-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   OPPORTUNITY
   ═══════════════════════════════════════════════════════════════ */
#opportunity {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.opportunity-block {
  text-align: center;
  padding: 20px 0;
}

.opportunity-block .section-tag {
  color: var(--accent-gold);
  border-color: rgba(154, 123, 79, 0.3);
}

.opportunity-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-on-dark);
}
.opportunity-block > p {
  font-size: 1rem;
  color: #A8A29E;
  max-width: 660px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.opportunity-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.opp-point {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.opp-point strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
}
.opp-point p {
  font-size: 0.85rem;
  color: #A8A29E;
  line-height: 1.65;
}

.opportunity-cta { margin-top: 16px; }
.opportunity-cta .btn-primary {
  background: var(--accent-gold);
  color: #fff;
}
.opportunity-cta .btn-primary:hover {
  background: var(--accent-gold-hover);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
#faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.faq-question:hover { color: var(--accent-gold); }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT (Direct, no form)
   ═══════════════════════════════════════════════════════════════ */
#contact {
  background: var(--bg-secondary);
  padding-bottom: 80px;
}

.contact-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-block h2 {
  font-size: 1.85rem;
  margin-bottom: 18px;
}
.contact-block > p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
  min-width: 240px;
}
.contact-method:hover {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.contact-method-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 36px;
  height: auto;
  border-radius: 4px;
}
.footer-copy {
  font-size: 0.75rem;
  color: #78716C;
}

.footer-links a {
  font-size: 0.78rem;
  color: #78716C;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-on-dark); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .asset-grid,
  .opportunity-points {
    grid-template-columns: repeat(2, 1fr);
  }
  #hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 12px 0; font-size: 0.92rem; }
  .nav-cta {
    text-align: center;
    margin-left: 0 !important;
    margin-top: 8px;
  }

  /* Hero */
  #hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
  .hero-content { padding: 48px 16px; }

  /* Grids */
  .asset-grid,
  .value-grid,
  .buyer-grid,
  .included-grid,
  .opportunity-points {
    grid-template-columns: 1fr;
  }

  /* Carousel mobile */
  .carousel-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .carousel-grid-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .solved-grid {
    max-width: 280px;
  }
  .solved-grid .grid-cell {
    font-size: 0.5rem;
  }
  .clue-panel-body {
    max-height: 300px;
  }

  /* Contact */
  .contact-methods { flex-direction: column; align-items: center; }
  .contact-method { min-width: auto; width: 100%; max-width: 340px; }

  /* Store badges */
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { min-width: auto; width: 100%; max-width: 300px; }

  /* Pipeline */
  .pipeline { flex-direction: column; }
  .pipeline-arrow { transform: rotate(90deg); }

  /* Screenshots */
  .screenshots-row { gap: 12px; }
  .screenshot-card { flex: 0 1 160px; }

  /* Tablet */
  .tablet-img { border-radius: var(--radius); }

  .section-header h2 { font-size: 1.65rem; }
  #what .section-header h2,
  #value .section-header h2 { font-size: 1.85rem; }
  .opportunity-block h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  #hero h1 { font-size: 1.65rem; }
  .hero-badge { font-size: 0.6rem; }
  .stat-value { font-size: 1.2rem; }
  .screenshots-row { flex-direction: column; align-items: center; }
  .screenshot-card { flex: 0 1 auto; max-width: 240px; }
}
