:root {
  --ink: #2f2b22;
  --ink-muted: #6b6458;
  --line: rgba(112, 99, 73, 0.14);
  --paper-1: #f4f0e8;
  --paper-2: #ece5d8;
  --accent: #6c5a39;
  --accent-soft: #c6b387;
  --accent-warm: #f7f1e5;
  --gold-1: #f1e2ba;
  --gold-2: #cfb27a;
  --gold-3: #9e8050;
  --breathe-duration: 10s;
  --yogona-photo: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

html {
  scrollbar-gutter: auto;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #050505;
  background-attachment: fixed;
}

.background-video {
  position: fixed;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  object-position: center center;
  z-index: -3;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint style;
}

.app-shell {
  width: 100%;
  margin: 0 auto;
  min-height: 100dvh;
  max-width: none;
  padding: 0;
  position: relative;
}

.panel {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 1400ms cubic-bezier(0.22, 0.72, 0.2, 1),
    visibility 0s linear 1400ms;
}

.panel-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition:
    opacity 1400ms cubic-bezier(0.22, 0.72, 0.2, 1),
    visibility 0s linear 0s;
}

.panel-intro {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  background: #050505;
  opacity: 1;
  transition: opacity 1800ms ease;
}

.intro-surface {
  width: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 8vw;
}

.intro-mark {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  width: fit-content;
  max-width: min(92vw, 1200px);
  margin-inline: auto;
  transform: translateY(calc(-16vh - 2.2em + 1cm));
}

.intro-logo {
  width: clamp(164px, 18vw, 250px);
  max-width: 56vw;
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 12px 26px rgba(255, 255, 255, 0.06));
  transform: translateY(8px);
  animation: introLogoReveal 4200ms ease forwards;
}

.intro-copy {
  margin: 1.5cm 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.38ch;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #f7f4ed;
  white-space: nowrap;
  text-align: center;
}

.intro-word {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
  animation: subtitleWordReveal 2200ms ease forwards;
}

.intro-word:nth-child(1) {
  animation-delay: 300ms;
}

.intro-word:nth-child(2) {
  animation-delay: 750ms;
}

.intro-word:nth-child(3) {
  animation-delay: 1200ms;
}

.intro-word:nth-child(4) {
  animation-delay: 1650ms;
}

.intro-reset-shell {
  margin-top: 1.5rem !important;
  position: relative;
  top: 0 !important;
  opacity: 0;
  transform: translateY(14px);
  animation: landingStackReveal 2000ms ease 3300ms forwards;
}

.intro-headphones-note {
  margin: 6px 0 0;
  color: rgba(251, 245, 233, 0.7);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
  animation: whyFiveLineIn 1400ms ease forwards;
  animation-delay: 2500ms;
}

.intro-prep-copy-wrap {
  position: absolute;
  left: 50%;
  top: calc(clamp(164px, 18vw, 250px) + 18px + 1.5cm);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  width: max-content;
  max-width: 100%;
}

.intro-prep-copy {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #fbf5e9;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(18, 14, 9, 0.24);
  opacity: 0;
  filter: blur(16px);
  transform: translateY(18px);
}

.intro-prep-subcopy {
  margin: 6px 0 0;
  color: rgba(251, 245, 233, 0.7);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}

body.intro-choice-active .intro-reset-shell {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
}

body.intro-choice-active .landing-duration-option {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
}

body.intro-choice-active .intro-copy {
  pointer-events: none;
}

body.intro-choice-active .intro-word {
  animation: none !important;
}

body.intro-choice-active .intro-headphones-note {
  animation: none !important;
  pointer-events: none;
}

body.intro-prep-active .intro-copy,
body.intro-prep-active .intro-headphones-note,
body.intro-prep-active .intro-reset-shell {
  pointer-events: none;
}

body.intro-prep-active .intro-prep-copy-wrap {
  opacity: 1;
}

body.intro-prep-active .intro-prep-copy {
  animation: prepCopyIn 2600ms cubic-bezier(0.22, 0.72, 0.2, 1) forwards;
}

body.intro-prep-active .intro-prep-subcopy {
  animation: prepNoteIn 2200ms ease forwards;
  animation-delay: 700ms;
}

.panel-landing {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  opacity: 1;
  transition: opacity 1800ms ease;
}

.panel-prep,
.panel-test {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
}

.panel-prep.panel-visible {
  display: grid;
  place-items: center;
  background: #050505;
  box-shadow: none;
}

body.prep-exiting .prep-copy-wrap {
  animation: prepWrapFadeOut 1500ms cubic-bezier(0.22, 0.72, 0.2, 1) forwards;
  will-change: opacity, filter;
}

.prep-copy-wrap {
  --prep-shift: -12vh;
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
  padding: 0 24px;
  text-align: center;
  transform: translateY(var(--prep-shift));
}

.prep-copy {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #fbf5e9;
  text-shadow: 0 10px 30px rgba(18, 14, 9, 0.24);
  text-wrap: balance;
  opacity: 0;
  filter: blur(16px);
  transform: translateY(18px);
  animation: prepCopyIn 2600ms cubic-bezier(0.22, 0.72, 0.2, 1) forwards;
}

.prep-subcopy {
  margin: 6px 0 0;
  color: rgba(251, 245, 233, 0.7);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: none;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
  animation: prepNoteIn 2200ms ease forwards;
  animation-delay: 700ms;
}

.hero-block {
  padding: 22vh 0 10vh;
  text-align: center;
  position: relative;
}

.hero-block-image {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 14vh 8vw 16vh;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 14, 10, 0.06), rgba(16, 14, 10, 0.12)),
    radial-gradient(circle at 50% 20%, rgba(247, 232, 194, 0.06), transparent 24%),
    var(--yogona-photo);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.08),
    inset 0 -80px 140px rgba(26, 20, 12, 0.1);
}

.brand-mark {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: rgba(246, 235, 207, 0.88);
  text-shadow: 0 4px 14px rgba(18, 14, 9, 0.2);
}

.hero-calmvinner {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  display: block;
  width: clamp(64px, 6vw, 98px);
  max-width: 20vw;
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 8px 18px rgba(18, 14, 9, 0.14));
}

.hero-logo {
  position: absolute;
  top: 42px;
  left: 50%;
  display: block;
  width: clamp(126px, 15vw, 188px);
  max-width: 48vw;
  height: auto;
  object-fit: contain;
  filter: sepia(0.18) saturate(0.84) brightness(1.01) drop-shadow(0 12px 26px rgba(18, 14, 9, 0.12));
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

.title {
  margin: 14px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #fbf5e9;
  text-shadow: 0 10px 30px rgba(18, 14, 9, 0.24);
  text-wrap: balance;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(10px);
  animation: heroTitleReveal 4200ms ease forwards;
}

.subtitle,
.result-message,
.source-note {
  color: var(--ink-muted);
  line-height: 1.64;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.hero-block-image .subtitle {
  max-width: 28rem;
  margin-inline: auto;
  color: rgba(247, 238, 219, 0.88);
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.subtitle-wordline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45ch;
}

.subtitle-word {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
  animation: subtitleWordReveal 2200ms ease forwards;
}

.subtitle-word:nth-child(1) {
  animation-delay: 2500ms;
}

.subtitle-word:nth-child(2) {
  animation-delay: 2950ms;
}

.subtitle-word:nth-child(3) {
  animation-delay: 3400ms;
}

.subtitle-word:nth-child(4) {
  animation-delay: 3850ms;
}

.landing-reset-shell {
  display: grid;
  gap: 14px;
  margin-top: -78px;
  width: min(90vw, 760px);
  opacity: 0;
  transform: translateY(14px);
  justify-items: center;
}

.landing-duration-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.landing-duration-option {
  min-width: 136px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 240, 208, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 238, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.12);
  color: rgba(255, 244, 220, 0.92);
  font: inherit;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 240ms ease, color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.landing-duration-option:hover,
.landing-duration-option:focus-visible,
.landing-duration-option.is-default {
  color: #fff8ea;
  background: rgba(255, 248, 236, 0.1);
  border-color: rgba(255, 240, 208, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 238, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.14);
}

.landing-duration-option:hover,
.landing-duration-option:focus-visible {
  transform: translateY(-1px);
}

body.landing-reveal .hero-calmvinner {
  animation: landingFadeIn 1600ms ease 1000ms forwards;
}

body.landing-reveal .hero-logo {
  animation: landingLogoReveal 1800ms ease 1000ms forwards;
}

body.landing-reveal .landing-reset-shell {
  animation: landingStackReveal 2000ms ease 2000ms forwards;
}

.meditation-drawer,
.presence-panel {
  display: none !important;
}

.session-note {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  max-width: none;
  width: calc(100% - 44px);
  margin: 0;
  color: rgba(247, 238, 219, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
  white-space: nowrap;
}

.session-note-meditation {
  bottom: 30px;
  z-index: 3;
  color: rgba(247, 238, 219, 0.42);
}

.start-link {
  margin-top: 16px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(251, 243, 225, 0.96);
  font: inherit;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: startLinkReveal 2600ms ease forwards;
  animation-delay: 4700ms;
  position: relative;
}

.start-link:hover {
  color: #fff8eb;
}

.start-link::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(251, 243, 225, 0.82);
  transform-origin: center;
  transition: transform 280ms ease, opacity 280ms ease;
  opacity: 0.82;
}

.start-link:hover::after {
  transform: scaleX(1.45);
  opacity: 1;
}

.copyright-note {
  margin: 18px 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 238, 219, 0.42);
}

.site-copyright {
  position: fixed;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 238, 219, 0.42);
  text-align: center;
  z-index: 35;
  white-space: nowrap;
  pointer-events: none;
}

.story-kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #6c8178;
  text-transform: uppercase;
}

.story-step h2,
.section-title {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3.9vw, 2rem);
  font-weight: 700;
  color: #1f2c27;
}

.control-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

#result .control-row {
  max-width: min(720px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  margin-top: 0;
}

#result .btn {
  padding: 11px 22px;
  border: 1px solid rgba(255, 240, 208, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 238, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.12);
  color: rgba(255, 244, 220, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#result .btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 238, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.14);
  color: #fff8ea;
  background: rgba(255, 248, 236, 0.1);
  border-color: rgba(255, 240, 208, 0.24);
}

.btn,
.modal-close,
.audio-toggle,
.source-fab {
  border-radius: 999px;
  border: 1px solid rgba(120, 103, 73, 0.24);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn {
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.24), transparent),
    linear-gradient(128deg, #b5945f, #7e6540);
  color: #fff7eb;
  padding: 14px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 26px rgba(41, 29, 12, 0.18);
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 30px rgba(41, 29, 12, 0.24);
}

.audio-toggle {
  padding: 0;
  font-size: 0.84rem;
  color: rgba(255, 247, 231, 0.92);
  background: transparent;
  box-shadow: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.audio-toggle-label,
.audio-toggle-state {
  display: block;
}

.audio-toggle-state {
  color: rgba(255, 238, 204, 0.72);
}

.audio-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.audio-controls-global {
  position: fixed;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  z-index: 50;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

body.testing .audio-controls-global:not(.is-idle-hidden) {
  opacity: 1;
  pointer-events: auto;
}

.audio-controls-global.is-idle-hidden,
body.controls-idle-hidden .audio-controls-global,
.global-home-link.is-idle-hidden,
body.controls-idle-hidden .global-home-link {
  opacity: 0;
  pointer-events: none;
}

.global-home-link {
  position: fixed;
  top: 16px;
  left: 18px;
  z-index: 50;
  color: rgba(255, 247, 231, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(18, 14, 9, 0.18);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 900ms ease, color 220ms ease, transform 220ms ease;
}

.global-home-link-main {
  padding: 0;
  border: none;
  background: transparent;
}

.global-home-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.audio-skip {
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 247, 231, 0.88);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease;
}

.audio-skip:hover {
  color: #ffffff;
  transform: scale(1.08);
}

.panel-test,
.dot-stage {
  min-height: 100dvh;
}

.dot-stage {
  display: grid;
  place-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.focus-dot {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.breath-fill {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2) 36%, rgba(255, 255, 255, 0.04) 100%);
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  filter: blur(30px);
  transition:
    clip-path var(--fill-duration, 4000ms) cubic-bezier(0.32, 0.08, 0.22, 1),
    filter var(--fill-duration, 4000ms) cubic-bezier(0.32, 0.08, 0.22, 1);
  pointer-events: none;
}

.breath-guide {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: calc(-28px - 1cm);
  font-size: clamp(1.1rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.92);
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 1400ms ease-out,
    filter 1400ms ease-out,
    transform 1400ms ease-out;
  pointer-events: none;
  z-index: 2;
  text-align: center;
  white-space: normal;
  line-height: 0.92;
}

.breath-guide-base,
.breath-guide-hold {
  display: block;
}

.breath-guide-hold {
  margin-top: 0.28em;
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 900ms ease-out,
    filter 900ms ease-out;
}

.breath-guide.show-hold .breath-guide-hold {
  opacity: 1;
  filter: blur(0);
}

.breath-guide.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) translateY(-2px);
}

.session-progress {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: min(54vh, 420px);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.34);
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 247, 232, 0.12),
    0 0 24px rgba(255, 247, 232, 0.12);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

.session-progress-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 240, 210, 0.82));
  box-shadow:
    0 0 24px rgba(255, 247, 232, 0.34),
    0 0 44px rgba(255, 247, 232, 0.16);
}

.session-elapsed {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

.session-elapsed-text {
  margin: 0;
  color: rgba(255, 247, 232, 0.94);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  text-shadow: 0 0 16px rgba(255, 247, 232, 0.12);
}

.pace-control {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

.pace-title {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 247, 232, 0.96);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 247, 232, 0.14);
}

.pace-list {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.pace-option {
  width: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 247, 232, 0.58);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: none;
  text-align: right;
  cursor: pointer;
  text-shadow: 0 0 14px rgba(255, 247, 232, 0.1);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, text-shadow 220ms ease;
}

.pace-option:hover,
.pace-option.is-selected {
  color: rgba(255, 247, 232, 0.94);
}

.pace-option.is-selected {
  text-shadow: 0 0 16px rgba(255, 247, 232, 0.18);
}

.presence-mini {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  gap: 4px;
  justify-items: start;
  max-width: min(28vw, 260px);
  pointer-events: none;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

body.testing:not(.controls-idle-hidden) .session-elapsed,
body.testing:not(.controls-idle-hidden) .session-progress,
body.testing:not(.controls-idle-hidden) .presence-mini,
body.testing:not(.controls-idle-hidden) .pace-control {
  opacity: 1;
  filter: blur(0);
}

.presence-mini-text,
.presence-mini-countries {
  margin: 0;
  text-align: left;
}

.presence-mini-text {
  color: rgba(255, 247, 232, 0.94);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 247, 232, 0.12);
  white-space: nowrap;
}

.presence-mini-countries {
  margin-top: 2px;
  color: rgba(255, 247, 232, 0.62);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.45;
}

.session-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 247, 232, 0.64);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
  display: none !important;
}

.session-close:hover {
  color: rgba(255, 250, 240, 0.96);
  transform: scale(1.08);
}

.meditation-drawer {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.meditation-drawer-trigger {
  width: auto;
  min-width: 70px;
  height: 36px;
  margin-left: 10px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(255, 242, 214, 0.08);
  border-radius: 999px;
  background: rgba(18, 16, 13, 0.22);
  color: rgba(255, 242, 214, 0.54);
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
  gap: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-trigger-icon {
  display: block;
}

.drawer-trigger-text {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meditation-drawer-trigger:hover {
  color: rgba(255, 248, 235, 0.92);
  background: rgba(18, 16, 13, 0.34);
  transform: translateX(1px);
}

.meditation-drawer-body {
  width: min(380px, calc(100vw - 56px));
  margin-left: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 242, 214, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.28), rgba(22, 20, 18, 0.18)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045), transparent 28%);
  backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 16px 34px rgba(20, 15, 10, 0.14);
  opacity: 0;
  transform: translateX(calc(-100% - 22px));
  transition:
    opacity 6000ms cubic-bezier(0.32, 0, 0.18, 1),
    transform 6400ms cubic-bezier(0.32, 0, 0.18, 1),
    background 4800ms cubic-bezier(0.32, 0, 0.18, 1),
    border-color 4800ms cubic-bezier(0.32, 0, 0.18, 1),
    box-shadow 4800ms cubic-bezier(0.32, 0, 0.18, 1);
  pointer-events: none;
}

body.drawer-closing .meditation-drawer-body {
  transition:
    opacity 6000ms cubic-bezier(0.32, 0, 0.18, 1),
    transform 6400ms cubic-bezier(0.32, 0, 0.18, 1),
    background 4800ms cubic-bezier(0.32, 0, 0.18, 1),
    border-color 4800ms cubic-bezier(0.32, 0, 0.18, 1),
    box-shadow 4800ms cubic-bezier(0.32, 0, 0.18, 1);
}

body.drawer-peek .meditation-drawer-body {
  opacity: 0.98;
  transform: translateX(calc(-62% - 10px));
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.46), rgba(22, 20, 18, 0.34)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06), transparent 30%);
  border-color: rgba(255, 242, 214, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.1),
    0 18px 38px rgba(20, 15, 10, 0.18);
  transition:
    opacity 2000ms cubic-bezier(0.32, 0, 0.18, 1),
    transform 2200ms cubic-bezier(0.32, 0, 0.18, 1),
    background 2000ms cubic-bezier(0.32, 0, 0.18, 1),
    border-color 2000ms cubic-bezier(0.32, 0, 0.18, 1),
    box-shadow 2000ms cubic-bezier(0.32, 0, 0.18, 1);
  pointer-events: none;
}

body.drawer-open .meditation-drawer-body {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.breath-controls {
  display: none;
}

.breath-preset-row {
  display: grid;
  gap: 8px;
}

.breath-preset {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 242, 214, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.04);
  color: rgba(255, 242, 215, 0.82);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.breath-preset:hover,
.breath-preset.is-selected {
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 242, 214, 0.18);
  color: rgba(255, 248, 235, 0.94);
}

.breath-preset:hover {
  transform: translateY(-1px);
}

.focus-dot,
.session-progress,
.presence-panel,
.session-note,
.session-close,
.meditation-drawer,
.meditation-drawer-body {
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

.presence-panel {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 242, 214, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.22), rgba(22, 20, 18, 0.1)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045), transparent 28%);
  backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 16px 34px rgba(20, 15, 10, 0.14);
  opacity: 0;
  filter: blur(12px);
  transform: translateY(8px);
  transition:
    opacity 2200ms ease,
    filter 2200ms ease,
    transform 2200ms ease;
}

body.drawer-open .presence-panel {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

body.testing .presence-panel {
  display: none !important;
}

body.drawer-open .presence-panel.is-hidden,
.presence-panel.is-hidden {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(16px);
  pointer-events: none;
}

.presence-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 242, 215, 0.68);
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
  touch-action: manipulation;
}

.presence-close:hover {
  color: rgba(255, 250, 240, 0.94);
  transform: scale(1.12);
}

.presence-kicker {
  margin: 0 0 16px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 221, 0.74);
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.presence-stat {
  display: grid;
  gap: 6px;
  padding: 12px 12px 10px;
  border-radius: 20px;
  background: rgba(255, 249, 238, 0.035);
  border: 1px solid rgba(241, 228, 199, 0.06);
}

.presence-label {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(223, 212, 191, 0.54);
}

.presence-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff7ea;
  text-shadow: none;
}

.heart-button {
  margin-top: 12px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 242, 214, 0.1);
  background: rgba(255, 250, 240, 0.04);
  color: rgba(255, 242, 215, 0.92);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.country-panel {
  margin-top: 10px;
}

.country-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.country-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(239, 222, 185, 0.08);
  background: rgba(255, 250, 240, 0.04);
  color: rgba(248, 241, 229, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.country-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 247, 230, 0.88);
  box-shadow: 0 0 10px rgba(255, 247, 230, 0.12);
}

.heart-float {
  position: absolute;
  bottom: 96px;
  font-size: 1.3rem;
  color: rgba(255, 222, 232, 0.9);
  pointer-events: none;
  z-index: 4;
  animation: floatHeart 2400ms ease-out forwards;
}

.audio-toggle-floating {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  color: rgba(234, 242, 238, 0.82);
  background: rgba(18, 31, 27, 0.18);
  border-color: rgba(224, 239, 232, 0.14);
  backdrop-filter: blur(10px);
}

#result.panel-visible {
  position: fixed;
  inset: 0;
  isolation: isolate;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #050505;
}

#result.panel-visible::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.92);
}

.result-home-surface {
  background: #050505;
}

.result-home-mark {
  position: relative;
  transform: translateY(calc(-16vh - 2.2em + 1cm));
}

.result-home-logo {
  width: clamp(164px, 18vw, 250px);
  max-width: 56vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(255, 255, 255, 0.06));
  opacity: 0;
  transform: translateY(8px);
}

.result-home-copy {
  margin: 1.5cm 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.38ch;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #f7f4ed;
  white-space: nowrap;
  text-align: center;
}

.result-home-copy span {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
}

.result-home-note {
  margin: 6px 0 0;
  color: rgba(251, 245, 233, 0.7);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}

.result-home-actions {
  margin-top: 1.5rem !important;
  opacity: 0;
  transform: translateY(14px);
  animation: none;
}
body.showing-result .result-home-logo {
  animation: introLogoReveal 4200ms ease forwards;
}

body.showing-result .result-home-copy span:nth-child(1) {
  animation: subtitleWordReveal 2200ms ease 300ms forwards;
}

body.showing-result .result-home-copy span:nth-child(2) {
  animation: subtitleWordReveal 2200ms ease 750ms forwards;
}

body.showing-result .result-home-copy span:nth-child(3) {
  animation: subtitleWordReveal 2200ms ease 1200ms forwards;
}

body.showing-result .result-home-copy span:nth-child(4) {
  animation: subtitleWordReveal 2200ms ease 1650ms forwards;
}

body.showing-result .result-home-note {
  animation: whyFiveLineIn 1400ms ease 2500ms forwards;
}

body.showing-result .result-home-actions {
  animation: landingStackReveal 2000ms ease 4600ms forwards;
}

body.showing-result .intro-prep-copy-wrap {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.result-link {
  color: rgba(255, 247, 234, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
  display: inline-block;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transform-origin: left center;
  transition: transform 220ms ease, color 220ms ease;
}

.result-link:hover {
  color: #ffffff;
  transform: scale(1.06);
}

.join-trigger {
  border: none;
  background: transparent;
  color: rgba(255, 245, 225, 0.94);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  display: inline-block;
  transform-origin: center;
  transition: transform 220ms ease, color 220ms ease;
}

.join-trigger:hover {
  color: #ffffff;
  transform: scale(1.08);
}

.stats-trigger {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(255, 238, 204, 0.7);
}

.stats-trigger:hover {
  color: #ffffff;
}

.text-link-control {
  border: none;
  background: transparent;
  color: rgba(255, 247, 234, 0.9);
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  font: inherit;
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease;
}

.text-link-control:hover {
  color: #ffffff;
  transform: scale(1.04);
}

.join-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  background: rgba(8, 6, 5, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.join-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.join-drawer-inner {
  width: min(348px, calc(100vw - 32px));
  height: 100dvh;
  padding: 22px 16px 28px;
  background: rgba(20, 16, 12, 0.9);
  border-left: 1px solid rgba(255, 241, 212, 0.12);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.22, 0.72, 0.2, 1);
  display: grid;
  gap: 12px;
  align-content: start;
  overflow-y: auto;
}

.join-drawer.is-open .join-drawer-inner {
  transform: translateX(0);
}

.drawer-close {
  justify-self: end;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-kicker,
.join-title,
.join-copy {
  margin: 0;
}

.join-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 233, 189, 0.62);
}

.join-title {
  font-size: clamp(1.28rem, 3.2vw, 1.72rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff7ea;
}

.join-copy {
  color: rgba(255, 243, 219, 0.74);
  line-height: 1.35;
  max-width: 26ch;
  font-size: 0.86rem;
}

.join-benefits,
.join-tiers {
  display: grid;
  gap: 6px;
}

.join-section-label {
  text-align: left;
  color: rgba(255, 238, 204, 0.52);
}

.join-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: rgba(255, 244, 222, 0.78);
  line-height: 1.3;
  font-size: 0.86rem;
}

.tier-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 239, 207, 0.08);
}

.join-tier-card {
  display: grid;
  gap: 6px;
}

.tier-name,
.tier-price {
  color: #fff7ea;
}

.tier-name {
  font-size: 0.9rem;
}

.tier-price {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 233, 189, 0.82);
  white-space: nowrap;
}

.join-form {
  display: grid;
  gap: 6px;
}

.join-field {
  display: grid;
  gap: 6px;
}

.join-field span {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 232, 192, 0.54);
}

.join-field input {
  width: 100%;
  border: 1px solid rgba(255, 238, 205, 0.1);
  border-radius: 14px;
  padding: 9px 11px;
  background: rgba(255, 251, 245, 0.06);
  color: #fff7ea;
  font: inherit;
}

.join-field select {
  width: 100%;
  border: 1px solid rgba(255, 238, 205, 0.1);
  border-radius: 14px;
  padding: 11px 13px;
  background: rgba(255, 251, 245, 0.06);
  color: #fff7ea;
  font: inherit;
}

.join-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 238, 205, 0.1);
  border-radius: 14px;
  padding: 9px 11px;
  background: rgba(255, 251, 245, 0.06);
  color: #fff7ea;
  font: inherit;
  resize: vertical;
  min-height: 64px;
}

.join-field input::placeholder {
  color: rgba(255, 243, 219, 0.36);
}

.join-field textarea::placeholder {
  color: rgba(255, 243, 219, 0.36);
}

.join-intent {
  margin: 2px 0 0;
  color: rgba(255, 243, 219, 0.64);
  font-size: 0.78rem;
  line-height: 1.35;
}

.join-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 2px;
  border: 1px solid rgba(255, 239, 207, 0.16);
  border-radius: 999px;
  color: #fff8ee;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 248, 235, 0.08);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.join-status {
  margin: 2px 0 0;
  min-height: 1.2em;
  color: rgba(255, 239, 207, 0.72);
  font-size: 0.74rem;
  line-height: 1.4;
}

.join-read-more {
  justify-self: start;
  margin-top: -4px;
  animation: readMorePulse 3400ms ease-in-out infinite;
}

.companies-page {
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  background: none;
  overflow: hidden;
}

.page-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  font-size: 1.3rem;
  line-height: 1;
}

.companies-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 12, 9, 0.14), rgba(15, 12, 9, 0.22)),
    radial-gradient(circle at 50% 12%, rgba(247, 232, 194, 0.04), transparent 24%),
    var(--yogona-photo);
}

.companies-shell {
  min-height: 100dvh;
  height: auto;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6vh 0 5vh;
  display: grid;
  align-content: start;
}

.companies-back-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.companies-back-link {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.companies-hero {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.companies-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 235, 207, 0.78);
}

.companies-title {
  margin: 0;
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #fbf5e9;
}

.companies-subtitle {
  margin: 0;
  max-width: 50rem;
  color: rgba(247, 238, 219, 0.84);
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  line-height: 1.55;
}

.companies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 2vh;
  align-items: start;
}

.companies-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 241, 212, 0.1);
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.18), rgba(20, 16, 12, 0.1)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045), transparent 28%);
  backdrop-filter: blur(18px);
}

.companies-section-title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 233, 189, 0.62);
}

.offer-list {
  display: grid;
  gap: 10px;
}

.offer-card {
  display: grid;
  gap: 6px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 239, 207, 0.08);
}

.offer-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.offer-name,
.offer-price {
  margin: 0;
  color: #fff8ee;
}

.offer-name {
  font-size: 0.96rem;
  font-weight: 600;
}

.offer-price {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 233, 189, 0.82);
  white-space: nowrap;
}

.offer-copy {
  margin: 0;
  color: rgba(255, 243, 219, 0.72);
  line-height: 1.45;
  font-size: 0.9rem;
}

.feature-stack {
  display: grid;
  gap: 10px;
}

.feature-block {
  display: grid;
  gap: 4px;
}

.feature-label {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 232, 192, 0.56);
}

.feature-copy {
  margin: 0;
  color: rgba(255, 243, 219, 0.78);
  line-height: 1.45;
  font-size: 0.9rem;
}

.companies-form {
  display: grid;
  gap: 10px;
}

.companies-form .join-field input,
.companies-form .join-field textarea {
  background: rgba(255, 251, 245, 0.08);
}

.companies-status {
  margin: 2px 0 0;
  min-height: 1.2em;
  color: rgba(255, 239, 207, 0.72);
  font-size: 0.74rem;
  line-height: 1.4;
}

.company-page {
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  background: none;
  overflow: hidden;
}

.company-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 12, 9, 0.14), rgba(15, 12, 9, 0.22)),
    radial-gradient(circle at 50% 12%, rgba(247, 232, 194, 0.04), transparent 24%),
    var(--yogona-photo);
}

.company-shell {
  height: 100dvh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8vh 0 5vh;
  display: grid;
  align-content: start;
}

.company-hero {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.company-badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 239, 207, 0.12);
  color: rgba(255, 243, 219, 0.78);
  background: rgba(255, 248, 235, 0.06);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 3vh;
}

.company-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 241, 212, 0.1);
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.18), rgba(20, 16, 12, 0.1)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045), transparent 28%);
  backdrop-filter: blur(18px);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mode-button {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 239, 207, 0.1);
  border-radius: 18px;
  background: rgba(255, 248, 235, 0.04);
  color: rgba(255, 243, 219, 0.82);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.mode-button strong {
  font-size: 0.96rem;
  font-weight: 700;
}

.mode-button span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.mode-button.is-active {
  border-color: rgba(255, 233, 189, 0.3);
  background: rgba(255, 248, 235, 0.08);
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-stat {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 235, 0.04);
  border: 1px solid rgba(255, 239, 207, 0.08);
}

.company-stat-value {
  color: #fff8ee;
  font-size: 1.28rem;
  line-height: 1;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.company-meditation.panel-visible {
  display: block;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 7, 6, 0.7);
  backdrop-filter: blur(14px);
}

.access-gate-card {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 241, 212, 0.1);
  background: rgba(20, 16, 12, 0.9);
}

.partner-preview-modal {
  width: min(420px, 92vw);
  border: 1px solid rgba(255, 241, 212, 0.14);
  border-radius: 28px;
  padding: 14px;
  background: rgba(21, 17, 13, 0.92);
  color: #fff7ea;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.partner-preview-modal::backdrop {
  background: rgba(8, 7, 6, 0.6);
}

.partner-preview-modal[open] {
  animation: partnerPreviewIn 1000ms ease forwards;
}

.partner-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.partner-preview-title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 233, 189, 0.68);
}

.partner-preview-frame-wrap {
  margin-top: 12px;
  overflow: hidden;
  width: min(320px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 241, 212, 0.08);
  background: rgba(255, 251, 244, 0.04);
}

.partner-preview-frame {
  width: 100%;
  height: min(72vh, 640px);
  border: 0;
  background: #ffffff;
}

.partner-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.partner-preview-actions .result-link {
  min-width: 164px;
  padding: 0;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.24em;
  transform-origin: center;
}

.stats-info-modal {
  width: min(460px, 92vw);
}

.stats-info-content {
  padding: 10px 2px 4px;
}

.stats-info-copy {
  margin: 0;
  color: rgba(255, 244, 222, 0.82);
  line-height: 1.7;
  font-size: 0.98rem;
}

.join-share-button {
  margin-top: 14px;
  justify-self: start;
}

.source-fab {
  position: fixed;
  bottom: 18px;
  transform: none;
  z-index: 40;
  font-size: 0.76rem;
  padding: 0;
  background: transparent;
  color: rgba(255, 247, 231, 0.82);
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  text-align: center;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

.source-fab-right {
  right: 18px;
}

.source-fab-left {
  left: 18px;
}

.source-fab-center {
  left: 50%;
  bottom: 94px;
  transform: translateX(-50%);
  font-size: 0.84rem;
}

.intro-award-mark {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: clamp(56px, 5.2vw, 82px);
  height: auto;
  z-index: 40;
  opacity: 0;
  filter: blur(8px) drop-shadow(0 8px 18px rgba(18, 14, 9, 0.14));
  pointer-events: none;
}

body.intro-active .audio-controls-global,
body.intro-active .global-home-link,
body.intro-active .site-copyright {
  opacity: 0;
  pointer-events: none;
}

body.showing-result .audio-controls-global,
body.showing-result .global-home-link,
body.showing-result .site-copyright {
  opacity: 0;
  pointer-events: none;
}

body.intro-active .source-fab-left,
body.intro-active .source-fab-right {
  pointer-events: auto;
  animation: sourceFabIntroReveal 1200ms ease 3200ms forwards;
}

body.intro-active .source-fab-center {
  pointer-events: auto;
  animation: sourceFabIntroReveal 1200ms ease 3600ms forwards;
}

body.intro-active .site-copyright {
  animation: sourceFabIntroReveal 1200ms ease 3900ms forwards;
}

body.intro-active .intro-award-mark {
  animation: sourceFabIntroReveal 1200ms ease 3600ms forwards;
}

body.testing {
  overflow: hidden;
  background: transparent;
}

body.testing .app-shell {
  width: 100%;
  min-height: 100svh;
  padding: 0;
  max-width: none;
}

body.testing .source-fab {
  display: none;
}

body.preparing .source-fab {
  display: none;
}

body.testing .prep-copy-wrap {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

body.testing #prep {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: none !important;
}

body.testing.controls-idle-hidden .session-progress,
body.testing.controls-idle-hidden .presence-mini,
body.testing.controls-idle-hidden .pace-control,
body.testing.controls-idle-hidden .presence-panel,
body.testing.controls-idle-hidden .session-note,
body.testing.controls-idle-hidden .session-close,
body.testing.controls-idle-hidden .meditation-drawer {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

body.testing.guide-hidden .focus-dot {
  opacity: 0;
  pointer-events: none;
}

body.showing-result .source-fab-left,
body.showing-result .source-fab-right {
  pointer-events: auto;
  animation: sourceFabIntroReveal 1200ms ease 3200ms forwards;
}

body.showing-result .source-fab-center {
  pointer-events: auto;
  animation: sourceFabIntroReveal 1200ms ease 3600ms forwards;
}

body.showing-result .site-copyright {
  animation: sourceFabIntroReveal 1200ms ease 3900ms forwards;
}

body.showing-result .intro-award-mark {
  animation: sourceFabIntroReveal 1200ms ease 3600ms forwards;
}

.source-modal {
  width: min(900px, 94vw);
  border: 1px solid rgba(139, 116, 77, 0.18);
  border-radius: 16px;
  background: #f7f0e4;
  color: #31281d;
  padding: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1100ms ease,
    transform 1100ms ease;
}

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

.source-modal::backdrop {
  background: rgba(8, 17, 14, 0.52);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-head h3 {
  margin: 4px 0;
}

.modal-close {
  padding: 8px 12px;
  background: rgba(255, 251, 242, 0.94);
}

.source-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  max-height: 60dvh;
  overflow-y: auto;
}

.source-item {
  border: 1px solid rgba(139, 116, 77, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 250, 242, 0.78);
}

.source-item a {
  color: #6d542e;
  text-decoration: none;
  font-weight: 700;
}

.source-item p {
  margin: 6px 0 0;
  color: #625646;
  line-height: 1.45;
  font-size: 0.92rem;
}

.appreciation-modal {
  width: min(560px, 92vw);
  border: 1px solid rgba(255, 241, 212, 0.12);
  border-radius: 28px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(22, 18, 14, 0.96), rgba(18, 15, 12, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(255, 232, 186, 0.06), transparent 30%);
  color: #fff7ea;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 250, 240, 0.06);
  backdrop-filter: blur(24px);
}

.appreciation-modal::backdrop {
  background: rgba(7, 6, 5, 0.68);
}

.appreciation-modal .modal-head {
  align-items: flex-start;
  gap: 14px;
}

.appreciation-modal .modal-head h3 {
  margin: 4px 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 244, 222, 0.84);
}

.appreciation-modal .modal-close {
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 243, 219, 0.82);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.appreciation-modal .source-list {
  margin-top: 14px;
  gap: 12px;
  max-height: none;
  overflow: visible;
}

.appreciation-modal .source-item {
  padding: 0;
  border: none;
  background: transparent;
}

.appreciation-modal .source-item p {
  margin: 0;
  color: rgba(255, 244, 222, 0.84);
  line-height: 1.75;
  font-size: 1rem;
}

.appreciation-modal .source-item a {
  color: #2f7a5c;
  text-decoration: none;
  font-weight: 700;
}

.appreciation-modal .stats-info-content {
  padding: 14px 0 4px;
  display: flex;
  justify-content: flex-start;
}

.appreciation-modal .join-share-button {
  margin-top: 0;
  min-width: 132px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 212, 0.16);
  background: rgba(255, 248, 235, 0.06);
  color: rgba(255, 247, 233, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

@keyframes floatHeart {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1.18);
  }
}

@keyframes heroButtonReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0);
  }
}

@keyframes startLinkReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroLogoReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes landingFadeIn {
  from {
    opacity: 0;
    filter: drop-shadow(0 8px 18px rgba(18, 14, 9, 0.04));
  }
  to {
    opacity: 0.92;
    filter: drop-shadow(0 8px 18px rgba(18, 14, 9, 0.14));
  }
}

@keyframes landingLogoReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    filter: sepia(0.18) saturate(0.84) brightness(1.01) drop-shadow(0 12px 26px rgba(18, 14, 9, 0.04));
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: sepia(0.18) saturate(0.84) brightness(1.01) drop-shadow(0 12px 26px rgba(18, 14, 9, 0.12));
  }
}

@keyframes landingStackReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@keyframes sourceFabIntroReveal {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes introForbestReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes subtitleWordReveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes whyFiveLineIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes resultLinksReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes resultIntroCopy {
  0% {
    opacity: 0;
    filter: blur(22px);
    transform: translate(-50%, -50%) translateY(20px);
  }
  34% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(22px);
    transform: translate(-50%, -50%) translateY(-16px);
  }
}

@keyframes readMorePulse {
  0%, 100% {
    opacity: 0.84;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes prepCopyIn {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

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

@keyframes prepWrapFadeOut {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translateY(var(--prep-shift));
  }
  to {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(var(--prep-shift));
  }
}

@keyframes partnerPreviewIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 760px) {
  .site-copyright {
    display: none !important;
  }

  body.showing-result .source-fab-center {
    display: none !important;
  }

  .intro-surface {
    padding: 12vh 8vw 8vh;
  }

  .intro-mark {
    width: fit-content;
    max-width: min(28rem, 84vw);
    margin-inline: auto;
    transform: translateY(calc(-10vh - 2.2em));
  }

  .intro-logo {
    width: clamp(118px, 30vw, 168px);
    max-width: 52vw;
  }

  .intro-copy {
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 10.2em;
    font-size: clamp(2rem, 9vw, 3.6rem);
    white-space: normal;
  }

  .result-home-copy {
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 10.2em;
    font-size: clamp(2rem, 9vw, 3.6rem);
    white-space: normal;
  }

  .presence-panel {
    left: auto;
    right: auto;
    width: auto;
    bottom: auto;
    padding: 16px 14px 14px;
    border-radius: 24px;
  }

  .surface-hint {
    bottom: 248px;
  }
}

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

@media (max-width: 760px) {
  body.intro-active .source-fab-center {
    display: none !important;
  }

  html {
    scrollbar-gutter: auto;
    -webkit-text-size-adjust: 100%;
  }

  :root {
    --yogona-photo: url("images/mobil.jpg") center center / cover no-repeat;
  }

  body {
    background: transparent;
  }

  body.testing {
    background: transparent;
  }

  body::before {
    display: none;
  }

  .background-video {
    display: none !important;
  }

  .app-shell,
  .panel,
  .panel-intro,
  .intro-surface,
  .hero-block-image,
  .panel-prep,
  .panel-test,
  .dot-stage,
  #result.panel-visible {
    min-height: 100svh;
  }

  .panel,
  .panel-intro,
  .intro-surface,
  .hero-block-image,
  .panel-prep,
  .panel-test,
  .dot-stage,
  #result.panel-visible {
    height: 100svh;
  }

  .hero-block {
    padding-top: 12vh;
  }

  .panel-landing,
  .panel-prep.panel-visible,
  .panel-test.panel-visible,
  #result.panel-visible {
    background-color: #050505 !important;
    background-image: url("images/mobil.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .hero-block-image {
    padding: 16vh 9vw 18vh;
    background:
      linear-gradient(180deg, rgba(16, 14, 10, 0.06), rgba(16, 14, 10, 0.12)),
      radial-gradient(circle at 50% 20%, rgba(247, 232, 194, 0.06), transparent 24%),
      url("images/mobil.jpg") center center / cover no-repeat;
  }

  .dot-stage {
    background: transparent !important;
  }

  .brand-mark {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .landing-reset-shell {
    width: min(88vw, 420px);
    gap: 14px;
    margin-top: 18px;
  }

  .landing-breath-title {
    font-size: clamp(1.4rem, 7.4vw, 2.3rem);
  }

  .landing-duration-row {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .landing-duration-option {
    width: 100%;
    min-width: 0;
    font-size: 0.96rem;
  }

  .intro-reset-shell {
    margin-top: 1.75rem !important;
    top: 0 !important;
  }

  .intro-headphones-note {
    font-size: clamp(0.74rem, 3.4vw, 0.92rem);
  }

  .session-note {
    max-width: none;
    font-size: 0.8rem;
    line-height: 1.5;
    bottom: 18px;
    white-space: normal;
  }

  .session-note-meditation {
    bottom: 44px;
    width: calc(100% - 32px);
  }

  .site-copyright {
    width: calc(100% - 24px);
    bottom: 6px;
    white-space: normal;
  }

  .audio-controls-global {
    top: 202px !important;
    left: 14px;
    right: auto;
    transform: none;
    display: grid;
    justify-items: start;
    gap: 16px !important;
  }

  .global-home-link {
    top: 12px;
    left: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .audio-toggle,
  .audio-skip {
    font-size: 0.88rem;
    padding: 10px 14px;
    min-height: 42px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .audio-controls-global .audio-toggle,
  .audio-controls-global .audio-skip {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 999px;
    justify-content: flex-start;
  }

  .audio-controls-global .audio-toggle {
    display: grid;
    justify-items: start;
    align-content: center;
    gap: 3px;
    text-align: left;
    padding: 8px 10px;
    background: rgba(16, 14, 12, 0.28);
    border: 1px solid rgba(255, 247, 232, 0.1);
  }

  .audio-controls-global .audio-toggle-label {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
  }

  .audio-controls-global .audio-toggle-state {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .audio-controls-global #audioToggle {
    order: 1;
  }

  .audio-controls-global #audioPrevButton {
    display: none;
  }

  .audio-controls-global #audioNextButton {
    display: none;
  }

  .audio-controls-global #ambienceToggle {
    order: 2;
  }

  .audio-controls-global #guideToggle {
    order: 3;
  }

  .audio-controls-global #fullscreenToggle {
    display: none !important;
  }

  .hero-calmvinner {
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    width: clamp(52px, 14vw, 74px);
    max-width: 22vw;
  }

  .hero-logo {
    top: 40px;
    width: clamp(112px, 28vw, 150px);
    max-width: 46vw;
  }

  .prep-copy-wrap {
    --prep-shift: -25vh;
  }

  .prep-copy {
    font-size: clamp(2rem, 9vw, 3.6rem);
  }

  .prep-subcopy {
    font-size: clamp(0.74rem, 3.4vw, 0.92rem);
  }

  .intro-prep-copy {
    font-size: clamp(2rem, 9vw, 3.6rem);
  }

  .intro-prep-subcopy {
    font-size: clamp(0.74rem, 3.4vw, 0.92rem);
  }

  .breath-guide {
    top: 34%;
    margin-top: calc(6px - 1cm);
    font-size: clamp(1rem, 4.5vw, 1.8rem);
    letter-spacing: -0.05em;
  }

  .session-progress {
    display: none;
  }

  .session-elapsed {
    right: 14px;
  }

  .pace-control {
    left: 14px;
    right: auto;
    top: 48px;
    justify-items: start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .pace-title {
    display: none;
  }

  .pace-list {
    justify-items: start;
    gap: 16px;
  }

  .pace-option {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(16, 14, 12, 0.28);
    border: 1px solid rgba(255, 247, 232, 0.1);
    font-size: 0.62rem;
    line-height: 1.35;
    text-align: left;
    color: rgba(255, 247, 232, 0.76);
    text-shadow: none;
  }

  .pace-option.is-selected {
    background: rgba(255, 247, 232, 0.12);
    border-color: rgba(255, 247, 232, 0.2);
  }

  .presence-mini {
    left: 24px;
    max-width: min(34vw, 160px);
  }

  .meditation-drawer {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 106px;
    transform: none;
    display: grid;
    justify-items: start;
  }

  .meditation-drawer-trigger {
    width: auto;
    height: auto;
    margin-left: 0;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .drawer-trigger-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .drawer-trigger-text {
    display: inline;
  }

  .meditation-drawer-body {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    max-height: min(58dvh, 480px);
    overflow-y: auto;
    transform: translateY(14px);
  }

  .breath-preset {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .presence-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .presence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .presence-value {
    font-size: 1.08rem;
  }

  .presence-stat {
    padding: 10px 10px 9px;
  }

  .country-panel {
    margin-top: 12px;
  }

  .heart-button {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .country-chip {
    font-size: 0.72rem;
  }

  .session-close {
    top: 14px;
    right: 14px;
  }

  #result.panel-visible {
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .partner-list {
    justify-items: center;
  }

  .companies-back-row {
    justify-content: center;
    margin-bottom: 22px;
  }

  .page-close {
    top: 12px;
    right: 14px;
  }

  .result-link {
    text-align: center;
  }

  .result-link {
    font-size: 0.98rem;
  }

  #result .btn {
    font-size: 0.84rem;
    min-width: 168px;
  }

  .join-drawer {
    padding: 12px 0 0;
  }

  .join-drawer-inner {
    width: 100%;
    min-height: 100dvh;
    border-left: none;
    border-top: 1px solid rgba(255, 241, 212, 0.12);
    border-radius: 22px 22px 0 0;
  }

  .companies-page,
  .company-page {
    height: auto;
    overflow: visible;
  }

  .companies-shell,
  .company-shell {
    height: auto;
    padding: 14vh 0 10vh;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 5vh;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 5vh;
  }

  .tier-row {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .companies-shell {
    width: min(100% - 28px, 100%);
    padding: 14vh 0 9vh;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 8vh;
  }

  .companies-panel {
    padding: 20px;
  }

  .offer-head {
    flex-direction: column;
    gap: 4px;
  }

  .company-shell {
    width: min(100% - 28px, 100%);
    padding: 13vh 0 9vh;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .mode-grid,
  .company-stats-grid {
    grid-template-columns: 1fr;
  }

  .source-fab {
    bottom: 30px;
    font-size: 0.72rem;
  }

  .source-fab-left {
    left: 14px;
  }

  .source-fab-right {
    right: 14px;
  }

  .source-fab-center {
    bottom: 98px;
    transform: translateX(-50%) translateY(14px) !important;
    font-size: 0.86rem;
  }

  .intro-award-mark {
    bottom: 24px;
    transform: translateX(-50%) translateY(14px) !important;
    width: clamp(52px, 14vw, 74px);
  }
  .site-copyright {
    bottom: 8px;
    font-size: 0.54rem;
  }

  .stats-info-modal,
  .partner-preview-modal,
  .source-modal {
    width: min(94vw, 520px);
    padding: 14px;
  }

  .partner-preview-frame-wrap {
    width: min(280px, 100%);
  }

  .partner-preview-frame {
    height: min(62vh, 520px);
  }
}

@media (max-width: 420px) {
  .audio-controls {
    gap: 10px;
  }

  .presence-grid {
    grid-template-columns: 1fr;
  }

  .surface-hint {
    bottom: 18px;
  }

  .presence-panel {
    bottom: auto;
  }

  .meditation-drawer {
    left: 10px;
    right: 10px;
    bottom: 100px;
  }

  .meditation-drawer-body {
    width: 100%;
    padding: 14px;
    max-height: min(56dvh, 440px);
  }

  .meditation-drawer-trigger {
    padding: 9px 12px;
    font-size: 0.66rem;
  }

  .source-fab {
    font-size: 0.68rem;
  }
  .source-fab-center {
    bottom: 100px;
    transform: translateX(-50%) translateY(14px) !important;
    font-size: 0.78rem;
  }

  .intro-award-mark {
    bottom: 26px;
    transform: translateX(-50%) translateY(14px) !important;
  }

  .join-title {
    font-size: 1.16rem;
  }

  .companies-title {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .prep-copy,
  .title {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
}
