:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DB;
  --fg: #0F0F0F;
  --fg-muted: #5C5C5C;
  --accent: #FF4D00;
  --accent-hover: #E04400;
  --white: #FFFFFF;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,15,15,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15,15,15,0.1);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-accent { color: var(--accent); }

.hero-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 160px;
  font-weight: 300;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(15,15,15,0.12);
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-card-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 520px;
}
.hero-card {
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transform: rotate(var(--rot, 0deg);
}
.card-1 { --rot: -4deg; transform: rotate(-4deg); }
.card-2 { --rot: 0deg; transform: rotate(0deg) translateY(16px); }
.card-3 { --rot: 4deg; transform: rotate(4deg); }

.card-icon { color: var(--accent); }
.card-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.locker-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
}

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── How It Works ── */
.hiw {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-header { margin-bottom: 64px; }
.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 480px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hiw-step { position: relative; }
.hiw-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 24px;
  height: 1px;
  background: rgba(15,15,15,0.12);
}
.hiw-step:last-child::after { display: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Curation ── */
.curation {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}
.curation-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.curation-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.curation-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
  margin-bottom: 32px;
  font-weight: 300;
}
.curation-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 6px 14px;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,240,232,0.8);
}

.curation-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.swatch-1 { background: #1A3A6B; }
.swatch-2 { background: #2D2D2D; }
.swatch-3 { background: #C8102E; }
.swatch-4 { background: #8B6914; }
.swatch-5 { background: #003087; }
.swatch-6 { background: #002644; }
.swatch-7 { background: #1B3A6B; }
.swatch-8 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

/* ── Locker Network ── */
.lockers {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.lockers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.locker-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px solid rgba(15,15,15,0.06);
}
.locker-col { display: flex; flex-direction: column; gap: 8px; }
.locker-cell {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.4);
  border: 1.5px solid rgba(15,15,15,0.1);
  border-radius: 6px;
}
.locker-cell.filled {
  background: var(--accent);
  border-color: var(--accent);
}

.locker-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 20px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 12px;
}
.code-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 8px;
}
.code-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lockers-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.lockers-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}
.location-list { display: flex; flex-direction: column; gap: 12px; }
.location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg);
}
.location svg { color: var(--accent); flex-shrink: 0; }

/* ── Closing ── */
.closing {
  background: var(--accent);
  padding: 100px 48px;
}
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 48px;
}
.closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── Footer ── */
.footer { padding: 48px; border-top: 1px solid rgba(15,15,15,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 360px;
  line-height: 1.6;
  font-weight: 300;
}
.footer-copy { font-size: 0.78rem; color: var(--fg-muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; min-height: auto; }
  .hero-visual { order: -1; }
  .hero-card-stack { max-width: 100%; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-step::after { display: none; }
  .curation-inner { grid-template-columns: 1fr; gap: 48px; }
  .lockers-inner { grid-template-columns: 1fr; gap: 48px; }
  .curation-stack { grid-template-columns: repeat(4, 1fr); }
  .closing-tagline { flex-direction: column; gap: 12px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hiw, .lockers, .hiw-title, .lockers-title { padding: 60px 24px; }
  .curation { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .curation-stack { grid-template-columns: repeat(2, 1fr); }
}
