/* =========================================================
   MARENI — Pre-Launch Landingpage
   styles.css  ·  Design-System aus der MARENI CI
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Core Colors (CI) */
  --lemon:     #F1E363;
  --sand:      #E4A670;
  --bubblegum: #FB81A2;
  --berry:     #D46E89;
  --coral:     #EF5467;
  --mint:      #AACF94;
  --lilac:     #AEB6E2;   /* bestätigt aus Merani CI.png / Moodboard */
  --violet:    #7768C0;   /* bestätigt aus Merani CI.png / Moodboard */
  --coconut:   #E5E1DA;

  /* Produktfarben (echte Fotofarben der Mockups) */
  --pf-white:           #E3E3E8;
  --pf-black:           #2A2A2A;
  --pf-cherry-red:      #D05369;
  --pf-deep-ocean-blue: #486EA1;
  --pf-chocolate-brown: #7B6159;
  --pf-bold-pink:       #EA78A9;
  --pf-sunny-yellow:    #EBD56A;
  --pf-champagne-gold:  #D0BB94;

  /* Abgeleitete Neutrals (kein Marken-Claim, nur Flächen) */
  --cream:     #FBFAF6;   /* warmes Off-White als Basis */
  --cream-2:   #F5F1E9;
  --ink:       #2A2724;   /* warmes Anthrazit – Text */
  --ink-soft:  #6E655C;   /* gedämpfter Text */
  --line:      #E9E3D8;   /* dezente Linien */

  /* CTA */
  --cta:        var(--coral);
  --cta-hover:  #E23B50;
  --cta-ink:    #ffffff;

  /* Typo */
  --font-head: 'Raleway', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;

  /* Radien */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 30px;
  --r-pill: 999px;

  /* Schatten */
  --shadow-sm: 0 6px 18px rgba(42, 39, 36, .06);
  --shadow:    0 18px 44px rgba(42, 39, 36, .10);
  --shadow-lg: 0 30px 70px rgba(42, 39, 36, .16);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 128px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input { font: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typo helpers ---------- */
.font-head { font-family: var(--font-head); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--berry);
  display: inline-block;
}
.display {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
}
.headline {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.005em;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
}
.subhead {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.2;
}
.display strong, .headline strong { font-weight: 700; }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.text-center { text-align: center; }
.center-block { margin-inline: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section[id], #top { scroll-margin-top: 140px; }
@media (min-width: 721px) {
  .section[id], #top { scroll-margin-top: 165px; }
}
.section--lemon   { background: var(--lemon); }
.section--coconut { background: var(--coconut); }
.section--sand     { background: var(--sand); }
.section--mint     { background: color-mix(in srgb, var(--mint) 30%, var(--cream)); }
.section--sand .eyebrow, .section--bubblegum .eyebrow, .section--lemon .eyebrow { color: var(--ink); }
.section--bubblegum{ background: var(--bubblegum); }
.section--ink     { background: var(--ink); color: var(--cream); }
.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .lead { margin-inline: auto; margin-top: 16px; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--cta);
  --btn-ink: var(--cta-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1em 1.9em;
  background: var(--btn-bg);
  color: var(--btn-ink);
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  box-shadow: 0 10px 24px rgba(239, 84, 103, .28);
  will-change: transform;
}
.btn:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(239, 84, 103, .34); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); --btn-ink: var(--cream); transform: translateY(-2px); box-shadow: none; }
.btn--light {
  --btn-bg: #fff; --btn-ink: var(--ink); box-shadow: var(--shadow-sm);
}
.btn--light:hover { --btn-bg: #fff; background: #fff; color: var(--cta); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.15em 2.3em; font-size: 1rem; }

/* ---------- Shell motif ---------- */
.shell-ico { width: 1em; height: 1em; fill: currentColor; flex: none; }
.divider-logo { display: block; width: 96px; height: auto; margin: 18px auto 0; opacity: 1; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: var(--sand);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 14px rgba(42,39,36,.14); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 138px; padding-block: 18px;
}
.brand { order: 2; flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; }
.brand__logo-wrap { display: block; overflow: hidden; height: 50px; }
.brand__logo { display: block; height: 150px; width: auto; transform: translateY(-33.3%); }
.brand__logo--white { filter: brightness(0) invert(1); }
.brand__tagline {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
}
@media (min-width: 721px) {
  .site-header__inner { min-height: 128px; padding-block: 10px; gap: 24px; }
  .brand { gap: 2px; }
  .brand__logo-wrap { height: 100px; }
  .brand__logo { height: 300px; }
  .brand__tagline { font-size: 1.15rem; letter-spacing: .16em; }
}
.nav { display: contents; }
.nav-cluster { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); flex: 1 1 0; min-width: 0; }
.nav-cluster--left { justify-content: flex-start; order: 1; }
.nav-cluster--right { justify-content: flex-end; order: 3; }
.nav-toggle { order: 4; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; color: #fff; position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--ink); transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: .7em 1.4em; font-size: .82rem; }
.nav-toggle { display: none; }
.nav-toggle span { background: #fff; }

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 246, .92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .35s var(--ease);
  display: none;
}
.mobile-cta.is-visible { transform: translateY(0); }

/* =========================================================
   HERO (full-bleed banner)
   ========================================================= */
.hero { position: relative; padding-top: 140px; padding-bottom: 0; background: var(--cream); }
@media (min-width: 721px) {
  .hero { padding-top: 165px; }
}
.hero__banner { position: relative; width: 100%; height: clamp(560px, 66vw, 960px); overflow: hidden; }
.hero__banner .hero__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 6%;
  display: block; border-radius: 0; box-shadow: none;
}
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 0; max-width: 500px; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__title { margin-bottom: 22px; }
.hero__text { margin-bottom: 18px; font-size: .95rem; color: var(--ink); max-width: 38ch; }
.hero__cta-hint { margin-bottom: 16px; font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .02em; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { margin-top: 26px; display: flex; align-items: center; gap: 16px; color: var(--ink); font-size: .92rem; }
.hero__meta strong { color: var(--ink); font-family: var(--font-head); }



/* =========================================================
   LIFESTYLE (full-bleed image duo)
   ========================================================= */
.lifestyle { padding-block: 0; }
.lifestyle__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.lifestyle__item { position: relative; margin: 0; }
.lifestyle__item img { width: 100%; height: clamp(420px, 46vw, 640px); object-fit: cover; display: block; }
.lifestyle__item figcaption {
  margin-top: 16px; text-align: center; font-family: var(--font-head); font-weight: 600;
  font-size: .92rem; letter-spacing: .02em; color: var(--ink);
}
@media (max-width: 720px) {
  .lifestyle__grid { grid-template-columns: 1fr; gap: 28px; }
  .lifestyle__item img { height: clamp(320px, 90vw, 460px); }
}

/* =========================================================
   COLORWAYS (3-up full-bleed showcase)
   ========================================================= */
.colorways { padding-block: 0; }
.inspiration { padding-block: 0; }
.inspiration .lifestyle__grid { margin-top: 4px; }
.colorways__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.colorways__item { position: relative; margin: 0; }
.colorways__item img { width: 100%; height: clamp(340px, 34vw, 480px); object-fit: cover; display: block; }
.colorways__item figcaption {
  margin-top: 14px; text-align: center; font-family: var(--font-head); font-weight: 600;
  font-size: .88rem; letter-spacing: .02em; color: var(--ink);
}
@media (max-width: 720px) {
  .colorways__grid { grid-template-columns: 1fr; gap: 26px; }
  .colorways__item img { height: clamp(280px, 80vw, 420px); }
}

/* =========================================================
   MARQUEE (Mix & Match: Tops / Bottoms, gegenlaeufig)
   ========================================================= */
.looks { padding-bottom: clamp(28px, 4vw, 48px); }
.marquee { overflow: hidden; width: 100%; margin-block: 8px; }
.marquee__track { display: flex; align-items: flex-start; width: max-content; gap: clamp(14px, 2vw, 22px); will-change: transform; }
.marquee--tops .marquee__track { animation: marquee-right 34s linear infinite; }
.marquee--bottoms .marquee__track { animation: marquee-left 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: none; width: clamp(120px, 13vw, 176px); height: clamp(120px, 13vw, 176px);
  background: #fff; border-radius: var(--r); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; padding: clamp(14px, 1.8vw, 22px); box-sizing: border-box;
}
.marquee__item img { width: 100%; height: 100%; object-fit: contain; }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) {
  .marquee__item { width: clamp(96px, 30vw, 130px); height: clamp(96px, 30vw, 130px); }
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px);
}
.problem__item {
  background: #fff; border-radius: var(--r); padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.problem__item .n {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .1em;
  color: var(--coral); display: block; margin-bottom: 12px;
}
.problem__item p { color: var(--ink-soft); font-size: .98rem; }
.problem__item strong { color: var(--ink); font-weight: 700; }

/* =========================================================
   CONCEPT / HOW IT WORKS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: step; }
.step { text-align: center; position: relative; }
.step__num {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--coral);
  box-shadow: var(--shadow);
}

.step__title { margin-bottom: 10px; }
.step__text { color: var(--ink-soft); max-width: 34ch; margin-inline: auto; }
.steps__connector { display: none; }

/* =========================================================
   BUILD YOUR BIKINI (interaktiv)
   ========================================================= */
.builder { display: grid; grid-template-columns: 1fr; gap: 28px; }
.builder__stage {
  position: relative; border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--pc, var(--coral)) 15%, #fff);
  transition: background-color .5s var(--ease);
  padding: clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(12px, 3vw, 32px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.builder__product {
  position: relative; z-index: 1;
  display: grid; place-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(14px, 2vw, 26px);
  min-height: 280px; align-content: center; box-shadow: var(--shadow);
}
.builder__product img { width: clamp(120px, 18vw, 168px); object-fit: contain; filter: drop-shadow(0 10px 16px rgba(42,39,36,.14)); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.builder__piece.is-swapping { opacity: 0; transform: translateY(8px) scale(.98); }
.builder__arrow {
  z-index: 2; width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s var(--ease);
}
.builder__arrow:hover { transform: scale(1.08); color: var(--cta); }
.builder__arrow svg { width: 22px; height: 22px; }
.builder__caption {
  position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: rgba(255,255,255,.92); color: var(--ink); border-radius: var(--r-pill);
  padding: 8px 20px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.builder__caption { display: none; }
.builder__controls-hint {
  position: absolute; z-index: 2; top: 16px; left: 0; right: 0; text-align: center;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .7rem; color: var(--ink-soft);
}
.builder__side { display: grid; gap: 14px; justify-items: center; }
.builder__side-label { font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.builder__panel { display: grid; gap: 18px; }
.builder__side-nav { display: flex; gap: 10px; }
.builder__colors--side { max-width: 132px; gap: 8px; }
.builder__colors--side .color-dot { width: 30px; height: 30px; }
.builder__color-row { display: grid; gap: 10px; justify-items: center; }
.builder__color-label { font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.builder__colors { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.color-dot {
  width: 40px; height: 40px; border-radius: 50%; background: var(--c); position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6), 0 4px 10px rgba(42,39,36,.12);
  transition: transform .2s var(--ease);
}
.color-dot:hover { transform: scale(1.12); }
.color-dot[aria-pressed="true"] { box-shadow: inset 0 0 0 2px #fff, 0 0 0 3px var(--ink); transform: scale(1.12); }
.builder__meta { text-align: center; color: var(--ink-soft); }
.builder__meta strong { color: var(--ink); font-family: var(--font-head); }

/* =========================================================
   FITS (Tops / Bottoms)
   ========================================================= */
.fitblock + .fitblock { margin-top: clamp(40px, 6vw, 72px); }
.fitblock__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.fitblock__head .subhead { display: flex; align-items: center; gap: 12px; }
.fitblock__soon { font-size: .85rem; color: var(--ink-soft); font-family: var(--font-head); font-weight: 600; }
.fit-grid {
  display: grid; gap: clamp(14px, 1.6vw, 22px);
  grid-template-columns: repeat(4, 1fr);
}
.fit-grid--bottoms { grid-template-columns: repeat(4, 1fr); }
.fit-card {
  background: #fff; border-radius: var(--r); padding: 18px 16px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fit-card__media {
  aspect-ratio: 4/3; border-radius: var(--r-sm); margin-bottom: 14px; display: grid; place-items: center;
  background: #fff; overflow: hidden;
}
.fit-card__media img { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(42,39,36,.16)); }
.fit-card__idx { font-family: var(--font-head); font-weight: 700; font-size: .72rem; color: var(--ink-soft); letter-spacing: .1em; }
.fit-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin: 2px 0 6px; }
.fit-card__desc { font-size: .84rem; color: var(--ink-soft); line-height: 1.5; }

/* horizontal scroll on mobile */
.fit-scroller { display: contents; }

/* =========================================================
   COLOR SYSTEM
   ========================================================= */
.color-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(10px, 1.4vw, 18px);
}
.color-tile { text-align: center; }
.color-tile__chip {
  aspect-ratio: 1; border-radius: var(--r); background: var(--c); margin-bottom: 12px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(20,18,16,.07);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease);
}
.color-tile:hover .color-tile__chip { transform: translateY(-6px) scale(1.02); }
.color-tile__chip .shell-ico { width: 40%; height: 40%; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.color-tile__name { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .04em; }
.colors__note { text-align: center; margin-top: clamp(30px, 4vw, 48px); }

/* =========================================================
   LOOKS (Mix & Match Beispiele)
   ========================================================= */
.look-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.look-card {
  border-radius: var(--r); aspect-ratio: 3/4; background: var(--bg, var(--cream-2));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.look-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.look-card__media { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 16% 12% 22%; }
.look-card__top { width: 72%; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(42,39,36,.18)); }
.look-card__bottom { width: 60%; object-fit: contain; margin-top: -8%; filter: drop-shadow(0 8px 14px rgba(42,39,36,.18)); }
.look-card__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px;
  font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .04em;
  color: #fff; text-align: left; background: rgba(20,18,16,.62);
}
.looks__cap { text-align: center; margin-top: 34px; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 28px); }
.benefit { text-align: center; }
.benefit__icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-sm); color: var(--coral);
}
.benefit__icon svg { width: 30px; height: 30px; }
.benefit:nth-child(2) .benefit__icon { color: var(--bubblegum); }
.benefit:nth-child(3) .benefit__icon { color: var(--sand); }
.benefit:nth-child(4) .benefit__icon { color: var(--mint); }
.benefit:nth-child(5) .benefit__icon { color: var(--violet); }
.benefit__title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 6px; letter-spacing: .02em; }
.benefit__text { font-size: .9rem; color: var(--ink-soft); max-width: 24ch; margin-inline: auto; }

/* =========================================================
   CTA BAND (mid page)
   ========================================================= */
.cta-band { background: var(--coral); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; text-align: left; }
.cta-band .headline { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 46ch; }

/* =========================================================
   COMMUNITY
   ========================================================= */
.community__inner { text-align: center; }
.social-links { display: inline-flex; gap: 16px; margin-top: 26px; }
.social-links a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .2s var(--ease), color .2s var(--ease);
}
.social-links a:hover { transform: translateY(-4px); color: var(--coral); }
.social-links svg { width: 24px; height: 24px; }
.community__handle { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-top: 20px; letter-spacing: .02em; }

/* =========================================================
   WAITLIST (final)
   ========================================================= */
.waitlist { background: var(--cream); }
.waitlist__card {
  max-width: 640px; margin-inline: auto; text-align: center;
}
.waitlist__title { margin-bottom: 14px; }
.waitlist__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin: 24px 0 30px; }
.perk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.perk .shell-ico { color: var(--coral); width: 16px; height: 16px; }

.wl-form { display: grid; gap: 14px; max-width: 460px; margin: 0 auto; }
.wl-form__row { display: flex; gap: 10px; }
.wl-form__input {
  flex: 1; width: 100%; padding: 1.05em 1.2em; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.wl-form__input::placeholder { color: #b3aca2; }
.wl-form__input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(239,84,103,.14); }
.wl-form__submit { white-space: nowrap; }
.wl-consent { display: flex; gap: 10px; align-items: flex-start; text-align: left; font-size: .82rem; color: var(--ink-soft); }
.wl-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--coral); flex: none; }
.wl-consent a { text-decoration: underline; }
.wl-note { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.wl-error { color: var(--cta-hover); font-size: .85rem; min-height: 1.1em; font-weight: 600; }

.wl-success { display: none; }
.wl-success .badge { width: 72px; height: 72px; border-radius: 50%; background: var(--mint); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.wl-success .badge svg { width: 34px; height: 34px; }
.waitlist__card.is-done .wl-form,
.waitlist__card.is-done .waitlist__perks,
.waitlist__card.is-done .waitlist__title,
.waitlist__card.is-done .waitlist__sub { display: none; }
.waitlist__card.is-done .wl-success { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__brand .brand__logo { height: 56px; }
.footer__brand p { color: rgba(251,250,246,.6); margin-top: 16px; max-width: 34ch; font-size: .92rem; }
.footer__col h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: rgba(251,250,246,.55); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: rgba(251,250,246,.85); font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background-color .2s var(--ease); }
.footer__social a:hover { background: rgba(255,255,255,.12); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(251,250,246,.5); font-size: .84rem; }

/* =========================================================
   MOTION (reveal on scroll)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .fit-grid { grid-template-columns: repeat(3, 1fr); }
  .fit-grid--bottoms { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}
@media (max-width: 900px) {
  .hero__banner { height: auto; }
  .hero__banner .hero__image { position: static; height: clamp(320px, 78vw, 460px); object-position: center 12%; }
  .hero__content { position: static; height: auto; padding: 32px var(--gutter) 4px; max-width: 100%; text-align: center; align-items: center; }
  .hero__eyebrow, .hero__title, .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__scroll { display: none; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .color-grid { grid-template-columns: repeat(4, 1fr); }
  .look-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .nav.nav--open {
    display: flex; position: fixed; inset: 128px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 18px var(--gutter) 28px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-cluster { display: contents; }
  .nav.nav--open .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--ink); }
  .nav.nav--open .nav__cta { margin-top: 12px; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; gap: 5px; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-cta { display: block; }

  .builder__stage { grid-template-columns: 1fr; gap: 20px; padding-bottom: 32px; }
  .builder__side { grid-auto-flow: row; justify-items: center; }
  .builder__arrow { width: 48px; height: 48px; }
  .builder__caption { bottom: 14px; }
  .builder__colors--side { max-width: 240px; }

  .steps { grid-template-columns: 1fr; gap: 34px; }
  .problem__grid { grid-template-columns: 1fr; }

  /* horizontal snap scrollers */
  .fit-grid {
    display: grid; grid-auto-flow: column; grid-auto-columns: 60%;
    grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); gap: 14px;
    scrollbar-width: none;
  }
  .fit-grid::-webkit-scrollbar { display: none; }
  .fit-card { scroll-snap-align: start; }
  .fit-grid--bottoms { grid-auto-columns: 62%; }

  .look-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cta-band__inner { text-align: center; justify-content: center; }
  .cta-band p { margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .wl-form__row { flex-direction: column; }
}

@media (min-width: 721px) {
  .mobile-cta { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   LEGAL / PROSE PAGES
   ========================================================= */
.legal-header { position: sticky; top: 0; background: rgba(251,250,246,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); z-index: 20; }
.legal-header .site-header__inner { height: 64px; }
.legal-header .brand { order: 0; }
.legal-header .brand__logo { height: 28px; }
.legal-header .back { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.legal-header .back svg { width: 16px; height: 16px; }
.legal { padding-top: 172px; padding-bottom: var(--section-y); }
@media (min-width: 721px) {
  .legal { padding-top: 185px; }
}
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-family: var(--font-head); font-weight: 300; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 6px; letter-spacing: -.01em; }
.prose .updated { color: var(--ink-soft); font-size: .88rem; margin-bottom: 28px; }
.prose h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; margin: 34px 0 8px; color: var(--ink); }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.prose a { color: var(--berry); text-decoration: underline; }
.prose strong { color: var(--ink); font-weight: 700; }
.notice { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--coral); border-radius: var(--r-sm); padding: 16px 18px; margin-bottom: 30px; font-size: .92rem; color: var(--ink); }
.ph { background: rgba(239,84,103,.10); border-radius: 5px; padding: 1px 7px; font-family: var(--font-head); font-weight: 600; color: var(--cta-hover); font-size: .92em; white-space: nowrap; }
.legal-footer { border-top: 1px solid var(--line); padding: 24px 0; text-align: center; color: var(--ink-soft); font-size: .88rem; }
.legal-footer a { color: var(--ink); text-decoration: underline; }
