:root {
  --bg: #fef9f3;
  --bg-alt: #fdf8f0;
  --fg: #1a1a4e;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --indigo: #1a1a4e;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --text-muted: #6b7280;
  --border: #e5e0d8;
  --card-bg: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 249, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--amber-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 96px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--amber-light);
  padding: 6px 14px 6px 8px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.upload-zone {
  width: 100%;
  max-width: 320px;
  background: var(--card-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.upload-zone:hover,
.upload-zone:focus-visible { border-color: var(--accent); background: var(--amber-light); }
.upload-zone.drag-over {
  border-color: var(--accent);
  background: var(--amber-light);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.15);
}
.upload-zone.upload-uploading {
  border-color: var(--accent);
  opacity: 0.8;
  cursor: wait;
}
.upload-zone.upload-selected {
  border-color: #22c55e;
  background: #f0fdf4;
}
.upload-zone.upload-error-state {
  border-color: #ef4444;
  background: #fef2f2;
}
.upload-icon { margin-bottom: 12px; }
.upload-label {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 6px;
}
.upload-hint { font-size: 13px; color: var(--text-muted); }
.upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 120px;
}
.upload-thumb {
  max-width: 100%;
  max-height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.upload-video-icon {
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
}
.upload-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 8px;
  font-weight: 500;
}

.story-card {
  width: 100%;
  max-width: 320px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(26, 26, 78, 0.08);
  border: 1px solid var(--border);
}
.story-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.story-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--indigo);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
}
.story-theme {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.story-illustration {
  background: linear-gradient(135deg, #fef3c7 0%, #e0f2fe 100%);
  border-radius: 10px;
  height: 120px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}
.illus-sun {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245,158,11,0.5);
}
.illus-tree {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 36px solid #22c55e;
}
.illus-tree::after {
  content: '';
  position: absolute;
  top: 36px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #a16207;
  border-radius: 2px;
}
.illus-child {
  position: absolute;
  bottom: 16px;
  left: 80px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fde68a;
  border: 3px solid #f59e0b;
}
.illus-child::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 18px;
  background: #f59e0b;
  border-radius: 50% 50% 0 0;
}
.story-preview {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  font-style: italic;
}
.story-actions {
  display: flex;
  gap: 8px;
}
.share-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-dot.tiktok { background: #fff1f0; color: #ff2d55; }
.share-dot.ig { background: #fce7f3; color: #db2777; }
.share-dot.yt { background: #fef2f2; color: #ef4444; }

/* Hero particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.p1 { width: 300px; height: 300px; background: radial-gradient(circle, #f59e0b 0%, transparent 70%); top: -80px; right: -60px; }
.p2 { width: 200px; height: 200px; background: radial-gradient(circle, #818cf8 0%, transparent 70%); bottom: 40px; left: -40px; }
.p3 { width: 150px; height: 150px; background: radial-gradient(circle, #f472b6 0%, transparent 70%); top: 30%; right: 20%; }
.p4 { width: 80px; height: 80px; background: radial-gradient(circle, #f59e0b 0%, transparent 70%); bottom: 20%; left: 35%; }
.p5 { width: 120px; height: 120px; background: radial-gradient(circle, #a78bfa 0%, transparent 70%); top: 60%; left: 10%; }

/* Sections shared */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* How it works */
.how-it-works {
  background: var(--indigo);
  color: #fff;
  padding: 96px 32px;
}
.how-it-works .section-label { color: var(--amber); }
.how-it-works .section-headline { color: #fff; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-inner .section-headline { margin-bottom: 56px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(245,158,11,0.3));
  margin-top: 48px;
  flex-shrink: 0;
}
.step-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Features */
.features { padding: 96px 32px; background: var(--bg-alt); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-inner .section-headline { margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,78,0.08);
}
.feature-icon { margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Transform */
.transform {
  padding: 96px 32px;
  background: var(--bg);
}
.transform-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transform-headline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.transform-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.transform-grid {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tg-card {
  flex-shrink: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.photo-card { width: 160px; }
.story-card-tg { width: 180px; }
.tg-card .card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 12px 14px 8px;
}
.tg-card .card-visual {
  padding: 0 14px 14px;
}
.photo-moment {
  height: 100px;
  background: linear-gradient(180deg, #87ceeb 0%, #90ee90 60%, #d4a76a 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pm-sun {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f59e0b;
}
.pm-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  padding: 0 12px;
}
.pm-tree {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 28px solid #22c55e;
}
.pm-kid {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fde68a;
  border: 2px solid #f59e0b;
}
.pm-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: #d4a76a;
}
.tg-arrow { flex-shrink: 0; }
.book-pages {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.page {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 8px;
}
.page1 {
  height: 80px;
  background: linear-gradient(135deg, #fef9f3, #fef3c7);
}
.page2 {
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}
.page-text {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
}
.page-text.short { width: 60%; }
.page-img {
  height: 60px;
  background: linear-gradient(135deg, #fef3c7, #e0f2fe);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-mini-sun {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f59e0b;
}
.illus-mini-child {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fde68a;
  border: 2px solid #f59e0b;
}
.share-row {
  display: flex;
  gap: 6px;
}
.share-chip {
  height: 20px;
  width: 40px;
  background: var(--border);
  border-radius: 6px;
}

/* Creators */
.creators {
  padding: 96px 32px;
  background: var(--indigo);
  color: #fff;
}
.creators-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.creators .section-label { color: var(--amber); }
.creators .section-headline { color: #fff; margin-bottom: 48px; }
.creator-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.stat {
  flex: 1;
  max-width: 280px;
  padding: 0 40px;
}
.stat-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}
.creators-body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.closing-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* Character Picker */
.character-picker {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  margin-top: 20px;
}
.character-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.character-picker-header h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.btn-create-character {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-create-character:hover { background: #d97706; }

.characters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.character-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-width: 160px;
}
.character-card:hover { border-color: var(--accent); }
.character-card.selected {
  border-color: var(--accent);
  background: var(--amber-light);
}

.character-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.character-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.character-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.character-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.character-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}
.character-card-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.trait-badge {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 600;
}
.no-characters {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

/* Character Modal */
.character-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 78, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.character-modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}
.character-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.character-modal-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.character-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}
.character-modal-close:hover { background: var(--bg); }

.character-form-group {
  margin-bottom: 20px;
}
.character-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.character-form-group input[type="text"],
.character-form-group input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.character-form-group input[type="text"]:focus,
.character-form-group input[type="file"]:focus {
  outline: none;
  border-color: var(--accent);
}

.trait-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 32px;
}
.trait-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 10px;
  background: var(--amber-light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.trait-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
}
.trait-input-row {
  display: flex;
  gap: 8px;
}
.trait-input-row input { flex: 1; }
.btn-add-trait {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add-trait:hover { background: var(--border); }

.avatar-options {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.avatar-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  color: var(--fg);
}
.avatar-option input { cursor: pointer; }

.avatar-section { margin-top: 10px; }
.btn-generate {
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--indigo);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-generate:hover { opacity: 0.85; }

.character-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-cancel {
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cancel:hover { background: var(--border); }
.btn-create {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-create:hover { background: #d97706; }
.closing-visual { display: flex; justify-content: center; }
.closing-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 48px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(26,26,78,0.06);
}
.cc-tagline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

/* Footer */
.site-footer {
  padding: 40px 32px;
  background: var(--indigo);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.footer-copy { font-size: 14px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { align-items: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-inner { grid-template-columns: 1fr; gap: 40px; }
  .transform-visual { justify-content: center; }
  .creator-stats { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 24px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 20px 72px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works, .features, .transform, .creators, .closing { padding: 64px 20px; }
  .stat { padding: 0 20px; }
  .stat-number { font-size: 40px; }
  .transform-grid { flex-direction: column; }
  .tg-arrow { transform: rotate(90deg); }
}