/* FYZZ landing — translated from FYZZ Landing.dc.html (Direction A: Sticker Pop) */

:root {
  --coral: #F96B65;
  --choco: #2B2017;
  --butter: #FAF3B3;
  --cream: #FFF6EA;
  --purple: #5546D6;
  --pink: #F9A8D2;
  --blue: #7CB7F7;
  --ecru: #F0EAE1;
  --ink-soft: #4D4234;
}

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--coral); }
body {
  font-family: Karla, sans-serif;
  color: var(--choco);
  overflow-x: clip;
}
* { box-sizing: border-box; }
img { user-select: none; }

@keyframes fyzzFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--rot, 0deg)); }
}
@keyframes fyzzMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fyzzRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  85% { opacity: 0.85; }
  100% { transform: translateY(-110vh) scale(1.35); opacity: 0; }
}
@keyframes fyzzPop {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.3); opacity: 0; }
}

::placeholder { color: #9A8F80; opacity: 1; }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 60;
  padding: 0 clamp(14px, 3vw, 36px);
}
.nav-pill {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--butter);
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 10px 14px 10px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 0 rgba(43, 32, 23, 0.9);
  flex-wrap: wrap;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: clamp(12px, 2.4vw, 26px);
  font-family: Anton, sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a { color: var(--choco); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: linear-gradient(135deg, #FCA46B, var(--coral));
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 9px 22px;
  font-family: Anton, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--choco);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(2px); box-shadow: 0 1px 0 var(--choco); }

/* ============ HERO ============ */
.hero {
  background: var(--coral);
  padding: 130px clamp(18px, 4vw, 60px) clamp(70px, 9vw, 120px);
  position: relative;
  overflow: hidden;
  margin-top: -68px;
}
.bubble-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0.06) 100%);
  border: 1.5px solid rgba(255, 246, 234, 0.8);
  box-shadow: inset -3px -4px 8px rgba(255, 255, 255, 0.3);
  pointer-events: auto;
  cursor: pointer;
}
.pop-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: fyzzPop 0.45s ease-out forwards;
}
.hero-can {
  position: absolute;
  z-index: 2;
  cursor: grab;
  touch-action: none;
}
.hero-can img {
  height: clamp(140px, 17vw, 220px);
  width: auto;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(43, 32, 23, 0.35));
  pointer-events: none;
}
#hero-can-1 { left: 9%; top: 16%; }
#hero-can-1 img { transform: rotate(-11deg); }
#hero-can-2 { right: 15%; top: 17%; }
#hero-can-2 img { transform: rotate(10deg); }
#hero-can-3 { right: 7%; top: 50%; }
#hero-can-3 img { transform: rotate(-8deg); }
#hero-can-4 { left: 4%; bottom: 2%; }
#hero-can-4 img { transform: rotate(8deg); }
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-logo {
  width: clamp(300px, 40vw, 560px);
  height: auto;
  filter: drop-shadow(0 8px 0 rgba(43, 32, 23, 0.22));
}
.hero-tagline {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 3vw, 34px);
  color: var(--butter);
  letter-spacing: 0.03em;
  max-width: 18em;
  text-shadow: 0 2px 0 rgba(43, 32, 23, 0.3);
}
.hero-sub {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--cream);
  max-width: 34em;
  line-height: 1.55;
}
.btn-hero {
  background: var(--purple);
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 15px 42px;
  color: #fff;
  font-family: Karla, sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--choco);
  display: inline-block;
  position: relative;
  z-index: 5;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-hero:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--choco); }

/* ============ TICKER ============ */
.ticker {
  background: var(--choco);
  overflow: hidden;
  padding: 15px 0;
  border-top: 2px solid var(--choco);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: fyzzMarquee 20s linear infinite;
}
.ticker-row {
  display: flex;
  gap: 38px;
  padding-right: 38px;
  font-family: Anton, sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--butter);
  white-space: nowrap;
}

/* ============ ABOUT ============ */
.about {
  background: var(--ecru);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.about-float-can {
  position: absolute;
  left: max(-20px, -2vw);
  top: 110px;
  width: clamp(80px, 10vw, 150px);
  --rot: -10deg;
  animation: fyzzFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 18px 26px rgba(43, 32, 23, 0.28));
}
.about-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  position: relative;
}
.about-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: 0.01em;
}
.about-copy {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46em;
  text-wrap: pretty;
}
.mission-card {
  background: var(--purple);
  border: 2px solid var(--choco);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  width: 100%;
  box-shadow: 0 5px 0 var(--choco);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-eyebrow {
  font-family: Shrikhand, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--butter);
}
.mission-copy {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============ INGREDIENTS ============ */
.ingredients {
  background: var(--butter);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.ing-float-strawberry {
  position: absolute;
  right: -30px;
  top: 30px;
  width: clamp(80px, 10vw, 150px);
  --rot: 14deg;
  animation: fyzzFloat 8s ease-in-out infinite;
}
.ingredients-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.eyebrow {
  font-family: Shrikhand, serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #C2410C;
}
.section-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 60px);
  letter-spacing: 0.01em;
  max-width: 16em;
}
.ing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.ing-card {
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: 0 4px 0 var(--choco);
  transition: transform 0.25s;
  flex: 1 1 200px;
  max-width: 250px;
}
.ing-card.hover-tilt-l:hover { transform: translateY(-6px) rotate(-1deg); }
.ing-card.hover-tilt-r:hover { transform: translateY(-6px) rotate(1deg); }
.ing-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ing-icon-whey { background: #BBD96B; }
.ing-droplet {
  width: 19px;
  height: 19px;
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  margin-top: -4px;
}
.ing-icon-juice { background: #FCA46B; }
.ing-orange {
  width: 22px;
  height: 22px;
  background: #F97316;
  border: 2px solid var(--choco);
  border-radius: 50%;
}
.ing-leaf-tip {
  position: absolute;
  top: 6px;
  right: 11px;
  width: 12px;
  height: 12px;
  background: #2E7D32;
  border: 1.5px solid var(--choco);
  border-radius: 0 50% 0 50%;
  transform: rotate(25deg);
}
.ing-icon-electro {
  background: #B9A8F9;
  font-family: Anton, sans-serif;
  font-size: 15px;
  color: var(--choco);
  letter-spacing: 0.02em;
}
.ing-icon-amla { background: #C9E265; }
.ing-gooseberry {
  width: 24px;
  height: 24px;
  background: repeating-linear-gradient(90deg, #EAF2C0 0 3px, #CBDD85 3px 6px);
  border: 2px solid var(--choco);
  border-radius: 50%;
}
.ing-stem {
  position: absolute;
  top: 9px;
  left: 50%;
  margin-left: -1.5px;
  width: 3px;
  height: 7px;
  background: var(--choco);
  border-radius: 2px;
}
.ing-icon-stevia { background: var(--pink); }
.ing-leaf {
  width: 21px;
  height: 21px;
  background: #2E7D32;
  border: 2px solid var(--choco);
  border-radius: 0 50% 0 50%;
  transform: rotate(45deg);
}
.ing-name {
  font-family: Anton, sans-serif;
  font-size: 19px;
  letter-spacing: 0.03em;
}
.ing-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.badge-strip {
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 14px 30px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-family: Anton, sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 0 var(--choco);
}
.badge-strip .dot { color: var(--coral); }

/* ============ BENEFITS + NUTRITION ============ */
.benefits {
  background: var(--pink);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.duo-wrap { position: relative; }
.duo-arch {
  border: 2px solid var(--choco);
  border-radius: 300px 300px 24px 24px;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--choco);
  max-width: 480px;
  margin: 0 auto;
}
.duo-arch img { width: 100%; display: block; }
.badge-330 {
  position: absolute;
  right: 2%;
  bottom: -26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid var(--choco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 4px 0 var(--choco);
}
.badge-330-num { font-family: Anton, sans-serif; font-size: 24px; }
.badge-330-label { font-family: Karla, sans-serif; font-weight: 800; font-size: 12px; }
.benefits-copy-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefits-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
}
.benefits-copy {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--choco);
  text-wrap: pretty;
}
.benefits-highlight {
  background: var(--butter);
  padding: 2px 8px;
  border-radius: 8px;
  border: 1.5px solid var(--choco);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.pill-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 11px 22px;
  color: var(--choco);
  font-family: Anton, sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 0 var(--choco);
}
.nutrition {
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 22px;
  box-shadow: 0 5px 0 var(--choco);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.nutrition-head {
  background: var(--choco);
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.nutrition-title {
  font-family: Anton, sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--butter);
}
.nutrition-per {
  font-family: Karla, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--butter);
  opacity: 0.85;
}
.nutrition-rows {
  padding: 10px 28px 18px;
  display: flex;
  flex-direction: column;
}
.nutrition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1.5px dashed rgba(43, 32, 23, 0.25);
  font-size: 15.5px;
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-label { font-weight: 700; }
.nutrition-badge {
  font-family: Anton, sans-serif;
  font-size: 19px;
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 3px 14px;
}
.nb-purple { background: var(--purple); color: #fff; }
.nb-coral { background: var(--coral); color: #fff; }
.nb-lime { background: #BBD96B; color: var(--choco); }
.nutrition-val { font-family: Anton, sans-serif; font-size: 16px; }

/* ============ LINE-UP ============ */
.lineup {
  background: var(--blue);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.lineup-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.lineup-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  color: var(--choco);
  text-align: center;
}
.lineup-title-pop {
  color: var(--cream);
  text-shadow: 0 5px 0 rgba(43, 32, 23, 0.4);
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 20px;
}
.flavor-card {
  border: 2px solid var(--choco);
  border-radius: 20px;
  padding: 26px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 5px 0 var(--choco);
  cursor: pointer;
  transition: transform 0.3s;
  min-height: 400px;
}
.flavor-card.hover-tilt-l:hover { transform: translateY(-8px) rotate(-1deg); }
.flavor-card.hover-tilt-r:hover { transform: translateY(-8px) rotate(1deg); }
.fc-rose { background: linear-gradient(160deg, #E37795, #C23A62); }
.fc-verde { background: linear-gradient(160deg, #EFE05A, #C4AE12); }
.fc-apple { background: linear-gradient(160deg, #5BB158, #1E6B2C); }
.fc-noir { background: linear-gradient(160deg, #4A2C12, #1C1209); }
.fc-orange { background: linear-gradient(160deg, #F08A3C, #C2570E); }
.fc-cranberry { background: linear-gradient(160deg, #A3295A, #571031); }
.flavor-name {
  font-family: Anton, sans-serif;
  font-size: 21px;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-align: center;
}
.flavor-name.fc-dark { color: var(--choco); }
.flavor-name.fc-butter { color: var(--butter); }
.flavor-note {
  font-size: 13.5px;
  color: rgba(255, 246, 234, 0.9);
  text-align: center;
  line-height: 1.45;
}
.flavor-note.fc-note-dark { color: #3B3604; }
.flavor-note.fc-note-butter { color: rgba(250, 243, 179, 0.85); }
.lineup-can {
  height: 260px;
  width: auto;
  margin-top: auto;
  margin-bottom: -30px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s;
}
.lineup-can-noir { filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.45)); }
.lineup-can-cran { filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.4)); }
.flavor-card:hover .lineup-can { transform: translateY(-40px); }

/* ============ REVIEWS ============ */
.reviews {
  background: var(--ecru);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 60px);
}
.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  width: 100%;
}
.review-card {
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 5px 0 var(--choco);
  transition: transform 0.25s;
}
.rc-1 { transform: rotate(-1.2deg); }
.rc-2 { transform: rotate(1deg); }
.rc-3 { transform: rotate(-0.8deg); }
.review-card:hover { transform: rotate(0deg) translateY(-4px); }
.stars { color: #F97316; font-size: 19px; letter-spacing: 3px; }
.star-dim { opacity: 0.3; }
.review-quote { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.review-name {
  font-family: Anton, sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--choco);
}

/* ============ FAQ ============ */
.faq {
  background: var(--ecru);
  padding: 0 clamp(18px, 4vw, 60px) clamp(70px, 9vw, 110px);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.faq-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 54px);
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--butter);
  border: 2px solid var(--choco);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--choco);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(43, 32, 23, 0.05); }
.faq-q-text {
  font-family: Anton, sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.faq-icon {
  font-family: Karla, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--choco);
  border: 2px solid var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--choco);
  color: var(--butter);
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
  min-height: 0;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-clip { min-height: 0; overflow: hidden; }
.faq-a {
  padding: 0 24px 20px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============ WAITLIST ============ */
.waitlist {
  background: var(--choco);
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.wl-fruit {
  position: absolute;
  animation: fyzzFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}
.wl-fruit-1 { left: 3%; top: 70px; width: clamp(70px, 9vw, 130px); --rot: -14deg; }
.wl-fruit-2 { right: 4%; bottom: 60px; width: clamp(80px, 10vw, 150px); --rot: 12deg; animation-duration: 9s; animation-delay: 1s; }
.wl-fruit-3 { right: 12%; top: 90px; width: clamp(50px, 6vw, 90px); --rot: 18deg; animation-duration: 7s; animation-delay: 0.5s; filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45)); }
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
  position: relative;
}
.wl-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.95;
  color: var(--cream);
}
.wl-sub {
  font-family: Anton, sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.06em;
  color: var(--blue);
}
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.wl-form input {
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--choco);
  border-radius: 999px;
  padding: 16px 28px;
  font-family: Karla, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--choco);
  outline: none;
  text-align: center;
}
.wl-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
.wl-error {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  display: none;
}
.wl-error.visible { display: block; }
.wl-submit {
  background: var(--coral);
  border: 2px solid var(--cream);
  border-radius: 999px;
  padding: 17px 40px;
  color: var(--cream);
  font-family: Anton, sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(255, 246, 234, 0.35);
  user-select: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.wl-submit:hover { transform: translateY(2px); box-shadow: 0 2px 0 rgba(255, 246, 234, 0.35); }
.wl-submit:active { transform: translateY(4px); box-shadow: none; }
.wl-submit:disabled { opacity: 0.7; cursor: wait; }
.wl-success {
  background: var(--butter);
  border: 2px solid var(--choco);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  box-shadow: 0 5px 0 rgba(255, 246, 234, 0.35);
  width: 100%;
}
.wl-success[hidden] { display: none; }
.wl-success-mark { font-size: 34px; }
.wl-success-title {
  font-family: Anton, sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
}
.wl-success-copy {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ FOOTER ============ */
.footer {
  background: #211810;
  padding: 30px clamp(18px, 4vw, 60px);
  border-top: 1px solid rgba(250, 243, 179, 0.2);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo { height: 28px; width: auto; display: block; }
.footer-links {
  display: flex;
  gap: 22px;
  font-family: Anton, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.footer-links a { color: rgba(250, 243, 179, 0.8); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--butter); }
.footer-copy { font-size: 13px; color: rgba(250, 243, 179, 0.6); }

/* Reveal-on-scroll (JS adds .reveal-pending, then .revealed) */
.reveal-pending {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-pending.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .wl-fruit, .about-float-can, .ing-float-strawberry, .bubble { animation: none !important; }
  .reveal-pending { opacity: 1; transform: none; transition: none; }
}
