/* ============================================================
   OPERATOR GOODS CO — v2.css
   Version 2 homepage. Layout follows the approved design mockup section for
   section; values come from variables.css and the shared components in
   styles.css (buttons, nav, form, FAQ, footer, brand tiles). This file only
   adds what the v2 layout needs.
   ============================================================ */

:root {
  --v2-gold: #f2c84b;                     /* from the client's own mockup palette */
  --v2-section: clamp(80px, 10vw, 136px); /* generous, per the "more space" note */
  --v2-radius: 12px;
}

body.v2 { background: var(--color-bone); }

/* ---- Type ------------------------------------------------------------- */
/* Archivo is loaded with its width axis on this page, so the display
   headings take the condensed cut the mockup uses. Falls back cleanly. */
.v2-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 82%;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--color-ink);
  text-wrap: balance;
}
.v2-h1 { font-size: clamp(40px, 5vw, 64px); }
.v2-h2 { font-size: clamp(30px, 3.4vw, 44px); }

.v2-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-field);
  margin-bottom: 14px;
}
.v2-eyebrow--gold { color: var(--v2-gold); }

.v2-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-slate);
  max-width: 48ch;
}
.v2-section { padding-block: var(--v2-section); }

/* ---- Buttons (mockup: square corners, small caps, arrow) --------------- */
.v2 .btn {
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  min-height: 46px;
}
.v2 .btn--primary { background: var(--color-ink-deep); color: #fff; }
.v2 .btn--primary:hover { background: var(--color-ink); }
.v2 .btn--outline { background: transparent; border: 1.5px solid var(--color-ink); color: var(--color-ink); }
.v2 .btn--outline:hover { background: var(--color-ink); color: #fff; }
.v2 .btn--red { background: var(--color-field); color: #fff; box-shadow: var(--shadow-sm-2); }
.v2 .btn--red:hover { background: var(--color-field-deep); }
.v2 .btn--white { background: #fff; color: var(--color-ink); box-shadow: var(--shadow-sm-2); }
.v2 .btn--white:hover { background: var(--color-paper); }
.v2-arrow::after { content: "\2192"; margin-left: 8px; }

/* ---- Icon sprite ------------------------------------------------------- */
.v2-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.v2-icon { display: block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.v2-announce { background: var(--color-field-deep); color: #fff; }
.v2-announce__inner { display: flex; align-items: center; gap: 18px; padding-block: 12px; }
.v2-announce__icon { flex: none; width: 34px; height: 34px; color: var(--v2-gold); }
.v2-announce__text { flex: 1; min-width: 0; font-size: 14px; line-height: 1.45; }
.v2-announce__text strong { display: block; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.v2-announce .btn { flex: none; }
@media (max-width: 767px) {
  .v2-announce__inner { flex-wrap: wrap; }
  .v2-announce .btn { width: 100%; }
}

/* ============================================================
   NAV (shared component; v2 centres the links and uses the navy button)
   ============================================================ */
.v2 .nav--light, .page--giveaway .nav--light, .page--drops .nav--light, .page--legal .nav--light { background: #fff; }
.v2 .nav__inner, .page--giveaway .nav__inner, .page--drops .nav__inner, .page--legal .nav__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.v2 .nav__logo img, .page--giveaway .nav__logo img, .page--drops .nav__logo img, .page--legal .nav__logo img { height: 36px; width: auto; }
.v2 .nav__links, .page--giveaway .nav__links, .page--drops .nav__links, .page--legal .nav__links { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
.v2 .nav__link, .page--giveaway .nav__link, .page--drops .nav__link, .page--legal .nav__link { font-size: 12.5px; letter-spacing: 0.08em; }
@media (max-width: 1023px) {
.v2 .nav__inner, .page--giveaway .nav__inner, .page--drops .nav__inner, .page--legal .nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
.v2 .nav__links, .v2 .nav__inner > .btn, .page--giveaway .nav__links, .page--drops .nav__links, .page--legal .nav__links, .page--giveaway .nav__inner > .btn, .page--drops .nav__inner > .btn, .page--legal .nav__inner > .btn { display: none; }
.v2 .nav__toggle, .page--giveaway .nav__toggle, .page--drops .nav__toggle, .page--legal .nav__toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.v2-hero { background: var(--color-bone); }
.v2-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px) clamp(64px, 8vw, 112px);
}
.v2-hero__sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--color-field);
  margin: 18px 0 16px;
  text-wrap: balance;
}
.v2-hero .btn-row { margin-top: 28px; gap: 14px; }
.v2-hero__launch {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 28px;
  font-size: 14px; line-height: 1.5;
  color: var(--color-slate);
  max-width: 46ch;
}
.v2-hero__launch .v2-icon { flex: none; width: 28px; height: 28px; color: var(--color-ink); }
.v2-hero__launch strong { color: var(--color-ink); }
.v2-hero__launch .dot { margin: 0 6px; color: var(--color-steel); }
.v2-hero__media { margin: 0; }
.v2-hero__media img { width: 100%; height: auto; border-radius: var(--v2-radius); box-shadow: var(--shadow-md); }
@media (max-width: 1023px) { .v2-hero__inner { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 599px) { .v2-hero .btn { width: 100%; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.v2-trust { background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.v2-trust__inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-trust__item { display: flex; gap: 16px; align-items: flex-start; padding: 34px clamp(16px, 2.5vw, 36px); }
.v2-trust__item + .v2-trust__item { border-left: 1px solid var(--hairline); }
.v2-trust__icon {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-ink-deep); color: #fff;
  display: grid; place-items: center;
}
.v2-trust__icon .v2-icon { width: 24px; height: 24px; }
.v2-trust__title { font-family: var(--font-body); font-weight: 700; font-size: 13px; line-height: 1.2; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-ink); margin-bottom: 6px; }
.v2-trust__text { font-size: 14px; line-height: 1.5; color: var(--color-slate); }
@media (max-width: 767px) {
  .v2-trust__inner { grid-template-columns: minmax(0, 1fr); }
  .v2-trust__item + .v2-trust__item { border-left: 0; border-top: 1px solid var(--hairline); }
}

/* ============================================================
   BRAND CAROUSEL
   ============================================================ */
.v2-brands { background: var(--color-paper); }
.v2-brands__head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.v2-brands__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.2;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--color-ink);
}
.v2-carousel { position: relative; }
.v2-carousel__track {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 6px 2px 14px;
  margin: 0; list-style: none;
}
.v2-carousel__track::-webkit-scrollbar { display: none; }
.v2-carousel__track .tile { scroll-snap-align: start; }
.v2-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--color-ink);
  box-shadow: var(--shadow-sm-2);
  display: grid; place-items: center; z-index: 2;
}
.v2-carousel__btn--prev { left: -10px; }
.v2-carousel__btn--next { right: -10px; }
.v2-carousel__btn .v2-icon { width: 18px; height: 18px; stroke-width: 2; }
.v2-carousel__btn[disabled] { opacity: 0.35; cursor: default; }
.v2-partner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
  font-family: var(--font-body); font-weight: 700; font-size: 12px; line-height: 1;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink);
}
.v2-partner img { height: 30px; width: auto; }
@media (max-width: 767px) {
  .v2-carousel__btn { display: none; }
  .v2-partner { flex-direction: column; gap: 12px; text-align: center; }
  .v2-phone { display: none; }
  .v2-device { padding: 0; }
}

/* ============================================================
   PRIVATE COMPANY STORES
   ============================================================ */
.v2-stores { background: #fff; }
.v2-stores__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.v2-stores .btn { margin-top: 24px; }
.v2-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 40px 0 0; padding: 0; list-style: none; }
.v2-feature { display: flex; gap: 12px; align-items: flex-start; }
.v2-feature .v2-icon { flex: none; width: 26px; height: 26px; color: var(--color-ink); }
.v2-feature__title { display: block; font-family: var(--font-body); font-weight: 700; font-size: 13px; line-height: 1.25; color: var(--color-ink); margin-bottom: 4px; }
.v2-feature__text { display: block; font-size: 12.5px; line-height: 1.45; color: var(--color-slate); }
@media (max-width: 1023px) { .v2-stores__inner { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 599px) { .v2-features { grid-template-columns: minmax(0, 1fr); } }

/* Device mockup: a real store grid inside a laptop and a phone, so the
   preview is actual UI rather than a rendered picture of one. */
.v2-device { position: relative; padding: 0 8% 8% 0; }
.v2-laptop { background: #1a1f2e; border-radius: 14px 14px 6px 6px; padding: 12px 12px 14px; box-shadow: var(--shadow-md); }
.v2-laptop__screen { background: #fff; border-radius: 6px; overflow: hidden; aspect-ratio: 16 / 10; }
.v2-laptop__base { height: 12px; margin: 0 -4%; background: #2a3042; border-radius: 0 0 10px 10px; }
.v2-store { font-family: var(--font-body); font-size: 10px; color: var(--color-ink); height: 100%; display: flex; flex-direction: column; }
.v2-store__bar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--hairline); }
.v2-store__bar img { height: 16px; width: auto; }
.v2-store__bar strong { font-size: 11px; }
.v2-store__search { margin-left: auto; width: 70px; height: 14px; border-radius: 7px; background: var(--color-paper); }
.v2-store__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 10px 12px; margin: 0; list-style: none; flex: 1; }
.v2-store__item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px; display: block; }
.v2-store__item span { display: block; margin-top: 4px; font-size: 9px; line-height: 1.2; }
.v2-store__item em { display: block; font-style: normal; color: var(--color-slate); font-size: 8.5px; }
.v2-phone { position: absolute; right: 0; bottom: 0; width: 27%; background: #1a1f2e; border-radius: 22px; padding: 8px; box-shadow: var(--shadow-md); }
.v2-phone__screen { background: #fff; border-radius: 16px; overflow: hidden; aspect-ratio: 9 / 18; }
.v2-phone .v2-store__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 8px; }
.v2-phone .v2-store__bar { padding: 6px 8px; }
.v2-phone .v2-store__search { display: none; }

/* ============================================================
   PROCESS BAND (navy)
   ============================================================ */
.v2-process { background: var(--color-ink-deep); color: #fff; padding-block: clamp(56px, 7vw, 88px); }
.v2-process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.v2-process__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.25;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--v2-gold);
  margin-bottom: 12px;
}
.v2-process__text { font-size: 14px; line-height: 1.55; color: var(--on-dark-soft); max-width: 40ch; }
.v2-steps { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; margin: 0; padding: 0; list-style: none; }
.v2-step { flex: 1; text-align: center; min-width: 0; }
.v2-step .v2-icon { width: 44px; height: 44px; margin: 0 auto 12px; color: #fff; }
.v2-step span { display: block; font-family: var(--font-body); font-weight: 700; font-size: 12.5px; line-height: 1.3; color: #fff; }
.v2-steps__arrow { flex: none; width: 30px; height: 44px; display: grid; place-items: center; color: rgba(255, 255, 255, 0.55); }
.v2-steps__arrow .v2-icon { width: 20px; height: 20px; }
@media (max-width: 1023px) {
  .v2-process__inner { grid-template-columns: minmax(0, 1fr); }
  .v2-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 12px; }
  .v2-steps__arrow { display: none; }
}
@media (max-width: 479px) { .v2-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   CUSTOM & PRIVATE LABEL
   ============================================================ */
.v2-custom { background: #fff; }
.v2-custom__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.v2-custom .v2-h2 { font-size: clamp(28px, 3vw, 40px); }
.v2-custom .btn { margin-top: 24px; white-space: nowrap; }
.v2-stages { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.v2-stage img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); display: block; }
.v2-stage span { display: block; margin-top: 12px; text-align: center; font-family: var(--font-body); font-weight: 700; font-size: 12px; line-height: 1.2; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-ink); }
@media (max-width: 1023px) { .v2-custom__inner { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 639px) {
  .v2-stages { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 8px; scrollbar-width: none; }
  .v2-stages::-webkit-scrollbar { display: none; }
  .v2-stage { flex: none; width: 44%; scroll-snap-align: start; }
}

/* ============================================================
   GIVEAWAY BAND (red)
   ============================================================ */
.v2-giveaway { background: var(--color-field); color: #fff; padding-block: clamp(56px, 7vw, 96px); }
.v2-giveaway__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.v2-giveaway__media { margin: 0; }
.v2-giveaway__media img { width: 100%; height: auto; border-radius: var(--v2-radius); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28); }
.v2-giveaway__title { color: #fff; }
.v2-giveaway__text { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.9); margin-top: 14px; max-width: 40ch; }
.v2-prizes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 24px; padding: 0; list-style: none; }
.v2-prize { text-align: center; }
.v2-prize .v2-icon { width: 40px; height: 40px; margin: 0 auto 10px; color: #fff; }
.v2-prize small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 10px; line-height: 1.2; letter-spacing: 0.12em; text-transform: uppercase; color: var(--v2-gold); margin-bottom: 4px; }
.v2-prize span { display: block; font-family: var(--font-body); font-weight: 700; font-size: 13px; line-height: 1.25; color: #fff; }
.v2-giveaway__cta { text-align: center; }
@media (max-width: 1023px) {
  .v2-giveaway__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .v2-giveaway__media { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 767px) {
  .v2-giveaway__inner { grid-template-columns: minmax(0, 1fr); }
  .v2-prizes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .v2-giveaway__cta .btn { width: 100%; }
}

/* ============================================================
   SHARED SECTIONS ON THIS PAGE
   Sign-up sits on navy here: the red giveaway band is directly above it,
   and two red bands in a row would cancel each other out.
   ============================================================ */
.v2 .signup { background: var(--color-ink-deep); }
.v2 .section#faq { background: var(--color-paper); }

/* ---- Motion ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .v2-carousel__track, .v2-stages { scroll-behavior: auto; }
}

/* ============================================================
   POLISH PASS
   Fewer voices per fold. Caps reserved for buttons and nav; supporting type
   brought up to readable sizes; rhythm varied so strips read as strips and
   chapters read as chapters.
   ============================================================ */

/* Announcement bar: a link, not a third button in the first 120px */
.v2-announce__link {
  flex: none;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; line-height: 1;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
  white-space: nowrap;
}
.v2-announce__link:hover { text-decoration-thickness: 2px; }
@media (max-width: 767px) { .v2-announce__link { width: 100%; text-align: left; } }

/* Hero: more air below, slightly larger lede */
.v2-hero__inner { padding-block: clamp(64px, 8vw, 112px) clamp(72px, 9vw, 128px); }
.v2-hero__sub { margin: 20px 0 14px; }
.v2-lede { font-size: 17.5px; }

/* Trust strip: three typographic statements, no icon discs */
.v2-trust__item { padding: 40px clamp(16px, 2.8vw, 40px); gap: 14px; }
.v2-trust__icon {
  width: auto; height: auto; border-radius: 0;
  background: transparent; color: var(--color-field);
  display: block; margin-top: 3px;
}
.v2-trust__icon .v2-icon { width: 22px; height: 22px; }
.v2-trust__title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; text-transform: none; margin-bottom: 6px;
}
.v2-trust__text { font-size: 15px; line-height: 1.5; }

/* Brands: a strip, not a chapter. Left-aligned display heading, partner credit on the same baseline row. */
.v2-brands { padding-block: clamp(64px, 7vw, 96px); }
.v2-brands__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  text-align: left; margin-bottom: clamp(28px, 4vw, 40px);
}
.v2-brands__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 82%;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.02; letter-spacing: -0.02em;
  text-transform: none; color: var(--color-ink);
}
.v2-brands__head .v2-partner { margin: 0 0 6px; flex: none; }
@media (max-width: 767px) {
  .v2-brands__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .v2-brands__head .v2-partner { flex-direction: row; text-align: left; margin: 0; }
}

/* Supporting type up to readable sizes; labels in sentence case */
.v2-features { gap: 24px; }
.v2-feature__title { font-size: 15px; }
.v2-feature__text { font-size: 14px; }
.v2-stage span { text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 600; }
.v2-step span { font-size: 13.5px; }

/* Process band: a heading, not a tracked caps label */
.v2-process { padding-block: clamp(64px, 8vw, 96px); }
.v2-process__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 82%;
  font-size: clamp(26px, 2.6vw, 32px); line-height: 1.05; letter-spacing: -0.02em;
  text-transform: none;
}
.v2-process__text { font-size: 15px; }

/* Giveaway: copy leads and carries the button; prizes as a readable 2x2; image gets room */
.v2-giveaway { padding-block: clamp(72px, 9vw, 112px); }
.v2-giveaway__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}
.v2-giveaway__copy .btn { margin-top: 24px; }
.v2-giveaway__text { font-size: 15.5px; max-width: 38ch; }
.v2-prizes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; margin: 0; }
.v2-prize { text-align: left; display: flex; gap: 12px; align-items: flex-start; }
.v2-prize .v2-icon { width: 30px; height: 30px; margin: 0; flex: none; }
.v2-prize small {
  font-size: 12px; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255, 255, 255, 0.78); margin-bottom: 2px;
}
.v2-prize span { font-size: 15px; line-height: 1.3; }
@media (max-width: 1023px) {
  .v2-giveaway__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .v2-giveaway__media { grid-column: 1 / -1; max-width: 560px; }
}
@media (max-width: 767px) {
  .v2-giveaway__inner { grid-template-columns: minmax(0, 1fr); }
  .v2-prizes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-giveaway__copy .btn { width: 100%; }
}

/* Stores features: stacked list instead of three cramped columns in a narrow text column */
.v2-features { grid-template-columns: minmax(0, 1fr); gap: 18px; max-width: 34rem; }
.v2-feature__title { margin-bottom: 2px; }

/* Partner credit on phones: label on its own line, mark beneath */
@media (max-width: 767px) {
  .v2-brands__head .v2-partner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
/* Prizes single-column on narrow phones */
@media (max-width: 479px) {
  .v2-prizes { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

/* ============================================================
   IMMERSIVE HERO
   Centred copy with the goods scattered around it. Each cutout drops in on
   a staggered ease-out-expo, then drifts slowly. Reduced motion gets the
   settled composition with no movement. Products are decorative here
   (aria-hidden); the copy carries the meaning.
   ============================================================ */
.v2-hero--float {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 88vh, 920px);
  display: flex;
  align-items: center;
}
.v2-hero--float .v2-hero__center {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding-block: clamp(120px, 14vh, 160px) clamp(110px, 13vh, 150px);
}
.v2-hero--float .v2-h1 { font-size: clamp(42px, 5.6vw, 76px); }
.v2-hero--float .v2-hero__sub { text-align: center; }
.v2-hero--float .v2-lede { margin-inline: auto; max-width: 46ch; }
.v2-hero--float .btn-row { justify-content: center; }

.v2-hero__stage { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.v2-float {
  position: absolute;
  left: var(--x); top: var(--y);
  width: calc(var(--w) * var(--s, 1));
  transform: rotate(var(--r));
  will-change: transform, opacity;
  animation: v2-drop 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--d, 0s);
}
.v2-float picture, .v2-float img { display: block; width: 100%; height: auto; }
.v2-float img {
  filter: drop-shadow(0 22px 26px rgba(10, 19, 50, 0.16));
  animation: v2-drift 7s ease-in-out infinite alternate;
  animation-delay: calc(var(--d, 0s) + 1.15s);
}
@keyframes v2-drop {
  from { opacity: 0; transform: translate3d(0, -16vh, 0) rotate(calc(var(--r) - 12deg)) scale(0.94); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--r)) scale(1); }
}
@keyframes v2-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

/* Fewer, smaller pieces as the stage narrows; copy always keeps the centre */
@media (max-width: 1023px) {
  .v2-hero--float .v2-float[data-tier="3"] { display: none; }
  .v2-hero--float { min-height: 0; }
  .v2-hero--float .v2-hero__center { padding-block: clamp(150px, 26vw, 200px) clamp(120px, 22vw, 170px); }
}
@media (max-width: 767px) {
  .v2-hero--float .v2-float[data-tier="2"] { display: none; }
  .v2-hero--float .v2-float[data-tier="1"] { --w: clamp(96px, 27vw, 130px) !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(1) { --x: 2% !important;  --y: 2% !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(2) { --x: 68% !important; --y: 1% !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3) { --x: 70% !important; --y: 82% !important; }
  .v2-hero--float .v2-hero__center { padding-block: 150px 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-float, .v2-float img { animation: none; }
}

/* Hero tuning after measurement: narrower copy column, layered stacking so the
   lower pieces sit in front, mobile cooler peeks from the bottom edge instead
   of touching the buttons. */
.v2-float { z-index: var(--z, 1); }
.v2-hero--float .v2-hero__center { max-width: 40rem; }
.v2-hero--float .v2-h1 { font-size: clamp(42px, 5.2vw, 72px); }
.v2-hero--float .v2-lede { max-width: 42ch; }
@media (max-width: 767px) {
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3) { --x: 68% !important; --y: 87% !important; --w: clamp(96px, 25vw, 120px) !important; }
  .v2-hero--float .v2-hero__center { padding-block: 150px 168px; }
}

/* "Powered by" partner line under a section heading */
.v2-powered {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-slate);
}
.v2-powered img { height: 26px; width: auto; }

/* Phone hero: cooler sits fully below the button row, peeking from the edge */
@media (max-width: 767px) {
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3) { --y: 94% !important; --w: clamp(88px, 22vw, 110px) !important; }
}

/* Phones: two pieces framing the headline is the right amount; the cooler
   cannot sit under the button row without touching it, so it stays off. */
@media (max-width: 767px) {
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3) { display: none; }
}
/* Settle-safety: after the entrance window, force the resting state. If a
   browser throttles or skips the animation, nothing stays invisible. */
.v2-float.is-settled { animation: none; opacity: 1; transform: rotate(var(--r)); }

/* Franchise brand mark in the store mockup header */
.v2-store__brand { height: 24px; width: auto; display: block; }
.v2-phone .v2-store__brand { height: 18px; }
/* specificity: the generic bar-img rule was winning over the brand mark size */
.v2-store__bar .v2-store__brand { height: 24px; }
.v2-phone .v2-store__bar .v2-store__brand { height: 18px; }

/* ============================================================
   CUSTOM & PRIVATE LABEL, redesigned
   Copy runs as a full-width header row; the five stages take the whole
   container as tall numbered cards, so the process reads as a process.
   ============================================================ */
.v2-custom__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.v2-custom__head .v2-h2 { margin-bottom: 8px; }
.v2-custom__head .v2-powered { margin: 0; }
.v2-custom__aside .v2-lede { max-width: 52ch; }
.v2-custom__aside .btn { margin-top: 22px; white-space: nowrap; }

.v2-stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin: 0; padding: 0; list-style: none;
}
.v2-stage { position: relative; }
.v2-stage picture { display: block; }
.v2-stage img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 12px; box-shadow: var(--shadow-md); display: block;
}
.v2-stage__num {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-bone); color: var(--color-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm-2);
}
.v2-stage__name {
  margin: 14px 0 0;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em; color: var(--color-ink);
  text-align: left; text-transform: none;
}
.v2-stage__desc { margin: 4px 0 0; font-size: 13.5px; line-height: 1.45; color: var(--color-slate); }

@media (max-width: 1023px) {
  .v2-custom__head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .v2-stages {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; padding-bottom: 10px; scrollbar-width: none;
    margin-inline: calc(-1 * clamp(20px, 5vw, 40px)); padding-inline: clamp(20px, 5vw, 40px);
  }
  .v2-stages::-webkit-scrollbar { display: none; }
  .v2-stage { flex: none; width: 34%; scroll-snap-align: start; }
}
@media (max-width: 639px) { .v2-stage { width: 62%; } }
@media (max-width: 1023px) {
  .v2-stages { margin-inline: 0; padding-inline: 0; }
}

/* Stage numerals: on the caption baseline, not floating in a circle over the
   photo. A hairline under each image gives the numeral something to hang from. */
.v2-stage__num { display: none; }
.v2-stage__name {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.v2-stage__index {
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  color: var(--color-field); font-variant-numeric: tabular-nums; min-width: 1.1em;
}

/* ============================================================
   RESPONSIVE PASS (from the full-width sweep)
   ============================================================ */
/* Tablet 768-1023: the copy column is nearly full width, so pieces cannot sit
   beside it. Two pieces frame the top instead, same as phones, a little larger. */
@media (min-width: 768px) and (max-width: 1023px) {
  .v2-hero--float .v2-float[data-tier="2"],
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3) { display: none; }
  .v2-hero--float .v2-float[data-tier="1"] { --w: clamp(150px, 22vw, 190px) !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(1) { --x: 3% !important;  --y: 2% !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(2) { --x: 72% !important; --y: 1% !important; }
  .v2-hero--float .v2-hero__center { padding-block: 250px 140px; }
  .v2-trust__inner { grid-template-columns: minmax(0, 1fr); }
  .v2-trust__item + .v2-trust__item { border-left: 0; border-top: 1px solid var(--hairline); }
}
/* Phone: hoodie was grazing the headline by ~14px */
@media (max-width: 767px) {
  .v2-hero--float .v2-hero__center { padding-block: 178px 140px; }
}
/* Very wide screens: pieces sit far from the copy, so they take a little more presence */
@media (min-width: 1600px) {
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(1),
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(2) { --w: 300px !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(3),
  .v2-hero--float .v2-float[data-tier="2"] { --w: 230px !important; }
  .v2-hero--float .v2-float[data-tier="3"] { --w: 110px !important; }
}

/* ============================================================
   Client review round (Sep 3): hero copy block grows and loses its second
   button, a launch note sits under a hairline, brands get a subline, the
   capabilities title and partner mark scale up, and image-lockup tiles keep
   their names for screen readers only.
   ============================================================ */
.v2-hero--float .v2-hero__center { max-width: 48rem; }
@media (min-width: 1024px) {
  .v2-hero--float .v2-hero__center { padding-block: clamp(96px, 11vh, 128px) clamp(100px, 12vh, 140px); }
}
/* The bar's full sentence repeats in the hero; on phones keep the title and the link. */
@media (max-width: 767px) {
  .v2-announce__detail { display: none; }
}
.v2-hero--float .v2-h1 { font-size: clamp(44px, 5.6vw, 78px); }
.v2-hero--float .v2-lede { font-size: clamp(17px, 1.35vw, 20px); max-width: 52ch; margin-top: 18px; }
.v2-hero__opening {
  display: block;
  max-width: 40rem;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-strong);
  text-align: center;
}
.v2-hero--float .v2-hero__sub {
  font-family: var(--font-display); font-weight: 800; font-stretch: 82%;
  font-size: clamp(21px, 2.1vw, 28px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--color-field);
  margin: 0 0 10px;
}
.v2-hero__note {
  font-size: clamp(16px, 1.2vw, 18px); line-height: 1.55;
  color: var(--color-ink);
  max-width: 48ch; margin: 0 auto;
  text-wrap: pretty;
}
.v2-hero--float .btn-row { margin-top: 22px; }

.v2-brands__head > div { max-width: 64ch; }
.v2-brands__sub { margin: 12px 0 0; font-size: 16px; line-height: 1.55; color: var(--color-slate); max-width: 60ch; }
.tile--lockup .tile__pill {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.v2-custom .v2-h2 { font-size: clamp(32px, 3.8vw, 50px); }
.v2-custom__head .v2-powered { font-size: 13px; gap: 14px; margin-top: 6px; }
.v2-custom__head .v2-powered img { height: 40px; }

/* Giveaway band: the prize composite is a cutout, so it floats on the red
   without a frame or a shadow. */
.v2-giveaway__media img { border-radius: 0; box-shadow: none; }

@media (max-width: 767px) {
  .v2-hero__opening { margin-top: 20px; padding-top: 16px; }
  .v2-brands__sub { font-size: 15px; }
}

/* Laptop widths: the wider copy column meets the corner pieces, so the headline
   steps down a notch and the two top pieces sit a little further out. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .v2-hero--float .v2-h1 { font-size: clamp(44px, 5.2vw, 78px); }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(1) { --x: 0.5% !important; }
  .v2-hero--float .v2-float[data-tier="1"]:nth-child(2) { --x: 80% !important; }
}

/* Wide screens: the low pieces grow with the tier sizes above, so the speaker,
   cap and ball step up and the cap shrinks back to a cap. */
@media (min-width: 1600px) {
  .v2-hero--float .v2-float:nth-child(6) { --w: 190px !important; --y: 76% !important; }
  .v2-hero--float .v2-float:nth-child(7) { --w: 170px !important; --y: 77% !important; }
  .v2-hero--float .v2-float:nth-child(9) { --y: 85% !important; }
}
/* Phones: the partner line stays on one line beside a smaller mark. */
@media (max-width: 767px) {
  .v2-custom__head .v2-powered { flex-wrap: nowrap; align-items: center; gap: 12px; }
  .v2-custom__head .v2-powered span { white-space: nowrap; }
  .v2-custom__head .v2-powered img { height: 30px; }
}

/* ============================================================
   Supplier partners section: your brand, your market, your people
   ============================================================ */
.v2-partners { background: var(--color-bone); }
.v2-partners__head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.v2-partners__head .v2-lede { max-width: 46ch; }
.v2-partners__aside { padding-top: 6px; }
.v2-partners__aside p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--color-slate); }
.v2-partners__aside p + p { margin-top: 14px; }
.v2-suppliers { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.v2-suppliers__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.v2-suppliers__row li + li { border-left: 1px solid var(--hairline); }
.v2-suppliers__logo { display: flex; align-items: center; justify-content: center; width: 100%; padding: 22px 20px; background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer; }
.v2-suppliers__logo img { height: 60px; width: auto; display: block; filter: grayscale(1); opacity: 0.85; transition: opacity 0.2s ease, filter 0.2s ease; }
.v2-suppliers__logo:hover img, .v2-suppliers__logo:focus-visible img, .v2-suppliers__logo.is-active img { filter: none; opacity: 1; }
.v2-suppliers__logo.is-active { border-bottom-color: var(--color-field); }
.v2-suppliers__logo:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: -2px; }
.v2-suppliers__desc { margin: 0; padding: 14px 16px; text-align: center; font-size: 14px; line-height: 1.5; color: var(--color-slate); border-top: 1px solid var(--hairline); min-height: 48px; }
.v2-how { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); list-style: none; margin: clamp(40px, 5vw, 64px) 0 0; padding: 0; }
.v2-how__step { padding-top: 18px; border-top: 1px solid var(--hairline-strong); }
.v2-how__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--color-field); font-variant-numeric: tabular-nums; margin-bottom: 10px; }
.v2-how h3 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 20px; letter-spacing: -0.02em; color: var(--color-ink); margin: 0 0 8px; }
.v2-how p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--color-slate); }
.v2-ask { margin-top: clamp(40px, 5vw, 64px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px 40px; padding: clamp(24px, 3vw, 36px); background: var(--color-paper); border: 1px solid var(--hairline); border-radius: var(--v2-radius); }
.v2-ask__title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; color: var(--color-ink); margin: 0 0 6px; }
.v2-ask p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-slate); max-width: 52ch; }
.v2-ask .btn { white-space: nowrap; }
.v2-custom__claim { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; color: var(--color-ink); margin: 0 0 10px; }
@media (min-width: 1600px) {
  .v2-hero--float .v2-float:nth-child(8) { --w: 140px !important; }
}
@media (max-width: 1023px) {
  .v2-partners__head { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .v2-partners__aside { padding-top: 0; }
}
@media (max-width: 767px) {
  .v2-suppliers__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-suppliers__row li + li { border-left: 0; }
  .v2-suppliers__row li:nth-child(even) { border-left: 1px solid var(--hairline); }
  .v2-suppliers__row li:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .v2-suppliers__logo img { height: 44px; }
  .v2-how { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .v2-ask .btn { width: 100%; }
}

/* ============================================================
   Exclusive drops teaser on the homepage
   ============================================================ */
.v2-drops { background: var(--color-ink-deep); color: #fff; padding-block: clamp(64px, 7vw, 104px); }
.v2-drops__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.v2-drops .v2-h2 { color: #fff; }
.v2-drops__lede { color: var(--on-dark-soft); font-size: 17px; line-height: 1.65; max-width: 48ch; margin: 16px 0 0; }
.v2-drops .btn-row { margin-top: 28px; align-items: center; gap: 22px; }
.v2-drops__more { color: #fff; font-weight: 600; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.v2-drops__more:hover { color: var(--v2-gold); }
.v2-drops__ways { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.v2-drops__ways li { padding: 22px 24px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--v2-radius); background: rgba(255, 255, 255, 0.04); }
.v2-drops__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; color: var(--v2-gold); margin-bottom: 8px; }
.v2-drops__ways h3 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 19px; letter-spacing: -0.02em; color: #fff; margin: 0 0 6px; }
.v2-drops__ways p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--on-dark-soft); }
@media (max-width: 1023px) {
  .v2-drops__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

/* "Have something in mind": the button and the partner credit share one row */
.v2-ask__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; flex: none; }
.v2-ask__partner { margin: 0; flex-direction: row; text-align: left; gap: 12px; }
.v2-ask__partner img { height: 28px; }
@media (max-width: 767px) {
  .v2-ask__actions { flex: 1 1 100%; min-width: 0; align-items: stretch; flex-direction: column; gap: 18px; }
  .v2-ask__actions .btn { width: 100%; justify-content: center; white-space: normal; }
  .v2-ask__partner { flex-wrap: wrap; row-gap: 8px; }
  .v2-ask__partner img { height: 24px; max-width: 100%; }
}
