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

:root {
  --bg:           #07050f;
  --bg-2:         #0d0820;
  --bg-3:         #160d30;
  --border:       #2a1b5e;
  --gold:         #FFB800;
  --gold-light:   #FFD966;
  --gold-dim:     rgba(255,184,0,0.45);
  --purple:       #6c5ce7;
  --purple-light: #a29bfe;
  --text:         #f0e6d3;
  --text-muted:   #9988aa;
  --radius:       12px;
  --max:          1160px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
img { max-width: 100%; }
a { color: var(--gold); text-decoration: none; }

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

/* ─── Buttons ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #FFB800, #CC9200); color: #07050f; box-shadow: 0 0 24px rgba(255,184,0,0.3), 0 4px 12px rgba(0,0,0,0.4); }
.btn-primary:hover { box-shadow: 0 0 40px rgba(255,184,0,0.55), 0 6px 20px rgba(0,0,0,0.5); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,184,0,0.08); color: var(--gold); border: 1px solid rgba(255,184,0,0.3); }
.btn-ghost:hover { background: rgba(255,184,0,0.14); border-color: rgba(255,184,0,0.55); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold-dim); }
.btn-outline:hover { background: rgba(255,184,0,0.1); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header { background: rgba(7,5,15,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,184,0,0.12); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.logo { display: flex; align-items: center; }
.logo-img { height: 96px; width: auto; filter: drop-shadow(0 0 6px rgba(255,184,0,0.3)); transition: filter 0.2s; }
.logo-img:hover { filter: drop-shadow(0 0 12px rgba(255,184,0,0.55)); }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; letter-spacing: 0.02em; }
.main-nav a:hover { color: var(--gold); }
.btn-nav { background: linear-gradient(135deg, #FFB800 0%, #CC9200 100%); color: #07050f !important; padding: 0.5rem 1.2rem; border-radius: 8px; font-weight: 700; letter-spacing: 0.02em; box-shadow: 0 0 18px rgba(255,184,0,0.25); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; }

/* ─── Stars ───────────────────────────────────────────────────── */
.stars {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,184,0,0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(162,155,254,0.1) 1.5px, transparent 1.5px);
  background-size: 60px 60px, 130px 130px, 220px 220px;
  background-position: 0 0, 30px 30px, 70px 90px;
  animation: stars-drift 120s linear infinite;
}
.stars::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(108,92,231,0.18) 0%, transparent 55%);
}
@keyframes stars-drift { to { background-position: 0 60px, 30px 87px, 70px 145px; } }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  display: block; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 35%, #280860 0%, #160430 40%, var(--bg) 75%),
    radial-gradient(ellipse at 10% 85%, rgba(45,15,110,0.5) 0%, transparent 55%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 1.5rem 1.5rem 5rem; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(108,92,231,0.14); border: 1px solid rgba(108,92,231,0.5);
  color: var(--purple-light); padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.78rem;
  margin-bottom: 2rem; letter-spacing: 0.04em; font-family: 'Playfair Display', serif;
  animation: badge-pulse 3.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(108,92,231,0.25); }
  50%       { box-shadow: 0 0 32px rgba(108,92,231,0.5), inset 0 0 12px rgba(108,92,231,0.1); }
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5.5vw, 4.5rem); line-height: 1.08; margin-bottom: 1.5rem; text-shadow: 0 0 80px rgba(255,184,0,0.12); font-weight: 900; }
.gradient-text { background: linear-gradient(135deg, var(--gold-light) 0%, var(--purple-light) 50%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.25rem; line-height: 1.9; max-width: 480px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-proof { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--text-muted); }
.hero-proof .ph-fill { color: var(--gold); font-size: 0.9rem; }
.hero-poster-preview { display: flex; justify-content: center; align-items: center; }

/* ─── Tarot Card Mockup ──────────────────────────────────────── */
.tarot-card {
  width: 280px; height: 480px;
  background: linear-gradient(175deg, #1a0a38 0%, #0e0620 50%, #08030f 100%);
  border-radius: 16px; position: relative;
  box-shadow:
    0 0 0 1.5px #FFB800,
    0 0 0 8px rgba(7,5,15,0.8),
    0 0 0 9.5px rgba(255,184,0,0.2),
    0 30px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(108,92,231,0.25),
    0 0 120px rgba(255,184,0,0.1);
  animation: tarot-float 6s ease-in-out infinite;
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 16px 18px; overflow: hidden;
}
.tarot-card::before {
  content: ''; position: absolute; inset: 7px;
  border: 0.5px solid rgba(255,184,0,0.2); border-radius: 10px; pointer-events: none;
}
.tarot-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(162,155,254,0.12) 0%, transparent 60%);
  pointer-events: none;
}
@keyframes tarot-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}
.tarot-roman { font-family: 'Cinzel', serif; font-size: 11px; color: rgba(255,184,0,0.5); letter-spacing: 0.3em; margin-bottom: 10px; }
.tarot-glyph-ring {
  width: 72px; height: 72px; border: 1px solid rgba(255,184,0,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px; position: relative;
  background: radial-gradient(circle, rgba(248,165,50,0.15) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(248,165,50,0.2);
}
.tarot-glyph-ring::before {
  content: ''; position: absolute; inset: -6px;
  border: 0.5px solid rgba(255,184,0,0.12); border-radius: 50%;
}
.tarot-symbol { font-size: 38px; line-height: 1; text-shadow: 0 0 20px currentColor; }
.tarot-zodiac-img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(248,165,50,0.5)); }
.tarot-name { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.3em; color: rgba(255,184,0,0.5); margin: 8px 0 6px; }
.tarot-hr { width: 70%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,184,0,0.4), transparent); margin-bottom: 12px; }
.tarot-headline { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 900; text-align: center; color: #f4ead8; line-height: 1.3; margin-bottom: 8px; text-shadow: 0 0 12px rgba(255,184,0,0.3); }
.tarot-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 9px; color: rgba(255,184,0,0.5); text-align: center; margin-bottom: 12px; }
.tarot-affirmations { width: 100%; }
.tarot-affirmation { font-family: 'Cinzel', serif; font-size: 8px; color: rgba(255,184,0,0.7); text-align: center; line-height: 1.7; }
.tarot-number-bg { position: absolute; bottom: 30px; font-family: 'Cinzel', serif; font-size: 80px; font-weight: 900; color: rgba(255,184,0,0.04); line-height: 1; }
.tarot-brand { position: absolute; bottom: 12px; font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 0.35em; color: rgba(255,184,0,0.3); }

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); text-align: center; margin-bottom: 3.5rem; line-height: 1.25; font-weight: 700; }
.text-center { text-align: center; }

.signs-section { background: var(--bg-2); border-top: 1px solid rgba(255,184,0,0.08); border-bottom: 1px solid rgba(255,184,0,0.08); }
.signs-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.sign-chip { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,184,0,0.06); border: 1px solid rgba(255,184,0,0.18); color: var(--text-muted); padding: 0.4rem 0.9rem; border-radius: 999px; font-family: 'Cinzel', serif; font-size: 0.85rem; transition: all 0.2s; cursor: default; }
.sign-chip-img { height: 26px; width: 26px; object-fit: contain; flex-shrink: 0; }
.sign-inline-img { height: 1.15em; width: 1.15em; object-fit: contain; vertical-align: middle; }
.sign-chip:hover { background: rgba(255,184,0,0.12); color: var(--gold); border-color: rgba(255,184,0,0.4); transform: translateY(-2px); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,184,0,0.1); border-radius: 16px; padding: 2rem; transition: all 0.3s; }
.feature-card:hover { border-color: rgba(255,184,0,0.3); background: rgba(255,184,0,0.04); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,184,0,0.08); }
.feature-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--gold-light); font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

.steps-section { background: var(--bg-2); border-top: 1px solid rgba(255,184,0,0.08); border-bottom: 1px solid rgba(255,184,0,0.08); }
.steps { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.step { text-align: center; max-width: 220px; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 0.75rem; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-light); margin-bottom: 0.5rem; font-weight: 700; }
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.step-arrow { font-size: 1.5rem; color: var(--gold-dim); flex-shrink: 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,184,0,0.1); border-radius: 16px; padding: 2rem; }
.stars-rating { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial p { color: var(--text-muted); font-style: italic; line-height: 1.8; margin-bottom: 1rem; }
.testimonial-author { font-family: 'Cinzel', serif; font-size: 0.8rem; color: var(--gold-dim); }

.cta-section {
  padding: 7rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(108,92,231,0.15) 0%, transparent 65%), var(--bg-3);
  border-top: 1px solid rgba(255,184,0,0.1); text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; font-weight: 700; }
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.page-hero { padding: 6rem 0 3rem; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(108,92,231,0.2) 0%, transparent 60%); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; font-weight: 700; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

.prose-wide { max-width: 760px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.how-step { display: flex; gap: 2rem; align-items: flex-start; }
.how-step-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); opacity: 0.3; flex-shrink: 0; width: 48px; line-height: 1.2; }
.how-step h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); margin-bottom: 0.5rem; font-weight: 700; }
.how-step p { color: var(--text-muted); line-height: 1.8; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,184,0,0.15); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; }
.pricing-card-featured { background: rgba(255,184,0,0.06); border-color: rgba(255,184,0,0.45); box-shadow: 0 0 40px rgba(255,184,0,0.1); }
.pricing-badge { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-period { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li { color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.92rem; }

/* ─── Create Page ────────────────────────────────────────────── */
.create-section { padding: 4rem 0 6rem; }
.create-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.create-form-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,184,0,0.12); border-radius: 20px; padding: 2.5rem; }

.create-steps-indicator { display: flex; align-items: center; margin-bottom: 2.5rem; }
.create-step-dot { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,184,0,0.08); border: 1px solid rgba(255,184,0,0.25); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; flex-shrink: 0; }
.create-step-dot.active { background: var(--gold); border-color: var(--gold); color: var(--bg); box-shadow: 0 0 16px rgba(255,184,0,0.4); }
.create-step-dot.done { background: rgba(255,184,0,0.2); border-color: rgba(255,184,0,0.5); color: var(--gold); }
.create-step-line { flex: 1; height: 1px; background: rgba(255,184,0,0.18); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700; }
.step-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-family: 'Cinzel', serif; color: var(--gold-light); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,184,0,0.2); border-radius: 8px; color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: rgba(255,184,0,0.55); box-shadow: 0 0 0 3px rgba(255,184,0,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; display: block; }
.form-optional { font-size: 0.75rem; color: var(--text-muted); font-family: inherit; letter-spacing: 0; text-transform: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Canvas poster ──────────────────────────────────────────── */
.canvas-wrap { position: sticky; top: 100px; }
.canvas-outer {
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(255,184,0,0.65),
    0 0 0 9px rgba(7,5,15,0.9),
    0 0 0 10.5px rgba(255,184,0,0.2),
    0 40px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(108,92,231,0.2),
    0 0 140px rgba(255,184,0,0.08);
  background: #07050f;
}
#poster-canvas { display: block; width: 100%; height: auto; }

.canvas-placeholder { aspect-ratio: 700/990; background: linear-gradient(175deg, #1a0a38, #08030f); display: flex; align-items: center; justify-content: center; }
.canvas-placeholder-inner { text-align: center; padding: 2rem; }
.canvas-placeholder-glyph { font-size: 3rem; opacity: 0.2; display: block; margin-bottom: 1rem; }
.canvas-placeholder-text { font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-muted); line-height: 1.9; }
.canvas-label { text-align: center; margin-top: 1.25rem; }
.canvas-label p { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.14em; color: var(--gold-dim); }

/* ─── Loader ─────────────────────────────────────────────────── */
.loading-state { display: flex; flex-direction: column; align-items: center; padding: 2.5rem 1rem; gap: 1.25rem; }
.cosmic-loader { width: 52px; height: 52px; border: 2px solid rgba(255,184,0,0.15); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state p { color: var(--text-muted); font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.08em; }

.profile-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.25rem 0; }
.chip { background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.3); color: var(--gold); padding: 0.35rem 0.9rem; border-radius: 999px; font-family: 'Cinzel', serif; font-size: 0.78rem; }

#step2-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.alert-error { background: rgba(200,50,50,0.1); border: 1px solid rgba(200,50,50,0.3); border-radius: 8px; padding: 1rem; color: #e07070; margin: 1rem 0; font-size: 0.9rem; }

.order-poster-summary { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(255,184,0,0.05); border: 1px solid rgba(255,184,0,0.15); border-radius: 10px; margin-bottom: 1.5rem; }
.order-sign { font-size: 2rem; }
.plan-options { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.plan-option { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid rgba(255,184,0,0.18); border-radius: 10px; cursor: pointer; transition: all 0.2s; }
.plan-option:hover, .plan-option.selected { border-color: rgba(255,184,0,0.55); background: rgba(255,184,0,0.06); }
.plan-option input { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.plan-label { display: flex; flex-direction: column; }
.plan-label strong { font-size: 0.95rem; }
.plan-label span { font-size: 0.82rem; color: var(--text-muted); }
.payment-total { font-family: 'Playfair Display', serif; font-size: 1.2rem; text-align: right; padding: 1rem 0; border-top: 1px solid rgba(255,184,0,0.12); margin: 1rem 0; }
.payment-total strong { color: var(--gold); }
.secure-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

.success-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 1.5rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid rgba(255,184,0,0.1); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { margin-bottom: 0.75rem; }
.footer-logo-img { height: 96px; width: auto; filter: drop-shadow(0 0 5px rgba(255,184,0,0.2)); }
.footer-grid p { color: var(--text-muted); font-size: 0.88rem; }
.footer-grid h4 { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.footer-grid a { display: block; color: var(--text-muted); font-size: 0.88rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.82rem; }

.prose { max-width: 680px; margin: 0 auto; }
.prose h1 { font-family: 'Playfair Display', serif; margin-bottom: 1.5rem; font-weight: 700; }
.prose p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem 3rem; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-proof { justify-content: center; }
  .create-layout { grid-template-columns: 1fr; }
  .canvas-wrap { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--bg); padding: 5rem 2rem; gap: 2rem; z-index: 99; align-items: center; justify-content: center; }
  .nav-toggle { display: block; }
  .tarot-card { width: 230px; height: 394px; }
  .pricing-grid, .pricing-grid-4 { grid-template-columns: 1fr; }
}
