/** Shopify CDN: Minification failed

Line 1048:15 Unterminated string token

**/
/* ============================================================
   MAXIMO VITAL FORCE — design system
   ============================================================ */
:root {
  --bg: #0D0D0D;
  --bg-deep: #050505;
  --surface: #1A1A1A;
  --surface-2: #141414;
  --gold: #C8A951;
  --gold-bright: #D4B860;
  --gold-soft: rgba(200, 169, 81, 0.18);
  --gold-faint: rgba(200, 169, 81, 0.08);
  --gold-glow: rgba(200, 169, 81, 0.25);
  --red: #8B0000;
  --red-deep: #6B0000;
  --green: #1A4731;
  --green-bright: #2A6646;
  --text: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.62);
  --text-dim: rgba(245, 240, 232, 0.38);
  --text-fade: rgba(245, 240, 232, 0.22);

  /* En Shopify usa el font_picker setting; fallback Playfair/Montserrat para standalone */
  --display: var(--font-heading-family, 'Playfair Display'), 'Times New Roman', Georgia, serif;
  --body: var(--font-body-family, 'Montserrat'), -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --container-narrow: 980px;
  --container-prose: 720px;

  --section-y: clamp(96px, 12vw, 160px);
  --section-y-tight: clamp(64px, 8vw, 112px);

  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reglas globales del design standalone retiradas para no chocar con Dawn.
   El BG matte black, fonts y reset ya los aplica el theme via settings_data.json + maximo-overrides.css. */

/* Grain overlay — film texture cinematográfica, scopeado a body cuando el theme está activo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1000;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.88 0 0 0 0 0.6 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* Reset scopeado a sections MAXIMO — sin afectar componentes nativos de Dawn */
[class*="maximo-section"] *,
[class*="maximo-section"] *::before,
[class*="maximo-section"] *::after {
  box-sizing: border-box;
}

/* Links dentro de sections MAXIMO sin underline default de Dawn */
[class*="maximo-section"] a {
  text-decoration: none;
  color: inherit;
}
[class*="maximo-section"] a:hover {
  text-decoration: none;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container--narrow { max-width: var(--container-narrow); }
.container--prose { max-width: var(--container-prose); }

.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--tight { padding: var(--section-y-tight) 0; }
.section--surface { background: var(--surface-2); }

/* Section marker — "— 01 / THE MANDATE —" */
.marker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.marker::before, .marker::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.marker__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-style: italic;
}
.marker__sep {
  opacity: 0.4;
  margin: 0 4px;
}

/* Italic accent pattern */
.italic {
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
}

/* Section divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 var(--container);
  margin: 0 auto;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  max-width: 320px;
}
.divider__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 32px;
  min-height: 56px;
  border: 1px solid transparent;
  transition: all 0.4s var(--easing);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
a.btn { text-decoration: none; }
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn--primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 40px -8px var(--gold-glow), 0 0 0 1px var(--gold);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-soft);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-faint);
}
.btn--ghost {
  color: var(--text-muted);
  border: 1px solid var(--gold-soft);
  background: transparent;
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--gold);
}
.btn .arrow {
  transition: transform 0.4s var(--easing);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   01 — Announcement bar
   ============================================================ */
.announce {
  background: var(--red);
  background-image: linear-gradient(90deg, var(--red-deep), var(--red) 50%, var(--red-deep));
  color: var(--gold);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 20px;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.announce__inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.announce__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   02 — Header / Nav
   ============================================================ */
.mx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--gold-faint);
  transition: background 0.3s var(--easing);
}
.mx-header.scrolled {
  background: rgba(13, 13, 13, 0.96);
  border-bottom-color: var(--gold-soft);
}
.mx-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 48px;
}
.mx-header__nav {
  display: flex;
  gap: 36px;
  justify-content: center;
  white-space: nowrap;
}
.mx-header__nav a {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.mx-header__nav a:hover { color: var(--text); }
.mx-header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--easing);
}
.mx-header__nav a:hover::after { width: 24px; }
.mx-header__nav .chev { display: inline-block; margin-left: 6px; transform: translateY(-1px); opacity: 0.6; font-size: 8px; }

.mx-logo {
  display: inline-flex;
  align-items: center;
  text-align: left;
  text-decoration: none;
}
.mx-logo__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--text);
  line-height: 1;
}
.mx-header__icons {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  align-items: center;
}
.mx-header__icons a,
.mx-header__icons button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s var(--easing);
  border-radius: 50%;
  text-decoration: none;
}
.mx-header__icons a svg,
.mx-header__icons button svg {
  color: inherit;
  stroke: currentColor;
}
.mx-header__icons a:hover,
.mx-header__icons button:hover { color: var(--gold); }
.mx-cart-count {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  transform: translate(10px, -10px);
}

.mx-trust-bar {
  border-top: 1px solid var(--gold-faint);
  padding: 11px 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.3);
}
.mx-trust-bar span { display: inline-flex; align-items: center; gap: 12px; }
.mx-trust-bar .sep { color: var(--gold); opacity: 0.5; }

/* ============================================================
   03 — Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(720px, 92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 169, 81, 0.10), transparent 60%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(0, 0, 0, 0.6), transparent 70%),
    linear-gradient(180deg, #0a0a09 0%, #0d0d0d 60%, #050505 100%);
}
.hero__sun {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.18) 0%, rgba(200, 169, 81, 0.06) 25%, transparent 60%);
  pointer-events: none;
}
.hero__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 52%;
  opacity: 0.85;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 920px;
  padding: 0 20px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--easing-out) 0.2s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 1.1s var(--easing-out) 0.4s forwards;
}
.hero__h1 .italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-top: 8px;
  text-transform: lowercase;
}
.hero__sub {
  font-family: var(--body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1.1s var(--easing-out) 0.65s forwards;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 88px;
  opacity: 0;
  animation: fadeUp 1.1s var(--easing-out) 0.85s forwards;
}
.hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1.1s var(--easing-out) 1.1s forwards;
}
.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__trust-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   04 — Brand Statement
   ============================================================ */
.statement {
  text-align: center;
  padding: var(--section-y) 0;
  position: relative;
}
.statement__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.statement__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 32px;
}
.statement__text .italic {
  color: var(--gold);
  font-weight: 400;
}
.statement__sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================================
   05 — Product Tiles
   ============================================================ */
.products {
  padding: var(--section-y) 0;
}
.products__head {
  text-align: center;
  margin-bottom: 72px;
}
.products__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.products__title .italic {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.products__sub {
  font-family: var(--display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--gold-soft);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--easing), transform 0.4s var(--easing);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product-card__corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.product-card__corner--tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.product-card__corner--br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.product-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 6px 12px;
  z-index: 2;
}
.product-card__visual {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(200, 169, 81, 0.10), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 0, 0, 0.6), transparent 80%);
}
.product-card__visual::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.product-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  margin-bottom: 6px;
}
.product-card__kicker {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.product-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.product-card__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.product-card__price small {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 8px;
}
.product-card__per-day {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.product-card__per-day strong {
  color: var(--text);
  font-weight: 600;
}
.product-card__cta {
  margin-top: auto;
  width: 100%;
}
.product-card__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.product-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.product-card__meta .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

/* ============================================================
   06 — Three Pillars (Compounds)
   ============================================================ */
.pillars {
  padding: var(--section-y) 0;
  background: var(--bg-deep);
  position: relative;
}
.pillars__head {
  text-align: center;
  margin-bottom: 96px;
}
.pillars__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.pillars__title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-faint);
}
.pillar {
  background: var(--bg);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.4s var(--easing);
}
.pillar:hover { background: var(--surface-2); }
.pillar__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--gold);
}
.pillar__num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.pillar__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.pillar__role {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 24px;
}
.pillar__stats {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-faint);
  width: 100%;
}
.pillar__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   07 — Lab Proof
   ============================================================ */
.lab {
  background: var(--surface-2);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.lab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.06), transparent 60%);
  pointer-events: none;
}
.lab__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lab__seal {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.lab__seal-icon { width: 56px; height: 56px; }
.lab__seal-text {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}
.lab__seal-text strong { color: var(--gold); display: block; }

.lab__big {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(96px, 16vw, 196px);
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin: 12px 0 24px;
  position: relative;
  display: inline-block;
}
.lab__big::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--gold-glow), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.lab__big-label {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
}
.lab__big-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.lab__report {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.lab__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lab__badge {
  background: var(--bg);
  border: 1px solid rgba(26, 71, 49, 0.4);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: border-color 0.3s var(--easing);
}
.lab__badge:hover {
  border-color: var(--green-bright);
}
.lab__badge-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.lab__badge-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.lab__badge-status {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--green-bright);
}

/* ============================================================
   08 — ICP Qualification
   ============================================================ */
.icp {
  padding: var(--section-y) 0;
  text-align: center;
}
.icp__head {
  margin-bottom: 72px;
}
.icp__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
}
.icp__title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.icp__list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.icp__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-faint);
}
.icp__item:last-child { border-bottom: none; }
.icp__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.icp__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--text);
}

/* ============================================================
   09 — Testimonials
   ============================================================ */
.testimonials {
  padding: var(--section-y) 0;
  background: var(--bg-deep);
}
.testimonials__head { text-align: center; margin-bottom: 80px; }
.testimonials__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
}
.testimonials__title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--surface-2);
  border: 1px solid var(--gold-faint);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.4s var(--easing);
}
.testimonial:hover { border-color: var(--gold-soft); }
.testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}
.testimonial__quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 32px;
}
.testimonial__quote::before {
  content: """;
  display: block;
  font-size: 56px;
  line-height: 0.5;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 4px;
}
.testimonial__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.testimonial__role {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 6px 12px;
  border: 1px solid rgba(26, 71, 49, 0.5);
  background: rgba(26, 71, 49, 0.1);
}

/* ============================================================
   10 — Protocol Guide CTA
   ============================================================ */
.protocol {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.protocol::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.08), transparent 60%);
  pointer-events: none;
}
.protocol__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.protocol__visual {
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border: 1px solid var(--gold-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.protocol__visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-faint);
}
.protocol__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.protocol__title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.protocol__desc {
  font-family: var(--body);
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.protocol__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.protocol__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
}
.protocol__feature::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   11 — Social Proof Numbers
   ============================================================ */
.proof {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(200, 169, 81, 0.05), transparent 70%);
  pointer-events: none;
}
.proof__big {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(112px, 18vw, 240px);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 80px rgba(200, 169, 81, 0.15);
}
.proof__label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.proof__sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.proof__sub::before, .proof__sub::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   12 — Final CTA
   ============================================================ */
.final {
  padding: clamp(120px, 16vw, 200px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 169, 81, 0.08), transparent 70%),
    var(--bg-deep);
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.final__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.final__title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.final__sub {
  font-family: var(--body);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final__form {
  max-width: 560px;
  margin: 0 auto 32px;
  display: flex;
  gap: 0;
  border: 1px solid var(--gold-soft);
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s var(--easing);
}
.final__form:focus-within { border-color: var(--gold); }
.final__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 24px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.05em;
  outline: none;
  min-width: 0;
}
.final__form input::placeholder {
  color: var(--text-dim);
  font-family: var(--body);
  letter-spacing: 0.1em;
}
.final__form button {
  border-radius: 0;
  min-width: 200px;
}
.final__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.final__guarantee .sep { color: var(--gold); opacity: 0.5; }

/* ============================================================
   13 — Footer
   ============================================================ */
.mx-footer {
  background: var(--bg);
  padding: 96px 0 32px;
}
.mx-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gold-faint);
}
.mx-footer__brand .mx-logo {
  align-items: flex-start;
  margin-bottom: 24px;
}
.mx-footer__tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 280px;
}
.mx-footer__socials {
  display: flex;
  gap: 12px;
}
.mx-footer__socials button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--easing);
}
.mx-footer__socials button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mx-footer__col h4 {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.mx-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mx-footer__col a {
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s var(--easing);
  letter-spacing: 0.02em;
}
.mx-footer__col a:hover { color: var(--gold); }
.mx-footer__legal {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.mx-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-faint);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-soft);
  padding: 14px 20px;
  z-index: 90;
}
.sticky-cta .btn { width: 100%; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--easing-out), transform 1s var(--easing-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .lab__grid { grid-template-columns: 1fr; gap: 56px; }
  .protocol__grid { grid-template-columns: 1fr; gap: 48px; }
  .mx-footer__top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mx-header__inner { grid-template-columns: auto 1fr auto; gap: 16px; height: 64px; }
  .mx-header__nav { display: none; }
  .mx-trust-bar { display: none; }
  .hero { padding: 60px 0 80px; min-height: 80vh; }
  .hero__sun { width: 320px; height: 320px; }
  .products__grid { grid-template-columns: 1fr; gap: 24px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .mx-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .mx-footer__bottom { flex-direction: column; text-align: center; }
  .lab__badges { grid-template-columns: 1fr; }
  .final__form { flex-direction: column; }
  .final__form input { padding: 18px 24px; }
  .final__form button { width: 100%; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .icp__item { grid-template-columns: 40px 1fr; gap: 16px; }
}
