/* =========================================================
   One Percent Movement — Waitlist
   Locked to original OPM tokens (Australian English throughout)
   ALLOWED COLOURS ONLY:
     #1a1e21  dark bg + dark text
     #cc7243  orange accent
     #edebe8  light section bg
     #e5e3e0  app-preview card bg
     #ffffff  pure white
     rgba(26,30,33,0.28) rgba(237,235,232,0.9) rgba(26,30,33,0.72)
     rgba(26,30,33,0.14) rgba(0,0,0,0.12) rgba(0,0,0,0.1)
   ========================================================= */

:root {
  --bg:        #1a1e21;
  --bg-light:  #edebe8;
  --card:      #e5e3e0;
  --ink:       #1a1e21;
  --white:     #ffffff;
  --orange:    #cc7243;
  --radius:    12px;
  --shadow:    0px 3px 8px rgba(0, 0, 0, 0.12), 0px 6px 20px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; background: var(--bg-light); color: var(--ink); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: termina, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100svh;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: var(--white); }

/* ----- Cursor-reactive glow on primary CTA (set via JS) ----- */
.cursor-glow {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(204, 114, 67, 0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}
.cursor-glow:hover::after { opacity: 1; }

/* ----- Top navigation ----- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  z-index: 80;
  background: rgba(26, 30, 33, 0.72);
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img { width: 64px; height: 64px; }
.nav__brand span {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
}
.nav__cta {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav__cta:hover { background: var(--orange); color: var(--white); }

/* ----- Hero ----- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 96px;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/runner_1.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__fluid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: normal;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26, 30, 33, 0.55) 0%, rgba(26, 30, 33, 0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero__logo {
  width: min(380px, 62vw);
  height: auto;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.hero__title {
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__lede {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white);
  max-width: 520px;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ----- Buttons — only two variants, transparent-to-filled ----- */
.btn-primary {
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: transparent;
  border: 1px solid var(--orange);
  padding: 16px 48px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary:hover { background: var(--orange); color: var(--white); }
.btn-primary:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.btn-ghost {
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
  padding: 16px 48px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-ghost:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: var(--white);
  opacity: 0.6;
  animation: hero-line 2.2s ease-in-out infinite;
}
@keyframes hero-line {
  0%   { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%  { transform: scaleY(1);  transform-origin: top; opacity: 1; }
  100% { transform: scaleY(.2); transform-origin: bottom; opacity: .3; }
}

/* ----- Section scaffolding ----- */
.section {
  position: relative;
  padding: 120px 24px;
  background: var(--bg-light);
  color: var(--ink);
}
@media (max-width: 767px) { .section { padding: 96px 24px; } }
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.section__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section__title {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.section__title strong { font-weight: 900; }
.section__lede {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  margin-top: 18px;
  max-width: 620px;
}

/* ----- Pillars (3 column value strip) — light section ----- */
.pillars { background: var(--bg-light); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 56px;
}
@media (max-width: 860px) {
  .pillars__grid { grid-template-columns: 1fr; }
}
.pillar {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(26, 30, 33, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}
.pillar__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 18px;
}
.pillar__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}
.pillar__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

/* ----- Waitlist (the form section) — dark ----- */
.apply {
  background: var(--bg);
  color: var(--white);
  position: relative;
  z-index: 50;
}
.apply .section__eyebrow { color: var(--orange); }
.apply .section__title   { color: var(--white); }
.apply .section__lede    { color: var(--white); }
.apply__layout {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 0;
  align-items: start;
}
.apply__pitch .section__eyebrow { margin-bottom: 16px; }
.apply__pitch .section__title { margin-bottom: 18px; }
.apply__pitch .section__lede { margin-top: 0; margin-bottom: 32px; max-width: none; }
.apply__pitch > p:first-of-type { margin-top: 0; }
@media (max-width: 1020px) {
  .apply__layout { grid-template-columns: 1fr; }
}
.apply__pitch p { color: var(--white); line-height: 1.8; font-size: 14px; }
.apply__pitch p + p { margin-top: 18px; }
.apply__bullets {
  margin-top: 28px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.apply__bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--white);
}
.apply__bullets li::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* ----- Form card — light card on dark section ----- */
.form-card {
  background: var(--bg-light);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.form-card__heading {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-card__sub {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
@media (max-width: 580px) { .field-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 16px 20px;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  transition: border-color 0.25s ease;
}
.field input::placeholder { color: rgba(26, 30, 33, 0.5); }
.field input:focus {
  outline: none;
  border-color: var(--orange);
}

/* Anchor offset so #eoiForm jumps land below the fixed nav */
#eoiForm { scroll-margin-top: 120px; }

/* Required-field validation — red highlight on submit if empty/invalid */
.field.is-invalid label { color: #cc2929; }
.field.is-invalid input,
.field.is-invalid input:focus { border-color: #cc2929; }
.field.is-invalid input::placeholder { color: rgba(204, 41, 41, 0.55); }

/* Wearables dropdown invalid state — matches field treatment */
.wearables-dropdown.is-invalid .wearables-dropdown__field { border-color: #cc2929; }
.wearables-dropdown.is-invalid .wearables-dropdown__placeholder { color: rgba(204, 41, 41, 0.7); }

/* Honeypot — visually hidden but accessibility-tool-readable */
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Wearables searchable multi-select dropdown */
.wearables { margin-top: 10px; }

.wearables-dropdown {
  position: relative;
  width: 100%;
}
.wearables-dropdown__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 48px 12px 20px;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.wearables-dropdown__field:focus,
.wearables-dropdown[data-open="true"] .wearables-dropdown__field {
  outline: none;
  border-color: var(--orange);
}
.wearables-dropdown__field:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.wearables-dropdown__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  align-items: center;
  min-height: 30px;
}
.wearables-dropdown__placeholder {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(26, 30, 33, 0.5);
  text-transform: none;
}
.wearables-dropdown.has-selection .wearables-dropdown__placeholder { display: none; }

.wearables-dropdown__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 4px 4px 12px;
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  line-height: 1.4;
}
.wearables-dropdown__chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.wearables-dropdown__chip-remove:hover { color: var(--bg-light); }
.wearables-dropdown__chip-remove:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

.wearables-dropdown__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  transition: transform 0.25s ease;
  pointer-events: none;
}
.wearables-dropdown[data-open="true"] .wearables-dropdown__chevron {
  transform: translateY(-50%) rotate(-90deg);
}

.wearables-dropdown {
  position: relative;
  width: 100%;
  z-index: 60;
}
.wearables-dropdown[data-open="true"] { z-index: 75; }
.wearables-dropdown__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 75;
  max-height: 440px;
  overflow-y: auto;
  background: var(--bg-light);
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow);
  scrollbar-gutter: stable;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--bg-light);
}
.wearables-dropdown__panel::-webkit-scrollbar {
  width: 12px;
}
.wearables-dropdown__panel::-webkit-scrollbar-track {
  background: var(--bg-light);
}
.wearables-dropdown__panel::-webkit-scrollbar-thumb {
  background: var(--ink);
  border: 0;
  border-radius: 0;
}
.wearables-dropdown__panel[hidden] { display: none; }

.wearables-dropdown__search {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 16px 18px 14px;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(26, 30, 33, 0.14);
}
.wearables-dropdown__filter {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 8px 4px;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  transition: border-color 0.25s ease;
}
.wearables-dropdown__filter::placeholder { color: rgba(26, 30, 33, 0.5); }
.wearables-dropdown__filter:focus {
  outline: none;
  border-bottom-color: var(--orange);
}

.wearables-dropdown__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 16px 20px;
}
@media (max-width: 900px) {
  .wearables-dropdown__options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .wearables-dropdown__options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.wearables-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 58px;
  padding: 8px 6px;
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.wearables-pill img {
  width: auto;
  height: 32px;
  max-width: 78px;
  max-height: 32px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* When a logo image is present, hide the redundant text label
   (most brand logos already contain the wordmark — Apple/Fitbit icon-only logos
   stay recognisable on their own). Label remains in DOM for screen readers. */
.wearables-pill:has(img) .wearables-pill__label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.marquee__pill:has(img) .marquee__pill-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
/* PNG logos from DDG often carry a white tile around the mark — drop it
   on the default (white-pill) state only. Hover and selected states already
   apply brightness(0) invert(1), which neutralises tile + colour together. */
.wearables-pill img[data-logo-format="png"] {
  mix-blend-mode: multiply;
}
.wearables-pill:hover img[data-logo-format="png"],
.wearables-pill.is-active img[data-logo-format="png"],
.wearables-pill.is-selected img[data-logo-format="png"] {
  mix-blend-mode: normal;
}
.wearables-pill__label {
  display: block;
  line-height: 1.25;
}
.wearables-pill:hover,
.wearables-pill.is-active {
  background: var(--ink);
  color: var(--bg-light);
}
.wearables-pill:hover img,
.wearables-pill.is-active img {
  filter: brightness(0) invert(1);
}
.wearables-pill.is-selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.wearables-pill.is-selected img {
  filter: brightness(0) invert(1);
}
.wearables-pill.is-selected .wearables-pill__label::before {
  content: "\2713 ";
  font-weight: 900;
}
.wearables-pill:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.wearables-pill.is-hidden { display: none; }

.wearables-dropdown__empty {
  padding: 8px 16px 16px;
  font-family: termina, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 30, 33, 0.72);
}

.wearables__other {
  margin-top: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.wearables__other.is-visible { display: flex; }
.wearables__other-label {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.wearables__other input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 16px 20px;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-size: 14px;
}
.wearables__other input::placeholder { color: rgba(26, 30, 33, 0.5); }
.wearables__other input:focus {
  outline: none;
  border-color: var(--orange);
}

.form-submit {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.form-submit__legal {
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 1px;
  max-width: 320px;
  line-height: 1.6;
  text-transform: uppercase;
}
.form-submit__btn {
  position: relative;
  min-width: 220px;
  padding: 16px 48px;
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.form-submit__btn:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}
.form-submit__btn:disabled { opacity: 0.65; cursor: progress; }
.form-submit__btn .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(26, 30, 33, 0.28);
  border-top-color: var(--ink);
  animation: spin 0.7s linear infinite;
  margin-right: 10px;
  vertical-align: -2px;
}
.form-submit__btn.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  margin-top: 18px;
  padding: 14px 20px;
  border-radius: 0;
  font-family: termina, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  display: none;
}
.form-msg.is-visible { display: block; }
.form-msg--error {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.form-msg--success {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

/* ----- App preview gallery — light section, cream cards ----- */
.preview {
  background: var(--bg-light);
  color: var(--ink);
}
.preview .section__eyebrow { color: var(--orange); }
.preview .section__title   { color: var(--ink); }
.preview .section__lede    { color: var(--ink); }
/* Auto-scrolling carousel: 3 cards visible, all 6 in one row, slow left drift */
.preview__grid {
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.preview__track {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.preview__track.is-dragging { cursor: grabbing; }
.preview__track.is-dragging * { pointer-events: none; }
/* Animation handled by JS so we can mix auto-drift with grab-to-pan. */
.preview__track img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
.preview__card {
  flex: 0 0 calc((100vw - 48px - 2 * clamp(20px, 3vw, 36px)) / 3);
  max-width: calc((1180px - 2 * clamp(20px, 3vw, 36px)) / 3);
  box-sizing: border-box;
}
@media (max-width: 860px) {
  .preview__card { flex: 0 0 calc((100vw - 48px - clamp(20px, 3vw, 36px)) / 2); max-width: none; }
}
@media (max-width: 540px) {
  .preview__card {
    flex: 0 0 58vw;
    max-width: none;
    padding: 16px;
    gap: 12px;
  }
  .preview__card h3 { font-size: 12px; }
  .preview__card p { font-size: 12px; line-height: 1.6; }
}
@media (prefers-reduced-motion: reduce) {
  .preview__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .preview__grid { mask-image: none; -webkit-mask-image: none; }
  .preview__card { flex: 0 0 calc((100% - 2 * clamp(20px, 3vw, 36px)) / 3); }
}
.preview__card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.preview__card:hover {
  transform: translateY(-2px);
}
.preview__card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: var(--card);
}
.preview__card h3 {
  font-family: termina, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}
.preview__card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

/* ----- Closing CTA — dark section ----- */
.closing {
  position: relative;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  padding: 120px 24px;
}
@media (max-width: 767px) { .closing { padding: 96px 24px; } }
.closing__title {
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 18px;
}
.closing__lede {
  color: var(--white);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ----- Footer — dark ----- */
.foot {
  border-top: 1px solid rgba(26, 30, 33, 0.14);
  padding: 40px 24px 32px;
  background: var(--bg);
  color: var(--white);
}
body.is-sticky-cta .foot { padding-bottom: 104px; }
@media (max-width: 767px) {
  body.is-sticky-cta .foot { padding-bottom: 96px; }
}
.foot__row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__left {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.foot__brand img { width: 40px; height: 40px; display: block; }
.foot__meta {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.foot__admin {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(237, 235, 232, 0.9);
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  transition: color 0.25s ease;
}
.foot__admin:hover { color: var(--orange); }

/* ----- Admin modal ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__veil {
  position: absolute;
  inset: 0;
  background: rgba(26, 30, 33, 0.72);
}
.modal__card {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-light);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  z-index: 1;
  color: var(--ink);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.25s ease;
}
.modal__close:hover { color: var(--orange); }
.modal__title {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.modal__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.modal__field label {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.modal__field input {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 16px 20px;
  color: var(--ink);
  font-family: termina, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}
.modal__field input:focus {
  outline: none;
  border-color: var(--orange);
}
.modal__msg {
  font-family: termina, sans-serif;
  font-size: 12px;
  color: var(--orange);
  min-height: 16px;
  margin: 6px 0 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.modal__msg.is-success { color: var(--ink); }
.modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.modal__actions button {
  flex: 1;
  padding: 16px 24px;
  font-family: termina, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.modal__unlock {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.modal__unlock:hover { background: var(--ink); color: var(--white); }
.modal__download {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.modal__download:hover { background: var(--orange); color: var(--white); }

.modal__unlocked { display: none; }
.modal__unlocked.is-visible { display: block; }
.modal__count {
  font-family: termina, sans-serif;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.modal__count strong {
  display: block;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--orange);
  margin-bottom: 4px;
}

/* ----- Reveal-on-scroll baseline ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Cinematic page intro curtain ----- */
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #1a1e21;
  opacity: 1;
  pointer-events: none;
  transition: opacity 700ms ease;
}
body.is-intro-done .intro-curtain { opacity: 0; }
body.is-intro .hero__logo,
body.is-intro .hero__eyebrow,
body.is-intro .hero__title,
body.is-intro .hero__lede,
body.is-intro .hero__cta-row,
body.is-intro .member-count,
body.is-intro .hero__scroll { opacity: 0; }
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
}
.hero__title .word.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms ease, transform 480ms ease;
}

/* ----- Magnetic + ripple button micro-physics ----- */
.magnetic {
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.magnetic .ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(204, 114, 67, 0.4);
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  animation: opmRipple 500ms ease-out forwards;
  z-index: 0;
}
@keyframes opmRipple {
  to { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}
.magnetic > * { position: relative; z-index: 1; }

/* ----- Live waitlist count under hero CTA ----- */
.member-count {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.member-count[hidden] { display: none; }
.member-count__label {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.member-count__label--trail { color: rgba(255, 255, 255, 0.55); }
.member-count__num {
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--orange);
  line-height: 1;
}

/* ----- Form success-state celebration ----- */
.success-state {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 64px) clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  color: var(--ink);
}
.success-state[hidden] { display: none; }
.success-state__confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.success-state__heading {
  position: relative;
  z-index: 1;
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 18px;
}
.success-state__position {
  position: relative;
  z-index: 1;
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.success-state__position[hidden] { display: none; }
.success-state__micro {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 28px;
}
.success-state__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.share-toast {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 10px 18px;
  display: inline-block;
  font-family: termina, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
  opacity: 0;
  transition: opacity 220ms ease;
}
.share-toast[hidden] { display: none; }
.share-toast.is-visible { opacity: 1; }
.form-card.is-collapsing {
  overflow: hidden;
  transition: max-height 320ms ease, opacity 240ms ease, padding 320ms ease, border-color 320ms ease;
}
.form-card[hidden] { display: none; }

/* ----- Sticky morphing CTA bar ----- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--orange);
  transform: translateY(100%);
  transition: transform 280ms ease;
  pointer-events: none;
}
body.is-sticky-cta .sticky-cta {
  transform: translateY(0);
  pointer-events: auto;
}
body.is-signed-up .sticky-cta { display: none !important; }
.sticky-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 56px);
}
.sticky-cta__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.sticky-cta__brand img { width: 44px; height: 44px; display: block; }
.sticky-cta__meta {
  flex: 1;
  text-align: center;
  font-family: termina, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(237, 235, 232, 0.7);
}
@media (max-width: 767px) {
  .sticky-cta__meta { display: none; }
}
.sticky-cta__btn {
  font-family: termina, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sticky-cta__btn:hover { background: var(--orange); color: var(--white); }
.sticky-cta__btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ----- Wearables marquee strip ----- */
.marquee-section {
  background: var(--card);
  color: var(--ink);
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) { .marquee-section { padding: 64px 0; } }
.marquee-section__inner {
  max-width: 100%;
  margin: 0 auto;
}
.marquee-section__heading {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}
.marquee {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.marquee__row {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.marquee__row--slow .marquee__track { animation: opmMarqueeLeft 100s linear infinite; }
.marquee__row--mid  .marquee__track { animation: opmMarqueeRight 70s linear infinite; }
.marquee__row--fast .marquee__track { animation: opmMarqueeLeft 45s linear infinite; }
.marquee__row:hover .marquee__track { animation-play-state: paused; }

.marquee__pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-family: termina, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__pill img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.marquee__pill img[data-logo-format="png"] { mix-blend-mode: multiply; }
.marquee__pill-label { display: inline-block; line-height: 1; }

/* Prominence tiers — slower rows read larger / brighter */
.marquee__row--slow .marquee__pill {
  height: 72px;
  gap: 14px;
  padding: 12px 22px;
  font-size: 14px;
}
.marquee__row--slow .marquee__pill img { max-width: 130px; max-height: 44px; }

.marquee__row--mid .marquee__pill {
  height: 54px;
  gap: 10px;
  padding: 8px 16px;
  font-size: 12px;
  opacity: 0.92;
}
.marquee__row--mid .marquee__pill img { max-width: 95px; max-height: 32px; }

.marquee__row--fast .marquee__pill {
  height: 42px;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  opacity: 0.72;
}
.marquee__row--fast .marquee__pill img { max-width: 72px; max-height: 24px; }

@keyframes opmMarqueeLeft  { to { transform: translateX(-50%); } }
@keyframes opmMarqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__row--slow .marquee__track,
  .marquee__row--mid  .marquee__track,
  .marquee__row--fast .marquee__track { animation: none; transform: none; }
  .marquee__row { mask-image: none; -webkit-mask-image: none; }
}

/* ----- Universal focus ring for interactive elements ----- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__scroll::after { animation: none; }
  .intro-curtain { display: none; }
  body.is-intro .hero__logo,
  body.is-intro .hero__eyebrow,
  body.is-intro .hero__title,
  body.is-intro .hero__lede,
  body.is-intro .hero__cta-row,
  body.is-intro .member-count,
  body.is-intro .hero__scroll { opacity: 1; }
  .hero__title .word { opacity: 1; transform: none; }
  .magnetic { transform: none !important; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    padding: 0 24px;
    justify-content: center;
  }
}

/* Touch / coarse pointer — disable magnetic translate */
@media (pointer: coarse) {
  .magnetic { transform: none !important; }
}

/* ----- Mission section ----- */
.mission {
  background: var(--bg-light);
  color: var(--ink);
  text-align: center;
}
.mission__inner { max-width: 820px; }
.mission .section__eyebrow {
  color: var(--ink);
  opacity: 0.55;
  text-align: center;
}
.mission__title {
  text-align: center;
  font-size: clamp(24px, 3.4vw, 32px);
}
.mission__body {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: left;
}
.mission__body p {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
}
.mission__body p + p { margin-top: 22px; }
.mission__rule {
  border: 0;
  border-top: 1px solid rgba(26, 30, 33, 0.28);
  width: 80px;
  margin: 48px auto 32px;
}
.mission__tagline {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--ink);
}

/* ----- Wearables intro line (above dropdown) ----- */
.wearables__intro {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}

/* ----- Member rewards section ----- */
.rewards {
  background: var(--card);
  color: var(--ink);
  text-align: center;
}
.rewards__inner { max-width: 820px; }
.rewards .section__eyebrow { color: var(--orange); }
.rewards__body {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 16px;
}

/* ----- Closing tagline variant ----- */
.closing__title--tagline {
  letter-spacing: 2px;
  font-size: clamp(36px, 6vw, 72px);
}

/* ----- Hero intake eyebrow (time-pressure ribbon above logo) ----- */
.hero__eyebrow--intake {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--orange);
  color: var(--orange);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

/* ----- The Loop section (dark) ----- */
.loop {
  background: #1a1e21;
  color: var(--white);
  text-align: center;
}
.loop .section__eyebrow {
  color: var(--white);
  opacity: 0.6;
}
.loop__title {
  color: var(--white);
  text-align: center;
}
.loop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 56px;
  text-align: left;
}
@media (max-width: 860px) {
  .loop__grid { grid-template-columns: 1fr; }
}
.loop__card {
  padding: 32px;
  border: 1px solid rgba(237, 235, 232, 0.14);
  border-radius: var(--radius);
  background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.loop__card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}
.loop__num {
  display: block;
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--orange);
  margin-bottom: 18px;
}
.loop__card-title {
  font-family: termina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.loop__card-body {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--white);
  opacity: 0.85;
}
.loop__footer {
  margin: 56px auto 0;
  max-width: 480px;
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
  opacity: 0.7;
  text-align: center;
}

/* ----- The Drop section (light, edebe8 cream) ----- */
.drop {
  background: var(--bg-light);
  color: var(--ink);
}
.drop__inner { max-width: 1180px; }
.drop__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .drop__layout { grid-template-columns: 1fr; }
}
.drop__body p {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  max-width: 480px;
}
.drop__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.drop__stat {
  padding: 24px;
  border: 1px solid rgba(26, 30, 33, 0.14);
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s ease;
}
.drop__stat:hover { border-color: var(--orange); }
.drop__stat-label {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}
.drop__stat-num {
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  line-height: 1;
  color: var(--orange);
}
.drop__stat-foot {
  font-family: termina, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ----- Proof Banner ----- */
.proof-banner {
  background: #0c0d10;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.proof-banner__inner {
  max-width: 1180px;
}
.proof-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 860px) {
  .proof-banner__list { grid-template-columns: 1fr; gap: 36px; }
}
.proof-banner__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(204, 114, 67, 0.35);
}
.proof-banner__num {
  font-family: termina, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--orange);
}
.proof-banner__line {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.2px;
}
