/* ==========================================================================
   BOUNCE — Coming soon landing
   ========================================================================== */

body.home { background: var(--blush); }

/* ---------- Decorative wave field (from the tin label) ----------
   .wavefield sits at the top of .page, capped to one viewport tall, so it
   scrolls away with the hero like any other content — never trapped behind
   the opaque strip/footer sections below. z-index:-1 keeps it under the
   hero text without needing a fixed stacking hack.
   Each .blob is a wrapper: JS drives its scale/rotate from scroll position
   (grows as you scroll past the hero), while the inner SVG keeps its own
   slow autonomous drift animation — two transforms, two elements, no
   fighting. */
.wavefield {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  transform: scale(1);
  will-change: transform;
}
.blob svg { position: static; display: block; width: 100%; height: 100%; }

.blob--1 {
  top: -22vh; right: -26vw;
  width: clamp(430px, 82vw, 1020px);
  aspect-ratio: 1;
  transform-origin: 68% 28%;
}
.blob--1 svg { opacity: .55; animation: drift1 26s ease-in-out infinite alternate; }

.blob--2 {
  bottom: -30vh; left: -32vw;
  width: clamp(400px, 76vw, 940px);
  aspect-ratio: 1;
  transform-origin: 32% 72%;
}
.blob--2 svg { opacity: .4; animation: drift2 32s ease-in-out infinite alternate-reverse; }

@media (max-width: 700px) {
  .blob--1 svg { opacity: .4; }
  .blob--2 svg { opacity: .28; }
  .blob--1 { top: -14vh; right: -34vw; }
  .blob--2 { bottom: -18vh; left: -40vw; }
}
@keyframes drift1 {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(-2.5%, 2.5%, 0) rotate(-2.5deg); }
}
@keyframes drift2 {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(2.5%, -2.5%, 0) rotate(2.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .blob--1 svg, .blob--2 svg { animation: none; }
}

/* Footer accent ring — reveals in as the footer scrolls into view.
   Contained by .foot's own overflow:hidden, so it never leaks upward
   over the strip section. */
.blob--3 {
  position: absolute;
  top: -46%; right: -8%;
  width: clamp(160px, 26vw, 260px);
  aspect-ratio: 1;
  opacity: 0;
  transform: scale(.5) rotate(0deg);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  z-index: 0;
}
.blob--3.is-in { opacity: .55; transform: scale(1) rotate(70deg); }
.blob--3 svg { animation: spin 50s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .blob--3 { transition: opacity .3s linear; }
  .blob--3 svg { animation: none; }
}

/* ---------- Scroll cue ---------- */
.scrollcue {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vw, 2rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--ink-45);
  opacity: 1;
  transition: opacity .5s var(--ease);
}
.scrollcue.is-hidden { opacity: 0; pointer-events: none; }
.scrollcue span {
  font-size: .64rem;
  font-weight: var(--w-strong);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scrollcue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
@media (max-width: 900px) { .scrollcue { display: none; } }
@media (prefers-reduced-motion: reduce) { .scrollcue svg { animation: none; } }

/* ---------- Shell ---------- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header ---------- */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: clamp(1rem, 2.2vw, 1.5rem);
}
.masthead__logo { width: clamp(112px, 13vw, 152px); }
.masthead__logo img { width: 100%; height: auto; }
.masthead__tag {
  font-size: .68rem;
  font-weight: var(--w-strong);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-45);
  text-align: right;
  line-height: 1.5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1rem, 2.5vw, 1.5rem) clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr .95fr; }
}

.hero__title {
  font-size: clamp(3.4rem, 11vw, 8.25rem);
  font-weight: var(--w-hero);
  letter-spacing: -.03em;
  line-height: .98;
  color: var(--ink);
}
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--orange); }

/* Each word rises in on load */
.hero__title .line {
  opacity: 0;
  transform: translateY(.42em);
  animation: rise .95s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: .12s; }
.hero__title .line:nth-child(2) { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: var(--ink-70);
  margin-bottom: clamp(.85rem, 2vw, 1.2rem);
}
.hero__eyebrow .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.5); opacity: .55; }
}

.hero__body { margin-top: clamp(1.1rem, 2.4vw, 1.35rem); }
/* The hero line is a single cocky sentence — let it run wide instead of
   wrapping at the paragraph measure used everywhere else. */
.hero__body .lede {
  max-width: 640px;
  font-weight: var(--w-small);
  color: var(--ink);
}
.hero__rule {
  width: 84px; height: 2px;
  background: var(--ink);
  margin-bottom: 1.15rem;
}

/* ---------- Product visual ---------- */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(68vh, 560px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--orange-tint);
  box-shadow: 0 30px 70px -30px rgba(11, 11, 11, .38);
  transform: perspective(1000px);
}
/* Cursor-follow spotlight — JS sets --mx/--my; CSS-only, inert on touch */
.hero__media::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: 1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%),
              rgba(255, 107, 26, .38), transparent 55%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.hero__media.is-active::before { opacity: 1; }
.hero__media img {
  position: relative;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-out);
}
.hero__media:hover img { transform: scale(1.06); }

.hero__badge {
  position: absolute;
  z-index: 2;
  right: clamp(.85rem, 2.5vw, 1.4rem);
  bottom: clamp(.85rem, 2.5vw, 1.4rem);
  background: var(--paper);
  border-radius: 100px;
  padding: .68em 1.15em;
  font-size: .7rem;
  font-weight: var(--w-strong);
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px -12px rgba(11, 11, 11, .5);
}
@media (prefers-reduced-motion: reduce) {
  .hero__media { transform: none !important; }
}

/* ---------- Waitlist / survey CTA ---------- */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(1.1rem, 2.4vw, 1.35rem);
}
.cta .btn { flex: 0 1 auto; }
@media (max-width: 480px) {
  .cta { flex-direction: column; align-items: stretch; }
  .cta .btn { width: 100%; }
}

.notify {
  margin-top: clamp(1.2rem, 2.6vw, 1.5rem);
  max-width: 480px;
}
.notify__label {
  font-size: .72rem;
  font-weight: var(--w-strong);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: .7rem;
  display: block;
}
.notify__row {
  display: flex;
  gap: .5rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: .32rem .32rem .32rem 1.25rem;
  transition: box-shadow .25s var(--ease);
}
.notify__row:focus-within { box-shadow: 0 0 0 4px rgba(255, 107, 26, .28); }
.notify__row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  font-size: .95rem;
  padding-block: .85em;
}
.notify__row input::placeholder { color: var(--ink-45); }
.notify__row button {
  flex: 0 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  padding: .85em 1.5em;
  font-weight: var(--w-strong);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s var(--ease);
}
.notify__row button:hover { background: var(--orange); }
.notify__note {
  margin: .7rem 0 0;
  font-size: .78rem;
  color: var(--ink-45);
  min-height: 1.4em;
}
.notify__note.is-ok  { color: #1B7F4D; font-weight: var(--w-strong); }
.notify__note.is-err { color: #C0341B; font-weight: var(--w-strong); }

@media (max-width: 420px) {
  .notify__row { flex-direction: column; border-radius: 22px; padding: .5rem; }
  .notify__row input { padding-inline: 1rem; }
  .notify__row button { border-radius: 16px; }
}

/* ---------- Strip of product stills ---------- */
.strip {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  color: var(--paper);
}
.strip__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.strip__title {
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  font-weight: var(--w-hero);
  letter-spacing: -.025em;
  color: var(--paper);
}
.strip__title em { color: var(--orange); font-style: normal; font-weight: var(--w-display); }
.strip__note { color: rgba(255, 255, 255, .6); font-size: .9rem; max-width: 34ch; }

.tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.9rem, 2.4vw, 1.4rem);
}
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.tile:hover img { transform: scale(1.05); }

/* ---------- Footer ---------- */
.foot {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--blush);
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}
.foot__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: .8rem;
  color: var(--ink-45);
}
.foot__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot__links a {
  text-decoration: none;
  font-weight: var(--w-strong);
  color: var(--ink);
  border-bottom: 1.5px solid transparent;
  transition: border-color .25s var(--ease);
}
.foot__links a:hover { border-color: var(--orange); }
