/* ============================================================
   Pick — Landing page
   Claude / Anthropic brand palette & typography
   ============================================================ */

:root {
  --dark: #141413;
  --light: #faf9f5;
  --mid-gray: #b0aea5;
  --light-gray: #e8e6dc;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --blue: #6a9bcc;
  --green: #788c5d;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --cream: #f0eee6;
  --paper: #fffdf8;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1140px;
  --shadow: 0 2px 24px rgba(20, 20, 19, 0.07);
}

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

html { scroll-behavior: smooth; color-scheme: light only; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
}

img, svg { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: var(--light); }
.btn-primary:hover { background: var(--orange-deep); }

.nav-actions .btn-primary,
.hero-ctas .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-actions .btn-primary::after,
.hero-ctas .btn-primary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-secondary:hover { background: var(--dark); color: var(--light); }

.btn-dark { background: var(--dark); color: var(--light); }
.btn-dark:hover { background: #2c2c2a; }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--orange); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

@media (min-width: 1200px) {
  .nav .container {
    max-width: min(1480px, calc(100vw - 96px));
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--dark);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}
.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.logo-text-my {
  color: #0fa99a;
  font-style: italic;
  font-weight: 700;
}
.logo-text-pick {
  background: linear-gradient(115deg, #276be8 0%, #7b58e8 48%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  color: var(--dark);
  background:
    radial-gradient(circle at 78% 20%, rgba(106, 155, 204, 0.16), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(217, 119, 87, 0.14), transparent 26%),
    linear-gradient(180deg, var(--light) 0%, var(--paper) 58%, var(--cream) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(20, 20, 19, .11) .55px, transparent .6px),
    radial-gradient(rgba(255, 255, 255, .65) .55px, transparent .6px);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
  opacity: .18;
  mix-blend-mode: multiply;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  max-width: 1240px;
  padding-top: clamp(36px, 5vh, 60px);
}

.hero-copy {
  position: relative;
  z-index: 12;
  max-width: 620px;
  margin: 0;
  text-align: left;
  pointer-events: none;
}
.hero-copy a { pointer-events: auto; }

.hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--dark);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.squiggle {
  display: block;
  margin: 0 0 0 2px;
}
.squiggle path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawIn 0.8s ease 1.15s forwards;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  color: #4a4a46;
  max-width: 32em;
  margin: 20px 0 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.hero .btn-secondary {
  color: var(--dark);
  border-color: var(--dark);
}
.hero .btn-secondary:hover {
  background: var(--dark);
  color: var(--light);
}

.hero-note {
  margin-top: 20px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-note::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 3v18M3 12h18M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 3v18M3 12h18M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-doodles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  color: rgba(20, 20, 19, 0.62);
}
.doodle-arrow {
  position: absolute;
  left: clamp(650px, 55%, 780px);
  top: clamp(118px, 18vh, 184px);
  width: clamp(126px, 13vw, 184px);
  transform: rotate(-4deg);
}
.doodle-pill {
  position: absolute;
  right: clamp(70px, 10vw, 144px);
  top: clamp(152px, 24vh, 238px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 18px;
  border: 1.8px solid rgba(20, 20, 19, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: clamp(.9rem, 1vw, 1.02rem);
  font-weight: 700;
  transform: rotate(6deg);
  box-shadow: 0 12px 30px rgba(20, 20, 19, .06);
}
.pin-icon {
  width: 15px;
  height: 15px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.doodle-spark,
.doodle-heart {
  position: absolute;
}
.doodle-spark {
  width: clamp(22px, 2vw, 34px);
  height: clamp(22px, 2vw, 34px);
}
.spark-orange {
  left: 66%;
  top: clamp(166px, 25vh, 248px);
  color: var(--orange);
}
.spark-blue {
  left: 62%;
  top: clamp(258px, 38vh, 338px);
  color: var(--blue);
}
.spark-green {
  right: clamp(74px, 7vw, 118px);
  top: clamp(236px, 34vh, 320px);
  width: clamp(28px, 2.5vw, 42px);
  height: clamp(28px, 2.5vw, 42px);
  color: var(--green);
}
.doodle-heart {
  right: clamp(132px, 14vw, 210px);
  top: clamp(318px, 45vh, 420px);
  width: clamp(28px, 2.6vw, 42px);
  height: clamp(26px, 2.4vw, 39px);
  color: var(--orange);
  transform: rotate(-10deg);
}

.hero-showcase {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(30px, 4.5vh, 60px);
  /* pull the hero's bottom edge up into the row so the lower sliver of each card
     is clipped, without adding any gap above the cards */
  margin-bottom: clamp(-66px, -4.2vw, -52px);
  padding: 0 clamp(16px, 3vw, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 26px);
  z-index: 8;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -52px;
  width: min(1160px, 102vw);
  height: 150px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(217, 119, 87, 0.12), rgba(250, 249, 245, 0));
  border-radius: 50%;
  filter: blur(4px);
  opacity: .72;
}

.hero-tag {
  display: none;
  position: absolute;
  z-index: 20;
  padding: 8px 15px;
  border: 1.5px solid rgba(250, 249, 245, 0.36);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .9rem;
  font-style: italic;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(20, 20, 19, 0.12);
}
.tag-free {
  left: 8%;
  top: 26%;
  transform: rotate(-4deg);
}
.tag-distance {
  right: 11%;
  top: 16%;
  transform: rotate(5deg);
}
.tag-mover {
  right: 4%;
  bottom: 24%;
  color: var(--dark);
  background: var(--paper);
  transform: rotate(-6deg);
}

.listing-card {
  position: relative;
  flex: 0 0 auto;
  z-index: var(--z, 1);
  width: clamp(160px, 14.4vw, 236px);
  min-height: clamp(300px, 21vw, 350px);
  padding: clamp(16px, 1.15vw, 22px);
  display: flex;
  flex-direction: column;
  color: var(--dark);
  background: var(--card-bg, var(--paper));
  border: 1.5px solid rgba(20, 20, 19, 0.12);
  border-radius: 20px;
  box-shadow:
    0 12px 30px rgba(20, 20, 19, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(var(--y, 0)) rotate(var(--angle, 0deg));
  transform-origin: center bottom;
  transition:
    transform .3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .3s ease;
}
.listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, .22), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 10px);
  pointer-events: none;
}
.listing-card:hover,
.listing-card:focus-within {
  transform: translateY(-12px) rotate(0deg);
  z-index: 20;
  box-shadow:
    0 24px 56px rgba(20, 20, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.listing-card > * {
  position: relative;
  z-index: 1;
}
.card-top {
  order: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0;
}
.card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(250, 249, 245, 0.82);
  border: 1px solid rgba(20, 20, 19, 0.1);
}
.item-visual {
  order: 5;
  display: grid;
  place-items: center;
  height: clamp(150px, 13vw, 206px);
  margin: 12px -6px -2px;
  overflow: visible;
}
.item-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 20px rgba(20, 20, 19, 0.18));
}
.item-photo-sofa,
.item-photo-tv {
  width: 118%;
}
.item-photo-phone,
.item-photo-backpack,
.item-photo-lamp,
.item-photo-stroller {
  width: 92%;
}
.listing-title {
  order: 2;
  font-family: var(--font-head);
  font-size: clamp(1.18rem, 1.45vw, 1.56rem);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 13px;
}
.listing-meta {
  order: 3;
  margin-top: 6px;
  font-size: .93rem;
  color: rgba(20, 20, 19, 0.64);
}
.free-pill {
  order: 4;
  align-self: flex-start;
  margin-top: 14px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--light);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
}
.free-blue { background: var(--blue); }
.free-green { background: var(--green); }
.save-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid rgba(20, 20, 19, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(20, 20, 19, 0.12);
  cursor: pointer;
  transition: color .2s ease, transform .2s ease, border-color .2s ease;
}
.save-btn span {
  width: 20px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 26' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 23c-5.6-4.5-11-8.7-11-14C3 5.8 5.5 3.5 8.5 3.5c2.2 0 4.1 1.3 5.5 3.2 1.4-1.9 3.3-3.2 5.5-3.2 3 0 5.5 2.3 5.5 5.5 0 5.3-5.4 9.5-11 14Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 26' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 23c-5.6-4.5-11-8.7-11-14C3 5.8 5.5 3.5 8.5 3.5c2.2 0 4.1 1.3 5.5 3.2 1.4-1.9 3.3-3.2 5.5-3.2 3 0 5.5 2.3 5.5 5.5 0 5.3-5.4 9.5-11 14Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.save-btn:hover,
.save-btn:focus-visible {
  color: var(--orange);
  border-color: rgba(217, 119, 87, .38);
  transform: translateY(-2px);
}
.save-btn.is-hot {
  color: var(--orange);
}
.save-btn.saved span,
.save-btn.is-hot span {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 26'%3E%3Cpath d='M14 24c-5.7-4.5-11-8.6-11-14.1C3 6.6 5.4 4 8.7 4c2 0 3.9 1 5.3 2.9C15.4 5 17.3 4 19.3 4 22.6 4 25 6.6 25 9.9 25 15.4 19.7 19.5 14 24Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 26'%3E%3Cpath d='M14 24c-5.7-4.5-11-8.6-11-14.1C3 6.6 5.4 4 8.7 4c2 0 3.9 1 5.3 2.9C15.4 5 17.3 4 19.3 4 22.6 4 25 6.6 25 9.9 25 15.4 19.7 19.5 14 24Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}
.card-stroller,
.card-tv,
.card-couch,
.card-backpack,
.card-phone,
.card-lamp { --card-bg: rgba(255, 253, 248, 0.94); }
.is-featured {
  width: clamp(160px, 14.4vw, 236px);
}

@media (min-width: 1440px) {
  .hero-inner {
    max-width: min(2240px, 84vw);
    padding-top: clamp(54px, 5vh, 82px);
  }
  .hero-copy {
    max-width: clamp(660px, 36vw, 820px);
  }
  .hero h1 {
    font-size: clamp(5.1rem, 4.9vw, 8rem);
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: clamp(1.18rem, 1.08vw, 1.45rem);
  }
  .hero-showcase {
    gap: clamp(18px, 1.4vw, 28px);
  }
  .listing-card,
  .is-featured {
    width: clamp(210px, 14vw, 244px);
    min-height: clamp(320px, 21vw, 372px);
    padding: clamp(18px, 1.2vw, 26px);
  }
  .item-visual {
    height: clamp(176px, 12.5vw, 232px);
    margin-top: clamp(12px, 1vw, 18px);
  }
  .listing-title {
    font-size: clamp(1.42rem, 1.2vw, 1.85rem);
  }
  .listing-meta {
    font-size: clamp(.94rem, .78vw, 1.08rem);
  }
}

/* ============================================================
   COMMUNITY MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--cream);
  border-top: 1.5px dashed #cfccc0;
  border-bottom: 1.5px dashed #cfccc0;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.08rem;
  color: #4a4a46;
  margin-right: 36px;
}
.marquee-track .mq-star {
  color: var(--orange);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--light-gray); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-head h2,
.mission-copy h2,
.partner-copy h2,
.closing h2,
.waitlist-inner h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 16px;
}
.section-head p { color: #4a4a46; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.step {
  background: var(--light);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.step:hover { transform: translateY(-5px); }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--light);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.98rem; color: #4a4a46; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.feature:hover { transform: translateY(-5px); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: 0.97rem; color: #4a4a46; }

/* ---------- Mission ---------- */
.mission-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.mission-copy p { color: #4a4a46; margin-bottom: 24px; }
.mission-copy blockquote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--orange);
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.mission-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-chip {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--light-gray);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}
.cat-chip:hover { background: var(--dark); color: var(--light); }

/* ---------- Waitlist (inset dark panel) ---------- */
.section-dark {
  background: transparent;
}
.waitlist-inner {
  text-align: center;
  max-width: 840px;
  background: var(--dark);
  color: var(--light);
  border-radius: 40px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.waitlist-inner > * { position: relative; z-index: 1; }
@media (max-width: 700px) {
  .waitlist-inner { padding: 60px 22px; border-radius: 28px; }
}
.waitlist-inner p { color: var(--mid-gray); margin-bottom: 32px; }

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  min-width: 0;
}

input, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid var(--light-gray);
  background: var(--light);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
input:focus, select:focus { border-color: var(--orange); }
input::placeholder { color: var(--mid-gray); }

.form-msg {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-top: 16px;
  min-height: 1.4em;
}
.form-msg.ok { color: var(--green); }
.section-dark .form-msg.ok { color: #a3b98a; }
.form-msg.err { color: var(--orange); }

.form-fineprint {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--mid-gray) !important;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

/* ---------- Partners ---------- */
.partner-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.partner-copy p { color: #4a4a46; margin-bottom: 20px; }

.partner-perks {
  list-style: none;
  margin-bottom: 30px;
}
.partner-perks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.partner-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.partner-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.partner-fields select { grid-column: 1 / -1; }

/* ---------- Closing ---------- */
.closing { text-align: center; }
.closing .container { max-width: 680px; }
.closing p { color: #4a4a46; margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer .logo-text { color: var(--light); }
.footer .logo-mark {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}
.footer-brand p {
  margin-top: 10px;
  font-style: italic;
  color: var(--mid-gray);
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--light);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-links a:hover { color: var(--orange); opacity: 1; }
.footer-copy { font-size: 0.85rem; color: var(--mid-gray); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 56px 0 0; }
  .hero-inner {
    min-height: auto;
    padding-top: 0;
  }
  .hero-copy { max-width: 720px; }
  .hero-doodles { display: none; }
  .hero-showcase {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    transform: none;
    margin: 34px -24px 0;
    padding: 10px 24px 64px;
    gap: 16px;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .hero-showcase::before { display: none; }
  .listing-card,
  .is-featured {
    flex: 0 0 232px;
    width: 232px;
    min-height: 326px;
    scroll-snap-align: center;
  }
  .hero-tag { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .mission-inner, .partner-inner { grid-template-columns: 1fr; gap: 40px; }
  .partner-art { max-width: 420px; margin: 0 auto; order: 2; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 280px; }
  .nav-links a { padding: 16px 24px; border-top: 1px solid var(--light-gray); }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }

  .steps, .features { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .partner-fields { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero-showcase {
    display: flex;
    gap: 18px;
    height: auto;
    margin: 34px -24px 0;
    padding: 8px 24px 82px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .hero-showcase::before { display: none; }
  .listing-card,
  .is-featured {
    position: relative;
    left: auto;
    bottom: auto;
    flex: 0 0 230px;
    width: 230px;
    min-height: 316px;
    transform: none;
    scroll-snap-align: center;
  }
  .listing-card:hover,
  .listing-card:focus-within { transform: translateY(-8px); }
  body { font-size: 16px; }
}

@media (max-width: 420px) {
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .container { padding: 0 18px; }
  .hero-showcase {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ============================================================
   MOTION & INTERACTION
   ============================================================ */

/* ---------- Keyframes ---------- */
@keyframes fadeUp {
  from { opacity: 0; translate: 0 28px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes riseUp {
  to { transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@keyframes heartbeat {
  0%, 50%, 100% { transform: scale(1); }
  12%           { transform: scale(1.22); }
  24%           { transform: scale(1); }
  36%           { transform: scale(1.12); }
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(8px); opacity: 1; }
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 45px) scale(1.18); }
}

/* ---------- Hero entrance ---------- */
.hero { position: relative; }

.hero-anim {
  animation: fadeUp .85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.word-mask .word {
  display: inline-block;
  transform: translateY(115%);
  animation: riseUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

/* ---------- Hero illustration ---------- */
.hero-art [data-depth] {
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.pop {
  transform-box: fill-box;
  transform-origin: center;
  animation: popIn .7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-delay: var(--d, 0s);
}
.blob {
  transform-box: fill-box;
  transform-origin: center;
  animation: breathe 8s ease-in-out infinite;
}
.float-a {
  transform-box: fill-box;
  transform-origin: center;
  animation: floatY 4.5s ease-in-out infinite;
}
.float-b {
  transform-box: fill-box;
  transform-origin: center;
  animation: floatY 5.5s ease-in-out -2.2s infinite;
}
.pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: heartbeat 1.9s ease-in-out 1.8s infinite;
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 4;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  opacity: .55;
}
.scroll-cue svg { animation: cueBob 1.9s ease-in-out infinite; }
@media (max-width: 960px) {
  .scroll-cue { display: none; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal]:not(.revealed) { opacity: 0; }
[data-reveal].revealed {
  animation: fadeUp .75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.stagger:not(.revealed) > * { opacity: 0; }
.stagger.revealed > * {
  animation: fadeUp .65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--rd, 0s);
}

/* ---------- Nav polish ---------- */
.nav { transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.nav.scrolled { box-shadow: 0 6px 24px rgba(20, 20, 19, 0.09); }

.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 700px) {
  .nav-links a::after { display: none; }
}

.logo-mark img { transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.logo:hover .logo-mark img { transform: rotate(-8deg) scale(1.08); }

/* ---------- Button shine ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .55s ease;
}
.btn:hover::after { left: 130%; }

/* ---------- Ambient blobs in dark waitlist panel ---------- */
.waitlist-inner::before,
.waitlist-inner::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  z-index: 0;
}
.waitlist-inner::before {
  background: var(--orange);
  opacity: .18;
  top: -150px;
  left: -120px;
  animation: drift 14s ease-in-out infinite alternate;
}
.waitlist-inner::after {
  background: var(--blue);
  opacity: .15;
  bottom: -170px;
  right: -130px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

/* ---------- Card & chip micro-interactions ---------- */
.step, .feature {
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s ease;
}
.step:hover, .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(20, 20, 19, 0.11);
}
.feature-icon { transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.feature:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }
.step-num { transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.step:hover .step-num { transform: scale(1.15); }

.cat-chip { transition: background .2s ease, color .2s ease, transform .2s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cat-chip:hover { transform: translateY(-3px) rotate(-1.5deg); }

/* ============================================================
   HANDMADE / COMMUNITY THEME
   ============================================================ */

@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .9; }
  50%      { transform: scale(.55) rotate(20deg); opacity: .4; }
}

.spark {
  transform-box: fill-box;
  transform-origin: center;
  animation:
    popIn .6s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 0s) backwards,
    twinkle 3.4s ease-in-out calc(var(--d, 0s) + .9s) infinite;
}

/* warmer alt sections */
.section-alt { background: var(--cream); }

/* paper cards, slightly tilted like a community pinboard */
.step, .feature {
  background: var(--paper);
  border: 1.5px solid rgba(20, 20, 19, 0.1);
  box-shadow: 0 2px 16px rgba(20, 20, 19, 0.05);
}
.steps .step:nth-child(1) { transform: rotate(-1.2deg); }
.steps .step:nth-child(2) { transform: rotate(0.9deg); }
.steps .step:nth-child(3) { transform: rotate(-0.7deg); }
.steps .step:nth-child(4) { transform: rotate(1.1deg); }
.steps .step:hover { transform: rotate(0deg) translateY(-6px); }

/* community notes — index cards with tape */
.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.note {
  position: relative;
  background: var(--paper);
  border: 1.5px solid rgba(20, 20, 19, 0.12);
  border-radius: 12px;
  padding: 38px 28px 26px;
  box-shadow: 0 4px 18px rgba(20, 20, 19, 0.07);
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s ease;
}
.notes .note:nth-child(1) { transform: rotate(-1.8deg); }
.notes .note:nth-child(2) { transform: rotate(1.2deg) translateY(14px); }
.notes .note:nth-child(3) { transform: rotate(-1deg); }
.notes .note:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 12px 30px rgba(20, 20, 19, 0.11); }
.note::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 88px;
  height: 26px;
  margin-left: -44px;
  background: rgba(217, 119, 87, 0.22);
  border: 1px solid rgba(217, 119, 87, 0.14);
  transform: rotate(-2.5deg);
}
.note blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.06rem;
  color: #3a3a36;
  margin-bottom: 16px;
}
.note figcaption {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--orange);
}
@media (max-width: 960px) {
  .notes { grid-template-columns: 1fr; gap: 30px; max-width: 480px; margin: 0 auto; }
  .notes .note:nth-child(2) { transform: rotate(1.2deg); }
}

/* category chips as stickers */
.cat-chip {
  background: var(--paper);
  border: 1.5px solid rgba(20, 20, 19, 0.18);
}
.mission-cats .cat-chip:nth-child(odd) { transform: rotate(-1.6deg); }
.mission-cats .cat-chip:nth-child(even) { transform: rotate(1.4deg); }
.mission-cats .cat-chip:hover { transform: rotate(0deg) translateY(-3px); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .word-mask .word { transform: none; }
  [data-reveal]:not(.revealed),
  .stagger:not(.revealed) > * { opacity: 1; }
}
