/* Fonts */
:root {
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #1C1C1A;
  --fg-muted: #6B6860;
  --accent: #1A3A2A;
  --accent-bright: #2D5C3F;
  --pop: #E85D04;
  --pop-light: #F4924A;
  --surface: #FFFFFF;
  --border: #D9D4C7;
}

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

html { font-size: 16px; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 18px; color: var(--pop); line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 300; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
}
.shape-circle--lg { width: 600px; height: 600px; top: -100px; right: -100px; }
.shape-circle--md { width: 350px; height: 350px; bottom: 80px; left: -80px; background: radial-gradient(circle, rgba(26,58,42,0.07) 0%, transparent 70%); }
.shape-circle--sm { width: 200px; height: 200px; top: 200px; left: 40%; background: radial-gradient(circle, rgba(244,146,74,0.1) 0%, transparent 70%); }

.hero-inner { flex: 1; max-width: 640px; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--pop); border-radius: 50%; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.headline-word { display: block; }
.headline-word--indent { padding-left: 40px; }
.headline-word--accent { color: var(--pop); }

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}
.meta-icon { color: var(--pop); font-size: 8px; }

/* Tee Stack (Hero Right) */
.hero-tee-stack {
  position: relative;
  width: 320px;
  height: 420px;
  flex-shrink: 0;
  margin-left: 80px;
  z-index: 2;
}

.tee-card {
  position: absolute;
  width: 240px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.tee-card--back {
  transform: rotate(-12deg) translate(-30px, 40px);
  opacity: 0.5;
  z-index: 1;
  background: #EDE9E1;
}

.tee-card--mid {
  transform: rotate(-5deg) translate(10px, 20px);
  opacity: 0.75;
  z-index: 2;
  background: #E5DFD3;
}

.tee-card--front {
  z-index: 3;
  transform: rotate(0deg) translate(30px, 0);
  background: var(--accent);
}

.tee-graphic {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 200px;
}

.tee-card--front .tee-graphic {
  background: var(--accent);
  color: #FFFFFF;
}

.tee-phrase {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tee-phrase-sm {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
}

.tee-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 400;
}

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

/* How It Works */
.hiw {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-title { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.03em; }

.hiw-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; }

.step { flex: 1; max-width: 280px; padding: 0 40px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--pop); letter-spacing: -0.04em; margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.step-body { font-size: 15px; line-height: 1.65; color: var(--fg-muted); font-weight: 300; }

.step-divider { padding-top: 12px; }

/* The Drop */
.drop {
  padding: 100px 48px;
  background: var(--bg);
}

.drop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.drop-title { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.drop-body { font-size: 16px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; margin-bottom: 40px; }

.drop-rule { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.rule-line { flex: 1; height: 1px; background: var(--border); }
.rule-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); white-space: nowrap; }
.drop-spoiler { font-size: 14px; font-style: italic; color: var(--accent); font-weight: 400; }

/* Box Art */
.box-art {
  background: var(--accent);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,58,42,0.25);
}

.box-top {
  background: var(--pop);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-label { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; }
.box-month { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); text-transform: uppercase; }

.box-body { padding: 32px 28px; }

.box-teaser { text-align: center; margin-bottom: 28px; }
.teaser-dots { font-size: 24px; letter-spacing: 8px; color: rgba(255,255,255,0.4); display: block; margin-bottom: 10px; }
.teaser-text { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300; }

.box-stamp { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.stamp {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* The Phrase */
.phrase {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.phrase-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.phrase-title { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.phrase-sub { font-size: 16px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; }

.phrase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.phrase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.phrase-card--sm { grid-column: 1; }
.phrase-card--md { grid-column: span 1; }
.phrase-card--lg { grid-column: span 1; }
.phrase-card--accent { background: var(--accent); border-color: var(--accent); }
.phrase-card--accent .phrase-text { color: #fff; }

.phrase-card:first-child { grid-row: 1; }
.phrase-card:nth-child(2) { grid-row: 1; }
.phrase-card:nth-child(3) { grid-row: 2; }
.phrase-card:nth-child(4) { grid-row: 2; }
.phrase-card:nth-child(5) { grid-column: 1 / -1; }

.phrase-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; color: var(--fg); }
.phrase-card--lg .phrase-text { font-size: 24px; }
.phrase-card--sm .phrase-text { font-size: 16px; }

.phrase-note { text-align: center; font-size: 13px; color: var(--fg-muted); margin-top: 36px; font-weight: 300; }

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--accent);
  color: #fff;
}

.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 28px; }
.closing-body { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 48px; }

.closing-vibe { display: inline-block; }
.vibe-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pop-light);
  border: 1px solid rgba(244,146,74,0.4);
  border-radius: 40px;
  padding: 12px 28px;
  display: inline-block;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-top { margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-mission { font-size: 14px; color: var(--fg-muted); font-weight: 300; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--fg-muted); cursor: pointer; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { flex-direction: column; padding: 48px 24px; min-height: auto; }
  .hero-tee-stack { margin: 48px auto 0; width: 260px; height: 360px; }
  .tee-card { width: 200px; }
  .hero-headline { font-size: 52px; }
  .hiw { padding: 60px 24px; }
  .hiw-steps { flex-direction: column; gap: 40px; }
  .step { max-width: 100%; padding: 0; }
  .step-divider { display: none; }
  .drop-inner { grid-template-columns: 1fr; gap: 48px; }
  .phrase-grid { grid-template-columns: 1fr; }
  .phrase-card:first-child,
  .phrase-card:nth-child(2),
  .phrase-card:nth-child(5) { grid-column: 1; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-meta { flex-direction: column; }
  .headline-word--indent { padding-left: 20px; }
}
