/* ZenWeave marketing — palette from app (dark luxury wellness) */
:root {
  --bg: #0a1625;
  --gradient-start: #13294b;
  --gradient-end: #0f1f38;
  --teal: #14d9c8;
  --gold: #e8b923;
  --text: #f1f5f9;
  --card: #1e2a44;
  --muted: rgba(241, 245, 249, 0.55);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 16px;
  --nav-h: 72px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 300;
  padding: 0.5rem 1rem;
  background: var(--teal);
  color: var(--bg);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.75rem;
  outline: none;
}

/* Soft animated wash behind content */
.aurora {
  position: fixed;
  inset: -30% -20%;
  z-index: -2;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(20, 217, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 30%, rgba(232, 185, 35, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(19, 41, 75, 0.9), transparent 45%);
  animation: aurora-shift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .aurora {
    animation: none;
  }
}

@keyframes aurora-shift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(3%, -2%) scale(1.05);
    opacity: 0.95;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.nav__toggle:focus-visible,
.lightbox__close:focus-visible {
  outline-offset: 2px;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 32px);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(15, 31, 56, 0.6) 0%, rgba(10, 22, 37, 0.95) 100%);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-align: center;
}

.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ——— Header / nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 22, 37, 0.82);
  border-bottom: 1px solid rgba(20, 217, 200, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
  padding: 0.5rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.nav__brand:hover {
  text-decoration: none;
  color: var(--teal);
}

.nav__logo {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(20, 217, 200, 0.15);
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.nav__links {
  display: flex;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--teal);
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: var(--card);
  border: 1px solid rgba(20, 217, 200, 0.2);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-family: inherit;
  cursor: pointer;
}

.nav__cta {
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .nav__toggle {
    display: block;
  }
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 31, 56, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(20, 217, 200, 0.1);
    display: none;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__cta {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--teal {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 8px 28px rgba(20, 217, 200, 0.25);
}
.btn--teal:hover {
  box-shadow: 0 12px 36px rgba(20, 217, 200, 0.35);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #c99a1a);
  color: var(--bg);
  box-shadow: 0 8px 28px rgba(232, 185, 35, 0.25);
}
.btn--gold:hover {
  box-shadow: 0 12px 36px rgba(232, 185, 35, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(241, 245, 249, 0.25);
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ——— Hero ——— */
.hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.hero__inner {
  max-width: 46rem;
  margin: 0 auto;
}

.hero__mark {
  margin-bottom: 1rem;
  filter: drop-shadow(0 12px 40px rgba(20, 217, 200, 0.2));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal.is-visible {
    transition: none;
  }
}

/* ——— Trust band: stats + disclaimer + value pills (one section, no dead air) ——— */
.section--trust {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(180deg, rgba(20, 217, 200, 0.05), transparent 55%);
}

.stats-note {
  margin: 0.75rem auto 2rem;
  max-width: 36rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.25rem;
}

.pill-card {
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: rgba(30, 42, 68, 0.92);
  border: 1px solid rgba(20, 217, 200, 0.14);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pill-card:hover {
  border-color: rgba(20, 217, 200, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.pill-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--teal);
  line-height: 1.3;
}

.pill-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ——— Split / panel ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 1rem;
}

.split p {
  color: var(--muted);
  margin: 0;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(20, 217, 200, 0.1);
  box-shadow: var(--shadow);
}

.panel__title {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 1.15rem;
}

.panel__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.panel__list li {
  margin-bottom: 0.5rem;
}

/* ——— Feature grid ——— */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(30, 42, 68, 0.65);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(20, 217, 200, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(20, 217, 200, 0.25);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--teal);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Carousel ——— */
.carousel {
  max-width: 420px;
  margin: 0 auto;
}

.carousel__frame {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20, 217, 200, 0.35);
  background: var(--card);
  color: var(--teal);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel__btn:hover {
  background: var(--teal);
  color: var(--bg);
}

.carousel__main {
  flex: 1;
  margin: 0;
  text-align: center;
}

.carousel__zoom-hit {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(20, 217, 200, 0.2);
}

.carousel__main img {
  display: block;
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  object-position: top center;
  background: #000;
}

.carousel__main figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.carousel__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.carousel__thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  background: #000;
}

.carousel__thumb:hover,
.carousel__thumb.is-active {
  opacity: 1;
  border-color: var(--teal);
}

.carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Stories ——— */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.story-card {
  margin: 0;
  padding: 1.35rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 185, 35, 0.12);
}

.story-card__quote {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}

.story-card__meta {
  font-size: 0.8rem;
  color: var(--teal);
}

/* ——— Compare table ——— */
.compare {
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 217, 200, 0.12);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.92rem;
}

.compare__table th,
.compare__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(241, 245, 249, 0.08);
}

.compare__table thead th {
  background: rgba(30, 42, 68, 0.9);
  font-weight: 600;
  color: var(--text);
}

.compare__table tbody tr {
  transition: background 0.2s ease;
}

.compare__table tbody tr:hover {
  background: rgba(20, 217, 200, 0.06);
}

.compare__premium {
  background: rgba(232, 185, 35, 0.08);
  color: var(--gold);
  font-weight: 600;
}

.check {
  color: var(--teal);
  margin-right: 0.25rem;
}

.cta-block {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(20, 217, 200, 0.1), rgba(232, 185, 35, 0.08));
  border-radius: var(--radius);
  border: 1px solid rgba(20, 217, 200, 0.15);
}

.cta-block__text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ——— FAQ ——— */
.faq__item {
  border-bottom: 1px solid rgba(241, 245, 249, 0.1);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__q::after {
  content: "+";
  color: var(--teal);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq__q[aria-expanded="true"]::after {
  content: "−";
}

.faq__a {
  padding: 0 0 1.1rem;
}

.faq__a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq__a[hidden] {
  display: none;
}

/* ——— Footer ——— */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(20, 217, 200, 0.1);
  background: rgba(15, 31, 56, 0.5);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__label {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 0.35rem;
}

.footer__soon {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

/* ——— Sticky CTA ——— */
.sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  padding: 0.65rem 1.1rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

@media (max-width: 480px) {
  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}

/* ——— Cursor glow (desktop, motion OK) ——— */
.cursor-glow {
  display: none;
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 217, 200, 0.14) 0%,
    rgba(232, 185, 35, 0.06) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

@media (min-width: 900px) {
  body.has-cursor-glow .cursor-glow {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.has-cursor-glow .cursor-glow {
    display: none;
  }
}

/* ——— Compact header on scroll ——— */
.site-header.is-compact .nav {
  min-height: 56px;
}
.site-header.is-compact {
  background: rgba(10, 22, 37, 0.94);
}

/* ——— Hero split + phone mock ——— */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
  padding-top: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .hero .hero__inner {
    margin: 0;
    text-align: left;
    max-width: none;
  }
  .hero .hero__actions,
  .hero .store-badges--hero {
    justify-content: flex-start;
  }
}

.hero__accent {
  color: var(--gold);
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.hero__phone {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__phone {
    transition: none;
  }
}

.hero__phone-frame {
  position: absolute;
  inset: -12px -8px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(20, 217, 200, 0.25), rgba(232, 185, 35, 0.12));
  filter: blur(20px);
  opacity: 0.7;
  z-index: 0;
}

.hero__phone-screen {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 3px solid rgba(241, 245, 249, 0.15);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(20, 217, 200, 0.15);
  max-height: min(520px, 58vh);
  width: auto;
  object-fit: cover;
}

/* ——— Store badges ——— */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin: 1.25rem 0;
  justify-content: center;
}

.store-badges--hero {
  margin-top: 1.5rem;
}

.store-badges--cta {
  justify-content: center;
  margin-top: 1.5rem;
}

.store-badges--footer {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.store-badges__link {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, filter 0.2s ease;
  position: relative;
}

.store-badges__link:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  text-decoration: none;
}

.store-badges__img {
  height: auto;
  display: block;
}

.store-badges__img--google {
  height: 58px;
  width: auto;
}

.store-badges__img--apple {
  height: 50px;
  width: auto;
}

.store-badges--cta .store-badges__img--google {
  height: 64px;
}

.store-badges--cta .store-badges__img--apple {
  height: 54px;
}

.store-badges__ribbon {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.store-badges__link--apple.is-placeholder {
  opacity: 0.92;
}

/* ——— Benefits grid ——— */
.section--benefits {
  background: linear-gradient(180deg, transparent, rgba(19, 41, 75, 0.35) 40%, transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  background: linear-gradient(155deg, rgba(30, 42, 68, 0.95), rgba(19, 41, 75, 0.5));
  border: 1px solid rgba(20, 217, 200, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(20, 217, 200, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.benefit-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.65rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--teal);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— How It Works steps ——— */
.section--how {
  background: linear-gradient(180deg, transparent, rgba(19, 41, 75, 0.2) 50%, transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: linear-gradient(155deg, rgba(30, 42, 68, 0.9), rgba(19, 41, 75, 0.5));
  border: 1px solid rgba(20, 217, 200, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  border-color: rgba(20, 217, 200, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.step-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), rgba(20, 217, 200, 0.4));
  color: var(--bg);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--teal);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Affirmations & Manifestation section ——— */
.section--affirmations {
  background: linear-gradient(180deg, rgba(232, 185, 35, 0.04), rgba(19, 41, 75, 0.3) 50%, transparent);
}

.section--affirmations h2 em {
  color: var(--gold);
  font-style: italic;
}

.affirm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.affirm-card {
  background: linear-gradient(155deg, rgba(30, 42, 68, 0.9), rgba(19, 41, 75, 0.5));
  border: 1px solid rgba(232, 185, 35, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.affirm-card:hover {
  border-color: rgba(232, 185, 35, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.affirm-card--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(155deg, rgba(232, 185, 35, 0.08), rgba(30, 42, 68, 0.95));
  border-color: rgba(232, 185, 35, 0.2);
}

@media (min-width: 768px) {
  .affirm-card--highlight {
    grid-column: 1 / -1;
  }
}

.affirm-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.affirm-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.affirm-card p em {
  color: var(--text);
  font-style: italic;
}

/* ——— 3D tilt cards ——— */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ——— Stories slider ——— */
.stories-slider {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.stories-slider__viewport {
  position: relative;
  /* Tall enough for multi-line quotes; absolute slides do not expand layout. */
  min-height: 300px;
}

.story-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  padding: 2rem 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 185, 35, 0.15);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.story-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .story-slide {
    transition: none;
  }
}

.stories-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.stories-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(241, 245, 249, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.stories-slider__dot.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

/* ——— Toast ——— */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 250;
  background: var(--card);
  color: var(--text);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 217, 200, 0.3);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  max-width: min(90vw, 360px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ——— Outcome stats (inside .section--trust) ——— */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  padding: 1.5rem 1rem;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--teal);
  opacity: 0.7;
}

.stat-card__label {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.stats-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  font-style: italic;
}

/* ——— Breathing bubble ——— */
.section--breathe {
  text-align: center;
}

.breathe-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.breathe-bubble {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(circle, rgba(20, 217, 200, 0.15) 0%, rgba(20, 217, 200, 0.04) 70%);
  border: 2px solid rgba(20, 217, 200, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.breathe-bubble:hover {
  box-shadow: 0 0 60px rgba(20, 217, 200, 0.2);
}

.breathe-bubble__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(20, 217, 200, 0.15);
  pointer-events: none;
}

.breathe-bubble.is-breathing {
  cursor: default;
}

.breathe-bubble.is-breathing .breathe-bubble__ring {
  animation: breathe-ring 19s ease-in-out infinite;
}

@keyframes breathe-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  21% { transform: scale(1.15); opacity: 0.6; }
  58% { transform: scale(1.15); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.3; }
}

.breathe-bubble.is-inhale {
  animation: breathe-in 4s ease-in-out forwards;
}
.breathe-bubble.is-hold {
  animation: none;
  transform: scale(1.35);
}
.breathe-bubble.is-exhale {
  animation: breathe-out 8s ease-in-out forwards;
}

@keyframes breathe-in {
  from { transform: scale(1); }
  to { transform: scale(1.35); }
}

@keyframes breathe-out {
  from { transform: scale(1.35); }
  to { transform: scale(1); }
}

.breathe-bubble__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  text-align: center;
  pointer-events: none;
  z-index: 1;
}

.breathe-wrap__hint {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .breathe-bubble.is-inhale,
  .breathe-bubble.is-hold,
  .breathe-bubble.is-exhale,
  .breathe-bubble.is-breathing .breathe-bubble__ring {
    animation: none;
    transform: none;
  }
}

/* ——— Quiz ——— */
.section--quiz {
  background: linear-gradient(180deg, rgba(232, 185, 35, 0.03), transparent 60%);
}

.quiz {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(20, 217, 200, 0.12);
  padding: 2rem 1.5rem;
  min-height: 260px;
}

.quiz__step {
  display: none;
}

.quiz__step.is-active {
  display: block;
}

.quiz__question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  text-align: center;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 480px;
  margin: 0 auto;
}

.quiz__option {
  display: block;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(20, 217, 200, 0.2);
  border-radius: 12px;
  background: rgba(30, 42, 68, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.quiz__option:hover {
  background: rgba(20, 217, 200, 0.08);
  border-color: var(--teal);
  transform: translateX(4px);
}

.quiz__result {
  text-align: center;
  padding: 1rem 0;
}

.quiz__result-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--gold);
}

.quiz__result-text {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ——— Coming Soon roadmap ——— */
.section--roadmap {
  background: linear-gradient(180deg, rgba(19, 41, 75, 0.2), transparent 70%);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.roadmap-card {
  background: linear-gradient(155deg, rgba(30, 42, 68, 0.85), rgba(19, 41, 75, 0.45));
  border: 1px solid rgba(232, 185, 35, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative;
  transition: border-color 0.25s ease;
}

.roadmap-card:hover {
  border-color: rgba(232, 185, 35, 0.25);
}

.roadmap-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(232, 185, 35, 0.15);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--teal);
}

.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__stores .footer__label {
  margin-bottom: 0.35rem;
}
