/* =====================================================================
   ABOUT — Drink Zero Hour  (native to index.html)
   ===================================================================== */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --olive: #2f3a2f;
  --olive-light: #415041;
  --gold: #c9a84c;
  --font-head: 'Anton', 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.has-bg-image {
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0;
}

/* =====================================================================
   FIXED BACKGROUND IMAGE
   ===================================================================== */
.fixed-bg-image,
.fixed-bg-image--desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

@media screen and (min-width: 780px) {
  .fixed-bg-image {
    display: none;
  }

  .fixed-bg-image--desktop {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  .fixed-bg-image--desktop {
    display: none;
  }

  .fixed-bg-image {
    display: block;
  }
}

body.gradient::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: -1;
  pointer-events: none;
}

/* =====================================================================
   BUTTON SHINE HOVER
   ===================================================================== */
.hover--button--active {
  position: relative;
  overflow: hidden;
  transition: all 0.4s linear;
}

.hover--button--active::before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 3.38%, rgba(255, 255, 255, 0.51) 49.78%, rgba(255, 255, 255, 0));
  width: 100px;
  height: 200px;
  position: absolute;
  top: -100%;
  left: -100%;
  transform: rotate(-35deg);
  transition: all 0.4s linear;
  pointer-events: none;
}

.hover--button--active:hover::before {
  left: 100%;
  transform: rotate(0);
}

.inner-text-btn {
  position: relative;
  z-index: 1;
}

/* =====================================================================
   FIXED SIDEBAR RAILS
   ===================================================================== */
.fxl-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(-90deg);
  display: flex;
  flex-direction: row-reverse;
  gap: 0;
  z-index: 990;
  pointer-events: none;
}

.fxl-item {
  pointer-events: all;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.fxl-item:hover {
  background: rgba(47, 58, 47, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.fxl-icon {
  display: inline-flex;
  transform: rotate(90deg);
  color: #fff;
}

@media (max-width: 769px) {
  .fxl-sidebar {
    display: none;
  }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.zh-header-wrap {
  position: relative;
  z-index: 999;
}

.zh-announce {
  height: 37px;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.zh-announce__text {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.zh-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 99px;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.zh-navbar.zh-scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.12);
}

.zh-logo {
  flex-shrink: 0;
  width: 60px;
}

.zh-logo img {
  width: 100%;
  height: 49.29px;
  max-height: 49.29px;
  object-fit: contain;
}

.zh-nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(11, 11, 11, 0.5);
  border-radius: 30px;
  padding: 0 10px;
  height: 59px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  list-style: none;
  margin: 0;
}

.zh-nav-pill li {
  margin: 0;
  padding: 0;
}

.zh-nav-pill a {
  color: #fff;
  font-size: 14px;
  padding: 8px 13px;
  border-radius: 20px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.zh-nav-pill a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.zh-nav-pill a.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.zh-nav-pill .zh-pill-preorder {
  background: var(--olive);
  color: #fff;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.zh-nav-pill .zh-pill-preorder:hover {
  background: var(--olive-light);
}

.zh-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zh-nav-icon,
.zh-cart-wrap {
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.zh-nav-icon:hover,
.zh-cart-wrap:hover {
  opacity: 0.7;
}

.zh-nav-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.zh-cart-wrap {
  position: relative;
}

.zh-cart-wrap svg {
  width: 20px;
  height: 24px;
}

.zh-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #8b3a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.zh-cart-count[data-count="0"] {
  display: none;
}

.zh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.zh-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.zh-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.zh-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.zh-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.zh-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 20px 60px;
  overflow-y: auto;
  flex-direction: column;
}

.zh-mobile-nav.zh-mobile-open {
  display: flex;
}

.zh-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zh-mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.zh-mobile-nav a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  transition: padding-left 0.2s ease;
}

.zh-mobile-nav a:hover {
  padding-left: 8px;
}

.zh-mobile-preorder {
  margin-top: 40px;
  display: inline-flex !important;
  padding: 14px 36px !important;
  background: var(--olive);
  color: #fff;
  border-radius: 30px;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

.zh-mobile-nav-foot {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}

.zh-mobile-nav-foot a {
  padding: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.45);
  text-transform: none !important;
}

body.zh-menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .zh-navbar {
    padding: 0 28px;
  }
}

@media (max-width: 900px) {
  .zh-nav-pill {
    display: none;
  }

  .zh-hamburger {
    display: flex;
    order: -1;
  }

  .zh-navbar {
    height: 72px;
  }

  .zh-nav-right {
    gap: 12px;
  }

  .zh-logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .zh-nav-right>.zh-nav-icon:first-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .zh-navbar {
    padding: 0 15px;
  }

  .zh-announce__text {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
}

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   1) ABOUT HERO  — split layout, can image, stripe divider
   ===================================================================== */
.abt-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  max-height: 860px;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.4) 0%, rgba(17, 17, 17, 0.55) 100%);
  margin-top: -99px;
  padding-top: 99px;
}

.abt-hero__left {
  width: 55%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 60px 120px;
  z-index: 2;
}

.abt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}

.abt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.abt-hero__emblem-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 18px;
}

.abt-hero__emblem {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.abt-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.abt-hero__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.abt-hero__heading {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 90px);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 22px;
  max-width: 680px;
}

.abt-hero__body {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 0 32px;
}

.abt-hero__btns {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.abt-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  height: 54px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.abt-hero__btn--fill {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
}

.abt-hero__btn--fill:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.abt-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.abt-hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.abt-hero__badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.abt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.abt-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f5a3e;
}

.abt-hero__right {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.abt-hero__right-bg {
  position: absolute;
  inset: 0;
  background: #0b0b0b url('../images/freepik__replace-the-cans-image-in-the-img4-from-the-cans-i__92658.png') center / cover no-repeat;
}

@media (max-width: 1100px) {
  .abt-hero__right-bg {
    background-position: center bottom;
  }
}

.abt-hero__right-vignette {
  display: none;
}

.abt-hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.abt-hero__stripe img {
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .abt-hero {
    flex-direction: column-reverse;
    max-height: none;
    height: auto;
  }

  .abt-hero__left,
  .abt-hero__right {
    width: 100%;
  }

  .abt-hero__left {
    padding: 60px 30px 90px;
  }

  .abt-hero__right {
    aspect-ratio: 4/3;
    min-height: 465px;
  }
}

@media (max-width: 749px) {
  .abt-hero__left {
    padding: 40px 15px 70px;
  }

  .abt-hero__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .abt-hero__btn {
    width: 100%;
  }

  .abt-hero__badges {
    display: none;
  }
}

/* =====================================================================
   2) ICON MARQUEE
   ===================================================================== */
.ai-marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ai-marquee__track {
  display: flex;
  gap: 60px;
  animation: ai-scroll 25s linear infinite;
  will-change: transform;
  width: max-content;
}

.ai-marquee:hover .ai-marquee__track {
  animation-play-state: paused;
}

.ai-marquee__item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.ai-marquee__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.ai-marquee__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-marquee__text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes ai-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 769px) {
  .ai-marquee__track {
    animation-duration: 14s;
  }

  .ai-marquee__icon {
    width: 24px;
    height: 24px;
  }

  .ai-marquee__text {
    font-size: 14px;
  }
}

/* =====================================================================
   3) WHO WE ARE
   ===================================================================== */
.abt-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 20px 100px;
}

.abt-who__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.abt-who__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.abt-who__heading {
  font-family: var(--font-head);
  font-size: 50.52px;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  max-width: 690px;
}

.abt-who__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0;
}

.abt-who__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  width: 100%;
  padding: 10px 40px 0;
}

.abt-who__pillar {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(8px);
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.abt-who__pillar:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(17, 17, 17, 0.75);
  transform: translateY(-2px);
}

.abt-who__pillar-kick {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.abt-who__pillar-title {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.abt-who__pillar-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .abt-who__pillars {
    grid-template-columns: 1fr;
    padding: 10px 15px 0;
  }
}

@media (max-width: 769px) {
  .abt-who {
    padding: 30px 15px 30px;
    gap: 30px;
  }

  .abt-who__heading {
    font-size: 25.63px;
  }
}

/* =====================================================================
   4) BUILT FOR  — tactical card grid
   ===================================================================== */
.abt-for {
  padding: 100px 0 100px;
  background: transparent;
}

.abt-for__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.abt-for__label {
  font-size: 14px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.abt-for__heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50.52px);
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.abt-for__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
}

.abt-for__card {
  aspect-ratio: 475 / 420;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.95) 0%, rgba(11, 11, 11, 0.95) 60%, rgba(47, 58, 47, 0.45) 140%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.25s ease;
}

.abt-for__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(47, 58, 47, 0.4), transparent 55%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.04), transparent 45%);
  pointer-events: none;
}

.abt-for__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.abt-for__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.abt-for__card-num {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.abt-for__card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--olive-light);
  background: rgba(11, 11, 11, 0.5);
}

.abt-for__card-icon svg {
  width: 22px;
  height: 22px;
}

.abt-for__card-body {
  position: relative;
  z-index: 1;
}

.abt-for__card-kick {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.abt-for__card-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
}

.abt-for__card-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .abt-for__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 769px) {
  .abt-for {
    padding: 30px 0 30px;
  }

  .abt-for__header {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .abt-for__grid {
    padding: 0 15px;
    gap: 12px;
  }

  /* Drop the fixed aspect ratio so card grows with content */
  .abt-for__card {
    aspect-ratio: auto;
    padding: 22px 20px;
    min-height: 220px;
    gap: 14px;
  }

  .abt-for__card-icon {
    width: 40px;
    height: 40px;
  }

  .abt-for__card-icon svg {
    width: 18px;
    height: 18px;
  }

  .abt-for__card-num { font-size: 12px; }
  .abt-for__card-kick { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 8px; }
  .abt-for__card-title { font-size: 20px; margin-bottom: 8px; }
  .abt-for__card-text { font-size: 12.5px; line-height: 1.5; }
}

@media (max-width: 540px) {
  .abt-for__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
  }

  .abt-for__card {
    min-height: 200px;
    padding: 24px 22px;
  }

  .abt-for__card-title { font-size: 22px; }
  .abt-for__card-text { font-size: 13.5px; line-height: 1.55; }
}

@media (max-width: 480px) {
  .abt-for__heading {
    font-size: 25.63px;
  }
}

/* =====================================================================
   5) FOUNDER STORY  — split layout with rotating watermark
   ===================================================================== */
.abt-story {
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 620px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
}

.abt-story__left {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-story__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.09;
  animation: abt-rotate 14s linear infinite;
  z-index: 1;
}

@keyframes abt-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.abt-story__hand {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  border-radius: 20px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}

.abt-story__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
}

.abt-story__right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 30px 70px 40px;
}

.abt-story__content {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abt-story__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.abt-story__label::before,
.abt-story__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.abt-story__heading {
  font-family: var(--font-head);
  font-size: 50.52px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.abt-story__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  max-width: 540px;
}

.abt-story__quote {
  margin: 26px auto;
  padding: 20px 24px;
  border-top: 1px solid var(--olive-light);
  border-bottom: 1px solid var(--olive-light);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  max-width: 520px;
  text-align: center;
}

.abt-story__sig {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.abt-story__sig-name {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.abt-story__sig-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .abt-story {
    flex-direction: column;
    min-height: auto;
    padding: 0 20px;
    margin: 30px auto 30px;
  }

  .abt-story__left {
    width: 100%;
    min-height: 380px;
    height: auto;
    overflow: visible;
  }

  .abt-story__hand {
    max-width: 360px;
    width: 100%;
    height: auto;
  }

  .abt-story__watermark {
    width: 300px;
    height: 300px;
  }

  .abt-story__right {
    padding: 40px 20px 50px;
  }

  .abt-story__heading {
    font-size: 25.63px;
  }
}

@media (max-width: 769px) {
  .abt-story__right {
    padding: 40px 15px;
  }

  .abt-story__body {
    font-size: 14px;
  }
}

/* =====================================================================
   6) VALUES MARQUEE
   ===================================================================== */
.zh-scrollbar {
  width: 100%;
  overflow: hidden;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  margin-top: 0;
}

.zh-scrollbar__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 50px;
  animation: abt-scroll 55s linear infinite;
  will-change: transform;
}

.zh-scrollbar:hover .zh-scrollbar__track {
  animation-play-state: paused;
}

@keyframes abt-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.zh-scrollbar__text {
  font-family: var(--font-head);
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.zh-scrollbar__sep {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive-light);
  flex-shrink: 0;
}

@media (max-width: 769px) {
  .zh-scrollbar__text {
    font-size: 18px;
  }

  .zh-scrollbar__track {
    animation-duration: 30s;
    gap: 30px;
  }
}

/* =====================================================================
   7) STRENGTH / QR — exact match with index.html (horizontal cans + QR center, slide-in animation)
   ===================================================================== */
.zh-strength {
  padding: 90px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zh-strength__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 50px;
}

.zh-strength__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  position: relative;
}

.zh-strength__cans-left,
.zh-strength__cans-right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Cans start hidden/collapsed behind the QR. IntersectionObserver toggles
   .zh-cans-visible on .zh-strength__visual to slide them out. */
.zh-strength__cans-left {
  opacity: 0;
  transform: translateX(120px) scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-strength__cans-right {
  opacity: 0;
  transform: translateX(-120px) scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stagger the back cans so they arrive slightly later than the front ones. */
.zh-strength__cans-left .zh-strength__can--back,
.zh-strength__cans-right .zh-strength__can--back {
  transition-delay: 0.15s;
}

.zh-strength__cans-left .zh-strength__can:not(.zh-strength__can--back),
.zh-strength__cans-right .zh-strength__can:not(.zh-strength__can--back) {
  transition-delay: 0.05s;
}

.zh-strength__visual.zh-cans-visible .zh-strength__cans-left,
.zh-strength__visual.zh-cans-visible .zh-strength__cans-right {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.zh-strength__can {
  height: 230px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.zh-strength__can:hover {
  transform: translateY(-10px);
}

.zh-strength__can--back {
  height: 210px;
  opacity: 0.8;
}

.zh-strength__qr {
  width: 230px;
  height: 230px;
  background: #fff;
  border-radius: 14px;
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.zh-strength__qr:hover {
  transform: scale(1.1);
}

.zh-strength__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.zh-strength__heading {
  font-family: var(--font-head);
  font-size: 50.52px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px;
  line-height: 1.05;
}

.zh-strength__body {
  font-size: 18px;
  line-height: 1.4em;
  color: #fff;
  max-width: 100%;
  margin: 0 auto 30px;
}

.zh-strength__scan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .zh-strength__can {
    height: 160px;
  }

  .zh-strength__can--back {
    height: 140px;
  }

  .zh-strength__qr {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 769px) {
  .zh-strength {
    padding: 30px 0;
  }

  .zh-strength__heading {
    font-size: 25.63px;
  }

  .zh-strength__inner {
    padding: 0 15px;
  }

  .zh-strength__body {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .zh-strength__can {
    height: 110px;
  }

  .zh-strength__can--back {
    height: 96px;
  }

  .zh-strength__qr {
    width: 130px;
    height: 130px;
  }
}

/* =====================================================================
   8) FAQ
   ===================================================================== */
.faq--section {
  padding-top: 0;
  padding-bottom: 100px;
}

.faq--section .zh-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.faq--section .zh-faq__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.zh-faq__icon {
  justify-content: center;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
}

.zh-faq__icon svg {
  width: 100%;
  height: 100%;
}

.wrapper--top-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .wrapper--top-section {
    margin-bottom: 3rem;
  }
}

.faq--section .zh-faq__heading {
  font-family: var(--font-head);
  font-size: 50.52px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.faq--section .zh-faq__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

.faq--section .zh-faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 30px;
  height: 56px;
  padding: 0 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.2s;
  width: fit-content;
}

.faq--section .zh-faq__btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.7);
}

.faq--section .zh-faq__right {
  display: flex;
  flex-direction: column;
}

.faq--section .zh-faq__item {
  border: 1px solid #ffffff26;
  padding: 24px 28px;
  border-bottom: none;
}

.zh-faq__item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.zh-faq__item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.faq--section .zh-faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq--section .zh-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 21.33px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  gap: 16px;
  text-align: left;
  padding: 0;
  font-weight: 400;
}

/* Can-shaped toggle icon (rotates when FAQ opens) — used on both about-us and faq pages */
.zh-faq__icon-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  background-image: url("../images/faq-can-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), opacity 0.3s ease;
}

.zh-faq__icon-toggle::before,
.zh-faq__icon-toggle::after {
  content: none;
}

.zh-faq__item.open .zh-faq__icon-toggle {
  transform: rotate(35deg);
  opacity: 1;
}

.faq--section .zh-faq__a {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 14px;
}

.faq--section .zh-faq__a[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .faq--section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq--section .zh-faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 15px;
  }

  .faq--section .zh-faq__heading {
    font-size: 25.63px;
  }

  .faq--section .zh-faq__q {
    font-size: 14.94px;
  }

  .faq--section .zh-faq__item {
    padding: 20px 22px;
  }
}

/* =====================================================================
   9) FINAL CTA
   ===================================================================== */
.abt-final {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.abt-final__bg {
  position: absolute;
  inset: 0;
}

.abt-final__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.92) 35%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.15) 100%),
    url('../images/cta-bg.png') center / cover no-repeat;
}

.abt-final__content {
  position: relative;
  z-index: 2;
  padding: 100px 40px 100px 100px;
  max-width: 680px;
  text-align: left;
}

.abt-final__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.abt-final__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.abt-final__heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}

.abt-final__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px;
  max-width: 500px;
}

.abt-final__btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.abt-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.abt-final__btn--fill {
  background: var(--olive);
  border-color: var(--olive);
}

.abt-final__btn--fill:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
}

.abt-final__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 900px) {
  .abt-final__content {
    padding: 80px 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .abt-final {
    min-height: 60vh;
  }

  .abt-final__content {
    padding: 60px 20px;
    text-align: center;
  }

  .abt-final__label {
    justify-content: center;
  }

  .abt-final__heading {
    font-size: 25.63px;
  }

  .abt-final__body {
    margin-left: auto;
    margin-right: auto;
  }

  .abt-final__btns {
    flex-direction: column;
    width: 100%;
  }

  .abt-final__btn {
    width: 100%;
  }
}

/* =====================================================================
   FOOTER — exact match with index.html (145px headline + 4-col grid + video)
   ===================================================================== */
.zh-footer {
  background: #000;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.zh-footer__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.zh-footer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  z-index: 1;
}

.zh-footer>*:not(.zh-footer__bg-video):not(.zh-footer__overlay) {
  position: relative;
  z-index: 2;
}

.zh-footer__cta {
  padding: 80px 55px 60px;
  display: grid;
  grid-template-columns: 1fr 397px;
  gap: 60px;
  align-items: center;
}

.zh-footer__headline {
  font-family: var(--font-head);
  font-size: 145px;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px;
}

.zh-footer__cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zh-footer__cans {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.zh-footer__can-img {
  height: 155px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.8));
}

.zh-footer__cans-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.zh-footer__preorder-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 25px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.zh-footer__preorder-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.zh-footer__preorder-sub {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 15px 0 0;
}

.zh-footer__links-grid {
  padding: 60px 55px 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zh-footer__col-title {
  font-family: var(--font-head);
  font-size: 28.43px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 30px;
}

.zh-footer__col-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.4em;
  margin: 30px 0;
}

.zh-footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.zh-footer__soc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s;
}

.zh-footer__soc-icon:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.zh-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.zh-footer__link-list a {
  font-size: 14px;
  color: #fff;
  transition: color 0.2s;
}

.zh-footer__link-list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.zh-footer__form-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.zh-footer__email-input {
  flex: 1;
  padding: 12px 28px;
  background: transparent;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  min-width: 0;
}

.zh-footer__email-input::placeholder {
  color: #fff;
}

.zh-footer__email-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.zh-footer__join-btn {
  padding: 12px 28px;
  background: #2f3a2f;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.zh-footer__join-btn:hover {
  background: var(--olive-light);
}

.zh-footer__bottom {
  padding: 24px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.zh-footer__legal {
  display: flex;
  gap: 24px;
}

.zh-footer__legal a {
  font-size: 14px;
  color: #fff;
  transition: color 0.2s;
}

.zh-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.zh-footer__copyright {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

@media (max-width: 1024px) {
  .zh-footer__cta {
    grid-template-columns: 1fr;
    padding: 60px 40px 40px;
  }

  .zh-footer__headline {
    font-size: clamp(36px, 7vw, 70px);
    text-align: center;
  }

  .zh-footer__cta-text {
    text-align: center;
  }

  .zh-footer__links-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }

  .zh-footer__bottom {
    padding: 20px 40px;
  }
}

@media (max-width: 750px) {
  .zh-footer__col-title {
    font-size: 20.25px;
  }
}

@media (max-width: 769px) {
  .zh-footer__cta {
    padding: 30px 15px;
  }

  .zh-footer__links-grid {
    grid-template-columns: 1fr;
    padding: 30px 15px;
  }

  .zh-footer__bottom {
    padding: 30px 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================================
   FAQ PAGE — hero + grouped categories + still-have-questions CTA
   ===================================================================== */
.faq-page__hero {
  position: relative;
  padding: 120px 50px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 58, 47, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.7) 0%, rgba(11, 11, 11, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.faq-page__hero>* {
  position: relative;
  z-index: 1;
}

.faq-page__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.faq-page__hero-eyebrow::before,
.faq-page__hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.faq-page__hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 auto 24px;
  max-width: 880px;
  color: #fff;
}

.faq-page__hero-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto;
}

.faq-page__groups {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 50px 40px;
}

.faq-group {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-group:first-child {
  padding-top: 0;
}

.faq-group:last-child {
  border-bottom: 0;
}

.faq-group__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  max-width: 720px;
}

.faq-group__num {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
  font-weight: 500;
}

.faq-group__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 50.52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.faq-group__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}

/* Reuse .zh-faq__item, .zh-faq__q, .zh-faq__a, .zh-faq__icon-toggle for items */
.faq-group__list {
  display: flex;
  flex-direction: column;
}

.faq-group__list .zh-faq__item {
  border: 1px solid #ffffff26;
  padding: 24px 28px;
  border-bottom: none;
}

.faq-group__list .zh-faq__item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq-group__list .zh-faq__item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-group__list .zh-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 21.33px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  gap: 16px;
  text-align: left;
  padding: 0;
  font-weight: 400;
}

.faq-group__list .zh-faq__a {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 14px;
  max-width: 720px;
}

.faq-group__list .zh-faq__a a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-group__list .zh-faq__a[hidden] {
  display: none;
}

/* Still have questions CTA */
.faq-still {
  padding: 80px 50px 110px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-still__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-still__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.faq-still__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 auto 20px;
  max-width: 640px;
  color: #fff;
}

.faq-still__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 36px;
}

.faq-still__btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.faq-still__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  height: 54px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.faq-still__btn--fill {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
}

.faq-still__btn--fill:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.faq-still__btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.faq-still__btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.faq-still__btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .faq-page__hero {
    padding: 80px 20px 50px;
  }

  .faq-page__groups {
    padding: 50px 20px 30px;
  }

  .faq-group {
    padding: 40px 0;
  }

  .faq-group__list .zh-faq__item {
    padding: 20px 22px;
  }

  .faq-group__list .zh-faq__q {
    font-size: 16px;
  }

  .faq-still {
    padding: 60px 20px 80px;
  }

  .faq-still__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .faq-still__btn {
    width: 100%;
  }
}

/* =====================================================================
   CONTACT PAGE — hero + methods grid + form + info sidebar + FAQ teaser
   ===================================================================== */
.contact-page__hero {
  position: relative;
  padding: 120px 50px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 58, 47, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.7) 0%, rgba(11, 11, 11, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-page__hero>* {
  position: relative;
  z-index: 1;
}

.contact-page__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.contact-page__hero-eyebrow::before,
.contact-page__hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.contact-page__hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 auto 24px;
  max-width: 880px;
  color: #fff;
}

.contact-page__hero-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto;
}

/* Methods grid */
.contact-methods {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 50px 40px;
}

.contact-methods__head {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods__label {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-methods__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50.52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  position: relative;
  padding: 30px 26px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.92) 0%, rgba(11, 11, 11, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.25s ease, background 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.95), rgba(15, 15, 15, 0.95));
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-light);
  margin-bottom: 12px;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card__kick {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--olive-light);
  text-transform: uppercase;
}

.contact-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
}

.contact-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-card__link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 0.2s ease;
}

.contact-card__link:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-card__link svg {
  width: 14px;
  height: 14px;
}

/* Form + info sidebar */
.contact-form-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 50px 100px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 44px 44px 40px;
  backdrop-filter: blur(8px);
}

.contact-form__head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form__label {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-form__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.05;
}

.contact-form__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.55;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form__field label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.5);
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.contact-form__select option {
  background: #111;
  color: #fff;
}

.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-form__fine {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--olive);
  border: 1px solid var(--olive);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  height: 54px;
}

.contact-form__submit:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.contact-form__submit svg {
  width: 16px;
  height: 16px;
}

/* Info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__block {
  padding: 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(8px);
}

.contact-info__block-kick {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info__block-title {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.contact-info__block-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.contact-info__block-text a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info__block-text a:hover {
  border-color: #fff;
}

.contact-info__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-info__hours li span:first-child {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-info__socials {
  display: flex;
  gap: 8px;
}

.contact-info__soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-info__soc:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.contact-info__soc svg {
  width: 16px;
  height: 16px;
}

/* FAQ teaser */
.contact-faq-cta {
  padding: 80px 50px 110px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-faq-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-faq-cta__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.contact-faq-cta__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 auto 18px;
  max-width: 600px;
  color: #fff;
}

.contact-faq-cta__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 32px;
}

.contact-faq-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: 54px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.contact-faq-cta__btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
  transform: translateY(-1px);
}

.contact-faq-cta__btn svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-methods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-page__hero {
    padding: 80px 20px 50px;
  }

  .contact-methods {
    padding: 50px 20px 30px;
  }

  .contact-methods__grid {
    gap: 12px;
  }

  .contact-card {
    padding: 24px 22px 26px;
  }

  .contact-form-wrap {
    padding: 30px 20px 70px;
  }

  .contact-form {
    padding: 28px 24px 30px;
    border-radius: 12px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info__block {
    padding: 22px;
  }

  .contact-faq-cta {
    padding: 60px 20px 80px;
  }
}

@media (max-width: 500px) {
  .contact-methods__grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================================
   POLICY PAGES — shared template (Privacy / Terms / Shipping / Returns / Accessibility)
   ===================================================================== */
.policy-page__hero {
  position: relative;
  padding: 110px 50px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.policy-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 58, 47, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.7) 0%, rgba(11, 11, 11, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.policy-page__hero > * { position: relative; z-index: 1; }

.policy-page__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0 0 22px;
}

.policy-page__hero-eyebrow::before,
.policy-page__hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.policy-page__hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 76px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 auto 18px;
  max-width: 820px;
  color: #fff;
}

.policy-page__hero-meta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.policy-page__hero-meta strong { color: #fff; font-weight: 500; }

/* Container */
.policy-page__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 50px 100px;
}

/* Prose typography for policy content */
.policy-prose {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  line-height: 1.75;
}

.policy-prose > * + * { margin-top: 18px; }
.policy-prose > h2 + *,
.policy-prose > h3 + * { margin-top: 24px; }

.policy-prose h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-top: 56px;
  margin-bottom: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.policy-prose h3 {
  font-family: var(--font-head);
  font-size: 19px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 38px;
  margin-bottom: 0;
}

.policy-prose p {
  margin: 0;
}

.policy-prose strong {
  color: #fff;
  font-weight: 500;
}

.policy-prose a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.policy-prose__pledge {
  position: relative;
  padding: 22px 26px 22px 28px;
  border-left: 3px solid var(--olive-light);
  background: rgba(47, 58, 47, 0.18);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
}

.policy-prose__pledge strong {
  letter-spacing: 0.04em;
  color: #9bc18b;
}

@media (max-width: 600px) {
  .policy-prose__pledge { padding: 18px 20px 18px 22px; font-size: 15px; }
}

.policy-prose a:hover { border-color: #fff; }

.policy-prose ul,
.policy-prose ol {
  padding-left: 22px;
  margin: 0;
}

.policy-prose ul li,
.policy-prose ol li {
  margin-bottom: 8px;
}

.policy-prose ul li::marker { color: var(--olive-light); }
.policy-prose ol li::marker { color: var(--olive-light); font-weight: 600; }

/* Side meta box (e.g., "Need help? Contact us.") */
.policy-meta-card {
  margin-top: 50px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
}

.policy-meta-card__kick {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.policy-meta-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.policy-meta-card__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.policy-meta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  height: 54px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--olive);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(47, 58, 47, 0.4);
  margin-top: 4px;
}

.policy-meta-card__btn:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 58, 47, 0.55);
}

.policy-meta-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(47, 58, 47, 0.4);
}

.policy-meta-card__btn .inner-text-btn {
  position: relative;
  z-index: 1;
}

.policy-meta-card__btn svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.policy-meta-card__btn:hover svg {
  transform: translateX(3px);
}

/* Other policy quick links */
.policy-related {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-related__kick {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.policy-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.policy-related__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.policy-related__list a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

@media (max-width: 768px) {
  .policy-page__hero { padding: 70px 20px 40px; }
  .policy-page__container { padding: 40px 20px 60px; }
  .policy-prose { font-size: 14.5px; line-height: 1.7; }
  .policy-prose h2 { margin-top: 36px; padding-top: 22px; }
  .policy-prose h3 { margin-top: 22px; }
  .policy-meta-card { padding: 22px 22px; }
}

/* =====================================================================
   MISSION PAGE — manifesto, pillars, values, pledge, CTA
   ===================================================================== */
.mission-page__hero {
  position: relative;
  padding: 130px 50px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.mission-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 58, 47, 0.32), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.6) 0%, rgba(11, 11, 11, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

.mission-page__hero > * { position: relative; z-index: 1; }

.mission-page__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0 0 26px;
}

.mission-page__hero-eyebrow::before,
.mission-page__hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.mission-page__hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 9vw, 132px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 auto 26px;
  max-width: 980px;
  color: #fff;
}

.mission-page__hero-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto;
}

.mission-page__hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}

.mission-page__hero-stamp::before,
.mission-page__hero-stamp::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--olive-light);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mission-page__hero-stamp { font-size: 13px; gap: 10px; }
  .mission-page__hero-stamp::before,
  .mission-page__hero-stamp::after { width: 18px; }
}

/* Manifesto / statement */
.mission-statement {
  padding: 100px 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.mission-statement__label {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 130px;
}

.mission-statement__num {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
}

.mission-statement__kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}

.mission-statement__brief {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  max-width: 320px;
}

.mission-statement__brief::before {
  content: "“";
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 0.4;
  color: var(--olive-light);
  margin-bottom: 12px;
  font-style: normal;
}

.mission-statement__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-statement__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 58px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 14px;
}

.mission-statement__body p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.mission-statement__body p strong {
  color: #fff;
  font-weight: 500;
}

/* Three pillars */
.mission-pillars {
  padding: 80px 50px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.5), rgba(15, 15, 15, 0.7));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mission-pillars__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.mission-pillars__label {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mission-pillars__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50.52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.mission-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.mission-pillar {
  position: relative;
  padding: 36px 32px 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.95) 0%, rgba(11, 11, 11, 0.95) 60%, rgba(47, 58, 47, 0.45) 140%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.25s ease;
}

.mission-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.mission-pillar__num {
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.mission-pillar__kick {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--olive-light);
  text-transform: uppercase;
}

.mission-pillar__title {
  font-family: var(--font-head);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.05;
}

.mission-pillar__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Values grid */
.mission-values {
  padding: 90px 50px;
}

.mission-values__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.mission-values__label {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mission-values__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50.52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.mission-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

.mission-value {
  padding: 28px 26px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mission-value:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.85);
}

.mission-value__num {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-value__title {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 10px;
}

.mission-value__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* The Pledge */
.mission-pledge {
  padding: 90px 50px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.5), rgba(11, 11, 11, 0.7));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mission-pledge__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.mission-pledge__head {
  position: sticky;
  top: 130px;
}

.mission-pledge__label {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--olive-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mission-pledge__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50.52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 18px;
}

.mission-pledge__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.mission-pledge__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mission-pledge__list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}

.mission-pledge__list li:first-child { padding-top: 0; }
.mission-pledge__list li:last-child { border-bottom: 0; padding-bottom: 0; }

.mission-pledge__list-num {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--olive-light);
  letter-spacing: 0.04em;
  line-height: 1;
}

.mission-pledge__list-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.mission-pledge__list-text strong {
  color: #fff;
  font-weight: 500;
}

/* CTA */
.mission-cta {
  position: relative;
  padding: 110px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(47, 58, 47, 0.35) 0%, transparent 65%),
    linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
  overflow: hidden;
}

.mission-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.mission-cta__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.mission-cta__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto 22px;
  max-width: 1000px;
}

.mission-cta__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 22px;
}

.mission-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(155, 193, 139, 0.35);
  border-radius: 999px;
  background: rgba(47, 58, 47, 0.22);
}

.mission-cta__urgency span {
  color: #9bc18b;
  font-size: 8px;
  line-height: 1;
  animation: missionPulse 1.6s ease-in-out infinite;
}

@keyframes missionPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.mission-cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.mission-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  height: 56px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.mission-cta__btn--fill {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
}

.mission-cta__btn--fill:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-1px);
}

.mission-cta__btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.mission-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-pillars__grid { grid-template-columns: 1fr; gap: 14px; }
  .mission-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mission-statement {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 30px;
  }
  .mission-statement__label { position: static; flex-direction: row; flex-wrap: wrap; gap: 24px; align-items: center; }
  .mission-statement__kicker { padding-top: 0; padding-left: 18px; border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.12); }
  .mission-statement__brief { flex-basis: 100%; max-width: none; margin: 4px 0 0; }
  .mission-statement__brief::before { display: inline; font-size: 24px; margin: 0 6px 0 0; line-height: 1; vertical-align: -2px; }

  .mission-pledge__inner { grid-template-columns: 1fr; gap: 30px; }
  .mission-pledge__head { position: static; }
  .mission-pledge { padding: 60px 30px; }

  .mission-pillars { padding: 60px 30px; }
  .mission-values { padding: 60px 30px; }
  .mission-cta { padding: 80px 30px; }
}

@media (max-width: 600px) {
  .mission-page__hero { padding: 90px 20px 60px; }
  .mission-statement { padding: 50px 20px; }
  .mission-pillars { padding: 50px 20px; }
  .mission-values { padding: 50px 20px; }
  .mission-values__grid { grid-template-columns: 1fr; }
  .mission-pledge { padding: 50px 20px; }
  .mission-pledge__list li { grid-template-columns: 48px 1fr; gap: 14px; }
  .mission-cta { padding: 60px 20px; }
  .mission-cta__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .mission-cta__btn { width: 100%; }
  .mission-cta__urgency { font-size: 10.5px; letter-spacing: 0.18em; padding: 9px 16px; max-width: 100%; }
}

/* =====================================================================
   AFFILIATE PAGE
   ===================================================================== */

/* Intro */
.affiliate-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 50px 30px;
  text-align: center;
}

.affiliate-intro__lead {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}

.affiliate-intro__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Tiers grid */
.affiliate-tiers {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 50px 70px;
}

.affiliate-tiers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Tier card */
.affiliate-tier {
  position: relative;
  padding: 40px 36px 36px;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.affiliate-tier:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.affiliate-tier--elite {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(155, 193, 139, 0.14), transparent 60%),
    rgba(15, 15, 15, 0.82);
  border-color: rgba(155, 193, 139, 0.32);
}

.affiliate-tier--elite:hover {
  border-color: rgba(155, 193, 139, 0.55);
}

.affiliate-tier__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}

.affiliate-tier__badge--open {
  color: #9bc18b;
  background: rgba(47, 58, 47, 0.35);
  border: 1px solid rgba(155, 193, 139, 0.4);
}

.affiliate-tier__badge--elite {
  color: #9bc18b;
  background: rgba(47, 58, 47, 0.45);
  border: 1px solid rgba(155, 193, 139, 0.55);
  letter-spacing: 0.24em;
}

.affiliate-tier__kick {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 12px;
}

.affiliate-tier--elite .affiliate-tier__kick {
  color: #9bc18b;
  opacity: 0.85;
}

.affiliate-tier__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin: 0 0 14px;
  max-width: 90%;
}

.affiliate-tier__desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 26px;
}

/* Stats */
.affiliate-tier__stats {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 22px 0;
  margin: 0 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.affiliate-stat {
  flex: 1;
  text-align: left;
}

.affiliate-stat__num {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.affiliate-stat__num--gold {
  color: #9bc18b;
}

.affiliate-stat__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.affiliate-stat__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Perks list */
.affiliate-tier__perks {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  flex-grow: 1;
}

.affiliate-tier__perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 9px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.affiliate-tier__perks li::before {
  content: "→";
  flex-shrink: 0;
  font-family: var(--font-head);
  color: #9bc18b;
  font-size: 16px;
  line-height: 1.6;
}

.affiliate-tier__perks--elite li::before {
  color: #9bc18b;
}

/* CTA button (standard tier) */
.affiliate-tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 16px 26px;
  background: var(--olive);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--olive);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.affiliate-tier__cta:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-1px);
}

.affiliate-tier__cta svg {
  width: 16px;
  height: 16px;
}

/* Elite locked indicator */
.affiliate-tier__locked {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 22px;
  background: rgba(47, 58, 47, 0.3);
  color: #9bc18b;
  border: 1px dashed rgba(155, 193, 139, 0.5);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: center;
}

.affiliate-tier__locked svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOW ELITE IS EARNED */
.affiliate-earned {
  padding: 80px 50px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.5), rgba(15, 15, 15, 0.75));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.affiliate-earned__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.affiliate-earned__head {
  position: sticky;
  top: 130px;
}

.affiliate-earned__label {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #9bc18b;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.affiliate-earned__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 18px;
}

.affiliate-earned__sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.affiliate-earned__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.affiliate-earned__list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.affiliate-earned__list li:last-child {
  border-bottom: 0;
}

.affiliate-earned__num {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #9bc18b;
  opacity: 0.9;
}

.affiliate-earned__list h3 {
  font-family: var(--font-head);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 6px;
}

.affiliate-earned__list p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* CTA */
.affiliate-cta {
  position: relative;
  padding: 110px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(47, 58, 47, 0.3) 0%, transparent 65%),
    rgba(11, 11, 11, 0.5);
}

.affiliate-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 22px;
}

.affiliate-cta__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.affiliate-cta__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.94;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}

.affiliate-cta__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 36px;
}

.affiliate-cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.affiliate-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  height: 54px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.affiliate-cta__btn--fill {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
}

.affiliate-cta__btn--fill:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-1px);
}

.affiliate-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.affiliate-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
  transform: translateY(-1px);
}

.affiliate-cta__btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive — Affiliate */
@media (max-width: 960px) {
  .affiliate-tiers__grid { grid-template-columns: 1fr; gap: 18px; }
  .affiliate-earned__inner { grid-template-columns: 1fr; gap: 36px; }
  .affiliate-earned__head { position: static; }
}

@media (max-width: 640px) {
  .affiliate-intro { padding: 50px 24px 20px; }
  .affiliate-tiers { padding: 20px 24px 60px; }
  .affiliate-tier { padding: 36px 24px 28px; }
  .affiliate-tier__badge { position: static; display: inline-block; margin-bottom: 18px; }
  .affiliate-stat__num { font-size: 36px; }
  .affiliate-earned { padding: 60px 24px; }
  .affiliate-earned__list li { grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; }
  .affiliate-earned__num { font-size: 18px; }
  .affiliate-cta { padding: 70px 24px; }
  .affiliate-cta__btns { flex-direction: column; width: 100%; align-items: stretch; }
  .affiliate-cta__btn { width: 100%; }
}
