/* === FONT FACES === */
@font-face {
  font-family: "Aconchego";
  src: url("../fonts/AconchegoVariable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aconchego Text";
  src: url("../fonts/AconchegoTextVariable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === TOKENS === */
:root {
  /* Backgrounds */
  --bg-cream: #fdf6ed;
  --bg-white: #ffffff;
  --bg-dark-gradient: linear-gradient(135deg,
    rgba(21, 23, 49, 0.97) 0%,
    rgba(21, 23, 49, 0.88) 50%,
    rgba(21, 23, 49, 0.95) 100%);
  --bg-deep: #2d3051;

  /* Core Personare */
  --core-primary: #4d538c;
  --core-link: #4c57ba;
  --core-dark: #3b406c;
  --core-deep: #2d3051;

  /* Membership (Clube) */
  --m-magenta: #dc00b4;
  --m-purple: #9c04ce;
  --m-alert: #ff3647;
  --grad-premium: linear-gradient(135deg, #9c04ce 0%, #dc00b4 55%, #ff3647 100%);

  /* Text */
  --text-on-light: #2d3051;
  --text-on-light-muted: rgba(45, 48, 81, 0.7);
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);
  --rose-on-dark: #ffb6e5;

  /* Lines / surfaces */
  --line-on-light: rgba(45, 48, 81, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --cream-border: #e8dcc4;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Type families */
  --ff-display: "Aconchego", Georgia, serif;
  --ff-body: "Aconchego Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --article: 760px;
  --page-padding-mobile: 24px;
  --page-padding-desktop: 32px;

  /* Local hero overlay editor defaults */
  --hero-overlay-c1: 255, 238, 226;
  --hero-overlay-c2: 255, 117, 84;
  --hero-overlay-c3: 255, 149, 92;
  --hero-overlay-a1: 0.62;
  --hero-overlay-a2: 0.30;
  --hero-overlay-a3: 0.24;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg-white);
  color: var(--text-on-light);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 28px;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

#psr-cookie-accepted-term-widget {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--core-link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  font: inherit;
  cursor: pointer;
}

/* === TYPOGRAPHY === */
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--ff-display);
  letter-spacing: 0;
}
.display {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}
.h1 {
  font-family: var(--ff-display);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
.h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}
.h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
}
.body-editorial {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
.body-ui {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.caption {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--core-primary);
  margin: 0;
}
em.aconchego-italic {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
}

/* === GLOBAL UTILITIES === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--page-padding-desktop);
  padding-right: var(--page-padding-desktop);
}
.article {
  max-width: var(--article);
  margin: 0 auto;
}
.section {
  padding-top: var(--s-8);
  padding-bottom: var(--s-8);
}
.section--cream {
  background: var(--bg-cream);
}
.section--white {
  background: var(--bg-white);
}
.section--dark {
  background: var(--bg-dark-gradient);
  color: var(--text-on-dark);
}
.text-center {
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--bg-white);
  border: 1px solid var(--line-on-light);
  font-size: 12px;
  font-weight: 700;
  color: var(--core-primary);
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(220, 0, 180, 0.25);
  text-decoration: none;
}
.btn--primary {
  background: var(--grad-premium);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--core-primary);
  color: var(--core-primary);
}
.btn--block {
  width: 100%;
}

.divider-soft {
  border: none;
  border-top: 1px solid var(--line-on-light);
  margin: var(--s-6) 0;
}

/* === HERO (Personare brand evolution — "globos de luz" on cream) === */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  background: #f9f5ef;
  color: #4d538c;
  isolation: isolate;
}

/* Globos de luz — radial orbs (pulled to the far-left so they don't bleed into
   the photo area on the right, avoiding any tonal boundary). */
.hero-globos {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle 600px at 5% -10%,
      rgba(115, 48, 138, 0.55) 0%,
      rgba(115, 48, 138, 0.20) 30%,
      transparent 70%),
    radial-gradient(circle 680px at 8% 60%,
      rgba(255, 80, 0, 0.42) 0%,
      rgba(255, 80, 0, 0.15) 35%,
      transparent 75%),
    radial-gradient(circle 560px at 18% 100%,
      rgba(220, 0, 180, 0.42) 0%,
      rgba(220, 0, 180, 0.16) 35%,
      transparent 75%);
  filter: blur(6px);
}

/* Hero photo — bleeds to the right. We fade the PHOTO ITSELF via CSS mask-image
   from transparent (far left) to fully opaque (right), so whatever sits behind
   the photo (cream BG + orbs) shows through naturally with no visible boundary
   layer. The mask uses many stops for a perfectly smooth ease-out curve. */
.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.01) 6%,
    rgba(0, 0, 0, 0.04) 12%,
    rgba(0, 0, 0, 0.09) 18%,
    rgba(0, 0, 0, 0.16) 24%,
    rgba(0, 0, 0, 0.25) 30%,
    rgba(0, 0, 0, 0.36) 36%,
    rgba(0, 0, 0, 0.48) 42%,
    rgba(0, 0, 0, 0.60) 48%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.82) 62%,
    rgba(0, 0, 0, 0.90) 70%,
    rgba(0, 0, 0, 0.96) 78%,
    rgba(0, 0, 0, 0.99) 88%,
    rgba(0, 0, 0, 1)   100%);
          mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0.01) 6%,
    rgba(0, 0, 0, 0.04) 12%,
    rgba(0, 0, 0, 0.09) 18%,
    rgba(0, 0, 0, 0.16) 24%,
    rgba(0, 0, 0, 0.25) 30%,
    rgba(0, 0, 0, 0.36) 36%,
    rgba(0, 0, 0, 0.48) 42%,
    rgba(0, 0, 0, 0.60) 48%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.82) 62%,
    rgba(0, 0, 0, 0.90) 70%,
    rgba(0, 0, 0, 0.96) 78%,
    rgba(0, 0, 0, 0.99) 88%,
    rgba(0, 0, 0, 1)   100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === SITE HEADER (transparent over hero) === */
.site-header {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 68px;
}
.site-header__menu {
  justify-self: start;
  width: 30px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.site-header__menu:hover {
  background: rgba(77, 83, 140, 0.07);
}
.site-header__menu span {
  display: block;
  height: 2.5px;
  background: #4d538c;
  border-radius: 2px;
}
.site-header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  width: 50px;
  height: 50px;
}
.site-header__link {
  justify-self: end;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4d538c;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 0.15s ease;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.site-header__link:hover {
  color: #3b406c;
  text-decoration: none;
}
.site-header__link:hover::after {
  opacity: 0.4;
}

/* === SITE NAV DRAWER === */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.site-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.site-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 49, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}
.site-nav.is-open .site-nav__backdrop { opacity: 1; }

.site-nav__panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  background: #3b406c;
  box-shadow: 16px 0 48px rgba(10, 12, 30, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  padding: 24px;
  font-family: "Figtree", -apple-system, sans-serif;
  color: #ffffff;
}
.site-nav__panel::-webkit-scrollbar { display: none; }
.site-nav.is-open .site-nav__panel { transform: translateX(0); }
@media (min-width: 768px) {
  .site-nav__panel { width: 392px; padding: 32px; }
}

.site-nav__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.site-nav__search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.site-nav__search input {
  flex: 1;
  padding: 10px 56px 10px 16px;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  font-family: "Open Sans", "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  outline: none;
}
.site-nav__search input::placeholder { color: rgba(51, 51, 51, 0.55); }
.site-nav__search input:focus { outline: 2px solid #dc00b4; }
.site-nav__search button {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  color: #4c57ba;
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
}
.site-nav__close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.site-nav__close:hover { background: rgba(255, 255, 255, 0.08); }

/* 4 top shortcuts — 3 in row 1, full-width "Mapa Astral" in row 2 */
.site-nav__shortcuts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.site-nav__shortcuts a {
  padding: 12px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-nav__shortcuts a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(220, 0, 180, 0.4);
}
.site-nav__shortcuts a:nth-child(4) { grid-column: 1 / -1; }
.site-nav__shortcuts b { color: #ff5000; font-weight: 800; }

/* Clube CTA — dark BG with 3 colored circle "blobs" overflowing on the left */
.site-nav__club-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #151731;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 24px;
  overflow: hidden;
  isolation: isolate;
}
.site-nav__club-cta::before,
.site-nav__club-cta::after,
.site-nav__club-cta .site-nav__club-spark {
  z-index: 1;
}
.site-nav__club-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #9c04ce;
  filter: blur(28px);
  z-index: 0;
  opacity: 0.95;
}
.site-nav__club-cta::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ff001b;
  filter: blur(26px);
  z-index: 0;
  opacity: 0.85;
}
.site-nav__club-cta > .site-nav__club-blob {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #dc00b4;
  filter: blur(30px);
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}
.site-nav__club-cta strong { color: #ffffff; font-weight: 700; }
.site-nav__club-spark {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.site-nav__club-cta > span:last-child { position: relative; z-index: 1; }

.site-nav__sections {
  margin: 24px -24px 20px;
}
@media (min-width: 768px) {
  .site-nav__sections { margin: 24px -32px 20px; }
}
.site-nav__acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.site-nav__acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 16px 24px;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .site-nav__acc summary { padding: 16px 32px 16px 32px; }
}
.site-nav__acc summary::-webkit-details-marker { display: none; }
.site-nav__acc summary svg {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.site-nav__acc[open] > summary svg { transform: rotate(180deg); color: #ffb6e5; }
/* Open panel uses a darker background (matches Personare: #2d3051) */
.site-nav__acc[open] .site-nav__acc-body {
  background: #2d3051;
}
.site-nav__acc-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px 24px;
}
@media (min-width: 768px) {
  .site-nav__acc-body { padding: 16px 32px 32px; }
}
.site-nav__acc-body > a {
  color: #ffffff;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  margin: 0 0 16px;
  transition: color 0.15s ease;
}
.site-nav__acc-body > a:last-child { margin-bottom: 0; }
.site-nav__acc-body > a:hover { color: #ffb6e5; }
.site-nav__acc-body > a strong { color: #ffb6e5; font-weight: 700; }
.site-nav__signs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav__signs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.15s ease;
}
.site-nav__signs a:hover { background: rgba(255, 255, 255, 0.08); }
.site-nav__signs img { width: 28px; height: 28px; }
.site-nav__signs a:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #ffb6e5;
  padding: 8px 0;
}
.site-nav__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.site-nav__sub-grid > div { display: flex; flex-direction: column; gap: 4px; }
.site-nav__sub-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb6e5;
  margin: 0 0 4px;
}
.site-nav__sub-grid a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 4px 0;
}
.site-nav__sub-grid a:hover { color: #ffffff; }
.site-nav__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5000, #dc00b4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav__pill-group { margin-bottom: 16px; }
.site-nav__pill-group h3 {
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0;
}
.site-nav__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 0;
}
.site-nav__pills a {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-nav__pills a:hover { color: #ffb6e5; }

.site-nav__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  margin-bottom: 20px;
}
.site-nav__footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 18px;
}
.site-nav__footer-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  background: transparent;
  color: #ffffff;
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav__footer-row a svg { color: rgba(255, 255, 255, 0.85); }
.site-nav__footer-row a:hover { color: #ffb6e5; }
.site-nav__footer-row a:hover svg { color: #ffb6e5; }
.site-nav__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-nav__footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.site-nav__footer-links a:hover { color: #ffffff; text-decoration: underline; }

.site-nav__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-nav__social a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav__social a:hover { background: rgba(255, 255, 255, 0.10); color: #ffffff; }

body.site-nav-open { overflow: hidden; }

/* Hero inner content — left-aligned, narrow column.
   Takes the available vertical space between header and support bar,
   centering its content. min-height: 0 lets it shrink if viewport is tight. */
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(92px, 12vh, 128px) 48px clamp(140px, 18vh, 184px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
/* Live broadcast badge — round play button (pulsing) + 2-line info */
.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  padding: 10px 22px 10px 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(77, 83, 140, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(45, 48, 81, 0.10);
}
.badge-live {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5000 0%, #ff3647 100%);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  animation: badgePulse 1.6s ease-in-out infinite;
}
.badge-live svg {
  margin-left: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 54, 71, 0.55),
      0 6px 18px rgba(255, 54, 71, 0.35);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 12px rgba(255, 54, 71, 0),
      0 8px 22px rgba(255, 54, 71, 0.55);
  }
}
.badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(45, 48, 81, 0.72);
}
.badge-info strong {
  color: #3b406c;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (prefers-reduced-motion: reduce) {
  .badge-live { animation: none; }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 6.7vw, 104px);
  line-height: 0.96;
  font-weight: 800;
  color: #4d538c;
  margin: 22px 0 14px;
  letter-spacing: 0;
  max-width: 780px;
}
.hero-title__main {
  display: inline-block;
  color: #2d3051;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.hero-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 0.04em 0.12em 0.08em 0.02em;
  transform: skewX(-10deg);
  transform-origin: left center;
  background: linear-gradient(135deg, #9c04ce 0%, #dc00b4 55%, #ff5000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mini social proof — instructor avatar stack + label */
.hero-instructors {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-instructors__avatars {
  display: inline-flex;
}
.hero-instructors__avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #f9f5ef;
  background: #f9f5ef;
  box-shadow: 0 2px 6px rgba(45, 18, 72, 0.18);
}
.hero-instructors__avatars img + img { margin-left: -12px; }
.hero-instructors__label {
  margin: 0;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3b406c;
  line-height: 1.35;
}
.hero-instructors__label strong { font-weight: 700; color: #4d538c; }

/* Entrance animation — staggered fade-up on load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge,
.hero-instructors,
.hero-title,
.hero-body,
.hero-body-2,
.hero-cta {
  animation: heroFadeUp 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-badge        { animation-delay:   0ms; }
.hero-instructors  { animation-delay: 120ms; }
.hero-title        { animation-delay: 240ms; }
.hero-body         { animation-delay: 380ms; }
.hero-body-2       { animation-delay: 500ms; }
.hero-cta          { animation-delay: 620ms; }
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-instructors,
  .hero-title,
  .hero-body,
  .hero-body-2,
  .hero-cta { animation: none; }
}
.hero-body {
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.34;
  font-weight: 500;
  color: #3b406c;
  margin: 0;
  max-width: 620px;
}
.hero-body strong {
  font-weight: 800;
  color: #4d538c;
}
.hero-body-2 {
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: #3b406c;
  margin: 16px 0 0;
  max-width: 600px;
}
.hero-body-2 strong {
  font-weight: 700;
  color: #4d538c;
}
.hero-cta {
  align-self: flex-start;
  margin-top: 20px;
}
.hero-price {
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(45, 48, 81, 0.68);
  margin: 0;
  letter-spacing: 0.04em;
}

/* Support dock integrated into the hero image. */
.hero-supports {
  position: absolute;
  left: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  right: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  bottom: clamp(24px, 4vh, 40px);
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 16px 18px;
  background: rgba(253, 246, 237, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(45, 48, 81, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-supports__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  color: #3b406c;
  font-family: "Figtree", -apple-system, sans-serif;
  position: relative;
}
/* Hairline divider between items (not on the first) */
.hero-supports__item + .hero-supports__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(77, 83, 140, 0.13);
}
.hero-supports__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(77, 83, 140, 0.18);
  color: #4d538c;
  box-shadow:
    0 5px 16px rgba(45, 48, 81, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.hero-supports__icon svg {
  width: 18px;
  height: 18px;
}
.hero-supports__text {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.35;
  color: #3b406c;
}

/* === YOGA NEEDS === */
.yoga-needs {
  background:
    radial-gradient(circle at 50% -12%, rgba(77, 83, 140, 0.34) 0%, rgba(77, 83, 140, 0) 38%),
    #171833;
  color: #ffffff;
  padding-top: 108px;
  padding-bottom: 108px;
}
.yoga-needs__title {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1.1;
  font-weight: 720;
}
.yoga-needs__subtitle {
  max-width: 640px;
  margin: 0 auto var(--s-6);
  color: rgba(255, 255, 255, 0.68);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
}
.yoga-needs__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1060px;
  margin: 0 auto;
}
.yoga-needs__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yoga-needs__card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #0f1027;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px rgba(8, 10, 28, 0.28);
  filter: saturate(0.92) contrast(0.96);
}
.yoga-needs__card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  aspect-ratio: 1.12 / 1;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 24, 51, 0.04) 0%, rgba(23, 24, 51, 0.22) 100%);
}
.yoga-needs__number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(23, 24, 51, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.yoga-needs__card-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.34;
  font-weight: 620;
  letter-spacing: 0;
}

/* === BENEFITS === */
.benefits__title { margin-bottom: var(--s-6); color: var(--text-on-light); }
.benefits__grid {
  list-style: none; padding: 0; margin: 0 0 var(--s-6) 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-6);
}
.benefits__item { font-size: 18px; line-height: 28px; }
.benefits__highlight {
  display: flex; align-items: center; gap: var(--s-4);
  background: linear-gradient(135deg, rgba(253, 246, 237, 0.98), rgba(255, 238, 226, 0.92));
  border: 1px solid rgba(115, 48, 138, 0.14);
  border-left: 4px solid var(--core-primary);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  box-shadow: 0 14px 32px rgba(115, 48, 138, 0.08);
}
.benefits__highlight-icon { font-size: 32px; flex-shrink: 0; }

/* === SECOND HERO === */
.second-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #202344;
  color: #ffffff;
}
.second-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
  gap: clamp(32px, 4.4vw, 72px);
  align-items: center;
  min-height: clamp(640px, 76vh, 760px);
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}
.second-hero__media {
  position: relative;
  width: 100%;
  min-height: 520px;
  aspect-ratio: 0.92 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 64px rgba(10, 12, 30, 0.34);
}
.second-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(32, 35, 68, 0.03) 0%, rgba(32, 35, 68, 0.22) 100%);
}
.second-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.second-hero__panel {
  display: flex;
  align-items: center;
  padding: 0;
}
.second-hero__copy {
  max-width: 540px;
}
.second-hero__copy h2 {
  margin: 0 0 var(--s-4);
  color: #ffffff;
  font-family: var(--ff-display);
  font-size: clamp(36px, 2.55vw, 48px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}
.second-hero__copy p {
  margin: 0 0 var(--s-5);
  color: rgba(255, 255, 255, 0.80);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}
.second-hero__copy strong {
  color: #ffffff;
  font-weight: 800;
}
.second-hero__list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: var(--s-5) 0 0;
  padding: 0;
  color: #ffffff;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.44;
  font-weight: 560;
}
.second-hero__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.second-hero__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.63em;
  border-radius: 999px;
  background: #ffb6e5;
  box-shadow: 0 0 0 5px rgba(255, 182, 229, 0.10);
}

/* === IDENTIFICATION === */
.identification .h1 { color: var(--text-on-light); margin-bottom: var(--s-4); }
.identification__lead { color: var(--text-on-light-muted); margin-bottom: var(--s-3); }

/* === QUOTE === */
.quote { padding-top: 120px; padding-bottom: 120px; }
.quote__bq { margin: 0; max-width: 880px; margin-left: auto; margin-right: auto; text-align: center; }
.quote__text {
  font-family: var(--ff-display); font-size: 56px; line-height: 1.2; font-weight: 500;
  color: var(--text-on-light); margin: 0;
}

/* === OBJECTION === */
.objection__intro {
  max-width: 920px;
  margin: 0 auto var(--s-6);
  color: var(--text-on-light);
}
.objection__grid {
  list-style: none; padding: 0; margin: 0 0 var(--s-6) 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4);
}
.objection__card {
  background: var(--bg-cream); border: 1px solid var(--cream-border);
  border-radius: var(--r-lg); padding: var(--s-5);
}
.objection__card .h2 { margin-bottom: var(--s-3); color: var(--core-primary); }
.objection__close {
  max-width: 900px;
  margin: 0 auto var(--s-4);
  color: var(--text-on-light);
}

/* === PROMISE HERO === */
.promise-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #f9f5ef;
  color: #2d3051;
}
.promise-hero__image,
.promise-hero__overlay {
  position: absolute;
  inset: 0;
}
.promise-hero__image {
  inset: auto clamp(-220px, -12vw, -160px) 0 auto;
  z-index: -2;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  -webkit-mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 12%,
    rgba(0, 0, 0, 1) 26%);
          mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 12%,
    rgba(0, 0, 0, 1) 26%);
}
.promise-hero__overlay {
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle 560px at 0% -8%,
      rgba(115, 48, 138, 0.36) 0%,
      rgba(115, 48, 138, 0.14) 34%,
      transparent 76%),
    radial-gradient(circle 720px at 4% 58%,
      rgba(255, 80, 0, 0.28) 0%,
      rgba(255, 80, 0, 0.12) 36%,
      transparent 78%),
    radial-gradient(circle 640px at 15% 104%,
      rgba(220, 0, 180, 0.30) 0%,
      rgba(220, 0, 180, 0.12) 38%,
      transparent 78%),
    linear-gradient(90deg,
      rgba(249, 245, 239, 0.98) 0%,
      rgba(249, 245, 239, 0.92) 31%,
      rgba(249, 245, 239, 0.48) 47%,
      rgba(249, 245, 239, 0.00) 62%,
      rgba(249, 245, 239, 0.00) 100%);
  filter: blur(4px);
}
.promise-hero__overlay::before,
.promise-hero__overlay::after {
  content: none;
}
.promise-hero__content {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
.promise-hero__copy {
  width: min(100%, 610px);
}
.promise-hero__eyebrow {
  margin: 0 0 var(--s-3);
  color: #73308a;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promise-hero__copy h2 {
  margin: 0;
  color: #2d3051;
  font-family: var(--ff-display);
  font-size: clamp(38px, 3.45vw, 56px);
  line-height: 1.12;
  font-weight: 720;
  letter-spacing: 0;
}
.promise-hero__moments {
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #3b406c;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 620;
}
.promise-hero__moments li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.promise-hero__moments span {
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: #4d538c;
  box-shadow: 0 0 0 5px rgba(77, 83, 140, 0.10);
  color: transparent;
  overflow: hidden;
  line-height: 1;
}

/* === YOGA TYPES === */
.yoga-types__title { max-width: 880px; margin: 0 auto var(--s-6) auto; }
.yoga-types__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-4);
}
.yoga-types__card {
  background: var(--bg-cream); border: 1px solid var(--cream-border);
  border-radius: var(--r-lg); padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yoga-types__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(45, 48, 81, 0.08);
}
.yoga-types__icon { font-size: 32px; }
.yoga-types__card .h2 { font-size: 21px; line-height: 1.3; }

/* === AUTHORITY === */
.authority__title { margin-bottom: var(--s-7); }
.authority__row {
  display: grid; grid-template-columns: 360px 1fr; gap: var(--s-7);
  align-items: center; padding: var(--s-6) 0;
  border-top: 1px solid var(--cream-border);
}
.authority__row:first-of-type { border-top: none; padding-top: 0; }
.authority__row--reverse { grid-template-columns: 1fr 360px; }
.authority__row--reverse .authority__photo { order: 2; }
.authority__row--reverse .authority__body { order: 1; text-align: right; }
.authority__row--reverse .authority__body .pill { align-self: flex-end; }
.authority__photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: var(--r-lg);
}
.authority__body {
  display: flex; flex-direction: column; gap: var(--s-3);
  align-items: flex-start;
}
.authority__row--reverse .authority__body { align-items: flex-end; }
.authority__name { font-size: 40px; line-height: 1.1; margin: 0; }
.authority__handle { color: var(--core-primary); margin: 0; }
.authority__approach { color: var(--core-primary); font-weight: 700; margin: 0; }

/* === BATTLE CARD === */
.battle {
  padding-top: 76px;
  padding-bottom: 78px;
  background:
    linear-gradient(180deg, rgba(253, 246, 237, 0.38) 0%, rgba(255, 255, 255, 0.00) 20%),
    #fff;
  border-top: 18px solid #fff;
}
.battle__kicker {
  margin: 0 0 10px;
  color: var(--core-primary);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-align: center;
  text-transform: uppercase;
}
.battle__title {
  max-width: 980px;
  margin: 0 auto 14px;
  font-size: clamp(42px, 3.1vw, 54px);
  line-height: 1;
}
.battle__subtitle {
  max-width: 680px;
  margin: 0 auto 38px auto;
  color: var(--text-on-light-muted);
  font-size: 20px;
  line-height: 1.42;
}
.battle__compare {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) auto minmax(0, 1.12fr);
  gap: 0;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(77, 83, 140, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(45, 48, 81, 0.08);
}
.battle__option {
  position: relative;
  min-height: 190px;
  padding: 34px 38px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.battle__option > * {
  position: relative;
  z-index: 1;
}
.battle__option--plain {
  border: 1px dashed rgba(77, 83, 140, 0.46);
  border-radius: 22px;
  background: #fff;
  color: var(--text-on-light);
}
.battle__option--plain::before,
.battle__option--plain::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(76%, 360px);
  height: 7px;
  border-radius: 999px;
  background: #ff3647;
  opacity: 0.52;
  transform-origin: center;
  pointer-events: none;
}
.battle__option--plain::before {
  transform: translate(-50%, -50%) rotate(43deg);
}
.battle__option--plain::after {
  transform: translate(-50%, -50%) rotate(-43deg);
}
.battle__option--club {
  border-radius: 22px;
  background: var(--grad-premium);
  color: var(--text-on-dark);
  box-shadow: 0 18px 44px rgba(220, 0, 180, 0.20);
}
.battle__option--club::before {
  content: "✓";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(45, 48, 81, 0.14);
}
.battle__option--club .eyebrow { color: var(--text-on-dark); }
.battle__option--club .body-ui,
.battle__option--club .caption { color: var(--text-on-dark); }
.battle__price {
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 0.96;
  margin: 2px 0 4px;
  font-weight: 840;
  letter-spacing: -0.02em;
}
.battle__detail {
  max-width: 260px;
  opacity: 0.85;
}
.battle__divider {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  margin: 0 -14px;
  padding: 0 18px;
  border: 1px solid rgba(77, 83, 140, 0.14);
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: 0 12px 28px rgba(45, 48, 81, 0.08);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--core-primary);
}
.battle__close {
  max-width: 760px;
  margin: 30px auto 12px;
  color: var(--text-on-light);
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.18;
  font-weight: 650;
}
.battle__anchor { color: var(--core-primary); text-decoration: underline; }

/* === CHECKOUT BAND — réplica do box branco do Clube Personare === */
.checkout-band {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
  background: var(--bg-dark-gradient);
  color: #151731;
  isolation: isolate;
}
.checkout-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
}
.checkout-blob--red { top: -80px; right: -120px; width: 455px; height: 455px; background: #ff3647; opacity: 0.3; }
.checkout-blob--violet { bottom: -180px; right: 18%; width: 605px; height: 605px; background: #9c04ce; opacity: 0.2; }
.checkout-blob--pink { bottom: 120px; left: -180px; width: 605px; height: 605px; background: #dc00b4; opacity: 0.2; }
.checkout-band .container { position: relative; z-index: 1; }

.clube-checkout {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
}
.clube-sparkles-col {
  flex: 0 0 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 24px 0;
  position: relative;
}
.clube-sparkles-col--left::after,
.clube-sparkles-col--right::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1' height='90'><line x1='1' y1='0' x2='1' y2='90' stroke='%23272A47' stroke-width='1' stroke-dasharray='6,6' stroke-linecap='round'/></svg>");
}
.clube-sparkles-col--left::after { right: 0; }
.clube-sparkles-col--right::before { left: 0; }

.clube-checkout__card {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.clube-checkout__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  color: #151731;
  margin: 0;
  max-width: 920px;
}
.clube-checkout__title strong { font-weight: 800; }
.clube-checkout__title strong span {
  background: linear-gradient(90deg, #ff001b 1.99%, #dc00b4 79.75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.clube-checkout__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 1px minmax(260px, 0.85fr);
  gap: 32px;
  align-items: center;
  background: #f6f6f9;
  border-radius: 20px;
  padding: 28px 32px;
}
.clube-checkout__divider {
  align-self: stretch;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #d9dae8 15%,
    #d9dae8 85%,
    transparent
  );
}
.clube-checkout__benefits-head {
  display: block;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9597b8;
  font-weight: 700;
  margin-bottom: 14px;
}
.clube-checkout__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  min-width: 0;
}
.clube-checkout__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #151731;
  font-weight: 400;
  min-width: 0;
}
.clube-checkout__benefits li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #dc00b4 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.4 16.2 5.8 12.6l1.4-1.4 2.2 2.2 7.4-7.4 1.4 1.4z'/></svg>") center/16px 16px no-repeat;
}
.clube-checkout__benefits p {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.clube-checkout__benefits-wrap { min-width: 0; }

.clube-checkout__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: start;
  text-align: center;
  gap: 10px;
  min-width: 280px;
}
.clube-checkout__price-main {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 55px;
  line-height: 1;
  background: linear-gradient(90deg, #ff001b 1.99%, #dc00b4 79.75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.clube-checkout__price-main small {
  font-size: 20px;
  font-weight: 500;
  color: #151731;
  -webkit-text-fill-color: #151731;
  font-family: "Figtree", -apple-system, sans-serif;
}
.clube-checkout__price-full {
  margin: 0;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #151731;
}
.clube-checkout__price-full strong { font-weight: 800; }
.clube-checkout__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 12px;
  padding: 20px 48px;
  min-height: 60px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff001b 1.99%, #dc00b4 79.75%);
  color: #fff;
  font-family: "Figtree", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(220, 0, 180, 0.32);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.clube-checkout__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(220, 0, 180, 0.45);
  text-decoration: none;
}

.clube-checkout__economy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: #f6f6f9;
  border-radius: 12px;
  font-family: "Figtree", -apple-system, sans-serif;
}
.clube-checkout__economy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #666;
}
.clube-checkout__economy p span { color: #151731; font-weight: 500; }
.clube-checkout__economy p strong { color: #151731; font-weight: 800; }
.clube-checkout__economy p strong span { color: #dc00b4; }
.clube-checkout__legal {
  margin: 0;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid #eaeaea;
}

/* === FAQ === */
.faq {
  padding: 24px 0 20px;
}
.faq h2 {
  margin: 0;
  color: var(--core-deep);
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  text-align: center;
}
.faq h2 span {
  color: var(--m-magenta);
  display: inline;
}
.faq--light {
  background: #fff;
  padding: 72px 0;
  margin: 0;
  color: var(--text-on-light);
}
.faq--light .eyebrow {
  display: block;
  margin: 0 0 var(--s-3);
  color: var(--m-magenta);
  text-align: center;
}
.faq-list {
  max-width: 940px;
  margin: 34px auto 0;
  display: grid;
  border-top: 1px solid #eaeaea;
}
.faq-item {
  border-bottom: 1px solid #eaeaea;
  transition: background 0.2s ease;
}
.faq-item[open] {
  background: linear-gradient(90deg, rgba(220, 0, 180, 0.045), rgba(220, 0, 180, 0) 60%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--core-deep);
  font-family: var(--ff-display);
  font-weight: 720;
  font-size: 21px;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.faq-item summary:hover,
.faq-item[open] summary {
  color: var(--m-magenta);
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc00b4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
  transition: transform 0.25s cubic-bezier(.22,.9,.34,1);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item > p,
.faq-item > ul {
  margin: 0;
  padding: 0 32px 28px;
  color: var(--text-on-light-muted);
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  animation: faqSlideDown 0.3s ease-out;
}
.faq-item a {
  color: var(--m-magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.faq-list-items {
  padding: 0 32px 28px 52px;
  list-style: disc;
  color: var(--text-on-light-muted);
}
.faq-list-items li {
  margin-bottom: 10px;
  line-height: 1.55;
}
.faq-list-items li::marker {
  color: var(--m-magenta);
}
.faq-list-items strong {
  color: var(--core-deep);
  font-weight: 760;
}
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .faq--light {
    padding: 52px 0;
  }
  .faq h2 {
    font-size: 34px;
    text-align: left;
  }
  .faq--light .eyebrow {
    text-align: left;
  }
  .faq-list {
    margin-top: 26px;
  }
  .faq-item summary {
    padding: 20px 0;
    font-size: 18px;
  }
  .faq-item > p,
  .faq-item > ul {
    padding: 0 0 22px;
  }
  .faq-list-items {
    padding: 0 0 22px 22px;
  }
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding: 0;
  margin-top: 0;
}

.site-footer__copy {
  border-top: 0;
  padding: 16px 0;
}
.site-footer__copy p {
  margin: 0; font-size: 13px; color: var(--text-on-dark-muted); text-align: center;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* === STICKY CTA (mobile only — flips visible via media query in Task 17) === */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: none;
  align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding: 12px 16px;
  background: var(--bg-dark-gradient);
  color: var(--text-on-dark);
  text-decoration: none;
  box-shadow: 0 -8px 24px rgba(21, 23, 49, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.sticky-cta__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
  min-width: 0;
}
.sticky-cta__small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.sticky-cta__big {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.sticky-cta__btn {
  background: var(--grad-premium);
  color: var(--text-on-dark);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
}

/* === MEDIA QUERIES === */
@media (max-width: 1024px) {
  .yoga-types__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .yoga-types__grid > :nth-child(4),
  .yoga-types__grid > :nth-child(5) {
    grid-column: span 1;
  }
  .second-hero__content {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
    gap: var(--s-5);
  }
  .second-hero__copy h2 {
    font-size: clamp(34px, 4vw, 44px);
  }
}

@media (min-width: 1180px) {
  .second-hero__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .clube-checkout {
    flex-direction: column;
  }
  .clube-sparkles-col {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
    flex-direction: row;
    justify-content: center;
    padding: 14px 0;
  }
  .clube-sparkles-col svg { width: 24px; height: 24px; margin: 0 6px; }
  .clube-sparkles-col--left { border-radius: 15px 15px 0 0; }
  .clube-sparkles-col--right { border-radius: 0 0 15px 15px; }
  .clube-sparkles-col--left::after {
    top: auto;
    bottom: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 1px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='1' viewBox='0 0 90 1'><line x1='0' y1='1' x2='90' y2='1' stroke='%23272A47' stroke-width='1' stroke-dasharray='6,6' stroke-dashoffset='3' stroke-linecap='round' /></svg>");
  }
  .clube-sparkles-col--right::before {
    bottom: auto;
    top: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 1px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='1' viewBox='0 0 90 1'><line x1='0' y1='1' x2='90' y2='1' stroke='%23272A47' stroke-width='1' stroke-dasharray='6,6' stroke-dashoffset='3' stroke-linecap='round' /></svg>");
  }
  .clube-checkout__card {
    border-radius: 0;
    padding: 32px 24px;
    gap: 20px;
  }
  .clube-checkout__title {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }
  .clube-checkout__panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }
  .clube-checkout__divider {
    display: none;
  }
  .clube-checkout__price {
    align-items: center;
    min-width: 0;
    gap: 10px;
  }
  .clube-checkout__price-main {
    font-size: 50px;
    justify-content: center;
  }
  .clube-checkout__price-full { font-size: 18px; }
  .clube-checkout__cta {
    width: 100%;
    padding: 22px 28px;
    font-size: 20px;
    min-height: 62px;
  }
  .clube-checkout__economy {
    text-align: center;
    padding: 14px 16px;
    background: #ececf3;
    border-radius: 12px;
  }
  .clube-checkout__economy p { font-size: 14px; }
  .clube-checkout__legal {
    text-align: center;
    padding: 8px 4px 0;
    font-size: 13px;
    border-top: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--page-padding-mobile);
    padding-right: var(--page-padding-mobile);
  }
  .section {
    padding-top: var(--s-7);
    padding-bottom: var(--s-7);
  }

  /* Typography downshift */
  .display { font-size: 40px; }
  .h1 { font-size: 28px; }
  .h2 { font-size: 22px; }
  .body-editorial { font-size: 16px; line-height: 24px; }

  /* Hero mobile (globos de luz — tighten padding, photo full-bleed behind) */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 760px;
  }
  .hero-inner {
    min-height: 100%;
    padding-bottom: 190px;
  }
  .hero-photo,
  .hero-globos,
  .hero::after {
    height: 100%;
    bottom: 0;
  }
  .hero-supports {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4;
  }
  .hero-inner {
    justify-content: flex-start;
    padding-top: 88px;
    padding-bottom: 190px;
  }
  .hero-photo img { object-position: 62% 42%; }
  .hero-title { font-size: clamp(54px, 16.8vw, 68px); line-height: 0.98; margin: 24px 0 14px; max-width: none; }
  .hero-body { font-size: 22px; line-height: 1.35; }
  .hero-body-2 { font-size: 18px; line-height: 1.5; margin-top: 14px; }
  .hero-instructors__label { font-size: 15px; }
  .hero-instructors { margin-bottom: 16px; }
  .hero-instructors__avatars {
    flex: 0 0 auto;
  }
  .hero-instructors__avatars img {
    flex: 0 0 40px;
    min-width: 40px;
    aspect-ratio: 1 / 1;
  }
  .badge-info { font-size: 13.5px; }
  .badge-info strong { font-size: 14px; }
  .site-header__inner { min-height: 56px; padding-top: 10px; padding-bottom: 10px; }
  .site-header__logo img { width: 50px; height: 50px; }
  .site-header__link { display: none; }
  /* Support bar stacks 2x2 on mobile */
  .hero-supports {
    grid-template-columns: 1fr 1fr;
    gap: 8px 6px;
    padding: 12px;
    background: rgba(253, 246, 237, 0.68);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
  .hero-supports__item { padding: 6px 4px; gap: 10px; }
  .hero-supports__item + .hero-supports__item::before { display: none; }
  .hero-supports__icon { width: 32px; height: 32px; }
  .hero-supports__icon svg { width: 16px; height: 16px; }
  .hero-supports__text { font-size: 12.5px; line-height: 1.24; font-weight: 600; }
  .hero-inner { padding: 88px 24px 190px; gap: 0; }
  .hero-title { font-size: clamp(54px, 16.8vw, 68px); line-height: 0.98; margin: 24px 0 14px; max-width: none; }
  .hero-title em { font-size: 0.98em; }
  .hero-body { font-size: 20px; line-height: 1.32; }
  .hero-body-2 { font-size: 18px; line-height: 1.45; margin-top: 14px; }
  .hero-cta { margin-top: 22px; }
  .hero-photo {
    width: 100%;
    opacity: 1;
    -webkit-mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.10) 20%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.78) 72%,
      rgba(0, 0, 0, 1) 100%);
            mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.10) 20%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.78) 72%,
      rgba(0, 0, 0, 1) 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg,
        rgba(249, 245, 239, 0.88) 0%,
        rgba(255, 238, 226, 0.64) 34%,
        rgba(249, 245, 239, 0.24) 100%),
      linear-gradient(180deg,
        rgba(255, 248, 239, 0.28) 0%,
        rgba(255, 188, 128, 0.10) 54%,
        rgba(156, 4, 206, 0.10) 100%),
      radial-gradient(circle at 4% 70%,
        rgba(220, 0, 180, 0.12) 0%,
        rgba(220, 0, 180, 0.05) 42%,
        transparent 74%);
  }
  .hero-globos {
    background:
      radial-gradient(circle 430px at 5% -10%,
        rgba(115, 48, 138, 0.55) 0%,
        rgba(115, 48, 138, 0.20) 30%,
        transparent 70%),
      radial-gradient(circle 520px at 8% 60%,
        rgba(255, 80, 0, 0.42) 0%,
        rgba(255, 80, 0, 0.15) 35%,
        transparent 75%),
      radial-gradient(circle 440px at 18% 100%,
        rgba(220, 0, 180, 0.42) 0%,
        rgba(220, 0, 180, 0.16) 35%,
        transparent 75%);
  }

  /* Yoga needs carousel */
  .yoga-needs {
    overflow: hidden;
  }
  .yoga-needs__title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.12;
  }
  .yoga-needs__subtitle {
    margin: 0 0 var(--s-5);
    padding-right: var(--page-padding-mobile);
    font-size: 16.5px;
    line-height: 1.42;
    text-align: left;
  }
  .yoga-needs .container {
    padding-right: 0;
  }
  .yoga-needs__carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 68vw);
    grid-template-columns: none;
    gap: var(--s-3);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 0 var(--page-padding-mobile) 8px 0;
    scrollbar-width: none;
  }
  .yoga-needs__carousel::-webkit-scrollbar { display: none; }
  .yoga-needs__card {
    scroll-snap-align: start;
  }
  .yoga-needs__card img {
    aspect-ratio: 1.08 / 1;
  }
  .yoga-needs__card::after {
    aspect-ratio: 1.08 / 1;
  }
  .yoga-needs__number {
    top: 12px;
    left: 12px;
  }
  .yoga-needs__card-copy {
    padding-right: var(--s-2);
    font-size: 17px;
    line-height: 1.3;
  }

  /* Benefits single column */
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__highlight {
    align-items: flex-start;
    padding: var(--s-4);
  }

  /* Second hero */
  .second-hero__content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    padding-left: var(--page-padding-mobile);
    padding-right: var(--page-padding-mobile);
    padding-top: var(--s-7);
    padding-bottom: calc(var(--s-7) + 72px);
  }
  .second-hero__media {
    width: 100%;
    margin-left: 0;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }
  .second-hero__media::after {
    background:
      linear-gradient(180deg, rgba(32, 35, 68, 0.04) 0%, rgba(32, 35, 68, 0.24) 100%);
  }
  .second-hero__panel {
    padding: 0;
  }
  .second-hero__copy {
    max-width: 100%;
  }
  .second-hero__copy h2 {
    font-size: 30px;
    line-height: 1.14;
  }
  .second-hero__copy p {
    font-size: 17px;
    line-height: 1.5;
  }
  .second-hero__list {
    grid-template-columns: 1fr;
    gap: 11px;
    font-size: 15.5px;
    line-height: 1.42;
  }
  .second-hero__list li {
    grid-template-columns: 16px minmax(0, 1fr);
  }

  /* Quote downshift */
  .quote { padding-top: var(--s-7); padding-bottom: var(--s-7); }
  .quote__text { font-size: 32px; }

  /* Objection stack */
  .objection__grid { grid-template-columns: 1fr; }

  /* Promise hero */
  .promise-hero {
    min-height: auto;
    background: #f9f5ef;
  }
  .promise-hero__image {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: clamp(238px, 64vw, 272px);
    transform: none;
    object-fit: cover;
    object-position: 52% 50%;
    filter: saturate(0.98) contrast(0.98);
    -webkit-mask-image: none;
            mask-image: none;
  }
  .promise-hero__overlay {
    inset: -2px;
    filter: none;
    background:
      radial-gradient(circle 560px at -14% 18%,
        rgba(115, 48, 138, 0.26) 0%,
        rgba(115, 48, 138, 0.10) 34%,
        transparent 76%),
      radial-gradient(circle 680px at -8% 62%,
        rgba(255, 80, 0, 0.20) 0%,
        rgba(255, 80, 0, 0.08) 36%,
        transparent 78%),
      radial-gradient(circle 620px at 10% 104%,
        rgba(220, 0, 180, 0.22) 0%,
        rgba(220, 0, 180, 0.09) 38%,
        transparent 78%),
      linear-gradient(180deg,
        rgba(249, 245, 239, 0.00) 0%,
        rgba(249, 245, 239, 0.00) 27%,
        rgba(249, 245, 239, 0.86) 34%,
        rgba(249, 245, 239, 1) 39%,
        rgba(249, 245, 239, 1) 100%),
      linear-gradient(90deg,
        rgba(249, 245, 239, 0.10) 0%,
        rgba(249, 245, 239, 0.00) 62%,
        rgba(249, 245, 239, 0.00) 100%);
  }
  .promise-hero__content {
    min-height: 740px;
    align-items: flex-end;
    padding-top: clamp(292px, 75vw, 330px);
    padding-bottom: calc(var(--s-7) + 76px);
  }
  .promise-hero__copy {
    width: 100%;
  }
  .promise-hero__copy h2 {
    font-size: 31px;
    line-height: 1.16;
  }
  .promise-hero__moments {
    gap: 11px;
    font-size: 15.5px;
    line-height: 1.38;
  }

  /* Yoga types stack */
  .yoga-types__grid { grid-template-columns: 1fr; }

  /* Authority stack and unify alignment */
  .authority__row,
  .authority__row--reverse {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .authority__row--reverse .authority__photo { order: 1; }
  .authority__row--reverse .authority__body {
    order: 2;
    text-align: left;
    align-items: flex-start;
  }
  .authority__row--reverse .authority__body .pill { align-self: flex-start; }
  .authority__name { font-size: 28px; }

  /* Battle card stack */
  .battle {
    padding-top: 58px;
    padding-bottom: 60px;
    border-top-width: 12px;
  }
  .battle__title {
    font-size: 34px;
  }
  .battle__subtitle {
    margin-bottom: 28px;
    font-size: 18px;
  }
  .battle__compare {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border-radius: 22px;
  }
  .battle__option {
    min-height: 160px;
    padding: 28px 22px;
  }
  .battle__option--plain,
  .battle__option--club {
    border-radius: 18px;
  }
  .battle__divider {
    margin: -10px auto;
    min-width: 190px;
    min-height: 38px;
    font-size: 12px;
  }
  .battle__price { font-size: 48px; }
  .battle__close {
    margin-top: 26px;
    font-size: 24px;
  }

  /* Checkout downshift */
  .clube-checkout__card {
    padding: 28px;
    border-radius: 24px;
  }
  .clube-checkout__panel {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  /* Sticky CTA visible on mobile */
  .sticky-cta { display: flex; }

  /* Prevent sticky CTA from covering footer content */
  main { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .display { font-size: 32px; }
  .battle__price { font-size: 40px; }
  .clube-sparkles-col { min-height: 44px; }
  .clube-sparkles-col svg { width: 20px; height: 20px; }
  .clube-checkout__card { padding: 28px 18px; }
  .clube-checkout__title { font-size: 20px; }
  .clube-checkout__price-main { font-size: 44px; }
  .quote__text { font-size: 24px; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--m-magenta);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--m-magenta);
  outline-offset: 4px;
}
