/* ABOUTME: Sunlight design system for Peekabout Web. */
/* ABOUTME: Paper (light) default, dark theme option. Matches the mobile app. */

:root {
  --bg: #FFFBF7;
  --bg-card: #FEF7ED;
  --border: #E7E5E4;
  --text: #1C1917;
  --text-secondary: #44403C;
  --text-dim: #78716C;
  --amber: #D4711C;
  --amber-glow: #F88C29;
  --amber-dim: #B45F14;
  --sage: #778745;
  --sage-dim: #5A6A2D;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg: #2A5363;
  --bg-card: #34657B;
  --border: #3B7B9B;
  --text: #FFFFFF;
  --text-secondary: #D5DFE9;
  --text-dim: #B0C2D3;
  --amber: #FFB347;
  --amber-glow: #FFC76E;
  --amber-dim: #F88C29;
  --sage: #B5CC62;
  --sage-dim: #8E9E4D;
  --font-heading: var(--font-body);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #2A5363;
    --bg-card: #34657B;
    --border: #3B7B9B;
    --text: #FFFFFF;
    --text-secondary: #D5DFE9;
    --text-dim: #B0C2D3;
    --amber: #FFB347;
    --amber-glow: #FFC76E;
    --amber-dim: #F88C29;
    --sage: #B5CC62;
    --sage-dim: #8E9E4D;
    --font-heading: var(--font-body);
  }
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}

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

/* Typography */

h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tagline {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.intro {
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* Biome grid */

.biome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.biome-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s, color 0.15s;
}

.biome-btn:hover {
  border-color: var(--text-dim);
}

.biome-btn.selected {
  border-color: var(--amber);
  color: var(--text);
}

.biome-btn .icon {
  font-size: 1.5rem;
}

.sub-biomes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  min-height: 0;
}

.sub-biomes:empty {
  display: none;
}

.sub-btn {
  padding: 0.375rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.sub-btn:hover {
  border-color: var(--text-dim);
}

.sub-btn.selected {
  border-color: var(--sage);
  color: var(--text);
  background: var(--sage-dim);
}

/* Weather row */

.weather-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.weather-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0.625rem 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.6875rem;
  font-family: var(--font-body);
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s, color 0.15s;
}

.weather-btn:hover {
  border-color: var(--text-dim);
}

.weather-btn.selected {
  border-color: var(--amber);
  color: var(--text);
}

.weather-btn .icon {
  font-size: 1.25rem;
}

/* Duration */

.duration-row {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.duration-btn {
  flex: 1;
  padding: 0.5rem 0.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: border-color 0.15s, color 0.15s;
}

.duration-btn:hover {
  border-color: var(--text-dim);
}

.duration-btn.selected {
  border-color: var(--amber);
  color: var(--text);
}

.duration-btn .hint {
  font-size: 0.6875rem;
  color: var(--text-dim);
  display: block;
}

.custom-input {
  display: none;
  margin-bottom: 0.5rem;
}

.custom-input.visible {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.custom-input input {
  width: 4rem;
  padding: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
}

.custom-input label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.duration-info {
  color: var(--text-dim);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

/* Ages */

.ages-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.age-input {
  width: 3.5rem;
  padding: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
}

.age-add, .age-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.125rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.age-add:hover, .age-remove:hover {
  border-color: var(--text-dim);
}

/* Season override */

.season-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.season-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.season-override {
  padding: 0.25rem 0.625rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.season-override:hover {
  border-color: var(--text-dim);
  color: var(--text-secondary);
}

.season-picker {
  display: none;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.season-picker.visible {
  display: flex;
}

.season-btn {
  flex: 1;
  padding: 0.375rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
}

.season-btn.selected {
  border-color: var(--amber);
  color: var(--text);
}

/* Free text */

.free-text {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 44px;
  margin-bottom: 1.5rem;
}

.free-text::placeholder {
  color: var(--text-dim);
}

/* Buttons */

.btn-primary {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--amber);
  border: none;
  border-radius: 12px;
  color: var(--bg);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  min-height: 52px;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:disabled {
  background: var(--amber-dim);
  color: var(--text-dim);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--text-dim);
}

/* Generating state */

.generating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 1.5rem;
  text-align: center;
}

.pulse-dot {
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.generating-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: opacity 0.2s ease;
}

.error-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Hunt view */

.hunt-header {
  margin-bottom: 1.5rem;
}

.hunt-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hunt-meta .chip {
  padding: 0.25rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hunt-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.hunt-ages {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hunt-date {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.hunt-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Item cards */

.item-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.item-name {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.item-tags {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.item-tags .tag {
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag-category {
  background: var(--sage-dim);
  color: var(--sage);
}

.tag-common {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.tag-uncommon {
  background: transparent;
  border: 1px solid var(--amber-dim);
  color: var(--amber);
}

.tag-rare {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber-glow);
}

.item-hook {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--sage-dim);
}

.item-hints {
  list-style: none;
  padding: 0;
}

.item-hints li {
  color: var(--text-dim);
  font-size: 0.8125rem;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.item-hints li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--amber-dim);
  border-radius: 50%;
}

/* Bonus section */

.bonus-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 500;
}

/* App CTA */

.app-cta {
  background: var(--bg-card);
  border: 1px solid var(--amber-dim);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.app-cta h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.app-cta p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.app-cta .features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.app-cta .feature-chip {
  padding: 0.25rem 0.625rem;
  background: var(--amber);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--bg);
}

/* Footer */

.footer {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.footer a {
  color: var(--amber);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Toast */

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.625rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--amber);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 100;
}

.toast.visible {
  opacity: 1;
}

/* Long-form content (privacy policy, etc.) */

.privacy-content h2 {
  margin-top: 1.75rem;
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.privacy-content li {
  margin-bottom: 0.25rem;
}

.privacy-content a {
  color: var(--amber);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* Theme toggle */

.theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.125rem;
  cursor: pointer;
  z-index: 50;
  transition: border-color 0.15s;
}

.theme-toggle:hover {
  border-color: var(--text-dim);
}

/* Print styles - compact numbered checklist */

@media print {
  :root {
    --bg: #fff;
    --bg-card: #fff;
    --border: #ddd;
    --text: #111;
    --text-secondary: #444;
    --text-dim: #777;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .hunt-actions,
  .app-cta,
  .footer,
  .btn-primary,
  .btn-secondary,
  .toast,
  .item-hints,
  .item-tags,
  .theme-toggle {
    display: none !important;
  }

  .bonus-header {
    font-size: 11pt;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .hunt-header {
    margin-bottom: 0.75rem;
  }

  .hunt-header h1 {
    font-size: 14pt;
    margin-bottom: 0.125rem;
  }

  .hunt-meta .chip {
    background: none;
    border: none;
    padding: 0;
    font-size: 9pt;
  }

  .hunt-summary {
    font-size: 10pt;
    margin-bottom: 0.25rem;
  }

  .hunt-ages {
    font-size: 9pt;
    margin-bottom: 0.25rem;
  }

  .hunt-date {
    font-size: 8pt;
    margin-bottom: 0.5rem;
  }

  .item-list {
    gap: 0;
    counter-reset: item-counter;
    margin-bottom: 0.5rem;
  }

  .item-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0.2rem 0 0.2rem 1.75rem;
    counter-increment: item-counter;
    position: relative;
    break-inside: avoid;
  }

  .item-card::before {
    content: counter(item-counter) ".";
    position: absolute;
    left: 0;
    font-size: 10pt;
    color: #555;
  }

  .item-name {
    font-size: 11pt;
    font-weight: 400;
    margin-bottom: 0;
    display: inline;
  }

  .print-checkbox {
    display: inline-block !important;
    width: 12px;
    height: 12px;
    border: 1.5px solid #555;
    border-radius: 2px;
    margin-right: 0.375rem;
    vertical-align: middle;
  }

  .item-hook {
    display: inline;
    font-size: 9pt;
    color: #666;
    border: none;
    padding: 0;
    margin: 0;
  }

  .item-hook::before {
    content: " - ";
  }

  .print-url {
    display: block !important;
    text-align: center;
    margin-top: 1rem;
    font-size: 8pt;
    color: #999;
  }
}

.print-url {
  display: none;
}

.print-checkbox {
  display: none;
}

/* ========================================
   Marketing site
   ======================================== */

/* Site header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-header nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
}

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

.site-header nav a.nav-cta {
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.site-header nav a.nav-cta:hover {
  background: var(--amber);
  color: var(--bg);
}

/* Breadcrumb nav */

.breadcrumb {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
}

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

.breadcrumb .separator {
  margin: 0 0.375rem;
  opacity: 0.5;
}

/* Wide container for marketing pages */

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

/* Hero */

.hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.hero-trust {
  color: var(--text-dim);
  font-size: 0.8125rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: opacity 0.15s;
}

.hero-cta:hover {
  opacity: 0.9;
}

.hero-cta-subnote {
  color: var(--text-dim);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

.store-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.15s;
}

.store-badge:hover {
  border-color: var(--text-dim);
}

/* Email signup */

.email-signup {
  max-width: 420px;
  margin: 0 auto;
}

.email-signup p {
  color: var(--text-dim);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

.email-signup form {
  display: flex;
  gap: 0.5rem;
}

.email-signup input[type="email"] {
  flex: 1;
  padding: 0.625rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font-body);
  min-width: 0;
}

.email-signup input[type="email"]::placeholder {
  color: var(--text-dim);
}

.email-signup button {
  padding: 0.625rem 1.25rem;
  background: var(--amber);
  border: none;
  border-radius: 8px;
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.email-signup button:hover {
  opacity: 0.9;
}

/* Section shared styles */

.section {
  padding: 3rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* Screenshot carousel */

.carousel {
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease-out;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.carousel-phone {
  aspect-ratio: 9 / 19.5;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.carousel-phone img,
.carousel-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.carousel-caption {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s;
}

.carousel-arrow:hover {
  border-color: var(--text-dim);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s;
}

.carousel-dot.active {
  background: var(--amber);
}

@media (min-width: 769px) {
  .carousel {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .carousel {
    max-width: 280px;
  }
}

/* Video section */

.video-section {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  max-width: 720px;
  margin: 0 auto;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-section .placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

.video-section .placeholder-overlay .icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* How it works */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
}

.step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 0.75rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.feature-card .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Social proof */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.quote-card blockquote {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.quote-card .attribution {
  color: var(--text-dim);
  font-size: 0.8125rem;
}

/* YouTube facade */

.yt-facade {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-facade .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-facade .play-btn span {
  width: 64px;
  height: 64px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.yt-facade:hover .play-btn span {
  transform: scale(1.08);
}

.yt-facade .play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bg);
  margin-left: 3px;
}

.yt-facade .placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* CTA strip */

.cta-strip {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.cta-strip h2 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-strip-price {
  color: var(--text-dim);
  font-size: 0.8125rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* Site footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8125rem;
}

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

.site-footer .copyright {
  color: var(--text-dim);
  font-size: 0.75rem;
}

/* Contact form */

.contact-form {
  max-width: 540px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9375rem;
  font-family: var(--font-body);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378716C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form .form-submit {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: var(--amber);
  border: none;
  border-radius: 10px;
  color: var(--bg);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  min-height: 48px;
  transition: opacity 0.15s;
}

.contact-form .form-submit:hover {
  opacity: 0.9;
}

.contact-form .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Press page */

.press-section {
  margin-bottom: 2.5rem;
}

.press-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.press-section p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.press-asset {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.press-asset .asset-preview {
  aspect-ratio: 1;
  background: var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.press-asset .asset-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Responsive */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .site-header nav {
    gap: 1rem;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .email-signup form {
    flex-direction: column;
  }

  .store-badges {
    flex-direction: column;
  }
}
