:root {
  --bg: #F5F0EB;
  --fg: #1A1A1A;
  --heading: #202020;
  --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', 'Cormorant Garamond', 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 1.5fr; gap: 56px;
  align-items: center; max-width: 1380px; 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', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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; }

/* Glassmorphism frame sitting behind the hero image */
.hero-image-frame {
  position: relative;
  width: 100%;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.22));
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow:
    0 30px 70px rgba(45,26,18,0.22),
    0 6px 18px rgba(45,26,18,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
}
/* warm glow so the frosted glass edge reads against the light page */
.hero-image-frame::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -34px -30px -30px -34px;
  border-radius: 44px;
  background:
    radial-gradient(60% 60% at 72% 16%, rgba(196,98,45,0.30), transparent 70%),
    radial-gradient(58% 58% at 16% 94%, rgba(233,162,59,0.24), transparent 72%);
  filter: blur(14px);
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(45,26,18,0.20);
}

/* Floating app-icon badges around the hero image — frosted-glass frame fills
   the border space between the rounded icon and the panel edge */
.hero-icon {
  position: absolute;
  padding: 11px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.30), rgba(255,255,255,0.12));
  -webkit-backdrop-filter: blur(11px) saturate(140%);
  backdrop-filter: blur(11px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px rgba(45,26,18,0.22), inset 0 1px 0 rgba(255,255,255,0.7);
  z-index: 4;
}
.hero-icon img { display: block; width: 100%; height: 100%; border-radius: 16px; }
.hero-icon--yellow { width: 120px; height: 120px; top: -34px;   left: -28px;  transform: rotate(-6deg); }
.hero-icon--pink   { width: 114px; height: 114px; bottom: -32px; left: -22px;  transform: rotate(-9deg); }
.hero-icon--blue   { width: 138px; height: 138px; top: 22%;      right: -30px; transform: rotate(11deg); }

/* 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', 'Cormorant Garamond', 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-label { text-align: center; }
.marketplace .section-headline { text-align: center; }
.marketplace .section-body { text-align: center; margin: 0 auto 60px; }
.marketplace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; 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', 'Cormorant Garamond', 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; }

/* Creators card — warm saffron */
.creators-col { background: rgba(244,183,64,0.16); border: 1px solid rgba(244,183,64,0.32); }

/* Brands card — dashboard brown */
.brands-col { background: #2B211C; border: 1px solid rgba(244,183,64,0.18); }
.marketplace .brands-col h3 { color: #FFF7EF; }
.brands-col .col-count { color: rgba(255,247,239,0.6); }
.brands-col .feature-list li { color: rgba(255,247,239,0.86); }
.brands-col .col-icon { background: var(--accent-light); }
.brands-col .feat-icon { background: rgba(244,183,64,0.2); }
.brands-col .feat-icon svg path { stroke: #F4B740; }

/* 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 { padding: 16px; background: linear-gradient(135deg, rgba(196,98,45,0.05) 0%, transparent 100%); }
.outcome-img { width: 100%; height: auto; display: block; }
.outcome-text { padding: 24px 28px; }
.outcome-text h3 { font-family: 'Season Serif', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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', 'Cormorant Garamond', 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; }
  .hero-image-frame { padding: 12px; border-radius: 22px; }
  .hero-icon { padding: 8px; border-radius: 22px; }
  .hero-icon img { border-radius: 13px; }
  .hero-icon--yellow { width: 90px;  height: 90px;  top: -20px;    left: -12px; }
  .hero-icon--pink   { width: 86px;  height: 86px;  bottom: -20px; left: -10px; }
  .hero-icon--blue   { width: 100px; height: 100px; top: 16%;      right: -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; }
}

/* Heading (Season Serif) color — accent-colored headings (.stat-num, .step-num,
   .hero-headline em, .closing-vision) keep their accent color via more specific rules. */
.nav-name,
.hero-headline,
.section-headline,
.market-col h3,
.outcome-text h3,
.step-body h4,
.closing-headline,
.footer-brand { color: var(--heading); }