/* ================================================================
   YBM ARTIST PAGES — Showcase / Storefront
   Young Black Man Incorporated
   ================================================================ */

:root {
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 1rem + 6vw, 6rem);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --radius-sm: 0.25rem; --radius-md: 0.5rem;
  --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 9999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-default: 1160px;
  --content-narrow: 760px;

  /* PALETTE — Deep black + gold */
  --color-bg: #080706;
  --color-surface: #0f0e0b;
  --color-surface-2: #141210;
  --color-border: #252219;
  --color-divider: #1a1812;

  --color-text: #e8e2d4;
  --color-text-muted: #8a8473;
  --color-text-faint: #3e3b31;

  --color-gold: #C9A84C;
  --color-gold-hover: #E2C16B;
  --color-gold-active: #A88A38;
  --color-gold-dim: rgba(201, 168, 76, 0.08);
  --color-gold-glow: rgba(201, 168, 76, 0.2);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.8);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); min-height: 100dvh; line-height: 1.65; }
img, video { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul[role='list'] { list-style: none; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── CONTAINERS ── */
.container { width: min(var(--content-default), 100% - var(--space-8)); margin-inline: auto; }
.container--narrow { width: min(var(--content-narrow), 100% - var(--space-8)); margin-inline: auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-3) var(--space-8); border-radius: var(--radius-md); font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all var(--transition); white-space: nowrap; }
.btn-gold { background: var(--color-gold); color: #0a0807; box-shadow: 0 2px 8px rgba(201,168,76,0.3); }
.btn-gold:hover { background: var(--color-gold-hover); box-shadow: 0 4px 20px rgba(201,168,76,0.45); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--color-gold); border: 1px solid var(--color-gold); }
.btn-ghost:hover { background: var(--color-gold-dim); }
.btn-sm { padding: var(--space-2) var(--space-5); font-size: var(--text-xs); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION SHARED ── */
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-3); }
.section-title { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.section-desc { color: var(--color-text-muted); max-width: 56ch; margin-inline: auto; }
.section-header::after { content: ''; display: block; width: 48px; height: 2px; background: var(--color-gold); margin: var(--space-5) auto 0; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(8,7,6,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--color-divider); transition: box-shadow var(--transition); }
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.8); border-bottom-color: var(--color-border); }
.nav-inner { width: min(var(--content-default), 100% - var(--space-8)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: var(--space-3); }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-main { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: var(--color-gold); letter-spacing: 0.08em; line-height: 1.2; }
.nav-brand-sub { font-size: 0.65rem; color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: var(--space-8); list-style: none; }
.nav-links a { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--color-gold); }
.nav-links .nav-cta { color: var(--color-gold); border: 1px solid var(--color-gold); padding: var(--space-2) var(--space-4); border-radius: var(--radius-md); }
.nav-links .nav-cta:hover { background: var(--color-gold-dim); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text-muted); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 950; background: var(--color-bg); flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8); }
.mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: var(--space-6); right: var(--space-6); font-size: var(--text-xl); color: var(--color-text-muted); }
.mobile-link { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text-muted); transition: color var(--transition); }
.mobile-link:hover, .mobile-link.cta { color: var(--color-gold); }

/* ── HERO ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; padding-top: 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--color-divider) 1px, transparent 1px), linear-gradient(90deg, var(--color-divider) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
.hero-glow--1 { width: 600px; height: 600px; background: var(--color-gold); top: -100px; left: -150px; }
.hero-glow--2 { width: 500px; height: 500px; background: #9b59b6; bottom: -50px; right: -100px; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: var(--space-16) var(--space-4); max-width: 900px; }
.hero-badge { display: inline-block; font-size: var(--text-xs); letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); background: var(--color-gold-dim); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-full); padding: var(--space-2) var(--space-5); margin-bottom: var(--space-8); }
.hero-headline { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: var(--space-6); letter-spacing: 0.02em; }
.hero-headline--gold { color: var(--color-gold); }
.hero-sub { font-size: var(--text-base); color: var(--color-text-muted); max-width: 52ch; margin: 0 auto var(--space-10); line-height: 1.7; }
.hero-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-16); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: var(--space-8); flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.1em; margin-top: var(--space-1); }
.stat-divider { width: 1px; height: 36px; background: var(--color-border); }
.hero-scroll { position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); color: var(--color-text-muted); font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--color-gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ── TEMPLATE GRID ── */
.templates-section { background: var(--color-surface); }
.template-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-6); }
.template-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.template-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.35); }

/* MINI PREVIEWS */
.template-preview { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.template-preview-screen { width: 100%; height: 100%; display: flex; flex-direction: column; }
.preview-nav { display: flex; align-items: center; gap: 6px; padding: 6px 10px; }
.preview-logo-dot { width: 14px; height: 14px; border-radius: 3px; }
.preview-nav-lines { display: flex; flex-direction: column; gap: 3px; margin-left: 4px; }
.preview-nav-line { height: 2px; width: 40px; border-radius: 2px; opacity: 0.5; }
.preview-nav-line.short { width: 24px; }
.preview-hero { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 10px 12px 12px; }
.preview-hero-tag { font-size: 0.42rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; opacity: 0.8; }
.preview-hero-name { font-weight: 900; line-height: 0.9; margin-bottom: 8px; }
.preview-slash { font-size: 0.7rem; margin-bottom: 6px; }
.preview-btns { display: flex; gap: 5px; }
.preview-btn { height: 12px; width: 48px; border-radius: 3px; }
.preview-btn.outline { background: transparent !important; border: 1px solid currentColor; opacity: 0.5; }

/* THRONE MINI */
.throne-preview { background: #0a0807; }
.throne-preview .preview-nav { background: rgba(10,8,7,0.9); border-bottom: 1px solid #2a2619; }
.throne-dot { background: #C9A84C; }
.throne-preview .preview-nav-line { background: #4a4436; }
.throne-hero { background: linear-gradient(to top, #0a0807 30%, transparent); }
.throne-tag { color: #C9A84C; }
.throne-name { font-family: 'Cinzel', serif; font-size: 1.4rem; color: #fff; }
.throne-btn { background: #C9A84C; }
.throne-preview .preview-btn.outline { border-color: #C9A84C; color: #C9A84C; }
.template-preview { background: linear-gradient(135deg, #1a1510 0%, #0a0807 100%); }

/* UNDERGROUND MINI */
.underground-preview { background: #111; }
.underground-preview .preview-nav { background: rgba(10,10,10,0.95); border-bottom: 2px solid #E63946; }
.underground-dot { background: #E63946; border-radius: 2px; }
.underground-preview .preview-nav-line { background: #333; }
.underground-hero { background: linear-gradient(to top, #111 40%, rgba(17,17,17,0.3)); }
.underground-tag { color: #E63946; font-family: monospace; }
.underground-name { font-size: 1.5rem; color: #e8e8e8; font-family: Impact, sans-serif; text-transform: uppercase; }
.underground-slash { color: #E63946; font-weight: 900; font-size: 0.8rem; }
.underground-btn { background: #E63946; }
.preview-btn.dark-outline { border-color: #e8e8e8 !important; color: #e8e8e8 !important; }

/* AURORA MINI */
.aurora-preview { background: linear-gradient(135deg, #0d0b14 0%, #1a0d2e 50%, #0d0b14 100%); }
.aurora-preview .preview-nav { background: rgba(13,11,20,0.9); }
.aurora-dot { background: linear-gradient(135deg, #9b59b6, #e8649a); border-radius: 50%; }
.aurora-preview .preview-nav-line.aurora-line { background: #4a3560; }
.aurora-hero { background: linear-gradient(to top, #0d0b14 30%, transparent); }
.aurora-tag { color: #e8649a; }
.aurora-name { font-size: 1.1rem; color: #ece8f5; font-family: Georgia, serif; font-style: normal; }
.aurora-name em { color: #e8649a; font-style: italic; }
.aurora-btn { background: linear-gradient(135deg, #9b59b6, #e8649a); border-radius: 12px; }
.preview-btn.aurora-outline { border-color: rgba(236,104,154,0.5) !important; border-radius: 12px; }

/* FREQUENCY MINI */
.frequency-preview { background: #f5f7fa; }
.freq-nav { background: #fff; border-bottom: 1px solid #dde2ea; }
.frequency-dot { background: #0ea5e9; border-radius: 3px; }
.frequency-preview .preview-nav-line.frequency-line { background: #dde2ea; }
.frequency-hero { flex-direction: row !important; align-items: flex-end; background: #f5f7fa; padding: 8px 12px 12px; }
.preview-freq-left { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.frequency-tag { color: #0ea5e9; }
.frequency-name { font-size: 0.9rem; font-weight: 900; color: #111827; font-family: Impact, sans-serif; text-transform: uppercase; line-height: 1; margin-bottom: 6px; }
.frequency-btn { background: #0ea5e9; border-radius: 4px; }
.preview-btn.freq-outline { border-color: #111827 !important; color: #111827; }
.preview-freq-bars { display: flex; align-items: flex-end; gap: 3px; height: 50px; padding-bottom: 0; }
.freq-bar { width: 8px; background: #0ea5e9; border-radius: 2px 2px 0 0; opacity: 0.7; }

/* ROOTS MINI */
.roots-preview { background: #faf7f2; }
.roots-nav { background: #f5f0e8; border-bottom: 1px solid #d9cfc0; }
.roots-dot { background: radial-gradient(circle, #4a8062, #3d6b4f); border-radius: 50%; }
.roots-preview .preview-nav-line.roots-line { background: #d9cfc0; }
.roots-hero { background: linear-gradient(to top, rgba(250,247,242,0.95) 30%, rgba(198,124,60,0.2)); }
.roots-tag { color: #c67c3c; font-size: 0.4rem; }
.roots-name { font-size: 1rem; color: #2c1810; font-family: Georgia, serif; }
.roots-name em { color: #c67c3c; font-style: italic; }
.roots-btn { background: #c67c3c; border-radius: 4px; }
.preview-btn.roots-outline { border-color: #3d6b4f !important; }

.template-badge { position: absolute; top: var(--space-3); right: var(--space-3); background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); color: var(--color-gold); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); border: 1px solid rgba(201,168,76,0.3); }
.template-info { padding: var(--space-5) var(--space-6); flex: 1; }
.template-name { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-1); }
.template-vibe { font-size: var(--text-xs); color: var(--color-gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: var(--space-4); }
.template-features { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-4); }
.template-features li { font-size: var(--text-xs); color: var(--color-text-muted); padding-left: var(--space-4); position: relative; }
.template-features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-gold); font-weight: 700; }
.template-best { font-size: var(--text-xs); color: var(--color-text-faint); }
.template-actions { display: flex; gap: var(--space-3); padding: 0 var(--space-6) var(--space-6); }
.template-actions .btn { flex: 1; justify-content: center; }

/* PREVIEW MODAL */
.preview-modal { display: none; position: fixed; inset: 0; z-index: 2000; flex-direction: column; background: #000; }
.preview-modal.open { display: flex; }
.preview-modal-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-3) var(--space-6); background: #0a0807; border-bottom: 1px solid var(--color-border); }
.preview-modal-title { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-gold); letter-spacing: 0.1em; }
.preview-modal-actions { display: flex; align-items: center; gap: var(--space-4); }
.preview-modal-close { font-size: var(--text-xl); color: var(--color-text-muted); padding: var(--space-1) var(--space-3); transition: color var(--transition); }
.preview-modal-close:hover { color: var(--color-gold); }
.preview-iframe { flex: 1; border: none; width: 100%; }
.preview-modal-backdrop { display: none; }

/* ── FEATURES STRIP ── */
.features-strip { background: var(--color-bg); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding-block: var(--space-12); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-8); }
.feature-item { display: flex; align-items: flex-start; gap: var(--space-4); }
.feature-icon { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.feature-title { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text); margin-bottom: var(--space-1); }
.feature-desc { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--color-surface); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: var(--space-4); margin-bottom: var(--space-16); }
.step-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); text-align: center; transition: border-color var(--transition); }
.step-card:hover { border-color: rgba(201,168,76,0.4); }
.step-number { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-gold); opacity: 0.4; margin-bottom: var(--space-4); }
.step-icon { color: var(--color-gold); margin: 0 auto var(--space-4); width: fit-content; }
.step-title { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text); margin-bottom: var(--space-3); }
.step-desc { font-size: var(--text-sm); color: var(--color-text-muted); }
.step-connector { font-size: var(--text-xl); color: var(--color-gold); opacity: 0.4; padding-top: var(--space-12); align-self: flex-start; }

/* DOMAIN + PAYMENT */
.domain-section, .payment-section { margin-top: var(--space-12); }
.domain-title, .payment-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-6); text-align: center; }
.domain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-5); }
.domain-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); text-align: center; }
.domain-icon { font-size: 2rem; margin-bottom: var(--space-3); }
.domain-card h4 { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text); margin-bottom: var(--space-2); }
.domain-card p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.domain-card code { background: var(--color-surface); padding: 1px 6px; border-radius: 3px; font-size: 0.85em; color: var(--color-gold); }
.domain-tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); background: var(--color-gold-dim); border: 1px solid rgba(201,168,76,0.3); padding: 2px 10px; border-radius: var(--radius-full); }
.payment-desc { text-align: center; color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-6); }
.processor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-4); }
.processor-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.processor-name { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text); }
.processor-fee { font-size: var(--text-xs); color: var(--color-text-muted); }
.processor-badge.recommended { font-size: var(--text-xs); font-weight: 600; color: var(--color-gold); background: var(--color-gold-dim); padding: 2px 8px; border-radius: var(--radius-full); border: 1px solid rgba(201,168,76,0.3); }

/* ── PRICING ── */
.pricing-section { background: var(--color-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-6); margin-bottom: var(--space-10); align-items: start; }
.pricing-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); position: relative; display: flex; flex-direction: column; gap: var(--space-5); transition: border-color var(--transition), transform var(--transition); }
.pricing-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--color-gold); box-shadow: var(--shadow-gold); }
.pricing-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--color-gold); color: #0a0807; font-family: var(--font-display); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; padding: var(--space-1) var(--space-5); border-radius: 0 0 var(--radius-md) var(--radius-md); }
.pricing-tier { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.pricing-price { font-family: var(--font-display); line-height: 1; }
.price-dollar { font-size: var(--text-xl); color: var(--color-gold); vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-price { font-size: var(--text-2xl); color: var(--color-text); }
.price-period { font-size: var(--text-base); color: var(--color-text-muted); }
.pricing-tagline { font-size: var(--text-sm); color: var(--color-text-muted); }
.pricing-features { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.pricing-features li { font-size: var(--text-sm); color: var(--color-text-muted); display: flex; align-items: flex-start; gap: var(--space-3); }
.pricing-feature--out { opacity: 0.4; }
.check { color: var(--color-gold); font-weight: 700; flex-shrink: 0; }
.check.gold { color: var(--color-gold); }
.x { color: var(--color-text-faint); flex-shrink: 0; }
.pricing-addon { font-size: var(--text-xs); color: var(--color-text-muted); text-align: center; margin-top: var(--space-3); }
.label-package { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); }
.label-package-content { display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.label-package-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-gold); margin-bottom: var(--space-2); }
.label-package-desc { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 40ch; }
.label-price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); display: block; }
.label-period { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.1em; }

/* ── FAQ ── */
.faq-section { background: var(--color-surface); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; text-align: left; padding: var(--space-6) 0; font-size: var(--text-base); color: var(--color-text); font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); transition: color var(--transition); cursor: pointer; }
.faq-question::after { content: '+'; color: var(--color-gold); font-size: var(--text-lg); font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] { color: var(--color-gold); }
.faq-question[aria-expanded="true"]::after { content: '−'; transform: rotate(0deg); }
.faq-answer { display: none; padding-bottom: var(--space-6); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.8; }

/* ── GET STARTED FORM ── */
.get-started-section { background: var(--color-bg); }
.form-steps { display: flex; gap: var(--space-4); margin-bottom: var(--space-8); flex-wrap: wrap; }
.form-step { font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); padding: var(--space-2) var(--space-5); border: 1px solid var(--color-border); border-radius: var(--radius-full); transition: all var(--transition); }
.form-step.active { color: var(--color-gold); border-color: var(--color-gold); background: var(--color-gold-dim); }
.form-section { display: none; }
.form-section.active { display: block; }
.form-section-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); display: block; margin-bottom: var(--space-8); padding-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-group:last-of-type { margin-bottom: 0; }
label { font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.field-note { display: block; font-size: var(--text-xs); color: var(--color-gold); letter-spacing: 0; text-transform: none; font-weight: 400; margin-top: var(--space-1); }
.required { color: var(--color-gold); }
input, textarea, select { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--color-text); transition: border-color var(--transition); }
input:focus, textarea:focus, select:focus { border-color: var(--color-gold); outline: none; }
select option { background: var(--color-surface); }
textarea { resize: vertical; }
.social-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--color-border); }
.form-nav .btn:only-child { margin-left: auto; }
.template-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: var(--space-3); margin-top: var(--space-3); }
.template-radio-card { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); padding: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--transition); text-align: center; }
.template-radio-card:hover { border-color: var(--color-gold); background: var(--color-gold-dim); }
.template-radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.template-radio-card:has(input:checked) { border-color: var(--color-gold); background: var(--color-gold-dim); }
.template-radio-name { font-family: var(--font-display); font-size: var(--text-sm); color: var(--color-text); }
.template-radio-vibe { font-size: var(--text-xs); color: var(--color-text-muted); }
.plan-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--space-3); margin-top: var(--space-3); }
.plan-radio-card { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); padding: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--transition); text-align: center; position: relative; }
.plan-radio-card:hover { border-color: var(--color-gold); }
.plan-radio-card.featured-plan { border-color: rgba(201,168,76,0.5); }
.plan-radio-card:has(input:checked) { border-color: var(--color-gold); background: var(--color-gold-dim); }
.plan-radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-name { font-family: var(--font-display); font-size: var(--text-sm); color: var(--color-text); }
.plan-price { font-size: var(--text-xs); color: var(--color-gold); }
.plan-popular { font-size: 0.65rem; color: var(--color-gold); background: var(--color-gold-dim); padding: 1px 6px; border-radius: var(--radius-full); border: 1px solid rgba(201,168,76,0.3); }
.radio-group { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-3); }
.radio-option { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400; }
.radio-option input { width: 16px; height: 16px; accent-color: var(--color-gold); }
.form-success { display: none; text-align: center; padding: var(--space-16) var(--space-8); }
.form-success.visible { display: block; }
.success-icon { font-size: 3rem; color: var(--color-gold); margin-bottom: var(--space-6); }
.form-success h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-gold); margin-bottom: var(--space-4); }
.form-success p { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.success-brand { font-family: var(--font-display); color: var(--color-text-muted); font-size: var(--text-sm); }

/* ── FOOTER ── */
.footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding-block: var(--space-12); }
.footer-top { display: flex; gap: var(--space-16); flex-wrap: wrap; margin-bottom: var(--space-8); padding-bottom: var(--space-8); border-bottom: 1px solid var(--color-divider); align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: var(--space-4); }
.footer-product { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-gold); }
.footer-company { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: var(--space-1); }
.footer-links-group { min-width: 120px; }
.footer-links-title { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: var(--space-4); }
.footer-links-group ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links-group a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--transition); }
.footer-links-group a:hover { color: var(--color-gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom p { font-size: var(--text-xs); color: var(--color-text-muted); }
.footer-tagline { color: var(--color-gold) !important; font-family: var(--font-display); letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .label-package-content { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .social-inputs { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .template-actions { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
