/* ═══════════════════════════════════════════════════════
   CreatorLoop — Design System
   Aesthetic: Premium dark, black/white/gold/charcoal
   Vibe: Airbnb precision × Notion clarity × bold agency
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #080808;
  --bg-elevated: #0f0f0f;
  --bg-card: #131313;
  --bg-card-hover: #181818;
  --fg: #f0ede8;
  --fg-muted: #888480;
  --fg-dim: #4a4844;
  --gold: #c9a96e;
  --gold-bright: #dfc07e;
  --gold-dim: #7a6332;
  --gold-glow: rgba(201, 169, 110, 0.12);
  --charcoal: #161616;
  --border: #1e1e1e;
  --border-hover: #2e2e2e;
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── SHARED UTILITIES ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.28);
}

.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--gold);
  color: #080808;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary-full:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--border-hover);
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold-dim);
  color: var(--fg);
}

.btn-ghost-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border-hover);
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost-full:hover {
  border-color: var(--gold-dim);
  color: var(--fg);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(3px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--gold);
  font-size: 20px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: #080808;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.22);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  background: rgba(201, 169, 110, 0.05);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 60%, var(--fg) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
}

.proof-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-elevated);
}

.proof-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 56px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-label {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

.proof-strip-div {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── TRUST LOGOS ─── */
.trust-logos {
  padding: 40px 32px;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.trust-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
  opacity: 0.5;
}

.trust-dot {
  color: var(--border);
  font-size: 20px;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.how-step {
  background: var(--bg-elevated);
  padding: 40px 28px;
  position: relative;
  transition: background var(--transition);
}

.how-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.how-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.how-step:hover { background: var(--bg-card); }

.step-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how-step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.features-left {
  position: sticky;
  top: 100px;
}

.features-left .section-title { margin-bottom: 20px; }

.features-desc {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { border-color: var(--gold-dim); }

.feature-icon {
  font-size: 18px;
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.feature-content {
  flex: 1;
}

.feature-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── AVATAR PREVIEW ON LANDING ─── */
.avatar-preview-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.avatar-preview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.avatar-grid-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.avatar-card-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.avatar-card-preview:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.avatar-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initial {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: rgba(240, 237, 232, 0.7);
}

/* AI-generated headshot photo inside avatar preview cards */
.avatar-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-thumb-cta {
  background: rgba(201, 169, 110, 0.08);
  border: 1px dashed var(--gold-dim);
}

.avatar-plus {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dim);
}

.avatar-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.avatar-vibe {
  font-size: 12px;
  color: var(--fg-dim);
}

.avatar-card-cta .avatar-name { color: var(--gold); }
.avatar-card-cta .avatar-vibe { color: var(--gold-dim); }

/* ─── PRICING ─── */
.pricing {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pricing-card {
  position: relative;
  background: var(--bg-elevated);
  padding: 40px 32px;
  border-top: 3px solid var(--border);
  transition: border-color var(--transition);
}

.pricing-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pricing-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.pricing-card-featured {
  background: var(--bg-card);
  border-top-color: var(--gold);
  z-index: 1;
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-features li.dim { opacity: 0.4; }

.check { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.cross { color: var(--fg-dim); font-size: 14px; flex-shrink: 0; }

/* ─── CLOSING / CTA ─── */
.closing {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-accent-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.closing-accent {
  font-size: 28px;
  color: var(--gold-dim);
  margin-top: 60px;
  opacity: 0.5;
}

/* ─── FOOTER ─── */
.footer {
  padding: 36px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: var(--fg-dim);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--fg-muted); }

.footer-meta {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ─── AVATAR LIBRARY PAGE ─── */
.avatars-page {
  padding-top: 100px;
  min-height: 100vh;
}

.avatars-header {
  padding: 60px 32px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.avatars-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.avatars-header p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.6;
}

.avatars-filters {
  padding: 32px 32px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-body);
}

.filter-pill:hover { border-color: var(--gold-dim); color: var(--fg); }
.filter-pill.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.avatars-grid {
  padding: 40px 32px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.avatar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.avatar-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.avatar-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(240,237,232,0.6);
  position: relative;
  overflow: hidden;
}

.avatar-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-featured { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--gold-dim); }
.badge-new { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }

.avatar-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.avatar-card-style {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.avatar-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.avatar-tag {
  padding: 3px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

.avatar-card-action {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  transition: all var(--transition);
}

.avatar-card-action:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ─── CREATE AVATAR PAGE ─── */
.create-page {
  padding-top: 100px;
  min-height: 100vh;
}

.create-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.create-header {
  margin-bottom: 48px;
}

.create-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.create-header p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.create-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.create-step {
  flex: 1;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-dim);
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.create-step:last-child { border-right: none; }
.create-step.active { background: var(--bg-card); color: var(--gold); }
.create-step.done { color: var(--fg-muted); }

.create-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.create-step.active .create-step-num {
  background: var(--gold);
  color: #080808;
}

.create-section {
  margin-bottom: 40px;
}

.create-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.create-section-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border-hover);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  position: relative;
}

.upload-zone:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 169, 110, 0.03);
}

.upload-zone.dragover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.upload-icon {
  font-size: 36px;
  color: var(--fg-dim);
  margin-bottom: 16px;
  display: block;
}

.upload-zone h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.upload-zone p {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-preview {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.upload-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.field-input, .field-select, .field-textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color var(--transition);
  width: 100%;
}

.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.field-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

.field-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* Tone selector */
.tone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tone-option {
  position: relative;
}

.tone-option input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.tone-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.tone-label:hover { border-color: var(--gold-dim); }
.tone-option input:checked + .tone-label { border-color: var(--gold); background: var(--gold-glow); }

.tone-emoji { font-size: 20px; }
.tone-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.tone-desc { font-size: 12px; color: var(--fg-dim); }

/* Pre-made pick */
.premade-section {
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  text-align: center;
}

.premade-section a {
  font-size: 14px;
  color: var(--gold-dim);
  transition: color var(--transition);
}

.premade-section a:hover { color: var(--gold); }

/* Submit */
.create-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.create-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
}

.create-submit-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.28);
}

.create-submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .avatars-grid { grid-template-columns: repeat(3, 1fr); }
  .avatar-grid-preview { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step:first-child { border-radius: var(--radius) 0 0 0; }
  .how-step:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .how-step:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .how-step:last-child { border-radius: 0 0 var(--radius) 0; }
}

@media (max-width: 900px) {
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-left { position: static; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card:first-child, .pricing-card:last-child { border-radius: var(--radius); }
  .pricing-card-featured { border-radius: var(--radius) !important; }
  .proof-strip-item { padding: 0 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 57px; left: 0; right: 0; background: rgba(8,8,8,0.97); padding: 24px 32px; border-bottom: 1px solid var(--border); gap: 20px; z-index: 99; }
  .nav-hamburger { display: flex; }
  .nav-cta { margin-left: auto; }
  .avatars-grid { grid-template-columns: repeat(2, 1fr); }
  .avatar-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-step, .how-step:first-child, .how-step:nth-child(2), .how-step:nth-child(3), .how-step:last-child { border-radius: var(--radius); }
  .proof-strip-inner { gap: 0; flex-direction: column; }
  .proof-strip-item { padding: 20px 0; width: 100%; }
  .proof-strip-div { width: 100%; height: 1px; }
  .tone-grid { grid-template-columns: 1fr 1fr; }
  .create-steps { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .how, .features, .proof-strip, .pricing, .closing { padding: 60px 20px; }
  .avatars-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 24px 20px 60px; }
  .avatar-grid-preview { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .create-inner { padding: 40px 20px 60px; }
  .tone-grid { grid-template-columns: 1fr; }
  .trust-brands { gap: 8px; }
  .trust-dot { display: none; }
}
