@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

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

/* Dark theme (default) */
:root {
  --bg-deep: #080a14;
  --bg: #0c0f1a;
  --surface: #131729;
  --surface-raised: #1a1f36;
  --border: rgba(99, 102, 241, 0.12);
  --border-hover: rgba(99, 102, 241, 0.3);
  --text: #e8eaf0;
  --text-muted: #8b90a8;
  --text-dim: #5c6080;
  --accent: #818cf8;
  --accent-bright: #a5b4fc;
  --accent-glow: rgba(129, 140, 248, 0.15);
  --indigo-deep: #2d2b7c;
  --navy: #1e1b4b;
  --grain-opacity: 0.03;
  --glow-1: rgba(45, 43, 124, 0.25);
  --glow-2: rgba(99, 102, 241, 0.08);
  --shadow-card: rgba(0, 0, 0, 0.3);
  --macbook-shadow: rgba(0, 0, 0, 0.5);
}

/* Light theme */
@media (prefers-color-scheme: light) {
  :root {
    --bg-deep: #f5f5f7;
    --bg: #ffffff;
    --surface: #f0f0f5;
    --surface-raised: #e8e8f0;
    --border: rgba(99, 102, 241, 0.15);
    --border-hover: rgba(99, 102, 241, 0.35);
    --text: #1a1a2e;
    --text-muted: #5a5a72;
    --text-dim: #8a8aa0;
    --accent: #6366f1;
    --accent-bright: #4f46e5;
    --accent-glow: rgba(99, 102, 241, 0.1);
    --indigo-deep: #c7d2fe;
    --navy: #e0e7ff;
    --grain-opacity: 0.015;
    --glow-1: rgba(99, 102, 241, 0.08);
    --glow-2: rgba(99, 102, 241, 0.04);
    --shadow-card: rgba(0, 0, 0, 0.06);
    --macbook-shadow: rgba(0, 0, 0, 0.15);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-bright);
}

/* ─── Layout ─── */

.page-wrapper {
  position: relative;
  min-height: 100vh;
}

/* Background atmosphere */
.page-wrapper::before {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, var(--glow-1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-wrapper::after {
  content: '';
  position: fixed;
  bottom: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, var(--glow-2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Header ─── */

header {
  padding: 20px 0 4px;
  text-align: center;
}

header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

header h1 a {
  color: var(--text-muted);
  transition: color 0.3s;
}

header h1 a:hover {
  color: var(--accent);
}

header .tagline {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ─── Hero Section ─── */

.hero {
  text-align: center;
  padding: 12px 0 8px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto 20px;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.2),
    0 8px 40px rgba(99, 102, 241, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.hero-icon:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.3),
    0 12px 60px rgba(99, 102, 241, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 20%, var(--accent-bright) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.hero .description {
  max-width: 540px;
  margin: 24px auto 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── CTA Badge ─── */

.cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 24px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}

.cta-badge:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 24px var(--accent-glow);
  transform: translateY(-1px);
  color: var(--text);
}

.cta-badge .apple-logo {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Scroll chevron */
.scroll-chevron {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dim);
  animation: bounce 2s ease infinite;
  opacity: 0.5;
  margin: 8px 0;
  transition: opacity 0.3s;
}

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

/* ─── Scroll Convergence ─── */

.converge-section {
  padding: 0 24px 0;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.converge-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* MacBook mockup */
.macbook-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  perspective: 1200px;
  will-change: transform;
}

.macbook-frame {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}

.macbook-body {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.macbook-screen-overlay {
  position: absolute;
  /* Position exactly within the MacBook screen bezel */
  top: calc(11.8% + 2px);
  left: 12.3%;
  width: 75.4%;
  height: 74%;
  overflow: hidden;
  border-radius: 6px;
  z-index: 0;
  transition: opacity 0.1s;
}

.screen-wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}

/* Dark mode: show dark wallpaper + dark app, hide light */
.screen-wallpaper-light { display: none; }
.screen-wallpaper-dark { display: block; }
@media (prefers-color-scheme: light) {
  .screen-wallpaper-dark { display: none; }
  .screen-wallpaper-light { display: block; }
}

.screen-app {
  position: relative;
  width: 80%;
  height: auto;
  object-fit: contain;
  margin: 1% auto 0;
  z-index: 1;
}

/* Dark mode default: show dark app, hide light */
.screen-app.screen-app-dark { display: block; }
.screen-app.screen-app-light { display: none; }

@media (prefers-color-scheme: light) {
  .screen-app.screen-app-dark { display: none; }
  .screen-app.screen-app-light { display: block; }
}

/* Thumbnail row in hero */
.thumb-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
  flex-wrap: nowrap;
  overflow: visible;
}

.thumb-item {
  position: relative;
  width: 160px;
  height: 230px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px var(--shadow-card);
  will-change: transform, opacity;
  transition: box-shadow 0.3s;
}

.thumb-item:hover {
  box-shadow: 0 8px 32px var(--shadow-card), 0 0 20px var(--accent-glow);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 8px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.converge-hint {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: -20px 0 -20px;
  letter-spacing: -0.01em;
}

/* ─── Showcase (Video + Screenshots) ─── */

.showcase {
  padding: 48px 0 32px;
}

/* Feature Showcase */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 24px 48px;
  max-width: 1040px;
  margin: 0 auto;
}

.showcase-tile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.showcase-tile.reverse {
  grid-template-columns: 2fr 1fr;
}

.showcase-tile.reverse .showcase-text {
  order: 2;
}

.showcase-tile.reverse .showcase-img {
  order: 1;
}

.showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.showcase-icon {
  font-size: 1.4rem;
  vertical-align: middle;
}

.showcase-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.showcase-text h3 .accent {
  color: var(--accent);
}

.showcase-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.showcase-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px var(--shadow-card), 0 0 24px var(--accent-glow);
}

/* Hover-to-play video */
.hover-video-wrap {
  position: relative;
  cursor: pointer;
}

.hover-video {
  display: block;
}

.hover-play-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  padding-left: 4px;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.showcase-img img,
.showcase-img video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

@media (max-width: 640px) {
  .showcase-tile,
  .showcase-tile.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-tile.reverse .showcase-text { order: 0; }
  .showcase-tile.reverse .showcase-img { order: 0; }
  .showcase-text h3 { font-size: 1.3rem; }
}

.showcase-video {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: var(--surface);
}

.showcase-video video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* Comparison Slider */
.compare-section {
  padding: 48px 0;
}

.compare-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}

.compare-slider {
  margin-bottom: 24px;
}

.compare-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.compare-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.compare-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
  user-select: none;
}

.compare-container img {
  width: 100%;
  display: block;
}

.compare-light {
  position: relative;
  z-index: 0;
}

.compare-dark-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.compare-dark-clip img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--container-width, 100%);
  height: auto;
  max-width: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.compare-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.compare-handle::after {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--bg-deep);
  z-index: 1;
  pointer-events: none;
}

.showcase-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.showcase-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 40px var(--accent-glow);
  border-color: rgba(99, 102, 241, 0.4);
}

.showcase-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.lightbox.active img {
  transform: scale(1);
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--surface);
  border: 1px dashed var(--border-hover);
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
}

.showcase-video .placeholder {
  min-height: 360px;
  border-radius: 14px;
}

/* ─── Why ManiShelf ─── */

.why-section {
  padding: 48px 0;
}

.why-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.why-card.highlight {
  background: linear-gradient(135deg, var(--surface) 0%, var(--navy) 100%);
  border-color: rgba(99, 102, 241, 0.2);
}

.why-card.highlight:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.why-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Divider ─── */

.section-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
  opacity: 0.4;
}

/* ─── Features Grid ─── */

.features-section {
  padding: 48px 0;
}

.features-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.feature-card .icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Checklist ─── */

.checklist-section {
  padding: 48px 0;
}

.checklist-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px 60px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.checklist-item .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── FAQ ─── */

.faq-section {
  padding: 48px 0;
}

.faq-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\203A';
  font-size: 1.4rem;
  color: var(--text-dim);
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(270deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Support ─── */

.support-section {
  padding: 48px 0 24px;
  text-align: center;
}

.support-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.support-section .support-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.support-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}

.support-link:hover {
  border-color: var(--border-hover);
  color: var(--accent-bright);
}

/* ─── Footer ─── */

footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

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

footer .footer-links a {
  color: var(--text-dim);
  font-size: 0.78rem;
  transition: color 0.2s;
}

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

/* ─── Prose Pages (Privacy, Terms) ─── */

.prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  margin: 32px 0;
}

.prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.prose .updated {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 32px;
  display: block;
}

.prose h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--text);
}

.prose p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.prose ul {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  padding-left: 20px;
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.prose strong {
  color: var(--text);
}

/* Back link on prose pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  transition: color 0.2s;
}

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

/* ─── Responsive ─── */

@media (max-width: 640px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-video .placeholder {
    min-height: 220px;
  }

  .converge-stage {
    min-height: 360px;
  }

  .thumb-item {
    width: 80px;
  }

  .thumb-row {
    gap: 8px;
  }

  .hero-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .prose {
    padding: 28px;
  }

  .support-links {
    flex-direction: column;
    align-items: center;
  }

  .converge-hint {
    font-size: 1.2rem;
  }

  .showcase-text h3 {
    font-size: 1.2rem;
  }

  .showcase-text p {
    font-size: 0.85rem;
  }

  .faq-section h3 {
    font-size: 1.4rem;
  }

  .checklist-section h3 {
    font-size: 1.4rem;
  }

  .checklist-item {
    font-size: 0.85rem;
  }
}
