:root {
  --ink: #0e0e0c;
  --cream: #f4efe4;
  --paper: #ecebe4;
  --lime: #d7ff3a;
  --pink: #ff3d8a;
  --hot: #ff5722;
  --blue: #1e4dff;
  --muted: #6c6c66;
  --line: rgba(14,14,12,0.14);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; }

/* ---------- announce bar ---------- */
.announce {
  background: var(--ink);
  color: var(--lime);
  padding: 10px 0;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
}
.announce-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: slide 40s linear infinite;
  width: max-content;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.logo {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.logo-dot { color: var(--pink); font-size: 14px; animation: pulse 1.6s ease-in-out infinite; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--ink); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-nav { padding: 10px 18px; font-size: 14px; }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 8vw 5vw 10vw;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(215,255,58,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(215,255,58,0.7); }
  50% { box-shadow: 0 0 0 10px rgba(215,255,58,0); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  font-family: var(--serif);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  max-width: 640px;
  color: #2c2c28;
  margin-bottom: 32px;
}

.hero-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  margin-bottom: 14px;
}
.hero-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 16px;
  background: transparent;
  color: var(--ink);
}
.btn-hero { padding: 14px 22px; background: var(--pink); color: #fff; border-color: var(--pink); }
.btn-hero:hover { box-shadow: 4px 4px 0 var(--ink); }
.hero-fine { font-size: 13px; color: var(--muted); margin-bottom: 60px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  max-width: 720px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stats div b {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}
.hero-stats div span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.hero-numeral {
  position: absolute;
  right: -3vw; top: 4vw;
  font-family: var(--serif);
  font-weight: 300;
  font-size: min(46vw, 620px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(14,14,12,0.08);
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hb1 { width: 420px; height: 420px; background: var(--pink); top: -80px; left: -80px; }
.hb2 { width: 380px; height: 380px; background: var(--lime); bottom: -100px; right: 20%; }

/* ---------- press marquee ---------- */
.press {
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 0 5vw;
  margin-bottom: 24px;
}
.eyebrow-dark { color: rgba(244,239,228,0.6); }
.press-marquee { overflow: hidden; }
.press-track {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap; width: max-content;
  animation: slide 60s linear infinite;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 68px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.press-track span:nth-child(even) { font-family: var(--sans); color: var(--pink); font-size: 0.6em; }

/* ---------- statement ---------- */
.statement {
  padding: 12vw 5vw;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.statement-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5.4vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1200px;
}
.hi {
  display: inline-block;
  padding: 0 12px;
  border-radius: 8px;
  transform: rotate(-1deg);
  font-family: var(--serif);
}
.hi-lime { background: var(--lime); }
.hi-pink { background: var(--pink); color: #fff; transform: rotate(1deg); }
.hi-cream { background: var(--ink); color: var(--cream); transform: rotate(-0.5deg); }
.statement-p {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 72px);
  font-style: italic;
  margin-top: 40px;
  letter-spacing: -0.02em;
}

/* ---------- section heads ---------- */
.section-head {
  padding: 0 5vw;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 12px;
  max-width: 1100px;
}
.section-head .eyebrow { padding: 0; margin: 0; }

/* ---------- how it works ---------- */
.how { padding: 10vw 0; border-bottom: 1px solid var(--line); }
.steps {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  gap: 24px;
}
.step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.step:nth-child(1) { background: var(--lime); }
.step:nth-child(2) { background: #fff; }
.step:nth-child(3) { background: var(--pink); color: #fff; }
.step:nth-child(3) .step-num { color: #fff; -webkit-text-stroke: 2px #fff; }
.step-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-body p { font-size: 17px; margin-bottom: 20px; max-width: 640px; }
.step-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.step-chips span {
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.4);
}
.step:nth-child(3) .step-chips span { border-color: #fff; color: #fff; background: rgba(255,255,255,0.15); }
.chip-sell { background: var(--lime) !important; }
.chip-donate { background: #cfe8ff !important; }
.chip-haul { background: var(--ink) !important; color: var(--cream) !important; border-color: var(--ink) !important; }

@media (max-width: 820px) {
  .step { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .step-num { font-size: 88px; }
}

/* ---------- live ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 10vw 5vw;
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.ticker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(215,255,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,255,58,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ticker-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; position: relative;
}
.ticker-line {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 20px;
}
.ticker-line b { color: var(--lime); font-weight: 500; }
.ticker-badge {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.24em; font-weight: 700;
  padding: 8px 14px;
  border: 1.5px solid var(--lime);
  color: var(--lime);
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- proof / quotes ---------- */
.proof { padding: 10vw 0; border-bottom: 1px solid var(--line); }
.quotes {
  max-width: 1400px; margin: 0 auto; padding: 0 5vw;
  columns: 3 320px;
  column-gap: 24px;
}
.quote {
  break-inside: avoid;
  margin: 0 0 24px;
  padding: 28px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  display: inline-block;
  width: 100%;
}
.quote:nth-child(3n) { background: var(--lime); }
.quote:nth-child(5n) { background: var(--pink); color: #fff; }
.quote:nth-child(7n) { background: var(--ink); color: var(--cream); }
.quote-stars { color: #f5c518; letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.quote:nth-child(7n) .quote-stars { color: var(--lime); }
.quote-text {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.quote-who { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.quote-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  background: var(--ink); color: var(--cream);
}
.quote:nth-child(3n) .quote-avatar { background: var(--ink); color: var(--lime); }
.quote:nth-child(5n) .quote-avatar { background: #fff; color: var(--pink); }
.quote:nth-child(7n) .quote-avatar { background: var(--lime); color: var(--ink); }
.quote-name b { font-weight: 600; }
.quote-name small { display: block; opacity: 0.7; font-size: 12px; }

/* ---------- stuff grid ---------- */
.stuff { padding: 10vw 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.stuff-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.stuff-card {
  aspect-ratio: 1;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: default;
}
.stuff-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.stuff-emoji { font-size: 44px; line-height: 1; }
.stuff-name { font-family: var(--serif); font-size: 22px; line-height: 1; letter-spacing: -0.02em; }
.stuff-price { font-size: 12px; letter-spacing: 0.06em; font-weight: 600; color: var(--muted); }
.stuff-card:nth-child(4n) { background: var(--lime); }
.stuff-card:nth-child(6n) { background: var(--ink); color: var(--cream); }
.stuff-card:nth-child(6n) .stuff-price { color: rgba(244,239,228,0.7); }
.stuff-card:nth-child(9n) { background: var(--pink); color: #fff; }
.stuff-card:nth-child(9n) .stuff-price { color: rgba(255,255,255,0.8); }

/* ---------- story ---------- */
.story { padding: 10vw 5vw; border-bottom: 1px solid var(--line); }
.story-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink) 50%, var(--lime) 50%, var(--lime) 100%);
  border: 1.5px solid var(--ink);
}
.story-photo-inner {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(14,14,12,0.5) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 60%, rgba(14,14,12,0.4) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 80%, rgba(14,14,12,0.3) 0 3px, transparent 4px);
  background-size: 40px 40px, 80px 80px, 30px 30px;
}
.story-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; font-weight: 700;
}
.story-tag-after {
  top: auto; left: auto; bottom: 20px; right: 20px;
  background: var(--lime); color: var(--ink);
}
.story-copy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 12px 0 24px;
}
.story-copy p { margin-bottom: 18px; font-size: 17px; max-width: 520px; }
.story-sig { font-family: var(--serif); font-style: italic; font-size: 18px; }

@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- waitlist ---------- */
.waitlist {
  background: var(--ink);
  color: var(--cream);
  padding: 12vw 5vw;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,61,138,0.18), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(215,255,58,0.15), transparent 50%);
  pointer-events: none;
}
.waitlist-inner { max-width: 1000px; margin: 0 auto; position: relative; text-align: center; }
.waitlist-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 8vw, 128px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 16px 0 24px;
}
.waitlist-h em { color: var(--lime); }
.waitlist-p { font-size: 18px; color: rgba(244,239,228,0.75); margin-bottom: 40px; }
.waitlist-p b { color: var(--lime); font-weight: 700; }
.waitlist-form {
  display: flex; gap: 10px;
  max-width: 600px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  padding: 8px;
  border-radius: 999px;
  border: 1.5px solid rgba(244,239,228,0.2);
}
.waitlist-form input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 14px 20px; color: var(--cream);
  font-family: var(--sans); font-size: 16px;
}
.waitlist-form input::placeholder { color: rgba(244,239,228,0.5); }
.btn-huge {
  padding: 16px 28px;
  background: var(--lime); color: var(--ink); border-color: var(--lime);
  font-size: 16px;
}
.btn-huge:hover { box-shadow: 4px 4px 0 var(--cream); }
.waitlist-fine { font-size: 13px; color: rgba(244,239,228,0.5); margin-top: 20px; }

@media (max-width: 640px) {
  .waitlist-form { flex-direction: column; border-radius: 24px; }
  .waitlist-form input, .btn-huge { width: 100%; }
  .btn-huge { border-radius: 999px; }
  .hero-form { flex-direction: column; border-radius: 24px; }
  .hero-form input, .btn-hero { width: 100%; }
  .hero-form { padding: 12px; }
}

/* ---------- FAQ ---------- */
.faq { padding: 10vw 0 12vw; border-bottom: 1px solid var(--line); }
.faq-list { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.faq-item {
  border-top: 1.5px solid var(--ink);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1.5px solid var(--ink); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-size: 18px; transition: transform .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--lime); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
  font-size: 17px; color: #2c2c28;
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }

/* ---------- final ---------- */
.final {
  padding: 14vw 5vw;
  text-align: center;
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.final-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(60px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.outline-final {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.btn-final { padding: 20px 32px; font-size: 17px; background: var(--ink); color: var(--lime); border-color: var(--ink); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--cream); padding: 60px 5vw 30px; }
.foot-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 40px; border-bottom: 1px solid rgba(244,239,228,0.15);
}
.logo-foot { color: var(--cream); font-size: 28px; }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.foot-h { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,228,0.5); margin-bottom: 14px; }
.foot-cols a { display: block; padding: 6px 0; font-size: 15px; }
.foot-cols a:hover { color: var(--lime); }
.foot-bot {
  max-width: 1200px; margin: 20px auto 0;
  display: flex; justify-content: space-between; font-size: 13px; color: rgba(244,239,228,0.5);
  padding-top: 20px;
}
@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; gap: 8px; }
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 60;
  display: none;
  border: 1.5px solid var(--ink);
}
@media (max-width: 780px) {
  .sticky-cta { display: inline-block; }
  .hero { padding: 12vw 5vw 16vw; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .hero-stats div { padding: 12px 0; border-top: 1px dashed var(--line); }
  .hero-stats div:first-child { border-top: none; padding-top: 0; }
  .ticker-inner { flex-direction: column; }
  .quotes { columns: 1; }
}

/* fade in */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
