:root {
  --bg: #F5F1EB;
  --bg-alt: #EDE8DE;
  --fg: #1A1814;
  --fg-muted: #6B6457;
  --accent: #B8832A;
  --accent-light: #D4A64A;
  --card-bg: #FFFFFF;
  --border: #D9D3C8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav { padding: 24px 48px; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  min-height: 85vh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.btn-buy {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-buy:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}
.asset-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 20px rgba(26, 24, 20, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.asset-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 30px rgba(26, 24, 20, 0.1);
}
.asset-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.asset-icon { color: var(--accent); }
.asset-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  background: #FEF3C7;
  color: #92400E;
}
.asset-badge-new { background: #ECFDF5; color: #065F46; }
.asset-card-body { margin-bottom: 16px; }
.asset-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.asset-meta { font-size: 13px; color: var(--fg-muted); }
.asset-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.asset-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.asset-royalties {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.asset-card-2 { margin-left: 24px; opacity: 0.85; }
.asset-card-3 { margin-left: 48px; opacity: 0.65; }

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.manifesto-body {
  font-size: 17px;
  color: #C4BBA8;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.manifesto-divider {
  width: 64px;
  height: 1px;
  background: rgba(201, 193, 170, 0.3);
  margin: 48px 0;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--bg);
  margin-bottom: 8px;
}
.manifesto-attribution { font-size: 13px; color: #8A7D6C; }

/* COLLECTION */
.collection {
  padding: 96px 48px;
  background: var(--bg);
}
.collection-header {
  max-width: 700px;
  margin-bottom: 64px;
}
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.collection-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
}
.collection-item {
  background: var(--card-bg);
  padding: 40px;
}
.item-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.item-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW */
.how {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -2px;
}
.step-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-arrow {
  color: var(--border);
  flex-shrink: 0;
  padding: 0 24px;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--bg);
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-quote {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 40px;
  margin-bottom: 48px;
  background: var(--card-bg);
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.5;
}
.closing-attr {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.closing-divider {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 400px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .collection-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .manifesto, .collection, .how, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .collection-item { padding: 28px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .manifesto-headline { font-size: 26px; }
}