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

:root {
  --bg: #F8F5F0;
  --bg-warm: #EDE8DF;
  --gold: #C9A96E;
  --gold-dark: #A8874E;
  --charcoal: #1C1A18;
  --charcoal-light: #3A3733;
  --text: #2C2925;
  --text-muted: #6B6560;
  --white: #FFFFFF;
  --border: rgba(201, 169, 110, 0.25);
  --shadow: rgba(28, 26, 24, 0.08);
  --shadow-gold: rgba(201, 169, 110, 0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { font-size: 14px; color: var(--gold); }
.logo-name { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.12em; color: var(--charcoal); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 100px;
  min-height: 90vh;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

/* Hero visual — ring light card stack */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.ring-light {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.ring-light::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

.ring-light-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite 0.5s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.03); opacity: 0.5; }
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-card-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  width: 280px;
  box-shadow: 0 4px 24px var(--shadow);
}

.hero-card-1 { transform: translateX(-20px) rotate(-1.5deg); }
.hero-card-2 { transform: translateX(10px) rotate(1deg); }
.hero-card-3 { transform: translateX(-8px) rotate(-0.5deg); }

.card-glow {
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.card-glow-gold {
  background: linear-gradient(90deg, transparent, #E8C87A, transparent);
}

.card-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.card-bar {
  height: 8px;
  background: var(--bg-warm);
  border-radius: 4px;
  margin-bottom: 8px;
}

.card-bar-short { width: 60%; }
.card-bar-medium { width: 80%; }

.card-check {
  font-size: 20px;
  color: var(--gold);
  font-weight: bold;
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== WHO IT'S FOR ===== */
.who {
  padding: 100px 48px;
  background: var(--bg-warm);
}

.who .section-heading { max-width: 520px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin-bottom: 64px;
}

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

.who-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 8px;
  margin-bottom: 16px;
}

.who-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.who-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.who-stat-row {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 1100px;
}

.who-stat {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 160px;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
  padding: 0 40px 0 0;
}

.step:first-child { padding-left: 0; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 1px;
  height: 60px;
  background: var(--border);
}

.how-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 700px;
}

.callout-line {
  width: 3px;
  height: 40px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.how-callout p {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 48px;
  background: var(--bg);
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 48px;
  max-width: 500px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--shadow-gold);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.per-mo {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.tier-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tier-features {
  list-style: none;
  margin-bottom: 28px;
}

.tier-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-features .check {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.tier-cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
}

/* FAQ */
.pricing-faq { max-width: 900px; }
.faq-heading {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item h4 {
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== VS FIVERR ===== */
.vs-fiverr {
  padding: 100px 48px;
  background: var(--charcoal);
}

.vs-header { text-align: center; margin-bottom: 56px; }

.vs-header h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--bg);
  margin-bottom: 12px;
}

.vs-header p {
  font-size: 16px;
  color: var(--gold);
  font-style: italic;
}

.vs-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.vs-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.vs-row:last-child { border-bottom: none; }

.vs-header-row {
  background: rgba(201, 169, 110, 0.1);
}

.vs-col {
  padding: 18px 24px;
  font-size: 14px;
}

.vs-col-feature {
  font-weight: 500;
  color: var(--bg);
}

.vs-no {
  color: #8A8480;
}

.vs-yes {
  color: var(--gold);
}

.vs-col-marketplace {
  color: #8A8480;
  border-left: 1px solid rgba(201, 169, 110, 0.1);
}

.vs-col-boom {
  border-left: 1px solid rgba(201, 169, 110, 0.1);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.closing-contact .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== CREATORS ===== */
.creators {
  padding: 100px 48px;
  background: var(--charcoal);
}

.creators-inner { max-width: 1100px; margin: 0 auto; }

.creators .section-label { color: var(--gold); }
.creators .section-heading { color: var(--bg); max-width: 480px; }

.creators-sub {
  font-size: 17px;
  color: #8A8480;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 56px;
}

.creators-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Perks */
.creators-perks { display: flex; flex-direction: column; gap: 32px; }

.perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 4px;
}

.perk p {
  font-size: 14px;
  color: #6B6560;
  line-height: 1.5;
}

/* Form */
.creators-form-wrap {
  background: var(--bg);
  border-radius: 16px;
  padding: 40px;
}

.creator-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A09990;
}

.opt-label {
  font-size: 11px;
  color: #A09990;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-row {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.btn-creator-submit {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  align-self: flex-start;
}

.btn-creator-submit:hover { background: var(--gold-dark); }
.btn-creator-submit:active { transform: scale(0.98); }

/* Success state */
.creator-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.creator-success h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.creator-success p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: #A09990;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 80px; }
  .hero-visual { height: 360px; }
  .hero-card { width: 240px; }
  .who-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .vs-row { grid-template-columns: 1fr; }
  .vs-col { border-left: none; border-top: 1px solid rgba(201,169,110,0.1); }
  .vs-col:first-child { border-top: none; }
  .who-stat-row { flex-direction: column; gap: 32px; }
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .who, .how, .pricing, .vs-fiverr, .closing { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .stat-number { font-size: 32px; }
  .tier-price { font-size: 32px; }
}
