@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/cinzel-latin-variable.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  --ink: #070403;
  --black: #0b0706;
  --charcoal: #15100e;
  --cream: #fff6e8;
  --paper: #e4d2b8;
  --muted: #b9a894;
  --gold: #ffd56a;
  --gold-soft: #ffe29a;
  --gold-glow: rgba(255, 211, 94, 0.34);
  --red: #b61218;
  --red-deep: #4a0507;
  --line: rgba(255, 246, 232, 0.14);
  --line-gold: rgba(255, 205, 89, 0.36);
  --panel: rgba(255, 246, 232, 0.055);
  --panel-strong: rgba(255, 246, 232, 0.095);
  --radius: 3px;
  --serif: Cinzel, Georgia, "Times New Roman", serif;
  --sans: Manrope, "Avenir Next", Avenir, "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(18px, 3.4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  background: #070403;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(177, 18, 24, 0.2), transparent 34rem),
    radial-gradient(circle at 84% 16%, rgba(201, 154, 62, 0.09), transparent 28rem),
    linear-gradient(180deg, #080403 0%, #120907 48%, #070403 100%);
  background-color: #070403;
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 246, 232, 0.055) 0 1px, transparent 1.6px),
    radial-gradient(circle at 76% 44%, rgba(201, 154, 62, 0.06) 0 1px, transparent 1.6px);
  background-size: 320px 320px, 420px 420px;
  transform: translateZ(0);
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.32));
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.magnet {
  transform-style: preserve-3d;
  will-change: auto;
  transition:
    translate 620ms cubic-bezier(0.16, 1, 0.3, 1),
    rotate 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.magnet.is-magnetic {
  will-change: translate, rotate;
  transition-duration: 120ms;
  transition-timing-function: ease-out;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px var(--gutter) 20px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 3, 3, 0.94), rgba(7, 3, 3, 0.68) 62%, rgba(7, 3, 3, 0.08));
  color: var(--cream);
  box-shadow: none;
  animation: nav-enter 720ms var(--ease) 360ms both;
}

.site-header::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 62, 0.22), rgba(255, 246, 232, 0.08), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.brand-mark {
  width: 58px;
  display: inline-grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 14px rgba(177, 18, 24, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  color: rgba(255, 246, 232, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(201, 154, 62, 0.38);
  border-radius: var(--radius);
  background: rgba(7, 3, 3, 0.42);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 62, 0.62);
  background: rgba(177, 18, 24, 0.22);
  box-shadow: 0 0 28px rgba(177, 18, 24, 0.18);
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 116px var(--gutter) 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 40%, rgba(177, 18, 24, 0.34), transparent 22rem),
    radial-gradient(circle at 50% 46%, rgba(201, 154, 62, 0.12), transparent 17rem),
    radial-gradient(circle at 18% 18%, rgba(177, 18, 24, 0.2), transparent 30rem),
    linear-gradient(180deg, #060302 0%, #160807 54%, #070403 100%);
  transform: translateZ(0) scale(1.01);
  will-change: opacity, transform;
  animation: hero-bg-breathe 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: -2;
  width: min(1040px, 82vw);
  height: min(680px, 62vw);
  background:
    linear-gradient(104deg, transparent 0 34%, rgba(255, 246, 232, 0.06) 43%, rgba(201, 154, 62, 0.13) 48%, transparent 60% 100%),
    radial-gradient(ellipse at 50% 50%, rgba(177, 18, 24, 0.15), transparent 66%);
  transform: translate3d(-62%, 0, 0) scale(0.98);
  opacity: 0.34;
  will-change: opacity, transform;
  animation: hero-light-sweep 12s ease-in-out 1.5s infinite;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.2;
  background: radial-gradient(circle, rgba(177, 18, 24, 0.52), transparent 64%);
  transform: translateZ(0);
  will-change: opacity, transform;
  animation: orb-drift 18s ease-in-out infinite;
}

.orb-one {
  width: 260px;
  height: 260px;
  left: 8%;
  top: 28%;
}

.orb-two {
  width: 320px;
  height: 320px;
  right: 10%;
  bottom: 12%;
  animation-delay: -5s;
}

.hero-line {
  position: absolute;
  top: 50%;
  width: 22vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 62, 0.6), transparent);
  opacity: 0;
  animation: hero-line-enter 1.2s var(--ease) 1s both;
}

.hero-line-left {
  left: 5%;
}

.hero-line-right {
  right: 5%;
  animation-delay: 1.16s;
}

.hero-inner {
  width: min(1160px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-crest-wrap {
  position: relative;
  width: clamp(92px, 9.5vw, 138px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.hero-logo-wrap {
  width: clamp(190px, 17vw, 310px);
  aspect-ratio: 2023 / 1413;
  margin-bottom: clamp(10px, 1.5vw, 20px);
}

.crest-aura {
  position: absolute;
  inset: -24%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 154, 62, 0.16), transparent 42%),
    radial-gradient(circle, rgba(177, 18, 24, 0.32), transparent 68%);
  filter: blur(10px);
  transform: translateZ(0);
  will-change: opacity, transform;
  animation: crest-pulse 5.8s ease-in-out infinite;
}

.hero-logo-wrap .crest-aura {
  inset: 5% 8% 18%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(201, 154, 62, 0.12), transparent 38%),
    radial-gradient(ellipse at center, rgba(177, 18, 24, 0.26), transparent 70%);
}

.hero-crest {
  position: relative;
  z-index: 1;
  width: 100%;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 30px rgba(177, 18, 24, 0.28));
  transform: translateZ(0);
  will-change: transform;
  animation: crest-float 6.5s ease-in-out 1.6s infinite;
}

.hero-logo {
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(177, 18, 24, 0.22));
}

.hero.is-idle::before,
.hero.is-idle::after,
.hero.is-idle .orb,
.hero.is-idle .crest-aura,
.hero.is-idle .hero-crest,
.hero.is-idle .scroll-cue {
  animation-play-state: paused;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-title {
  width: min(900px, 100%);
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  color: var(--cream);
  font-size: clamp(2.7rem, 4.85vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0.006em;
  text-transform: none;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  animation: title-reveal 1s var(--ease) forwards;
}

.title-line:nth-child(1) {
  animation-delay: 820ms;
}

.title-line:nth-child(2) {
  animation-delay: 980ms;
}

.title-line:nth-child(3) {
  animation-delay: 1.14s;
}

.hero-kicker {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: clamp(0.68rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow,
.hero-kicker,
.video-cover span,
.video-cover em,
.founder-frame-caption span,
.founder-frame-label,
.founder-scroll,
.outcome-word span,
.outcome-lockup span,
.media-placeholder span,
.app-mockup > p,
.app-screen-card p,
.benefit-grid span,
.audience-grid span,
.level-grid span,
.call-details span,
.steps span,
.community-frame-label,
.faq-enquiry a,
.lion-threshold-words,
.legal-updated,
.system-core span,
.system-piece-number,
.system-piece-icon,
.system-piece-kicker,
.mobile-menu-head span {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.38),
    0 0 10px var(--gold-glow),
    0 0 24px rgba(255, 185, 48, 0.16);
}

.hero-subhead {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 246, 232, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  font-weight: 400;
  line-height: 1.64;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  isolation: isolate;
  --button-lift: 0px;
  --button-scale: 1;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 15px 28px;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform:
    translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--button-lift)), 0)
    scale(var(--button-scale));
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 246, 232, 0.18) 46%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 260ms ease;
}

.button:hover,
.button:focus-visible {
  --button-lift: -3px;
}

.button:active {
  --button-lift: 0px;
  --button-scale: 0.98;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.8;
  animation: button-sheen 760ms ease;
}

.button-primary {
  border-color: rgba(255, 246, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.24) 0%, rgba(255, 246, 232, 0.04) 8%, transparent 18%),
    linear-gradient(180deg, #e31922 0%, #c81219 42%, #94090f 72%, #5f0609 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.42),
    inset 0 10px 18px rgba(255, 246, 232, 0.05),
    inset 0 -15px 22px rgba(48, 0, 0, 0.42),
    inset 0 -1px 0 rgba(0, 0, 0, 0.52),
    0 2px 0 rgba(77, 5, 7, 0.94),
    0 20px 44px rgba(177, 18, 24, 0.34),
    0 0 0 1px rgba(177, 18, 24, 0.16);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 1;
  border: 1px solid rgba(255, 246, 232, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.28);
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.button-primary::before {
  z-index: 2;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 246, 232, 0.24) 46%, transparent 62% 100%);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(201, 154, 62, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.28) 0%, rgba(255, 246, 232, 0.05) 8%, transparent 18%),
    linear-gradient(180deg, #ef1d27 0%, #d1141d 42%, #9f0b12 72%, #67070b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.48),
    inset 0 10px 18px rgba(255, 246, 232, 0.06),
    inset 0 -15px 22px rgba(48, 0, 0, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.48),
    0 3px 0 rgba(77, 5, 7, 0.92),
    0 26px 58px rgba(177, 18, 24, 0.4),
    0 0 30px rgba(201, 154, 62, 0.13);
}

.button-primary:active {
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.12) 0%, transparent 14%),
    linear-gradient(180deg, #980a11 0%, #b71017 48%, #680609 100%);
  box-shadow:
    inset 0 2px 9px rgba(0, 0, 0, 0.38),
    inset 0 -8px 14px rgba(48, 0, 0, 0.28),
    0 1px 0 rgba(77, 5, 7, 0.85),
    0 13px 32px rgba(177, 18, 24, 0.28);
}

.button-secondary {
  border-color: rgba(255, 246, 232, 0.2);
  background: rgba(255, 246, 232, 0.035);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(201, 154, 62, 0.54);
  background: rgba(255, 246, 232, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 52px);
}

.section-cta .button {
  min-width: min(100%, 330px);
}

.section-cta-right {
  justify-content: flex-end;
  max-width: 980px;
  margin-left: auto;
}

.founder-cta {
  justify-content: flex-start;
  margin-top: 28px;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(201, 154, 62, 0.86);
  outline-offset: 3px;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 246, 232, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: none;
  animation: scroll-cue 2.2s ease-in-out 2s infinite;
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  padding-inline: var(--gutter);
  margin-inline: auto;
  min-width: 0;
}

.definition {
  padding: clamp(88px, 8vw, 132px) 0;
  isolation: isolate;
}

.definition::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(177, 18, 24, 0.13), transparent 30rem),
    linear-gradient(90deg, transparent, rgba(255, 246, 232, 0.025) 24%, rgba(255, 246, 232, 0.025) 76%, transparent);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.definition-copy {
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(30px, 4vw, 54px) clamp(10px, 4vw, 56px);
  border-top: 1px solid rgba(201, 154, 62, 0.24);
  border-bottom: 1px solid rgba(201, 154, 62, 0.24);
  text-align: center;
}

.definition-copy h2 {
  margin: 14px 0 0;
  color: var(--cream);
  font-size: clamp(2.05rem, 3.75vw, 4.25rem);
  line-height: 1.03;
}

.definition-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
}

.definition-copy .definition-close {
  color: var(--paper);
  font-weight: 700;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.section-intro.compact {
  max-width: 620px;
}

.section-intro h2,
.apply h2 {
  margin: 14px 0 0;
  max-width: 100%;
  color: var(--cream);
  font-size: clamp(2.05rem, 3.75vw, 4.25rem);
  line-height: 1.03;
  overflow-wrap: break-word;
}

.section-intro p:not(.eyebrow),
.apply-copy p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
}

.outcome-section {
  position: relative;
  z-index: 1;
  min-height: 360svh;
  padding-bottom: clamp(132px, 12vw, 220px);
  background: linear-gradient(180deg, rgba(9, 5, 4, 0) 0, #100706 16rem, #140806 42%, #080403 100%);
  isolation: isolate;
}

.founder-note {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(38px, 7vw, 118px);
  padding: clamp(92px, 9vw, 156px) 0;
  isolation: isolate;
}

.founder-note::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 100vw;
  z-index: -1;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 24% 48%, rgba(177, 18, 24, 0.2), transparent 28rem),
    radial-gradient(circle at 70% 36%, rgba(201, 154, 62, 0.07), transparent 24rem),
    linear-gradient(90deg, rgba(255, 246, 232, 0.026), transparent 48%, rgba(177, 18, 24, 0.038));
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.founder-note::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 18%;
  z-index: -1;
  width: min(620px, 56vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(177, 18, 24, 0.18), transparent 64%);
  filter: blur(10px);
  opacity: calc(0.36 + var(--founder-progress, 0) * 0.2);
  transform: translate3d(0, calc(var(--founder-float, 0px) * -0.4), 0);
  pointer-events: none;
}

.founder-media,
.founder-copy {
  position: relative;
  z-index: 1;
}

.founder-media {
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translate3d(-34px, 24px, 0);
  transition:
    opacity 760ms ease,
    transform 920ms var(--ease);
}

.founder-copy {
  max-width: 700px;
  opacity: 0;
  transform: translate3d(34px, 24px, 0);
  transition:
    opacity 760ms ease 90ms,
    transform 920ms var(--ease) 90ms;
}

.founder-note.is-visible .founder-media,
.founder-note.is-visible .founder-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.founder-video-frame {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 62, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 38%, rgba(177, 18, 24, 0.2), transparent 18rem),
    #090504;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    0 34px 94px rgba(0, 0, 0, 0.4),
    0 0 72px rgba(177, 18, 24, 0.14);
  transform:
    translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--founder-float, 0px)), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 320ms var(--ease),
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.founder-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.02), transparent 42%, rgba(7, 4, 3, 0.36)),
    linear-gradient(112deg, transparent 0 38%, rgba(255, 246, 232, 0.12), transparent 58% 100%);
  opacity: 0.48;
  mix-blend-mode: screen;
  transform: translateX(calc((var(--founder-progress, 0) - 0.5) * 18%));
}

.founder-video-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    conic-gradient(from 160deg, transparent 0 18%, rgba(201, 154, 62, 0.72), transparent 32% 68%, rgba(177, 18, 24, 0.5), transparent 84% 100%)
    border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.46;
  transition: opacity 280ms ease;
}

.founder-video-frame:hover,
.founder-video-frame:focus-within {
  border-color: rgba(201, 154, 62, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.44),
    0 0 88px rgba(177, 18, 24, 0.22),
    0 0 110px rgba(201, 154, 62, 0.12);
}

.founder-video-frame:hover::after,
.founder-video-frame:focus-within::after {
  opacity: 0.9;
}

.founder-video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #090504;
}

.founder-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.video-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(8px, 1.2vw, 16px);
  padding: clamp(22px, 4vw, 48px);
  overflow: hidden;
  text-align: center;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 36%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 47%, rgba(108, 10, 12, 0.88) 0 33%, rgba(83, 7, 8, 0.7) 34% 48%, transparent 49%),
    radial-gradient(circle at 50% 0%, rgba(255, 246, 232, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(7, 4, 3, 0.96), rgba(71, 7, 8, 0.72) 50%, rgba(7, 4, 3, 0.96));
  opacity: 1;
  transition: opacity 260ms ease;
}

.video-cover::before,
.video-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.video-cover::before {
  inset: clamp(10px, 1.8vw, 22px);
  border: 1px solid rgba(255, 246, 232, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(201, 154, 62, 0.2),
    0 0 0 1px rgba(201, 154, 62, 0.26);
}

.video-cover::after {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(201, 154, 62, 0.28) 7%, transparent 10% 90%, rgba(201, 154, 62, 0.28) 93%, transparent 96%),
    radial-gradient(circle at 50% 88%, rgba(201, 154, 62, 0.18), transparent 20%);
  opacity: 0.7;
}

.video-cover img,
.video-cover span,
.video-cover strong,
.video-cover em {
  position: relative;
  z-index: 1;
}

.video-cover img {
  width: clamp(64px, 6.6vw, 96px);
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 22px rgba(177, 18, 24, 0.38));
}

.video-cover span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.video-cover strong {
  max-width: 11ch;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.video-cover em {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(0.72rem, 1vw, 0.94rem);
  font-style: normal;
  text-transform: uppercase;
}

.video-cover-portrait {
  gap: clamp(10px, 2.2vh, 18px);
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 42%, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 50% 50%, rgba(108, 10, 12, 0.9) 0 32%, rgba(83, 7, 8, 0.72) 33% 50%, transparent 51%),
    radial-gradient(circle at 50% 0%, rgba(255, 246, 232, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(7, 4, 3, 0.97), rgba(71, 7, 8, 0.74) 50%, rgba(7, 4, 3, 0.97));
}

.video-cover-portrait img {
  width: clamp(84px, 20vw, 132px);
}

.video-cover-portrait strong {
  max-width: 8ch;
  font-size: clamp(2.35rem, 8.4vw, 4.8rem);
}

.founder-video-playing .video-cover,
.community-video-playing .video-cover {
  opacity: 0;
}

.founder-video-playing .founder-video-poster {
  opacity: 0;
}

.founder-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: clamp(72px, 6vw, 94px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 62, 0.7);
  border-radius: 50%;
  background: rgba(7, 4, 3, 0.66);
  color: var(--cream);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 34px rgba(177, 18, 24, 0.28),
    inset 0 1px 0 rgba(255, 246, 232, 0.08);
  transition:
    opacity 240ms ease,
    transform 260ms var(--ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.founder-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--cream);
}

.founder-play:hover,
.founder-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(255, 246, 232, 0.78);
  box-shadow:
    0 0 46px rgba(177, 18, 24, 0.34),
    0 0 34px rgba(201, 154, 62, 0.14);
}

.founder-video-playing .founder-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.founder-frame-caption {
  position: absolute;
  left: clamp(18px, 4vw, 28px);
  right: clamp(18px, 4vw, 28px);
  bottom: clamp(18px, 4vw, 28px);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: clamp(14px, 2vw, 22px) 14px;
  border: 1px solid rgba(201, 154, 62, 0.28);
  background:
    linear-gradient(180deg, rgba(9, 5, 4, 0.88), rgba(2, 1, 1, 0.94));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 246, 232, 0.05);
  transition:
    opacity 240ms ease,
    transform 260ms var(--ease);
}

.founder-frame-caption span {
  color: var(--gold);
  font-size: clamp(0.58rem, 0.65vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-frame-caption strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.founder-video-playing .founder-frame-caption {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.founder-frame-label {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 5;
  margin: 0;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
}

.founder-copy h2 {
  margin: 14px 0 0;
  color: var(--cream);
  font-size: clamp(2.38rem, 4.25vw, 5.05rem);
  line-height: 1.02;
}

.founder-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.78;
}

.founder-support {
  color: rgba(255, 246, 232, 0.72) !important;
}

.founder-scroll {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.founder-scroll i {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left;
  animation: founder-cue 1.8s ease-in-out infinite;
}

.outcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(255, 246, 232, 0.025) 8rem, transparent 18rem),
    radial-gradient(circle at 50% 14%, rgba(177, 18, 24, 0.2), transparent 32rem),
    radial-gradient(circle at 50% 58%, rgba(201, 154, 62, 0.08), transparent 34rem);
  mask-image: linear-gradient(180deg, transparent 0, #000 10rem);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10rem);
}

.outcome-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(34px, 6vw, 94px);
  width: min(1440px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding: 112px 0 58px;
}

.outcome-intro {
  margin-bottom: 0;
}

.outcome-stage {
  position: relative;
  min-height: min(620px, calc(100svh - 190px));
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 12px;
  perspective: 1000px;
  transform: translateZ(0);
  contain: paint;
}

.outcome-stage::before {
  content: none;
}

.outcome-crest-showcase {
  position: absolute;
  inset: 7% 5% 10% 12%;
  z-index: 0;
  display: grid;
  place-items: center;
  opacity: var(--outcome-crest-opacity, 1);
  transform:
    translate3d(0, var(--outcome-crest-y, 0px), 0)
    scale(var(--outcome-crest-scale, 1));
  transform-origin: center;
  transition:
    opacity 180ms linear,
    transform 360ms var(--ease);
  pointer-events: none;
  will-change: opacity, transform;
}

.outcome-crest-showcase span {
  position: absolute;
  width: min(560px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 154, 62, 0.16), transparent 42%),
    radial-gradient(circle, rgba(177, 18, 24, 0.32), transparent 68%);
  filter: blur(14px);
  opacity: calc(0.62 * var(--outcome-crest-opacity, 1));
}

.outcome-crest-showcase img {
  position: relative;
  z-index: 1;
  width: min(390px, 46vw);
  max-height: min(520px, calc(100svh - 250px));
  filter:
    drop-shadow(0 36px 58px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 48px rgba(177, 18, 24, 0.32));
}

.outcome-word {
  position: relative;
  z-index: 1;
  width: min(520px, 68%);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  padding: clamp(14px, 1.35vw, 20px) clamp(18px, 1.8vw, 26px);
  border: 1px solid rgba(255, 246, 232, 0.12);
  background:
    radial-gradient(circle at 82% 0%, rgba(177, 18, 24, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(61, 31, 25, 0.96), rgba(17, 10, 9, 0.96));
  opacity: var(--word-opacity, 0);
  transform:
    translate3d(var(--word-x, 0), var(--word-y, 0), 0)
    rotateY(var(--word-rotate, 0deg))
    scale(var(--word-scale, 0.96));
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    opacity 260ms linear,
    transform 420ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
  will-change: transform, opacity;
  contain: paint;
}

.outcome-word:nth-of-type(1) {
  justify-self: start;
  margin-left: 2%;
}

.outcome-word:nth-of-type(2) {
  justify-self: end;
  margin-right: 2%;
}

.outcome-word:nth-of-type(3) {
  justify-self: start;
  margin-left: 7%;
}

.outcome-word:nth-of-type(4) {
  justify-self: end;
  margin-right: 4%;
}

.outcome-word:nth-of-type(5) {
  justify-self: start;
  margin-left: 12%;
}

.outcome-word span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.outcome-word h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.72rem, 2.6vw, 3.1rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.008em;
}

.outcome-word p {
  grid-column: 1;
  margin: 6px 0 0;
  color: rgba(255, 246, 232, 0.72);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.4;
}

.outcome-word.is-locked {
  border-color: rgba(201, 154, 62, 0.32);
  background:
    radial-gradient(circle at 82% 0%, rgba(177, 18, 24, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(72, 33, 28, 0.98), rgba(19, 11, 10, 0.98));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(177, 18, 24, 0.06);
}

.outcome-lockup {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(-88px, -5.8vw, -56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  opacity: var(--lockup-opacity, 0);
  transform: translateY(var(--lockup-y, 20px));
  z-index: 3;
}

.outcome-lockup-brand {
  grid-column: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}

.outcome-lockup .button {
  grid-column: 2;
}

.outcome-lockup img {
  width: 54px;
  filter: drop-shadow(0 0 18px rgba(177, 18, 24, 0.22));
}

.outcome-lockup span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.inside,
.roar-section,
.live-call,
.access-levels,
.app-layer,
.who,
.how,
.live-retreats,
.faq,
.apply {
  padding: clamp(96px, 9vw, 150px) 0;
}

.live-call,
.live-retreats,
.app-layer {
  padding: clamp(78px, 7vw, 124px) 0;
}

.apply {
  padding-top: clamp(82px, 7.2vw, 132px);
}

.inside {
  padding-top: clamp(110px, 10vw, 170px);
}

.inside .section-intro {
  max-width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}

.inside .section-intro p:not(.eyebrow) {
  margin-inline: auto;
}

.live-call .section-intro {
  max-width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}

.live-call .section-intro p:not(.eyebrow) {
  margin-inline: auto;
}

.roar-section {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  overflow: visible;
  isolation: isolate;
}

.roar-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: -1;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 48%, rgba(177, 18, 24, 0.16), transparent 30rem),
    linear-gradient(90deg, rgba(255, 246, 232, 0), rgba(255, 246, 232, 0.035) 18%, rgba(255, 246, 232, 0.018) 52%, rgba(255, 246, 232, 0));
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.roar-copy {
  max-width: 650px;
  transform: translateY(calc((1 - var(--roar-progress, 0)) * 18px));
  opacity: calc(0.42 + var(--roar-progress, 0) * 0.58);
  transition:
    opacity 220ms linear,
    transform 420ms var(--ease);
}

.roar-copy h2,
.app-copy h2 {
  margin: 14px 0 0;
  max-width: 100%;
  color: var(--cream);
  font-size: clamp(2.25rem, 4.6vw, 5.2rem);
  line-height: 1.01;
  overflow-wrap: break-word;
}

.roar-copy p:not(.eyebrow),
.app-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.78;
}

.roar-copy .button,
.app-copy .button,
.live-retreats .button {
  margin-top: 26px;
}

.roar-visual {
  position: relative;
  min-height: min(620px, 68vw);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.roar-visual::before {
  content: "";
  position: absolute;
  width: min(480px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 246, 232, 0.06), transparent 28%),
    radial-gradient(circle, rgba(177, 18, 24, 0.32), transparent 64%);
  opacity: calc(0.28 + var(--roar-progress, 0) * 0.42);
  transform: scale(calc(0.86 + var(--roar-progress, 0) * 0.24));
  filter: blur(2px);
}

.roar-video-frame {
  position: relative;
  width: min(780px, 100%);
  aspect-ratio: 16 / 9;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 62, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.08), rgba(255, 246, 232, 0.02)),
    #090504;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    0 34px 92px rgba(0, 0, 0, 0.34),
    0 0 78px rgba(177, 18, 24, 0.16);
  transform:
    translateX(var(--roar-shake, 0px))
    scale(calc(0.982 + (var(--roar-pulse, 1) - 1) * 0.35));
  transition:
    transform 120ms linear,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.roar-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 36%, rgba(0, 0, 0, 0.42)),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 246, 232, 0.08), transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.roar-video-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    conic-gradient(
      from 145deg,
      transparent 0 15%,
      rgba(201, 154, 62, 0.7) 20%,
      rgba(255, 246, 232, 0.34) 25%,
      transparent 34% 62%,
      rgba(177, 18, 24, 0.55) 70%,
      transparent 80% 100%
    )
    border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transform: scale(0.992);
  transition:
    opacity 340ms ease,
    transform 420ms var(--ease);
}

.roar-video-frame:hover,
.roar-video-frame:focus-within {
  border-color: rgba(201, 154, 62, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.38),
    0 0 92px rgba(177, 18, 24, 0.22),
    0 0 0 1px rgba(201, 154, 62, 0.08),
    0 0 120px rgba(201, 154, 62, 0.16);
}

.roar-video-frame:hover::after,
.roar-video-frame:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.roar-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #090504;
}

.roar-video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #090504;
  cursor: pointer;
  opacity: 1;
  transition: opacity 280ms ease;
}

.roar-video-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.roar-video-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(68px, 7vw, 92px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 62, 0.58);
  border-radius: 50%;
  background: rgba(5, 3, 2, 0.78);
  box-shadow:
    0 0 38px rgba(177, 18, 24, 0.32),
    inset 0 0 26px rgba(201, 154, 62, 0.08);
  transform: translate(-50%, -50%);
}

.roar-video-cover span::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--cream);
  transform: translate(-42%, -50%);
}

.roar-video-cover:hover span,
.roar-video-cover:focus-visible span {
  border-color: rgba(255, 246, 232, 0.78);
  transform: translate(-50%, -50%) scale(1.06);
}

.roar-video-playing .roar-video-cover {
  opacity: 0;
  pointer-events: none;
}

.live-call,
.access-levels,
.live-retreats,
.app-layer {
  isolation: isolate;
}

.live-call::before,
.access-levels::before,
.live-retreats::before,
.app-layer::before,
.who::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 246, 232, 0.055), transparent 26rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0), rgba(255, 246, 232, 0.018) 18%, rgba(255, 246, 232, 0.012) 82%, rgba(255, 246, 232, 0));
  opacity: 0.62;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.live-call-layout,
.app-layer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
}

.media-placeholder,
.app-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 62, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 246, 232, 0.12), transparent 17rem),
    radial-gradient(circle at 76% 74%, rgba(177, 18, 24, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 246, 232, 0.115), rgba(255, 246, 232, 0.024) 48%, rgba(201, 154, 62, 0.035)),
    #0d0908;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.24);
  transition:
    transform 300ms var(--ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.media-placeholder::before,
.app-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 246, 232, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 246, 232, 0.035), transparent 44%),
    radial-gradient(circle at 72% 18%, rgba(201, 154, 62, 0.13), transparent 20rem);
  opacity: 0.78;
}

.media-placeholder::after,
.app-mockup::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  top: clamp(18px, 3vw, 44px);
  width: clamp(86px, 12vw, 154px);
  aspect-ratio: 1;
  background: url("Brand%20Assets/Copy%20of%20Crest%20Red%20Black.png") center / contain no-repeat;
  opacity: 0.08;
  filter: grayscale(0.2) drop-shadow(0 0 24px rgba(177, 18, 24, 0.2));
  transform: rotate(-5deg);
  pointer-events: none;
}

.media-placeholder:hover,
.app-mockup:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 154, 62, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    0 36px 90px rgba(0, 0, 0, 0.3);
}

.live-call-shot {
  min-height: clamp(330px, 38vw, 520px);
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 44px);
}

.retreat-support {
  color: var(--muted);
  font-size: 0.95rem;
}

.media-placeholder > *,
.app-mockup > * {
  position: relative;
  z-index: 1;
}

.media-placeholder span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-placeholder strong {
  display: block;
  max-width: 12ch;
  margin-top: 18px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.35vw, 4.05rem);
  line-height: 1.02;
  font-weight: 500;
}

.media-placeholder p {
  max-width: 390px;
  margin: 18px 0 0;
}

.retreat-video-card {
  min-height: clamp(520px, 44vw, 650px);
  align-content: stretch;
  gap: clamp(20px, 2.4vw, 30px);
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 246, 232, 0.12), transparent 18rem),
    radial-gradient(circle at 72% 78%, rgba(177, 18, 24, 0.26), transparent 24rem),
    linear-gradient(140deg, rgba(255, 246, 232, 0.12), rgba(255, 246, 232, 0.026) 44%, rgba(177, 18, 24, 0.08)),
    #0d0908;
}

.retreat-video-card::before {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.08), transparent 38%, rgba(7, 4, 3, 0.38)),
    linear-gradient(120deg, transparent 0 34%, rgba(255, 246, 232, 0.08), transparent 58%),
    radial-gradient(circle at 72% 18%, rgba(201, 154, 62, 0.11), transparent 20rem);
}

.retreat-video-card::after {
  z-index: 0;
  opacity: 0.06;
}

.retreat-video-frame {
  max-width: none;
  justify-self: stretch;
  z-index: 2;
  aspect-ratio: 16 / 9;
  border-color: rgba(201, 154, 62, 0.34);
  background:
    radial-gradient(circle at 50% 36%, rgba(177, 18, 24, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 246, 232, 0.09), rgba(255, 246, 232, 0.02)),
    #090504;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 58px rgba(177, 18, 24, 0.13);
}

.retreat-video-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-inline: clamp(4px, 1vw, 12px);
}

.retreat-video-copy strong {
  max-width: none;
}

.call-details {
  display: grid;
  gap: 14px;
}

.call-details .button {
  width: fit-content;
  margin-top: 10px;
}

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

.level-grid article,
.call-details article {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 2.4vw, 36px);
}

.level-grid article:nth-child(2) {
  transform:
    translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--card-lift, 0px) + 28px), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.app-layer {
  align-items: center;
}

.app-copy {
  max-width: 720px;
}

.app-mockup {
  min-height: clamp(500px, 46vw, 580px);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(22px, 3vw, 42px);
}

.app-mockup > p {
  align-self: end;
  margin: 20px 0 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.app-shell {
  width: min(310px, 100%);
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 246, 232, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(177, 18, 24, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(8, 4, 3, 0.96), rgba(17, 10, 9, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 246, 232, 0.12);
}

.app-top span {
  width: 10px;
  aspect-ratio: 1;
  background: var(--red);
}

.app-top strong,
.app-screen-card h3 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
}

.app-screen-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(201, 154, 62, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.08), rgba(255, 246, 232, 0.03)),
    rgba(177, 18, 24, 0.05);
}

.app-screen-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-screen-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

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

.app-screen-list span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 246, 232, 0.1);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
}

.manifesto {
  min-height: 105svh;
  display: grid;
  align-content: center;
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(96px, 10vw, 170px) 0;
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 100vw;
  z-index: -1;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 22% 36%, rgba(177, 18, 24, 0.2), transparent 30rem),
    linear-gradient(90deg, rgba(255, 246, 232, 0.035), transparent 32%, transparent 72%, rgba(201, 154, 62, 0.025));
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.manifesto-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 246, 232, 0.12);
  padding-bottom: 18px;
}

.manifesto-label span {
  color: rgba(255, 246, 232, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-text {
  max-width: 1180px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4.55vw, 5.35rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.manifesto-word {
  display: inline-block;
  opacity: var(--word-reveal, 0.18);
  transform: translateY(calc((1 - var(--word-reveal, 0.18)) * 18px));
  transition:
    opacity 140ms linear,
    transform 220ms var(--ease);
  will-change: opacity, transform;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.benefit-grid article,
.audience-grid article,
.level-grid article,
.call-details article,
.steps article,
.faq-list article,
.lead-form {
  position: relative;
  --card-lift: 0px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 232, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.07), rgba(255, 246, 232, 0.026)),
    rgba(255, 246, 232, 0.02);
  transform:
    translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--card-lift)), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 280ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.benefit-grid article::before,
.audience-grid article::before,
.level-grid article::before,
.call-details article::before,
.steps article::before,
.faq-list article::before,
.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(201, 154, 62, 0.16), transparent 32%),
    linear-gradient(120deg, transparent, rgba(177, 18, 24, 0.13), transparent 55%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.benefit-grid article:hover,
.audience-grid article:hover,
.level-grid article:hover,
.call-details article:hover,
.steps article:hover,
.faq-list article:hover,
.lead-form:hover {
  --card-lift: -8px;
  border-color: rgba(201, 154, 62, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.09), rgba(255, 246, 232, 0.034)),
    rgba(177, 18, 24, 0.05);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(177, 18, 24, 0.08);
}

.benefit-grid article:hover::before,
.audience-grid article:hover::before,
.level-grid article:hover::before,
.call-details article:hover::before,
.steps article:hover::before,
.faq-list article:hover::before,
.lead-form:hover::before {
  opacity: 1;
}

.benefit-grid article > *,
.audience-grid article > *,
.level-grid article > *,
.call-details article > *,
.steps article > *,
.faq-list article > * {
  position: relative;
  z-index: 1;
}

.benefit-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: clamp(22px, 2.3vw, 34px);
}

.benefit-grid article:nth-child(1),
.benefit-grid article:nth-child(2) {
  grid-column: span 3;
}

.benefit-grid article:nth-child(n + 3) {
  grid-column: span 2;
}

.benefit-grid span,
.audience-grid span,
.level-grid span,
.call-details span,
.steps span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h3 {
  margin: 12px 0 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  line-height: 1.12;
  font-weight: 600;
}

.benefit-grid p,
.audience-grid p,
.level-grid p,
.call-details p,
.steps p,
.faq-list p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.who {
  isolation: isolate;
}

.who::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(177, 18, 24, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0), rgba(255, 246, 232, 0.025) 18%, rgba(255, 246, 232, 0.012) 82%, rgba(255, 246, 232, 0));
}

.who-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: clamp(34px, 5vw, 72px);
  text-align: center;
}

.who-lead .section-intro {
  max-width: min(900px, 100%);
  margin-bottom: 0;
  margin-inline: auto;
}

.who-lead .section-intro h2,
.who-lead .section-intro p {
  margin-inline: auto;
}

.audience-close {
  max-width: 640px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  color: var(--paper);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.community-video-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 62, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 36%, rgba(177, 18, 24, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 246, 232, 0.075), rgba(255, 246, 232, 0.018)),
    #090504;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    0 30px 82px rgba(0, 0, 0, 0.34),
    0 0 74px rgba(177, 18, 24, 0.14);
  transform:
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 300ms var(--ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.community-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.02), transparent 42%, rgba(7, 4, 3, 0.44)),
    linear-gradient(116deg, transparent 0 38%, rgba(255, 246, 232, 0.1), transparent 58% 100%);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.community-video-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    conic-gradient(
      from 145deg,
      transparent 0 15%,
      rgba(201, 154, 62, 0.72) 20%,
      rgba(255, 246, 232, 0.32) 25%,
      transparent 34% 62%,
      rgba(177, 18, 24, 0.54) 70%,
      transparent 80% 100%
    )
    border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transform: scale(0.992);
  transition:
    opacity 340ms ease,
    transform 420ms var(--ease);
}

.community-video-frame:hover,
.community-video-frame:focus-within {
  border-color: rgba(201, 154, 62, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.1),
    0 38px 96px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(177, 18, 24, 0.22),
    0 0 118px rgba(201, 154, 62, 0.12);
}

.community-video-frame:hover::after,
.community-video-frame:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.community-video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #090504;
}

.community-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: clamp(64px, 5.2vw, 84px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 62, 0.72);
  border-radius: 50%;
  background: rgba(7, 4, 3, 0.66);
  color: var(--cream);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 34px rgba(177, 18, 24, 0.28),
    inset 0 1px 0 rgba(255, 246, 232, 0.08);
  transition:
    opacity 240ms ease,
    transform 260ms var(--ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.community-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--cream);
}

.community-play:hover,
.community-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(255, 246, 232, 0.78);
  box-shadow:
    0 0 46px rgba(177, 18, 24, 0.34),
    0 0 34px rgba(201, 154, 62, 0.14);
}

.community-video-playing .community-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.community-frame-label {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 5;
  margin: 0;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.72);
}

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

.audience-grid article,
.steps article,
.faq-list article {
  padding: clamp(24px, 2.4vw, 34px);
}

.audience-grid article {
  min-height: clamp(150px, 16vw, 210px);
  display: grid;
  align-content: end;
}

.audience-grid .audience-icon {
  position: absolute;
  top: clamp(18px, 1.8vw, 26px);
  right: clamp(20px, 2vw, 30px);
  width: clamp(72px, 7.2vw, 104px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.96;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 16px rgba(201, 154, 62, 0.12));
  transform: translate3d(0, 0, 24px) scale(0.96);
  transform-origin: center;
  transition:
    transform 280ms var(--ease),
    filter 280ms ease,
    opacity 280ms ease;
}

.audience-grid article:hover .audience-icon {
  opacity: 1;
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 22px rgba(201, 154, 62, 0.2));
  transform: translate3d(0, -3px, 34px) scale(1.03);
}

@media (max-width: 620px) {
  .audience-grid article {
    min-height: 176px;
  }

  .audience-grid .audience-icon {
    top: 18px;
    right: 20px;
    width: 82px;
  }
}

.steps article {
  min-height: 270px;
  display: grid;
  align-content: space-between;
}

.how {
  padding-bottom: clamp(140px, 14vw, 230px);
}

.how .section-intro {
  max-width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}

.how .section-intro h2 {
  margin-inline: auto;
}

.access-levels .section-intro,
.faq .section-intro {
  max-width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}

.access-levels .section-intro h2,
.faq .section-intro h2 {
  margin-inline: auto;
}

.stack-cards {
  display: block;
  max-width: 980px;
  margin-inline: auto;
}

.steps article.stack-card {
  position: sticky;
  top: clamp(112px, 16vh, 158px);
  min-height: clamp(280px, 36vh, 380px);
  display: grid;
  align-content: end;
  margin-bottom: clamp(70px, 16vh, 150px);
  padding: clamp(28px, 4.3vw, 58px);
  background:
    radial-gradient(circle at 82% 0%, rgba(177, 18, 24, 0.22), transparent 20rem),
    linear-gradient(180deg, rgba(31, 20, 17, 0.98), rgba(13, 8, 7, 0.985));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 246, 232, 0.055);
  transform:
    translate3d(0, var(--stack-y, 0px), 0)
    scale(var(--stack-scale, 1));
  will-change: transform;
  backface-visibility: hidden;
  transform-style: flat;
}

.steps article.stack-card:nth-child(1) {
  top: clamp(112px, 16vh, 158px);
  z-index: 1;
}

.steps article.stack-card:nth-child(2) {
  top: calc(clamp(112px, 16vh, 158px) + 72px);
  z-index: 2;
}

.steps article.stack-card:nth-child(3) {
  top: calc(clamp(112px, 16vh, 158px) + 144px);
  z-index: 3;
  margin-bottom: 0;
}

.steps article.stack-card span {
  font-size: 0.78rem;
}

.steps article.stack-card h3 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.2vw, 3.95rem);
  line-height: 1;
}

.steps article.stack-card h3.retreat-stack-title {
  max-width: 900px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.78rem, 3vw, 3.55rem);
  line-height: 1.02;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.steps article.stack-card p {
  max-width: 560px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-list h3,
.faq-list p {
  margin-top: 0;
}

.faq-enquiry {
  border-color: rgba(201, 154, 62, 0.32) !important;
  background:
    radial-gradient(circle at 82% 0%, rgba(177, 18, 24, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(72, 33, 28, 0.98), rgba(19, 11, 10, 0.98)) !important;
}

.faq-enquiry h3 {
  color: var(--cream);
  text-transform: uppercase;
}

.faq-enquiry a {
  color: var(--gold-soft);
  text-decoration: none;
}

.faq-enquiry a:hover,
.faq-enquiry a:focus-visible {
  color: var(--cream);
}

.lion-sequence {
  width: 100%;
  min-height: 214svh;
  margin-inline: 0;
  padding: clamp(78px, 7vw, 124px) var(--gutter) clamp(42px, 4vw, 72px);
  overflow: clip;
  isolation: isolate;
}

.lion-sequence::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 3, 3, 0.98) 0 20%, rgba(7, 3, 3, 0.82) 38%, rgba(7, 3, 3, 0.38) 62%, rgba(7, 3, 3, 0.2) 100%),
    radial-gradient(circle at 72% 48%, rgba(177, 18, 24, 0.24), transparent 34rem),
    radial-gradient(circle at 28% 24%, rgba(201, 154, 62, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0.012), rgba(177, 18, 24, 0.052) 64%, rgba(7, 3, 3, 0));
  mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 92%, transparent 100%);
}

.lion-sequence-sticky {
  position: sticky;
  top: clamp(86px, 9vw, 118px);
  max-width: 1320px;
  min-height: min(790px, calc(100svh - 128px));
  display: block;
  align-items: center;
  margin-inline: auto;
}

.lion-sequence-copy {
  position: relative;
  z-index: 6;
  max-width: 660px;
  padding-block: clamp(44px, 8vw, 108px);
  transform: translateY(calc((1 - var(--lion-progress, 0)) * 18px));
  opacity: calc(0.68 + var(--lion-progress, 0) * 0.32);
}

.lion-sequence-copy::before {
  content: "";
  position: absolute;
  inset: clamp(-10px, -1vw, -4px) -38% clamp(-10px, -1vw, -4px) calc(var(--gutter) * -1);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 50%, rgba(7, 3, 3, 0.98), rgba(7, 3, 3, 0.78) 42%, rgba(7, 3, 3, 0.34) 68%, transparent 100%),
    radial-gradient(circle at 18% 26%, rgba(201, 154, 62, 0.08), transparent 18rem);
  filter: blur(0.4px);
}

.lion-sequence-copy h2 {
  margin: 14px 0 0;
  max-width: 7.5ch;
  color: var(--cream);
  font-size: clamp(2.65rem, 5.45vw, 5.95rem);
  line-height: 0.98;
}

.lion-sequence-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.76;
}

.lion-sequence-copy .button {
  margin-top: 28px;
}

.lion-sequence-stage {
  position: absolute;
  inset: clamp(-28px, -2.4vw, -10px) max(calc(var(--gutter) * -1), -78px) clamp(-24px, -2vw, -8px) clamp(300px, 34vw, 520px);
  z-index: 1;
  min-height: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  touch-action: pan-y;
  pointer-events: none;
  transform:
    translate3d(0, calc((0.5 - var(--lion-progress, 0)) * 18px), 0)
    scale(calc(0.982 + var(--lion-progress, 0) * 0.034));
  will-change: transform;
}

.lion-sequence-stage::before {
  content: "";
  position: absolute;
  inset: 3% -8% -3%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 54%, rgba(177, 18, 24, 0.42), transparent 31rem),
    radial-gradient(circle at 50% 50%, rgba(201, 154, 62, 0.2), transparent 18rem),
    linear-gradient(90deg, rgba(7, 3, 3, 0.32), transparent 28%, transparent 72%, rgba(7, 3, 3, 0.32));
  opacity: calc(0.45 + var(--lion-progress, 0) * 0.18 + var(--lion-final, 0) * 0.26);
  transform: translateZ(0);
  will-change: opacity;
}

.lion-sequence-stage::after {
  content: none;
}

.lion-glow {
  position: absolute;
  inset: 7% 1%;
  z-index: 1;
  background:
    radial-gradient(circle at 58% 47%, rgba(201, 154, 62, 0.28), transparent 16rem),
    radial-gradient(circle at 52% 56%, rgba(177, 18, 24, 0.5), transparent 29rem);
  opacity: calc(0.28 + var(--lion-progress, 0) * 0.16 + var(--lion-final, 0) * 0.28);
  filter: blur(6px);
  transform: translateZ(0) scale(calc(0.94 + var(--lion-progress, 0) * 0.08));
  will-change: opacity, transform;
}

.lion-depth-field {
  display: none;
}

.lion-depth-field span {
  position: absolute;
  left: 50%;
  top: 55%;
  width: calc(42% + var(--depth-index, 0) * 17%);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 62, 0.12);
  transform: translate(-50%, -50%) scale(calc(0.86 + var(--lion-progress, 0) * 0.12 + var(--depth-index, 0) * 0.09));
  box-shadow: 0 0 42px rgba(177, 18, 24, 0.04);
}

.lion-depth-field span:nth-child(1) {
  --depth-index: 0;
}

.lion-depth-field span:nth-child(2) {
  --depth-index: 1;
}

.lion-depth-field span:nth-child(3) {
  --depth-index: 2;
}

.lion-frame-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 12%, #000 30%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 12%, #000 30%, #000 94%, transparent 100%);
}

.lion-frame-stack::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 3, 3, 0.12), rgba(7, 3, 3, 0.12)),
    radial-gradient(circle at 62% 50%, rgba(177, 18, 24, 0.12), transparent 30rem),
    linear-gradient(90deg, rgba(7, 3, 3, 0.64), transparent 17%, transparent 88%, rgba(7, 3, 3, 0.28)),
    linear-gradient(180deg, rgba(7, 3, 3, 0.36), transparent 18%, transparent 84%, rgba(7, 3, 3, 0.42));
}

.lion-scrolly-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform:
    translate3d(calc(var(--lion-final, 0) * 7px), calc(var(--lion-final, 0) * -4px), 0)
    scale(calc(1 + var(--lion-final, 0) * 0.018));
  filter:
    saturate(calc(1.06 + var(--lion-progress, 0) * 0.08))
    contrast(1.02)
    brightness(calc(1.01 + var(--lion-final, 0) * 0.04));
  pointer-events: none;
  backface-visibility: hidden;
  contain: paint;
  will-change: opacity, transform;
}

.lion-canvas-ready .lion-scrolly-frame {
  opacity: 1;
}

@media (min-width: 981px) {
  .lion-scrolly-frame {
    transform: translate3d(0, 0, 0) scale(1.009);
  }
}

.lion-sequence-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform:
    translate3d(calc((0.5 - var(--lion-progress, 0)) * 12px), calc((0.5 - var(--lion-progress, 0)) * 16px), 0)
    scale(calc(1.015 + var(--lion-progress, 0) * 0.07 + var(--lion-final, 0) * 0.025));
  filter:
    saturate(calc(1.03 + var(--lion-progress, 0) * 0.08 + var(--lion-final, 0) * 0.22))
    contrast(calc(1.02 + var(--lion-final, 0) * 0.15))
    brightness(calc(0.68 + var(--lion-progress, 0) * 0.13 + var(--lion-final, 0) * 0.18));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.lion-canvas-ready .lion-sequence-fallback {
  opacity: 0;
}

.lion-roar-rings {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.lion-roar-rings span {
  position: absolute;
  left: 56%;
  top: 52%;
  width: calc(20% + var(--ring-index, 0) * 16%);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 62, 0.23);
  opacity: calc(var(--lion-final, 0) * (0.7 - var(--ring-index, 0) * 0.14));
  transform: translate(-50%, -50%) scale(calc(0.84 + var(--lion-final, 0) * (0.75 + var(--ring-index, 0) * 0.32)));
  filter: none;
  box-shadow:
    0 0 28px rgba(201, 154, 62, 0.09),
    0 0 48px rgba(177, 18, 24, 0.12);
  will-change: opacity, transform;
}

.lion-roar-rings span:nth-child(1) {
  --ring-index: 0;
}

.lion-roar-rings span:nth-child(2) {
  --ring-index: 1;
}

.lion-roar-rings span:nth-child(3) {
  --ring-index: 2;
}

.lion-roar-rings::after {
  content: "";
  position: absolute;
  inset: 6%;
  background:
    radial-gradient(circle at 58% 52%, rgba(255, 246, 232, 0.12), transparent 18%),
    radial-gradient(circle at 58% 52%, rgba(177, 18, 24, 0.38), transparent 45%);
  opacity: calc(var(--lion-final, 0) * 0.78);
  filter: blur(12px);
  transform: translateZ(0);
  will-change: opacity;
}

.lion-threshold-words {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: clamp(18px, 2.8vw, 34px);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--gold);
  font-size: clamp(0.62rem, 0.72vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: calc(0.22 + var(--lion-progress, 0) * 0.28 + var(--lion-final, 0) * 0.4);
  transform: translate3d(0, calc((1 - var(--lion-progress, 0)) * 12px), 0);
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.82);
}

.lion-threshold-words span {
  position: relative;
}

.lion-sequence-micro {
  position: absolute;
  top: clamp(18px, 2.2vw, 30px);
  right: clamp(18px, 2.2vw, 30px);
  z-index: 3;
  pointer-events: auto;
  margin: 0;
  color: var(--cream);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: calc(0.16 + var(--lion-final, 0) * 0.84);
  transform: translate3d(0, calc((1 - var(--lion-final, 0)) * 12px), 0);
  text-shadow:
    0 0 calc(10px + var(--lion-final, 0) * 20px) rgba(201, 154, 62, 0.24),
    0 0 calc(18px + var(--lion-final, 0) * 34px) rgba(177, 18, 24, 0.32);
}

.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-bottom: clamp(82px, 7vw, 126px);
}

.community-gallery {
  padding: 0 0 clamp(104px, 9vw, 156px);
}

.community-gallery-header {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 6.8vw, 112px) clamp(20px, 4vw, 64px) 0;
  border-top: 1px solid rgba(201, 154, 62, 0.3);
  text-align: center;
}

.community-gallery-header .eyebrow {
  margin: 0;
}

.community-gallery-kicker {
  max-width: none;
  margin: 14px 0 0;
  color: var(--paper);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.community-gallery-kicker::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: clamp(24px, 2.6vw, 38px) auto 0;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 62, 0.78), transparent);
}

.community-gallery-header h2 {
  max-width: 13ch;
  margin: clamp(26px, 3vw, 44px) auto 0;
  color: var(--cream);
  font-size: clamp(2.2rem, 4.25vw, 4.8rem);
  line-height: 1.02;
  text-align: center;
}

.community-gallery-header p:not(.eyebrow) {
  max-width: 700px;
}

.community-gallery-lead {
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.14vw, 1.14rem);
  line-height: 1.78;
  text-align: center;
}

.community-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 42px);
  margin-top: clamp(68px, 6.8vw, 104px);
}

.community-gallery-item {
  min-width: 0;
  margin: 0;
}

.community-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 154, 62, 0.22);
  background: #100907;
  filter: saturate(0.86) contrast(1.04) sepia(0.035);
  transition: filter 320ms ease;
}

.community-gallery-item:hover img {
  filter: saturate(0.94) contrast(1.04) sepia(0.02);
}

.community-gallery-item figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(201, 154, 62, 0.22);
}

.community-gallery-item figcaption span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.community-gallery-item figcaption strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.2vw, 1.16rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
}

.lead-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 3vw, 40px);
  border-color: rgba(201, 154, 62, 0.24);
  background:
    radial-gradient(circle at 84% 0%, rgba(201, 154, 62, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0.082), rgba(255, 246, 232, 0.035)),
    rgba(255, 246, 232, 0.02);
}

.form-fields,
.form-confirmation {
  position: relative;
  z-index: 1;
}

.form-fields {
  display: grid;
  gap: 17px;
}

.lead-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.lead-form label:focus-within span {
  color: var(--gold-soft);
}

.lead-form span {
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--cream);
  padding: 15px 16px;
  resize: vertical;
  font-size: 1rem;
  font-weight: 500;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms var(--ease);
}

.lead-form input:hover,
.lead-form textarea:hover,
.lead-form select:hover,
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(201, 154, 62, 0.54);
  background: rgba(0, 0, 0, 0.36);
  box-shadow:
    0 0 0 1px rgba(201, 154, 62, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 246, 232, 0.38);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 1px solid rgba(255, 246, 232, 0.16);
}

.form-note {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form.submitted .form-note {
  color: var(--paper);
}

.form-confirmation {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
}

.form-fields[hidden],
.form-confirmation[hidden] {
  display: none;
}

.form-confirmation h3,
.form-confirmation p {
  margin: 0;
}

.form-confirmation:focus {
  outline: 1px solid rgba(201, 154, 62, 0.46);
  outline-offset: 4px;
}

.form-confirmation h3 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.form-confirmation p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
}

.form-secondary {
  width: 100%;
  justify-content: center;
}

.placeholder-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.media-placeholder.small {
  min-height: 124px;
  display: grid;
  align-content: end;
  padding: 18px;
}

.media-placeholder.small span {
  font-size: 0.62rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - (var(--gutter) * 2)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  padding: 26px 0 32px;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-footer img {
  flex: 0 0 auto;
  width: 54px;
  filter: drop-shadow(0 0 14px rgba(177, 18, 24, 0.22));
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer small {
  display: block;
  margin-top: 5px;
  color: rgba(218, 203, 184, 0.62);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer-legal a {
  color: rgba(255, 246, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: clamp(150px, 18vh, 210px) 0 clamp(80px, 12vh, 140px);
}

.legal-card {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 16%, rgba(177, 18, 24, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0.022), transparent 34rem);
  box-shadow: none;
}

.legal-card .eyebrow {
  margin-bottom: 16px;
}

.legal-card h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 28px;
  margin-top: clamp(36px, 6vw, 58px);
}

.legal-content section {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 246, 232, 0.1);
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.legal-note {
  color: rgba(255, 246, 232, 0.76) !important;
}

.legal-back {
  margin-top: 34px;
}

.animate-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 760ms var(--ease) 560ms both;
}

.delay-1 {
  animation-delay: 720ms;
}

.delay-2 {
  animation-delay: 860ms;
}

.delay-4 {
  animation-delay: 1.34s;
}

.delay-5 {
  animation-delay: 1.48s;
}

.delay-6 {
  animation-delay: 1.62s;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms var(--ease);
  will-change: opacity, transform;
}

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

.reveal article,
.reveal .lead-form {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.reveal.is-visible article,
.reveal.is-visible .lead-form {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--reveal-index, 0) * 86ms);
}

.reveal.is-visible article.magnet,
.reveal.is-visible .lead-form.magnet {
  transform:
    translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--card-lift, 0px)), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.reveal.is-visible article.stack-card {
  transform:
    translate3d(0, var(--stack-y, 0px), 0)
    scale(var(--stack-scale, 1));
}

.system-assembly {
  position: relative;
  max-width: min(1040px, 100%);
  min-height: clamp(760px, 72vw, 900px);
  margin-top: clamp(54px, 6vw, 82px);
  margin-inline: auto;
  isolation: isolate;
  perspective: 1200px;
}

.system-assembly::before,
.system-assembly::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -2;
  width: min(760px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.system-assembly::before {
  background:
    radial-gradient(circle, rgba(177, 18, 24, 0.3), rgba(177, 18, 24, 0.08) 36%, transparent 68%),
    radial-gradient(circle, rgba(201, 154, 62, 0.14), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
}

.system-assembly::after {
  width: min(980px, 88vw);
  border: 1px dashed rgba(201, 154, 62, 0.2);
  background:
    conic-gradient(from 18deg, transparent 0 8%, rgba(201, 154, 62, 0.24) 9%, transparent 10% 47%, rgba(201, 154, 62, 0.22) 48%, transparent 49% 100%),
    radial-gradient(circle, transparent 56%, rgba(201, 154, 62, 0.07) 57%, transparent 59%);
  opacity: 0.72;
}

.system-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: min(720px, 64vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) rotate(-12deg) scale(0.86);
  opacity: 0;
  transition:
    opacity 900ms ease 620ms,
    transform 1100ms var(--ease) 620ms;
}

.system-orbit::before,
.system-orbit::after,
.system-orbit span {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 62, 0.18);
  box-shadow:
    inset 0 0 34px rgba(177, 18, 24, 0.1),
    0 0 40px rgba(177, 18, 24, 0.09);
}

.system-orbit::after {
  inset: 11%;
  border-color: rgba(255, 246, 232, 0.06);
}

.system-orbit span:nth-child(1) {
  inset: 22%;
  border-color: rgba(201, 154, 62, 0.13);
}

.system-orbit span:nth-child(2) {
  inset: 35%;
  border-color: rgba(177, 18, 24, 0.2);
}

.inside.is-visible .system-orbit {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
}

.system-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: clamp(174px, 17vw, 230px);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(201, 154, 62, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 24%, rgba(177, 18, 24, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(18, 8, 7, 0.92), rgba(4, 3, 3, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    inset 0 -24px 64px rgba(0, 0, 0, 0.28),
    0 34px 92px rgba(0, 0, 0, 0.38),
    0 0 70px rgba(177, 18, 24, 0.16);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition:
    opacity 820ms ease 900ms,
    transform 980ms var(--ease) 900ms,
    filter 980ms ease 900ms;
}

.system-core::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 246, 232, 0.08);
  border-radius: 50%;
}

.system-core img {
  width: clamp(72px, 7vw, 104px);
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 22px rgba(177, 18, 24, 0.2));
}

.system-core span {
  max-width: 14ch;
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.65;
  text-align: center;
  text-transform: uppercase;
}

.inside.is-visible .system-core {
  opacity: 1;
  filter: saturate(1.06);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.system-piece {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 12px;
  align-content: start;
  width: var(--piece-width, clamp(270px, 24vw, 350px));
  min-height: var(--piece-height, clamp(190px, 17vw, 240px));
  padding: clamp(22px, 2.1vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(201, 154, 62, 0.3);
  border-radius: var(--piece-radius, 42px);
  background:
    radial-gradient(circle at var(--socket-x, -10%) var(--socket-y, 50%), #060303 0 20px, rgba(230, 189, 107, 0.22) 21px 23px, transparent 25px),
    radial-gradient(circle at var(--plug-x, 108%) var(--plug-y, 50%), rgba(76, 18, 15, 0.96) 0 20px, rgba(230, 189, 107, 0.24) 21px 23px, transparent 25px),
    radial-gradient(circle at 50% 0%, rgba(255, 246, 232, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(92, 22, 18, 0.92), rgba(39, 12, 10, 0.95) 54%, rgba(10, 6, 5, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.08),
    inset 0 -22px 58px rgba(0, 0, 0, 0.22),
    0 26px 74px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(177, 18, 24, 0.1);
  opacity: 0;
  transform:
    translate3d(
      calc(-50% + var(--lock-x) + var(--entry-x)),
      calc(-50% + var(--lock-y) + var(--entry-y)),
      0
    )
    rotate(calc(var(--lock-rotate) + var(--entry-rotate)))
    scale(0.92);
  transition:
    opacity 840ms ease,
    transform 1180ms var(--ease),
    border-color 420ms ease,
    box-shadow 420ms ease;
  transition-delay: calc(120ms + (var(--piece-index) * 135ms));
  will-change: opacity, transform;
}

.system-piece::before,
.system-piece::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.system-piece::before {
  background:
    linear-gradient(90deg, rgba(201, 154, 62, 0.24), transparent 18% 80%, rgba(255, 246, 232, 0.08)),
    repeating-linear-gradient(150deg, rgba(255, 246, 232, 0.025) 0 1px, transparent 1px 8px),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 246, 232, 0.1), transparent 58% 100%);
  opacity: 0.58;
}

.system-piece::after {
  inset: 9px;
  border: 1px solid rgba(255, 246, 232, 0.045);
  border-radius: calc(var(--piece-radius, 42px) - 12px);
}

.system-piece > * {
  position: relative;
  z-index: 1;
}

.inside.is-visible .system-piece {
  opacity: 1;
  transform:
    translate3d(calc(-50% + var(--lock-x)), calc(-50% + var(--lock-y)), 0)
    rotate(var(--lock-rotate))
    scale(1);
}

.inside.is-visible .system-piece:hover {
  border-color: rgba(230, 189, 107, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.1),
    inset 0 -22px 58px rgba(0, 0, 0, 0.24),
    0 30px 86px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(177, 18, 24, 0.15);
}

.system-piece-number {
  grid-column: 1;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-piece-icon {
  grid-column: 3;
  justify-self: end;
  color: rgba(255, 226, 154, 0.82);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-piece-kicker {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.system-piece h3 {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: clamp(1.05rem, 1.28vw, 1.34rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.system-piece p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: rgba(228, 210, 184, 0.74);
  font-size: 0.94rem;
  line-height: 1.62;
}

.system-piece-brotherhood {
  --piece-index: 0;
  --piece-width: clamp(390px, 37vw, 510px);
  --piece-height: clamp(188px, 17vw, 232px);
  --lock-x: 0px;
  --lock-y: clamp(-288px, -24vw, -246px);
  --entry-x: 0px;
  --entry-y: -230px;
  --lock-rotate: 0deg;
  --entry-rotate: -2deg;
  --piece-radius: 92px 92px 38px 38px;
  --socket-x: 100%;
  --socket-y: 62%;
  --plug-x: 0%;
  --plug-y: 62%;
}

.system-piece-coaching {
  --piece-index: 1;
  --lock-x: clamp(296px, 28vw, 380px);
  --lock-y: clamp(-88px, -7vw, -54px);
  --entry-x: 260px;
  --entry-y: -40px;
  --lock-rotate: 8deg;
  --entry-rotate: 8deg;
  --piece-radius: 40px 98px 98px 40px;
  --socket-x: 0%;
  --socket-y: 52%;
  --plug-x: 100%;
  --plug-y: 52%;
}

.system-piece-accountability {
  --piece-index: 2;
  --lock-x: clamp(190px, 21vw, 288px);
  --lock-y: clamp(226px, 20vw, 296px);
  --entry-x: 190px;
  --entry-y: 210px;
  --lock-rotate: -8deg;
  --entry-rotate: 7deg;
  --piece-radius: 38px 38px 92px 92px;
  --socket-x: 12%;
  --socket-y: 0%;
  --plug-x: 82%;
  --plug-y: 100%;
}

.system-piece-leadership {
  --piece-index: 3;
  --lock-x: clamp(-288px, -21vw, -190px);
  --lock-y: clamp(226px, 20vw, 296px);
  --entry-x: -190px;
  --entry-y: 210px;
  --lock-rotate: 8deg;
  --entry-rotate: -8deg;
  --piece-radius: 38px 38px 92px 92px;
  --socket-x: 88%;
  --socket-y: 0%;
  --plug-x: 18%;
  --plug-y: 100%;
}

.system-piece-resources {
  --piece-index: 4;
  --lock-x: clamp(-380px, -28vw, -296px);
  --lock-y: clamp(-88px, -7vw, -54px);
  --entry-x: -260px;
  --entry-y: -40px;
  --lock-rotate: -8deg;
  --entry-rotate: -8deg;
  --piece-radius: 98px 40px 40px 98px;
  --socket-x: 100%;
  --socket-y: 52%;
  --plug-x: 0%;
  --plug-y: 52%;
}

@keyframes nav-enter {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-reveal {
  from {
    opacity: 0;
    letter-spacing: 0.08em;
    transform: translateY(36px) scale(0.98);
  }
  to {
    opacity: 1;
    letter-spacing: inherit;
    transform: translateY(0) scale(1);
  }
}

@keyframes crest-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes crest-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(-0.25deg);
  }
}

@keyframes hero-bg-breathe {
  0%,
  100% {
    opacity: 0.94;
    transform: translate3d(0, 0, 0) scale(1.01);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, -8px, 0) scale(1.025);
  }
}

@keyframes hero-light-sweep {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-68%, 0, 0) scale(0.98);
  }
  50% {
    opacity: 0.6;
    transform: translate3d(-42%, -7px, 0) scale(1.02);
  }
}

@keyframes orb-drift {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.28;
    transform: translate3d(16px, -12px, 0) scale(1.05);
  }
}

@keyframes hero-line-enter {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 0.7;
    transform: scaleX(1);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.44;
    transform: translateY(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(8px);
  }
}

@keyframes founder-cue {
  0%,
  100% {
    opacity: 0.44;
    transform: scaleX(0.56);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes button-sheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes grain-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, 2%, 0);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .system-piece {
    width: var(--piece-width, clamp(250px, 26vw, 310px));
    padding: 22px;
  }

  .system-piece-brotherhood {
    --piece-width: clamp(390px, 42vw, 440px);
    --lock-y: -250px;
  }

  .system-piece-coaching {
    --lock-x: 300px;
    --lock-y: -60px;
  }

  .system-piece-accountability {
    --lock-x: 222px;
    --lock-y: 238px;
  }

  .system-piece-leadership {
    --lock-x: -222px;
    --lock-y: 238px;
  }

  .system-piece-resources {
    --lock-x: -300px;
    --lock-y: -60px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    width: 52px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition:
      transform 220ms var(--ease),
      opacity 220ms ease;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 1px;
    background: rgba(255, 246, 232, 0.92);
    box-shadow: 0 0 14px rgba(201, 154, 62, 0.2);
    transition:
      transform 220ms var(--ease),
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    transform: translateY(-1px);
    opacity: 0.94;
  }

  .mobile-menu-toggle:hover span,
  .mobile-menu-toggle:focus-visible span {
    background: var(--gold);
    box-shadow: 0 0 18px rgba(201, 154, 62, 0.34);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 48;
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    background: rgba(3, 2, 2, 0.62);
    backdrop-filter: blur(3px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .mobile-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 49;
    width: min(340px, calc(100% - 32px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding: 20px;
    border: 1px solid rgba(255, 246, 232, 0.16);
    border-radius: var(--radius);
    background:
      radial-gradient(circle at 80% 0%, rgba(177, 18, 24, 0.2), transparent 18rem),
      linear-gradient(180deg, rgba(16, 10, 9, 0.96), rgba(7, 4, 3, 0.98));
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(108%);
    transition:
      opacity 240ms ease,
      transform 260ms var(--ease);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

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

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 246, 232, 0.12);
  }

  .mobile-menu-head span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    border: 1px solid rgba(255, 246, 232, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 246, 232, 0.06);
    color: var(--cream);
    padding: 9px 12px;
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu-links {
    display: grid;
    align-content: start;
  }

  .mobile-menu-links a {
    min-height: 62px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 246, 232, 0.1);
    color: var(--cream);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu-cta {
    width: 100%;
    min-height: 56px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-title {
    font-size: clamp(2.58rem, 13vw, 5.4rem);
    line-height: 0.96;
  }

  .hero-line {
    display: none;
  }

  .outcome-section {
    min-height: auto;
    padding: 96px var(--gutter) 128px;
  }

  .founder-note {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .founder-media {
    order: -1;
  }

  .founder-video-frame {
    width: min(390px, 86vw);
  }

  .founder-frame-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 13px 12px 15px;
  }

  .founder-frame-caption strong {
    font-size: clamp(1.4rem, 6.8vw, 1.85rem);
  }

  .founder-copy {
    max-width: none;
  }

  .founder-copy h2 {
    font-size: clamp(2.24rem, 9vw, 4.2rem);
  }

  .outcome-sticky {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0;
  }

  .outcome-stage {
    min-height: auto;
    display: grid;
    grid-template-rows: none;
    gap: 14px;
  }

  .outcome-crest-showcase {
    display: none;
  }

  .outcome-word,
  .outcome-word:nth-of-type(n) {
    position: relative;
    inset: auto auto auto auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-inline: 0;
    justify-self: stretch;
    opacity: var(--mobile-word-opacity, 0.08);
    transform: translate3d(var(--mobile-word-x, 0), var(--mobile-word-y, 18px), 0);
    transition:
      opacity 620ms ease,
      transform 620ms var(--ease),
      border-color 260ms ease,
      background 260ms ease,
      box-shadow 260ms ease;
  }

  .outcome-word.is-locked {
    opacity: var(--mobile-word-opacity, 1);
    transform: translate3d(var(--mobile-word-x, 0), var(--mobile-word-y, 0), 0);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.2),
      0 0 18px rgba(177, 18, 24, 0.05);
  }

  .outcome-lockup {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    margin-top: 28px;
    padding: 16px;
    border: 1px solid rgba(201, 154, 62, 0.16);
    background: linear-gradient(135deg, rgba(35, 17, 15, 0.86), rgba(10, 5, 5, 0.94));
    opacity: 1;
    transform: none;
  }

  .outcome-lockup-brand {
    display: contents;
  }

  .outcome-lockup img {
    width: 42px;
  }

  .outcome-lockup span {
    min-width: 0;
  }

  .outcome-lockup .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .roar-section,
  .live-call-layout,
  .app-layer,
  .lion-sequence-sticky {
    grid-template-columns: 1fr;
  }

  .roar-section {
    min-height: auto;
    padding-top: 96px;
  }

  .roar-visual {
    min-height: 420px;
    order: -1;
  }

  .lion-sequence {
    min-height: 198vh;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .lion-sequence-sticky {
    position: sticky;
    top: 94px;
    min-height: calc(100vh - 110px);
    align-content: start;
    gap: 28px;
  }

  .lion-sequence-copy {
    max-width: none;
    padding-top: clamp(340px, 78vw, 540px);
    padding-bottom: 44px;
    opacity: 1;
    transform: none;
  }

  .lion-sequence-copy::before {
    inset: clamp(300px, 68vw, 500px) -24px -30px -24px;
    background:
      radial-gradient(circle at 20% 16%, rgba(201, 154, 62, 0.08), transparent 16rem),
      linear-gradient(180deg, transparent 0%, rgba(7, 3, 3, 0.8) 18%, rgba(7, 3, 3, 0.98) 54%, rgba(7, 3, 3, 0.9) 100%);
  }

  .lion-sequence-stage {
    position: absolute;
    inset: 0 calc(var(--gutter) * -1) auto calc(var(--gutter) * -1);
    height: clamp(350px, 80vw, 560px);
    min-height: 0;
    transform: none;
  }

  .lion-scrolly-frame {
    transform:
      translate3d(calc(var(--lion-final, 0) * 4px), calc(var(--lion-final, 0) * -3px), 0)
      scale(calc(1 + var(--lion-final, 0) * 0.012));
    transition:
      opacity 120ms ease;
  }

  .lion-glow {
    transform: none;
    filter: blur(10px);
  }

  .lion-depth-field {
    opacity: 0.16;
    transform: none;
  }

  .lion-roar-rings span {
    opacity: calc(var(--lion-final, 0) * 0.5);
  }

  .lion-threshold-words {
    display: none;
  }

  .lion-sequence-micro {
    opacity: 0.92;
    transform: none;
    pointer-events: auto;
  }

  .live-call-shot,
  .live-retreat-shot,
  .app-mockup {
    min-height: 420px;
  }

  .who-lead {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .community-video-frame {
    max-width: none;
    justify-self: stretch;
  }

  .benefit-grid,
  .audience-grid,
  .level-grid,
  .steps,
  .apply {
    grid-template-columns: 1fr;
  }

  .community-gallery-header {
    padding-inline: clamp(18px, 6vw, 44px);
  }

  .community-gallery-header h2 {
    max-width: 15ch;
  }

  .system-assembly {
    display: grid;
    gap: 12px;
    min-height: auto;
    margin-top: 36px;
  }

  .system-assembly::before {
    inset: 0 auto auto 50%;
    width: min(420px, 92vw);
    transform: translate3d(-50%, 14%, 0);
    opacity: 0.58;
  }

  .system-assembly::after,
  .system-orbit {
    display: none;
  }

  .system-core,
  .system-piece {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .system-core {
    order: 6;
    width: min(290px, 82vw);
    justify-self: center;
    margin: 18px auto 0;
    padding: 28px 24px;
    transform: translate3d(0, 18px, 0) scale(0.94);
    transition-delay: 680ms;
  }

  .inside.is-visible .system-core {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .system-core img {
    width: 104px;
  }

  .system-piece {
    grid-template-columns: auto 1fr auto;
    min-height: auto;
    padding: 22px 20px;
    clip-path: none;
    transform: translate3d(var(--mobile-entry-x, 0), 22px, 0) scale(0.98);
    transition-duration: 680ms;
    transition-delay: calc(var(--piece-index) * 80ms);
  }

  .inside.is-visible .system-piece {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .system-piece-brotherhood {
    order: 1;
    --mobile-entry-x: -28px;
  }

  .system-piece-coaching {
    order: 2;
    --mobile-entry-x: 28px;
  }

  .system-piece-accountability {
    order: 3;
    --mobile-entry-x: -28px;
  }

  .system-piece-leadership {
    order: 4;
    --mobile-entry-x: 28px;
  }

  .system-piece-resources {
    order: 5;
    --mobile-entry-x: -28px;
  }

  .system-piece h3 {
    font-size: 1.14rem;
  }

  .system-piece p {
    font-size: 0.92rem;
  }

  .stack-cards {
    display: grid;
    max-width: none;
    margin-left: 0;
    perspective: none;
  }

  .steps article.stack-card,
  .steps article.stack-card:nth-child(1),
  .steps article.stack-card:nth-child(2),
  .steps article.stack-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: auto;
    margin-bottom: 0;
    transform: translateY(18px);
  }

  .reveal.is-visible .steps article.stack-card,
  .reveal.is-visible .steps article.stack-card:nth-child(1),
  .reveal.is-visible .steps article.stack-card:nth-child(2),
  .reveal.is-visible .steps article.stack-card:nth-child(3) {
    transform: translateY(0);
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(1),
  .benefit-grid article:nth-child(2),
  .benefit-grid article:nth-child(n + 3),
  .level-grid article,
  .level-grid article:nth-child(2),
  .call-details article {
    grid-column: auto;
    min-height: auto;
    transform:
      translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) + var(--card-lift, 0px)), 0)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
  }

  .faq-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 14px;
  }

  .community-gallery {
    padding: 0 14px 100px;
  }

  .community-gallery-header {
    padding: 58px 4px 0;
  }

  .community-gallery-header h2 {
    font-size: clamp(2rem, 10.2vw, 2.9rem);
    line-height: 1.04;
  }

  .community-gallery-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .community-gallery-kicker::after {
    margin-top: 22px;
  }

  .community-gallery-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }

  .community-gallery-item figcaption {
    gap: 12px;
    padding-top: 13px;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 16px;
  }

  .brand-mark {
    width: 52px;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 14px 44px;
  }

  .hero-crest-wrap {
    width: clamp(72px, 21vw, 92px);
    margin-bottom: 16px;
  }

  .hero-logo-wrap {
    width: clamp(150px, 48vw, 210px);
    margin-bottom: 10px;
  }

  .hero-title {
    max-width: 10.5ch;
    margin-top: 14px;
    font-size: clamp(1.82rem, 9.4vw, 2.82rem);
    line-height: 1;
  }

  .hero-kicker {
    max-width: 34ch;
    margin-top: 16px;
    font-size: 0.62rem;
    line-height: 1.55;
  }

  .hero-subhead {
    max-width: 31ch;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    margin-top: 18px;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section-shell {
    width: 100%;
    padding-inline: 14px;
  }

  .section-intro h2,
  .apply h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.72rem);
    line-height: 1.08;
  }

  .live-call .section-intro h2,
  .live-retreats .section-intro h2,
  .access-levels .section-intro h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.48rem);
    line-height: 1.08;
  }

  .live-call .section-intro p,
  .live-retreats .section-intro p,
  .access-levels .section-intro p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .inside,
  .definition,
  .founder-note,
  .roar-section,
  .live-call,
  .access-levels,
  .app-layer,
  .who,
  .how,
  .live-retreats,
  .faq,
  .apply {
    padding: 82px 14px;
  }

  .outcome-section {
    padding: 82px 14px 112px;
  }

  .manifesto {
    min-height: auto;
    padding: 82px 0;
  }

  .manifesto-label {
    display: grid;
  }

  .manifesto-text {
    font-size: clamp(1.86rem, 8.7vw, 3rem);
    line-height: 1.12;
  }

  .founder-video-frame {
    width: min(300px, 82vw);
  }

  .founder-frame-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 11px 10px 13px;
    gap: 5px;
  }

  .founder-frame-caption span {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }

  .founder-frame-caption strong {
    font-size: clamp(1.25rem, 6.8vw, 1.62rem);
  }

  .founder-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .founder-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.66;
  }

  .founder-scroll {
    align-items: flex-start;
    max-width: 24ch;
    line-height: 1.5;
  }

  .roar-copy h2,
  .app-copy h2,
  .lion-sequence-copy h2 {
    font-size: clamp(1.95rem, 9vw, 3.05rem);
    line-height: 1.08;
  }

  .lion-sequence-copy {
    text-align: center;
  }

  .lion-sequence-copy h2 {
    max-width: none;
    margin-inline: auto;
  }

  .lion-title-line {
    display: block;
  }

  .lion-sequence-copy p:not(.eyebrow) {
    max-width: 36ch;
    margin-inline: auto;
  }

  .roar-visual {
    min-height: 330px;
  }

  .who-lead {
    gap: 24px;
    margin-bottom: 28px;
  }

  .community-frame-label {
    left: 16px;
    top: 15px;
    font-size: 0.56rem;
  }

  .community-play {
    width: 62px;
  }

  .live-call-shot,
  .app-mockup,
  .lion-sequence-stage {
    min-height: 320px;
  }

  .lion-sequence-micro {
    top: auto;
    right: 18px;
    bottom: 18px;
    max-width: 18ch;
    text-align: right;
  }

  .call-details .button {
    width: 100%;
  }

  .app-shell {
    min-height: 390px;
  }

  .placeholder-strip {
    grid-template-columns: 1fr;
  }

  .outcome-word {
    grid-template-columns: 1fr;
    padding: 20px;
    overflow: hidden;
  }

  .outcome-word h3 {
    margin-top: 0;
    font-size: clamp(1.72rem, 8vw, 2.32rem);
    line-height: 1.06;
    letter-spacing: 0;
    max-width: 100%;
    text-wrap: balance;
  }

  .outcome-word p {
    grid-column: auto;
  }

  .lead-form {
    padding: 20px;
  }

  .form-confirmation {
    min-height: 360px;
  }

  .mobile-menu-cta {
    padding-inline: 16px;
    letter-spacing: 0.1em;
  }

  .site-footer {
    width: calc(100% - 28px);
    display: grid;
    justify-items: start;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  body::before,
  body::after,
  .hero::before,
  .hero::after,
  .crest-aura,
  .hero-crest,
  .orb,
  .hero-line,
  .scroll-cue {
    animation: none !important;
  }

  .founder-video-frame {
    transform: none !important;
  }

  .founder-video-frame::before,
  .founder-scroll i {
    animation: none !important;
  }

  .animate-in {
    animation: reduce-fade 420ms ease both;
    transform: none;
  }

  .delay-1 {
    animation-delay: 90ms;
  }

  .delay-2 {
    animation-delay: 170ms;
  }

  .delay-4 {
    animation-delay: 300ms;
  }

  .delay-5 {
    animation-delay: 380ms;
  }

  .delay-6 {
    animation-delay: 460ms;
  }

  body.motion-ready .animate-in {
    transition-duration: 420ms;
    transition-delay: 80ms;
  }

  body.motion-ready .delay-1 {
    transition-delay: 120ms;
  }

  body.motion-ready .delay-2 {
    transition-delay: 180ms;
  }

  body.motion-ready .delay-4 {
    transition-delay: 280ms;
  }

  body.motion-ready .delay-5 {
    transition-delay: 340ms;
  }

  body.motion-ready .delay-6 {
    transition-delay: 420ms;
  }

  body.motion-ready .title-line {
    transition-duration: 560ms;
  }

  body.motion-ready .title-line:nth-child(1) {
    transition-delay: 120ms;
  }

  body.motion-ready .title-line:nth-child(2) {
    transition-delay: 230ms;
  }

  body.motion-ready .title-line:nth-child(3) {
    transition-delay: 340ms;
  }

  .title-line {
    animation: reduce-title-reveal 560ms ease forwards;
    transform: none;
  }

  .title-line:nth-child(1) {
    animation-delay: 120ms;
  }

  .title-line:nth-child(2) {
    animation-delay: 230ms;
  }

  .title-line:nth-child(3) {
    animation-delay: 340ms;
  }

  .reveal {
    transform: translateY(10px);
    transition:
      opacity 420ms ease,
      transform 420ms ease;
  }

  .reveal article,
  .reveal .lead-form {
    transform: translateY(8px);
    transition:
      opacity 380ms ease,
      transform 380ms ease,
      border-color 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .manifesto-word {
    transition: opacity 120ms linear;
  }

  .magnet {
    transition:
      translate 360ms cubic-bezier(0.16, 1, 0.3, 1),
      rotate 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .button::before {
    transition-duration: 180ms;
  }

  body.motion-ready .animate-in,
  body.motion-ready .title-line,
  body.motion-ready .reveal,
  body.motion-ready .reveal article:not(.system-piece),
  body.motion-ready .reveal .lead-form,
  body.motion-ready .stack-card,
  body.motion-ready .reveal.is-visible,
  body.motion-ready .reveal.is-visible article:not(.system-piece),
  body.motion-ready .reveal.is-visible .lead-form {
    opacity: 1 !important;
    transition-duration: 1ms !important;
  }

  body.motion-ready .title-line {
    animation: none !important;
    letter-spacing: inherit !important;
    transform: none !important;
  }

  .inside:not(.is-visible) .system-piece,
  .inside:not(.is-visible) .system-core,
  .inside:not(.is-visible) .system-orbit {
    opacity: 0 !important;
  }

  html:not(.lion-motion-qa) .lion-sequence {
    min-height: auto;
  }

  html:not(.lion-motion-qa) .lion-sequence-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  html:not(.lion-motion-qa) .lion-sequence-stage::after,
  html:not(.lion-motion-qa) .lion-glow,
  html:not(.lion-motion-qa) .lion-depth-field,
  html:not(.lion-motion-qa) .lion-roar-rings,
  html:not(.lion-motion-qa) .lion-threshold-words,
  html:not(.lion-motion-qa) .lion-sequence-micro {
    transition: none !important;
  }
}

.system-assembly {
  --puzzle-size: min(740px, 66vw);
  display: grid;
  place-items: center;
  max-width: 1240px;
  min-height: calc(var(--puzzle-size) + clamp(70px, 8vw, 120px));
  overflow: hidden;
  contain: layout paint style;
}

.system-assembly::before {
  display: none;
}

.system-assembly::after {
  display: none;
}

.system-orbit {
  display: none;
}

.system-wheel-base {
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: var(--puzzle-size);
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.system-wheel-base img {
  display: block;
  width: 100%;
  height: auto;
}

.system-wheel-base .system-wheel-complete {
  display: none;
}

.system-core {
  display: none;
  width: calc(var(--puzzle-size) * 0.235);
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 28%, rgba(177, 18, 24, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(12, 7, 6, 0.82), rgba(2, 2, 2, 0.9));
  border-color: rgba(213, 162, 83, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 232, 0.1),
    inset 0 -24px 64px rgba(0, 0, 0, 0.34),
    0 30px 84px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(177, 18, 24, 0.2);
}

.system-core img {
  width: clamp(68px, 7.2vw, 96px);
}

.system-core span {
  color: var(--gold);
  font-size: clamp(0.52rem, 0.75vw, 0.68rem);
}

.system-piece {
  inset: auto;
  left: calc(50% + (var(--lock-x) * var(--puzzle-size)));
  top: calc(50% + (var(--lock-y) * var(--puzzle-size)));
  display: block;
  width: var(--puzzle-size);
  height: auto;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  clip-path: none;
  filter: none;
  z-index: 2;
  opacity: 0;
  transform:
    translate3d(
      calc(-50% + var(--entry-x)),
      calc(-50% + var(--entry-y)),
      0
    )
    rotate(var(--entry-rotate))
    scale(0.94);
  transform-origin: center;
  transition: none;
  backface-visibility: hidden;
  contain: layout paint style;
  will-change: opacity, transform;
}

.system-piece::before,
.system-piece::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.system-piece::before {
  display: block;
  background: var(--piece-image) center / contain no-repeat;
  clip-path: none;
  mix-blend-mode: normal;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.system-piece::after {
  display: none;
}

.system-piece-content {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-content: start;
  column-gap: 10px;
  width: var(--content-width);
  min-height: var(--content-height, auto);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: rotate(var(--content-rotate, 0deg));
  transform-origin: center;
}

.system-piece-number,
.system-piece-icon,
.system-piece-kicker,
.system-piece h3,
.system-piece p {
  grid-column: auto;
}

.system-piece-number {
  grid-column: 1;
  color: var(--gold);
  font-size: clamp(0.58rem, 0.72vw, 0.7rem);
  line-height: 1;
}

.system-piece-icon {
  grid-column: 3;
  align-self: center;
  justify-self: end;
  color: rgba(255, 226, 154, 0.94);
  font-size: clamp(0.44rem, 0.52vw, 0.54rem);
}

.system-piece-kicker {
  grid-column: 1 / -1;
  margin-top: clamp(6px, 0.76vw, 9px);
  color: var(--gold);
  font-size: clamp(0.4rem, 0.48vw, 0.5rem);
  line-height: 1.2;
}

.system-piece h3 {
  grid-column: 1 / -1;
  max-width: 16ch;
  margin-top: clamp(5px, 0.64vw, 7px);
  color: var(--cream);
  font-size: clamp(0.66rem, 0.78vw, 0.86rem);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.system-piece p {
  grid-column: 1 / -1;
  max-width: 21ch;
  margin-top: clamp(5px, 0.64vw, 7px);
  color: rgba(238, 220, 194, 0.82);
  font-size: clamp(0.48rem, 0.58vw, 0.62rem);
  line-height: 1.28;
}

.system-piece-brotherhood {
  --entry-x: 0px;
  --entry-y: -340px;
  --entry-rotate: -4deg;
  --lock-x: 0;
  --lock-y: 0;
  --piece-image: url("Brand Assets/optimized/system-brotherhood-900.webp");
  --content-width: 22%;
  --content-height: 20%;
}

.system-piece-brotherhood .system-piece-content {
  left: 41.5%;
  top: 13%;
}

.system-piece-coaching {
  --entry-x: 360px;
  --entry-y: -90px;
  --entry-rotate: 13deg;
  --lock-x: 0;
  --lock-y: 0;
  --piece-image: url("Brand Assets/optimized/system-coaching-900.webp");
  --content-width: 21%;
}

.system-piece-coaching .system-piece-content {
  left: 70.5%;
  top: 34%;
  --content-rotate: 0deg;
}

.system-piece-accountability {
  --entry-x: 280px;
  --entry-y: 330px;
  --entry-rotate: -12deg;
  --lock-x: 0;
  --lock-y: 0;
  --piece-image: url("Brand Assets/optimized/system-accountability-900.webp");
  --content-width: 21%;
}

.system-piece-accountability .system-piece-content {
  left: 60.5%;
  top: 66.5%;
}

.system-piece-leadership {
  --entry-x: -280px;
  --entry-y: 330px;
  --entry-rotate: 12deg;
  --lock-x: 0;
  --lock-y: 0;
  --piece-image: url("Brand Assets/optimized/system-leadership-900.webp");
  --content-width: 21%;
}

.system-piece-leadership .system-piece-content {
  left: 22.5%;
  top: 66.5%;
}

.system-piece-resources {
  --entry-x: -360px;
  --entry-y: -90px;
  --entry-rotate: -13deg;
  --lock-x: 0;
  --lock-y: 0;
  --piece-image: url("Brand Assets/optimized/system-resources-900.webp");
  --content-width: 22%;
}

.system-piece-resources .system-piece-content {
  left: 9.5%;
  top: 28%;
}

@media (max-width: 980px) {
  .system-assembly {
    --puzzle-size: min(390px, 94vw);
    display: grid;
    place-items: center;
    min-height: calc(var(--puzzle-size) + 44px);
    margin-top: 34px;
    padding-block: 20px 26px;
    overflow: hidden;
  }

  .system-orbit,
  .system-assembly::before,
  .system-assembly::after {
    display: none;
  }

  .system-piece {
    position: absolute;
    inset: auto;
    left: 50%;
    top: 50%;
    width: var(--puzzle-size);
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    padding: 0;
    clip-path: none;
    border: 0;
    border-radius: 0;
    background: none;
    opacity: 0;
    transform: translate3d(var(--mobile-entry-x, 0), 22px, 0) scale(0.98);
  }

  .system-piece::before {
    background: var(--piece-image) center / contain no-repeat;
    clip-path: none;
    mix-blend-mode: normal;
    opacity: 1;
  }

  .system-piece-content {
    position: absolute;
    left: auto !important;
    top: auto !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    white-space: nowrap;
    transform: none;
  }

  .system-core {
    position: absolute;
    inset: 50% auto auto 50%;
    width: calc(var(--puzzle-size) * 0.235);
    margin-top: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.94);
  }
}

@media (max-width: 768px) {
  .system-assembly {
    --puzzle-size: min(390px, calc(100vw - 28px));
    min-height: calc(var(--puzzle-size) + 36px);
    margin-top: 26px;
    padding-block: 18px;
  }

  .system-wheel-base {
    display: block;
  }

  .system-wheel-base .system-wheel-core {
    display: block;
  }

  .system-wheel-base .system-wheel-complete {
    display: none;
  }

  .system-piece {
    display: block;
    z-index: 2;
    will-change: opacity, transform;
  }
}

.lion-depth-field,
.lion-roar-rings,
.lion-threshold-words {
  display: none !important;
}

.lion-frame-stack {
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 9%, #000 25%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 9%, #000 25%, #000 96%, transparent 100%);
}

.lion-frame-stack::after {
  background:
    linear-gradient(rgba(7, 3, 3, 0.08), rgba(7, 3, 3, 0.08)),
    radial-gradient(circle at 62% 50%, rgba(177, 18, 24, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(7, 3, 3, 0.5), transparent 14%, transparent 90%, rgba(7, 3, 3, 0.2));
}

.lion-scrolly-frame,
.lion-sequence-fallback {
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

@keyframes reduce-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes reduce-title-reveal {
  from {
    opacity: 0;
    letter-spacing: 0.035em;
  }
  to {
    opacity: 1;
    letter-spacing: inherit;
  }
}

/* Keep essential content visible when motion JavaScript is delayed or unavailable. */
html:not(.motion-enhanced) .reveal,
html:not(.motion-enhanced) .reveal article:not(.system-piece),
html:not(.motion-enhanced) .reveal .lead-form,
html:not(.motion-enhanced) .founder-media,
html:not(.motion-enhanced) .founder-copy {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html:not(.motion-enhanced) .outcome-word {
  --word-opacity: 1;
  --word-x: 0px;
  --word-y: 0px;
  --word-rotate: 0deg;
  --word-scale: 1;
  --mobile-word-opacity: 1;
  --mobile-word-x: 0px;
  --mobile-word-y: 0px;
}

html:not(.motion-enhanced) .outcome-lockup {
  --lockup-opacity: 1;
  --lockup-y: 0px;
}

html:not(.motion-enhanced) .roar-section {
  --roar-progress: 1;
}

html:not(.motion-enhanced) .manifesto-word {
  opacity: 1 !important;
  transform: none !important;
}

html:not(.motion-enhanced) .inside .system-piece {
  opacity: 1 !important;
  transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1) !important;
  transition: none !important;
}

html:not(.motion-enhanced) .inside .system-wheel-base {
  opacity: 1 !important;
  transform: translate3d(-50%, -50%, 0) scale(1) !important;
  transition: none !important;
}
