/* Season Serif — add your hosted font @import URL here. Not available on Google Fonts. */
/* e.g. @import url('https://your-cdn.com/fonts/SeasonSerif-Regular.woff2'); */
@import url('https://fonts.googleapis.com/css2?family=Season+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --bg: #F5F0EB;
  --fg: #1A1A1A;
  --fg-muted: #6B5B4F;
  --accent: #C4622D;
  --accent-light: #E07B45;
  --accent-dark: #8B3A1A;
  --surface: #EDE6DC;
  --surface-dark: #2D1A12;
  --border: rgba(196,98,45,0.15);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: 'Season Serif', Georgia, serif; font-weight: 700; font-size: 20px; color: var(--fg); }
.nav-meta { font-size: 13px; color: var(--fg-muted); font-weight: 400; letter-spacing: 0.02em; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 48px 100px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bg-circle { position: absolute; border-radius: 50%; }
.bg-circle-1 { width: 600px; height: 600px; right: -200px; top: -100px; background: radial-gradient(circle, rgba(196,98,45,0.08) 0%, transparent 70%); }
.bg-circle-2 { width: 400px; height: 400px; left: -150px; bottom: -100px; background: radial-gradient(circle, rgba(224,123,69,0.06) 0%, transparent 70%); }
.bg-dots {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 300px;
  background-image: radial-gradient(circle, rgba(196,98,45,0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1280px; margin: 0 auto;
}
.hero-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline {
  font-family: 'Season Serif', Georgia, serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 17px; color: var(--fg-muted); max-width: 440px; line-height: 1.7; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Season Serif', Georgia, serif; font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 11px; color: var(--fg-muted); margin-top: 4px; max-width: 100px; line-height: 1.3; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.device-mockup { position: relative; width: 100%; }
.mockup-phone {
  position: absolute; left: 0; top: 20px;
  width: 160px; z-index: 2;
  background: var(--surface-dark); border-radius: 20px; padding: 10px;
  box-shadow: 0 20px 60px rgba(45,26,18,0.3), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch { width: 60px; height: 8px; background: var(--surface-dark); border-radius: 4px; margin: 0 auto 8px; }
.phone-screen { background: #1A1A1A; border-radius: 12px; padding: 10px; }
.screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.screen-label { font-size: 8px; color: rgba(255,255,255,0.4); font-weight: 500; }
.screen-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; }
.screen-content { display: flex; flex-direction: column; gap: 8px; }
.screen-avatar { display: flex; align-items: center; gap: 6px; }
.avatar-circle { width: 24px; height: 24px; border-radius: 50%; overflow: hidden; }
.avatar-info { flex: 1; }
.avatar-name { font-size: 8px; color: white; font-weight: 600; }
.avatar-handle { font-size: 7px; color: rgba(255,255,255,0.4); }
.screen-earning { background: rgba(196,98,45,0.15); border-radius: 6px; padding: 8px; }
.earning-label { font-size: 7px; color: rgba(255,255,255,0.5); }
.earning-amount { font-size: 18px; font-weight: 700; color: #C4622D; line-height: 1; margin: 2px 0 4px; }
.earning-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.earning-fill { height: 100%; background: #C4622D; border-radius: 2px; }
.earning-sub { font-size: 7px; color: #4CAF50; margin-top: 2px; }
.screen-campaigns { display: flex; flex-direction: column; gap: 4px; }
.campaign-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border-radius: 4px; padding: 5px 6px; }
.campaign-brand { display: flex; align-items: center; gap: 4px; }
.brand-dot { width: 6px; height: 6px; border-radius: 50%; }
.campaign-brand span { font-size: 7px; color: rgba(255,255,255,0.6); }
.campaign-type { font-size: 6px; color: rgba(255,255,255,0.3); }
.campaign-pay { font-size: 8px; color: #C4622D; font-weight: 600; }

.mockup-laptop {
  position: relative; margin-left: 40px;
  width: 340px;
}
.laptop-screen {
  background: #2D1A12; border-radius: 12px 12px 0 0;
  padding: 12px 16px 16px;
  border: 1px solid rgba(196,98,45,0.2);
  border-bottom: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
.laptop-header { margin-bottom: 10px; }
.laptop-content {}
.laptop-row { display: flex; gap: 12px; margin-bottom: 12px; }
.laptop-metric { flex: 1; background: rgba(196,98,45,0.1); border-radius: 6px; padding: 8px; text-align: center; }
.metric-val { font-size: 16px; font-weight: 700; color: var(--accent); line-height: 1; }
.metric-lbl { font-size: 8px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.creator-list { display: flex; flex-direction: column; gap: 4px; }
.creator-row { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border-radius: 4px; padding: 6px 8px; }
.cr-avatar { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; flex-shrink: 0; }
.cr-name { font-size: 9px; color: rgba(255,255,255,0.7); flex: 1; }
.cr-country { font-size: 8px; color: rgba(255,255,255,0.3); }
.cr-reach { font-size: 9px; color: rgba(255,255,255,0.5); }
.cr-status { font-size: 7px; padding: 2px 6px; border-radius: 10px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.cr-status.active { background: rgba(76,175,80,0.2); color: #4CAF50; }
.laptop-base { height: 12px; background: linear-gradient(to bottom, #3D2A1A, #2D1A12); border-radius: 0 0 8px 8px; }

.hero-badge {
  position: absolute; bottom: -10px; left: 30px;
  background: var(--accent); color: white;
  border-radius: 20px; padding: 6px 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(196,98,45,0.4);
}
.badge-icon { display: flex; }

/* SECTIONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-family: 'Season Serif', Georgia, serif; font-size: clamp(36px, 4vw, 54px); font-weight: 700; line-height: 1.15; color: var(--fg); margin-bottom: 20px; letter-spacing: -0.01em; }
.section-body { font-size: 17px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }

/* MARKETPLACE */
.marketplace { padding: 100px 0; border-top: 1px solid var(--border); }
.marketplace .section-headline { text-align: center; }
.marketplace .section-body { text-align: center; margin: 0 auto 60px; }
.marketplace-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: start; margin-top: 20px; }
.market-col { background: var(--surface); border-radius: 16px; padding: 32px; }
.market-col-header { margin-bottom: 28px; }
.col-icon { width: 48px; height: 48px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.market-col h3 { font-family: 'Season Serif', Georgia, serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.col-count { font-size: 13px; color: var(--fg-muted); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); line-height: 1.5; }
.feat-icon { width: 18px; height: 18px; background: rgba(196,98,45,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.market-divider { display: flex; flex-direction: column; align-items: center; padding: 60px 32px 0; gap: 0; }
.divider-line { width: 1px; flex: 1; background: var(--border); }
.divider-badge { padding: 16px 0; }

/* CREATOR OUTCOMES */
.creator-outcomes { padding: 80px 0; background: var(--surface); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.outcome-card { background: var(--bg); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.outcome-visual { height: 160px; display: flex; align-items: center; justify-content: center; padding: 24px; background: linear-gradient(135deg, rgba(196,98,45,0.05) 0%, transparent 100%); }
.outcome-text { padding: 24px 28px; }
.outcome-text h3 { font-family: 'Season Serif', Georgia, serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.outcome-text p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.money-arc { width: 100%; }
.arc-label { font-size: 11px; color: var(--fg-muted); font-weight: 500; margin-bottom: 8px; }
.arc-chart svg { width: 100%; height: 80px; }

.control-panel { width: 100%; }
.cp-header { font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.cp-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--fg); }
.cp-row:last-child { border-bottom: none; }
.cp-toggle { width: 36px; height: 20px; border-radius: 10px; background: rgba(196,98,45,0.3); position: relative; cursor: pointer; transition: all 0.2s; }
.cp-toggle.on { background: var(--accent); }
.cp-toggle::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: white; top: 3px; transition: all 0.2s; }
.cp-toggle.on::after { right: 3px; }
.cp-toggle:not(.on)::after { left: 3px; }
.cp-row > span:last-child { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--accent); }

.bridge-visual { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.bridge-side { display: flex; flex-direction: column; gap: 8px; }
.bridge-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.bridge-avatars { display: flex; gap: -8px; }
.b-av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: white; border: 2px solid var(--bg); margin-left: -6px; }
.b-av:first-child { margin-left: 0; }
.b-more { background: var(--accent); }
.bridge-logos { display: flex; flex-wrap: wrap; gap: 6px; }
.b-logo { display: flex; align-items: center; justify-content: center; }
.b-more { font-size: 9px; color: var(--fg-muted); font-weight: 600; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; }
.steps-track { display: flex; align-items: center; margin-top: 60px; gap: 0; }
.step { flex: 1; }
.step-num { font-family: 'Season Serif', Georgia, serif; font-size: 48px; font-weight: 700; color: rgba(196,98,45,0.2); line-height: 1; margin-bottom: 16px; }
.step-body h4 { font-family: 'Season Serif', Georgia, serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-visual { margin-top: 24px; }
.step-connector { width: 60px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 40px; }
.connector-dots { display: flex; flex-direction: column; gap: 6px; }
.cd-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); opacity: 0.4; }

/* CLOSING */
.closing { padding: 120px 0; position: relative; overflow: hidden; }
.closing-bg-art { position: absolute; inset: 0; pointer-events: none; }
.art-circle { position: absolute; border-radius: 50%; }
.art-1 { width: 800px; height: 800px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(196,98,45,0.05) 0%, transparent 60%); }
.art-2 { width: 400px; height: 400px; right: 5%; top: 20%; background: radial-gradient(circle, rgba(224,123,69,0.05) 0%, transparent 70%); }
.art-lines { position: absolute; inset: 0; }
.closing-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: 0 48px; text-align: center; }
.closing-kicker { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; }
.closing-headline { font-family: 'Season Serif', Georgia, serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.2; color: var(--fg); margin-bottom: 28px; letter-spacing: -0.01em; }
.closing-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; }
.closing-vision { font-family: 'Season Serif', Georgia, serif; font-size: 20px; font-style: italic; color: var(--accent); line-height: 1.6; padding-top: 24px; border-top: 1px solid var(--border); }

/* FOOTER */
.footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; font-family: 'Season Serif', Georgia, serif; font-size: 20px; font-weight: 700; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 16px; }
.footer-links span { font-size: 13px; color: var(--fg-muted); cursor: pointer; }
.footer-links span:hover { color: var(--accent); }
.footer-meta { font-size: 12px; color: rgba(196,98,45,0.5); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .mockup-laptop { width: 100%; margin-left: 0; }
  .mockup-phone { width: 120px; }
  .device-mockup { display: flex; justify-content: center; }
  .hero-badge { bottom: -16px; }
  .marketplace-grid { grid-template-columns: 1fr; gap: 20px; }
  .market-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .steps-track { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .section-inner { padding: 0 24px; }
  .closing-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-div { display: none; }
  .mockup-phone { display: none; }
}