/** Shopify CDN: Minification failed

Line 59:0 All "@import" rules must come first

**/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PYRRA Design System — Premium Dark Luxury
   Inspired by Apple product pages + Nike brand energy
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Backgrounds */
  --pyrra-bg1: #0C0515;
  --pyrra-bg2: #0F0A1E;
  --pyrra-bg3: #140E28;
  --pyrra-bg4: #1A1232;

  /* Brand colors */
  --pyrra-violet: #7C3AED;
  --pyrra-fuchsia: #D946EF;
  --pyrra-pink: #EC4899;
  --pyrra-orange: #F97316;
  --pyrra-cyan: #06B6D4;

  /* Accent */
  --pyrra-deep-violet: #4A1D5C;
  --pyrra-rose-gold: #C9A87C;
  --pyrra-rose-gold-light: #E8D5B5;
  --pyrra-cream: #F5F0E8;

  /* Text hierarchy */
  --pyrra-text-hero: #FFFFFF;
  --pyrra-text-primary: #F0E6FF;
  --pyrra-text-secondary: #C4B5FD;
  --pyrra-text-muted: #8B7FB0;
  --pyrra-text-dim: #5B4F73;

  /* Gradients */
  --pyrra-gradient: linear-gradient(135deg, #7C3AED, #EC4899, #F97316);
  --pyrra-cta-gradient: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F97316 100%);

  /* Glow colors (with alpha) */
  --pyrra-glow-violet: rgba(124, 58, 237, 0.15);
  --pyrra-glow-fuchsia: rgba(217, 70, 239, 0.1);
  --pyrra-glow-pink: rgba(236, 72, 153, 0.08);

  /* Spacing */
  --pyrra-section-pad: 100px 24px;
  --pyrra-section-pad-mobile: 64px 16px;
  --pyrra-max-width: 1200px;

  /* Transitions */
  --pyrra-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pyrra-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── TYPOGRAPHY ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.pyrra-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--pyrra-text-hero);
  background: var(--pyrra-bg1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  isolation: isolate;
}

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

.pyrra-page ::selection {
  background: rgba(139, 92, 246, 0.4);
  color: white;
}

/* Serif accent font */
.pyrra-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Gradient text utility */
.pyrra-grad {
  background: var(--pyrra-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ─── SECTION BASE ──────────────────────────────── */
.pyrra-section {
  padding: var(--pyrra-section-pad);
  position: relative;
  overflow: hidden;
}

.pyrra-section--bg1 { background: var(--pyrra-bg1); }
.pyrra-section--bg2 { background: var(--pyrra-bg2); }

.pyrra-container {
  max-width: var(--pyrra-max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ─── SCROLL REVEAL ─────────────────────────────── */
.pyrra-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--pyrra-ease), transform 0.7s var(--pyrra-ease);
  will-change: opacity, transform;
}

/* Slower, more luxurious reveals on mobile */
@media (max-width: 768px) {
  .pyrra-reveal {
    transform: translateY(20px);
    transition: opacity 0.9s var(--pyrra-ease), transform 0.9s var(--pyrra-ease);
  }
  .pyrra-reveal[data-delay="1"] { transition-delay: 0.15s; }
  .pyrra-reveal[data-delay="2"] { transition-delay: 0.3s; }
  .pyrra-reveal[data-delay="3"] { transition-delay: 0.45s; }
  .pyrra-reveal[data-delay="4"] { transition-delay: 0.6s; }
}

.pyrra-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pyrra-reveal[data-delay="1"] { transition-delay: 0.1s; }
.pyrra-reveal[data-delay="2"] { transition-delay: 0.2s; }
.pyrra-reveal[data-delay="3"] { transition-delay: 0.3s; }
.pyrra-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ─── BUTTONS ───────────────────────────────────── */
.pyrra-cta {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--pyrra-cta-gradient);
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.35), 0 12px 50px rgba(236, 72, 153, 0.15);
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.pyrra-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5), 0 16px 60px rgba(217, 70, 239, 0.25);
}

.pyrra-cta--small {
  padding: 8px 20px;
  font-size: 13px;
}

.pyrra-cta--full {
  width: 100%;
  max-width: 400px;
}

/* Ghost button */
.pyrra-btn-ghost {
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--pyrra-text-secondary);
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.pyrra-btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--pyrra-text-hero);
}

/* ─── SECTION HEADERS ───────────────────────────── */
.pyrra-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
}

.pyrra-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--pyrra-text-hero);
  margin-top: 12px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pyrra-heading--hero {
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.pyrra-heading--final {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

/* ─── TRUST BADGES ──────────────────────────────── */
.pyrra-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pyrra-trust-badge {
  font-size: 12px;
  color: var(--pyrra-text-dim);
}

/* ─── CARDS ─────────────────────────────────────── */
.pyrra-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--pyrra-bg4), var(--pyrra-bg3));
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.pyrra-card--counter {
  text-align: center;
  padding: 40px 20px;
  border-radius: 24px;
  background: var(--pyrra-bg3);
  border: 1px solid rgba(139, 92, 246, 0.06);
}

/* ─── DIVIDER ───────────────────────────────────── */
.pyrra-divider {
  width: 48px;
  height: 2px;
  margin: 0 auto;
  background: var(--pyrra-gradient);
  border-radius: 2px;
}

/* ─── PILLS / TABS ──────────────────────────────── */
.pyrra-tab {
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--pyrra-text-muted);
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.08);
  transition: all var(--pyrra-transition);
}

.pyrra-tab.is-active {
  font-weight: 700;
  color: #fff;
}

/* ─── BADGES ────────────────────────────────────── */
.pyrra-badge {
  font-size: 11px;
  color: var(--pyrra-text-muted);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  display: inline-block;
}

/* ─── PRODUCT JAR ANIMATIONS ────────────────────── */
@keyframes jarFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes jarPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

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

/* ─── FILM GRAIN OVERLAY ────────────────────────── */
.pyrra-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ─── SCROLLBAR ─────────────────────────────────── */
.pyrra-page ::-webkit-scrollbar { width: 5px; }
.pyrra-page ::-webkit-scrollbar-track { background: var(--pyrra-bg1); }
.pyrra-page ::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.2); border-radius: 3px; }
.pyrra-page ::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.4); }

/* ─── HERO SECTION ──────────────────────────────── */
.pyrra-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 60%, rgba(236, 72, 153, 0.04) 0%, transparent 40%),
    var(--pyrra-bg1);
}

.pyrra-hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pyrra-hero__product-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pyrra-fuchsia);
  margin-bottom: 16px;
}

.pyrra-hero__headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--pyrra-text-hero);
  margin-bottom: 24px;
}

.pyrra-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--pyrra-text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}

.pyrra-hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.pyrra-hero__price-main {
  font-size: 36px;
  font-weight: 900;
  color: var(--pyrra-text-hero);
}

.pyrra-hero__price-detail {
  font-size: 14px;
  color: var(--pyrra-text-muted);
}

.pyrra-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity 0.4s;
}

.pyrra-hero__scroll-hint span {
  font-size: 11px;
  color: var(--pyrra-text-dim);
  letter-spacing: 0.1em;
}

.pyrra-hero__scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--pyrra-text-dim), transparent);
}

/* ─── LIFESTYLE WORLDS ──────────────────────────── */
.pyrra-worlds__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}

.pyrra-worlds__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pyrra-worlds__image {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.6s, background 0.6s;
}

.pyrra-worlds__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}

.pyrra-worlds__image-label {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  color: var(--pyrra-text-dim);
  letter-spacing: 0.05em;
  font-style: italic;
}

.pyrra-worlds__headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--pyrra-text-hero);
  margin-bottom: 16px;
  line-height: 1.15;
}

.pyrra-worlds__sub {
  font-size: 16px;
  color: var(--pyrra-text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.pyrra-worlds__quote {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--pyrra-bg4), var(--pyrra-bg3));
  position: relative;
}

.pyrra-worlds__quote-mark {
  position: absolute;
  top: -8px;
  left: 24px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.3;
}

.pyrra-worlds__quote-text {
  font-size: 15px;
  color: var(--pyrra-text-primary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}

.pyrra-worlds__quote-name {
  font-size: 13px;
  font-weight: 600;
}

/* Crossfade animation */
.pyrra-worlds__detail {
  animation: fadeSlideIn 0.5s var(--pyrra-ease);
}

/* ─── EMPOWERMENT ───────────────────────────────── */
.pyrra-empower {
  padding: 120px 24px;
  position: relative;
}

/* Gradient glow separator between hero and empowerment */
.pyrra-empower::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pyrra-violet), var(--pyrra-pink), transparent);
  opacity: 0.4;
}

.pyrra-empower__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pyrra-empower__line {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.8;
}

.pyrra-empower__line--light {
  color: var(--pyrra-text-secondary);
  font-weight: 300;
}

.pyrra-empower__line--bold {
  color: var(--pyrra-text-hero);
  font-weight: 600;
  margin-top: 20px;
}

/* ─── RITUAL ────────────────────────────────────── */
.pyrra-ritual__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.pyrra-ritual__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pyrra-ritual__step {
  padding: 20px 24px;
  border-radius: 16px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--pyrra-transition);
}

.pyrra-ritual__step.is-active {
  background: var(--pyrra-bg4);
  border-color: rgba(124, 58, 237, 0.15);
}

.pyrra-ritual__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pyrra-ritual__step-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--pyrra-text-dim);
  transition: opacity 0.3s;
}

.pyrra-ritual__step.is-active .pyrra-ritual__step-num {
  background: var(--pyrra-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pyrra-ritual__step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pyrra-text-muted);
  transition: color 0.3s;
}

.pyrra-ritual__step.is-active .pyrra-ritual__step-title {
  color: var(--pyrra-text-hero);
}

.pyrra-ritual__progress {
  margin-top: 12px;
  height: 2px;
  border-radius: 1px;
  background: rgba(139, 92, 246, 0.06);
  transition: all 0.4s;
  width: 0%;
}

.pyrra-ritual__step.is-active .pyrra-ritual__progress {
  background: var(--pyrra-gradient);
  width: 100%;
}

.pyrra-ritual__detail {
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--pyrra-bg3), var(--pyrra-bg4));
  border: 1px solid rgba(139, 92, 246, 0.08);
  min-height: 280px;
  animation: fadeSlideIn 0.4s var(--pyrra-ease);
}

.pyrra-ritual__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.pyrra-ritual__detail-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--pyrra-text-hero);
  margin-bottom: 16px;
}

.pyrra-ritual__detail-text {
  font-size: 17px;
  color: var(--pyrra-text-secondary);
  line-height: 1.8;
  max-width: 440px;
}

/* ─── SCIENCE ───────────────────────────────────── */
.pyrra-science__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pyrra-science__counter-val {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  display: block;
}

.pyrra-science__counter-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--pyrra-text-hero);
  display: block;
  margin-top: 8px;
}

.pyrra-science__counter-sub {
  font-size: 13px;
  color: var(--pyrra-text-muted);
  display: block;
  margin-top: 4px;
}

.pyrra-science__efsa {
  text-align: center;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pyrra-bg3), var(--pyrra-bg4));
  border: 1px solid rgba(139, 92, 246, 0.08);
  max-width: 640px;
  margin: 0 auto;
}

.pyrra-science__efsa-text {
  font-size: 14px;
  color: var(--pyrra-text-secondary);
  line-height: 1.7;
}

.pyrra-science__efsa-ref {
  font-size: 11px;
  color: var(--pyrra-text-dim);
  margin-top: 8px;
}

/* Expandable research */
.pyrra-science__expand {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s var(--pyrra-ease);
  margin-top: 0;
}

.pyrra-science__expand.is-open {
  max-height: 800px;
  opacity: 1;
  margin-top: 32px;
}

.pyrra-science__research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pyrra-science__research-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--pyrra-bg3);
  border: 1px solid rgba(139, 92, 246, 0.06);
}

.pyrra-science__research-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pyrra-science__research-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pyrra-text-hero);
  margin-bottom: 12px;
}

.pyrra-science__research-item {
  font-size: 13px;
  color: var(--pyrra-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ─── PURITY ────────────────────────────────────── */
.pyrra-purity__card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.08);
  cursor: pointer;
  transition: all 0.6s var(--pyrra-ease);
}

.pyrra-purity__card.is-revealed {
  border-color: rgba(139, 92, 246, 0.2);
  transform: scale(1.01);
  box-shadow: 0 20px 80px rgba(124, 58, 237, 0.15);
}

.pyrra-purity__inner {
  padding: 60px 48px;
  background: linear-gradient(135deg, var(--pyrra-bg3), var(--pyrra-bg4));
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  transition: all 0.6s var(--pyrra-ease);
}

.pyrra-purity__card.is-revealed .pyrra-purity__inner {
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--pyrra-bg4), var(--pyrra-bg3));
}

.pyrra-purity__big-number {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  display: block;
  transition: font-size 0.6s var(--pyrra-ease);
  text-align: center;
}

.pyrra-purity__card.is-revealed .pyrra-purity__big-number {
  font-size: 96px;
  text-align: left;
}

.pyrra-purity__percent {
  font-size: 0;
  font-weight: 900;
  color: var(--pyrra-text-hero);
  display: block;
  transition: all 0.4s;
  opacity: 0;
  margin-top: 4px;
}

.pyrra-purity__card.is-revealed .pyrra-purity__percent {
  font-size: 24px;
  opacity: 1;
}

.pyrra-purity__label {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  display: block;
  transition: all 0.4s;
}

.pyrra-purity__hint {
  font-size: 14px;
  color: var(--pyrra-text-muted);
  margin-top: 12px;
}

.pyrra-purity__card.is-revealed .pyrra-purity__hint {
  display: none;
}

.pyrra-purity__left {
  transition: text-align 0.4s;
  text-align: center;
}

.pyrra-purity__card.is-revealed .pyrra-purity__left {
  text-align: left;
}

.pyrra-purity__right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s var(--pyrra-ease) 0.15s;
  pointer-events: none;
}

.pyrra-purity__card.is-revealed .pyrra-purity__right {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.pyrra-purity__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.06);
}

.pyrra-purity__row:last-child {
  border-bottom: none;
}

.pyrra-purity__row-label {
  font-size: 14px;
  color: var(--pyrra-text-muted);
}

.pyrra-purity__row-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--pyrra-text-hero);
}

.pyrra-purity__row-value--highlight {
  color: var(--pyrra-fuchsia);
}

.pyrra-purity__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* ─── FINAL CTA ─────────────────────────────────── */
.pyrra-final {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pyrra-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.05), transparent 65%);
  filter: blur(60px);
}

.pyrra-final__inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.pyrra-final__sub {
  font-size: 17px;
  color: var(--pyrra-text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ─── FOOTER ────────────────────────────────────── */
.pyrra-footer {
  padding: 56px 24px;
  background: var(--pyrra-bg1);
  border-top: 1px solid rgba(139, 92, 246, 0.06);
}

.pyrra-footer__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pyrra-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.pyrra-footer__links {
  display: flex;
  gap: 28px;
}

.pyrra-footer__link {
  font-size: 13px;
  color: var(--pyrra-text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.pyrra-footer__link:hover {
  color: var(--pyrra-text-hero);
}

.pyrra-footer__legal {
  text-align: center;
  font-size: 11px;
  color: var(--pyrra-text-dim);
  line-height: 2;
}

.pyrra-footer__legal p {
  margin: 0;
}

/* ─── MEDIA (images/video in sections) ───────────── */
.pyrra-hero__media {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.pyrra-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.15));
}

.pyrra-hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pyrra-hero__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.pyrra-worlds__image img,
.pyrra-worlds__image video,
.pyrra-worlds__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.pyrra-worlds__media-panel {
  position: relative;
}

.pyrra-ritual__detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pyrra-final__product-img img {
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.2));
}


/* ─── SECTION SEPARATORS (mobile rhythm) ──────────── */
.pyrra-purity-section,
.pyrra-final-section {
  position: relative;
}

.pyrra-purity-section::before,
.pyrra-final-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pyrra-violet), var(--pyrra-pink), transparent);
  opacity: 0.25;
}
/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Change 1: Graduated vertical rhythm ────────── */
  :root {
    --pyrra-section-pad: 72px 20px;
  }

  /* ── Change 5: Hero breathing room ─────────────── */
  .pyrra-hero {
    padding: 80px 20px 72px;
    min-height: auto;
  }

  /* Grid collapses — but NOT science counters (Change 4) */
  .pyrra-hero__grid,
  .pyrra-worlds__content,
  .pyrra-ritual__grid,
  .pyrra-science__research-grid,
  .pyrra-purity__inner,
  .pyrra-purity__card.is-revealed .pyrra-purity__inner {
    grid-template-columns: 1fr !important;
  }

  .pyrra-hero__grid {
    gap: 44px;
    text-align: center;
  }

  .pyrra-hero__media {
    max-height: 300px !important;
    height: auto !important;
  }

  .pyrra-hero__media img {
    height: auto !important;
    max-height: 300px;
    object-fit: contain;
  }

  .pyrra-hero__sub {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
  }

  .pyrra-hero__price {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .pyrra-hero__product-tag {
    margin-bottom: 10px;
  }

  .pyrra-hero__headline {
    margin-bottom: 20px;
  }

  .pyrra-trust-badges {
    gap: 12px 16px;
    justify-content: center;
  }

  .pyrra-cta--full {
    max-width: 100%;
  }

  /* ── Change 10: Empowerment text size + spacing ── */
  .pyrra-empower {
    padding: 112px 24px;
  }

  .pyrra-empower__line {
    font-size: clamp(1.4rem, 4vw, 1.7rem);
  }

  /* ── Change 6: Lifestyle image cap ─────────────── */
  .pyrra-worlds__image {
    max-height: 280px !important;
    height: 280px !important;
  }

  .pyrra-worlds__sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .pyrra-worlds__quote {
    padding: 24px 20px;
  }

  /* ── Change 8: Ritual steps compacted ──────────── */
  .pyrra-ritual__step {
    padding: 16px 20px;
  }

  .pyrra-ritual__step-num {
    font-size: 24px;
  }

  .pyrra-ritual__step-title {
    font-size: 16px;
  }

  .pyrra-ritual__detail {
    padding: 36px 24px;
    margin-top: 16px;
  }

  .pyrra-ritual__detail-title {
    font-size: 22px;
  }

  .pyrra-ritual__detail-text {
    font-size: 15px;
  }

  /* ── Change 4: Science counters 3-across ───────── */
  .pyrra-science__counters {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }

  .pyrra-card--counter {
    padding: 24px 12px;
  }

  .pyrra-science__counter-val {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .pyrra-science__counter-label {
    font-size: 12px;
  }

  .pyrra-science__counter-sub {
    font-size: 11px;
  }

  /* ── Change 7: Purity card breathing room ──────── */
  .pyrra-purity__inner {
    padding: 48px 28px;
  }

  .pyrra-purity__big-number,
  .pyrra-purity__card.is-revealed .pyrra-purity__big-number {
    font-size: 64px;
    text-align: center;
  }

  .pyrra-purity__card.is-revealed .pyrra-purity__left {
    text-align: center;
  }

  .pyrra-purity__hint {
    margin-top: 16px;
    font-size: 13px;
  }

  .pyrra-purity__badges {
    justify-content: center;
  }

  /* ── Change 9: Final CTA breathing ─────────────── */
  .pyrra-final {
    padding: 100px 24px;
  }

  .pyrra-final__sub {
    font-size: 15px;
    margin-bottom: 36px;
  }

  /* ── Footer (unchanged) ────────────────────────── */
  .pyrra-footer__top {
    flex-direction: column;
    text-align: center;
  }

  .pyrra-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pyrra-hero__scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Change 3: Horizontal scroll tabs instead of vertical stack */
  .pyrra-worlds__tabs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 8px;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pyrra-worlds__tabs::-webkit-scrollbar {
    display: none;
  }

  .pyrra-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PYRRA Dark Theme — Horizon Integration
   Sets Horizon's color-scheme variables to PYRRA palette.
   Works WITH Horizon instead of hiding/overriding it.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 1. Global dark background (prevents white flash) */
html, body {
  background-color: #0C0515 !important;
  overflow-x: hidden;
}

/* 2. Override Horizon's color-scheme system at root */
:root,
[data-color-scheme] {
  --color-background: 12 5 21;          /* #0C0515 — Abyss */
  --color-foreground: 240 230 255;      /* #F0E6FF — primary text */
  --color-background-contrast: 20 14 40; /* #140E28 — pyrra-bg3 */
  --color-shadow: 12 5 21;
  --color-button: 124 58 237;           /* #7C3AED — Violet */
  --color-button-text: 255 255 255;
}

/* 3. Horizon header — dark PYRRA styling */
.header-section,
header-component,
.header,
#header-group {
  --color-background: 12 5 21;
  --color-foreground: 240 230 255;
}

/* 4. Announcement bar — subtle dark accent */
.announcement-bar-section,
.announcement-bar {
  --color-background: 20 14 40;
  --color-foreground: 196 181 253;
}

/* 5. Main content area */
main.content-for-layout {
  background-color: var(--pyrra-bg1, #0C0515);
  color: var(--pyrra-text-primary, #F0E6FF);
}

/* 6. Blog & article rich-text readability */
.rte,
.rte p,
.rte li,
.rte td,
.rte th,
.rte blockquote,
.article-template__content,
.blog-articles {
  color: rgb(var(--color-foreground)) !important;
}

.rte h1, .rte h2, .rte h3, .rte h4 {
  color: #FFFFFF !important;
}

.rte a {
  color: var(--pyrra-violet, #7C3AED);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.3);
}

.rte a:hover {
  color: var(--pyrra-fuchsia, #D946EF);
}

/* 7. Cards, containers, and sections on non-PYRRA pages */
.card,
.card--card,
.card--standard {
  --color-background: 20 14 40;
  --color-foreground: 240 230 255;
}

/* 8. Form inputs (search, contact, newsletter) */
.field__input,
.form__input,
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
  background-color: var(--pyrra-bg3, #140E28) !important;
  color: var(--pyrra-text-primary, #F0E6FF) !important;
  border-color: rgba(124, 58, 237, 0.15) !important;
}

::placeholder {
  color: var(--pyrra-text-muted, #8B7FB0) !important;
}

/* 9. Horizon footer — dark styling */
.footer,
.footer-section,
footer {
  --color-background: 12 5 21;
  --color-foreground: 91 79 115;       /* pyrra-text-dim */
  border-top: 1px solid rgba(124, 58, 237, 0.06);
}

/* 10. Responsive: ensure CTA tap targets */
@media (max-width: 768px) {
  .header__menu-item,
  .header a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
