:root {
  color-scheme: light;
  --deep-navy: #0e2340;
  --medical-blue: #1e5faf;
  --signal-cyan: #64b7ff;
  --warm-ivory: #f5f8fc;
  --joint-amber: #f2b544;
  --ink: #1a2433;
  --muted: #52647a;
  --rule: #c6d8ea;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 35, 64, .15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--joint-amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 20;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-navy);
  padding: .75rem 1rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(14, 35, 64, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.logo {
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 680;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--signal-cyan);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--signal-cyan);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .75rem 1.15rem;
  background: rgba(100, 183, 255, .12);
  cursor: pointer;
  font-family: inherit;
}

.nav-cta:hover {
  background: var(--medical-blue);
}

.section,
.hero,
.booking {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}

.section-dark {
  background:
    radial-gradient(circle at 18% 22%, rgba(100, 183, 255, .22), transparent 34rem),
    linear-gradient(145deg, var(--deep-navy), #14365f 62%, #0c1f39);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  min-height: calc(100svh - 72px);
  overflow: hidden;
}

.hero::after,
.evidence::before,
.booking::before {
  content: "";
  position: absolute;
  inset: auto -8% 7% -8%;
  height: 9rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 94 C150 20 280 20 430 94 S760 168 1200 32' fill='none' stroke='%2364B7FF' stroke-width='3' stroke-linecap='round' opacity='.18'/%3E%3C/svg%3E") center / cover no-repeat;
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.section-heading,
.why-choose-grid,
.how-layout,
.evidence-grid,
.video-carousel,
.moments-grid,
.awards-panel,
.faq-list,
.booking-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--medical-blue);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.booking-card .eyebrow {
  color: var(--signal-cyan);
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.045em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8.5vw, 6.8rem);
  font-weight: 650;
  line-height: .92;
}

h1 span {
  display: block;
  color: var(--signal-cyan);
  font-variation-settings: "SOFT" 70;
}

h2 {
  margin-bottom: 1rem;
  color: var(--deep-navy);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 620;
  line-height: 1;
}

.section-dark h2,
.booking-card h2 {
  color: var(--white);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.lede,
.section-heading p,
.booking-card p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, .82);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.step:hover,
.carousel-btn:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--medical-blue), #2c83d8);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(30, 95, 175, .34);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .34);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.hero-actions,
.cta-trust,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-actions {
  margin: 2rem 0;
}

.proof-row span,
.cta-trust span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: .55rem .8rem;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
}

.gait-card {
  display: grid;
  gap: .85rem;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  box-shadow: var(--shadow);
}

.gait-scene {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.35rem;
  padding: .35rem .25rem 0;
  background: rgba(14, 35, 64, .34);
  overflow: hidden;
}

.gait-scene::before {
  content: "";
  position: absolute;
  inset: 8% 6% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(100, 183, 255, .2), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.gait-scene svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.recovery-grid,
.stable-path,
.limb,
.apos-arrow path,
.pain-bolt,
.cane {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recovery-grid {
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 1;
}

.stable-path {
  stroke: var(--signal-cyan);
  stroke-width: 4;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: .88;
  filter: url("#trackerGlow");
  animation: trace-wave 2.4s cubic-bezier(.2, .8, .2, 1) .65s forwards;
}

.scene-person {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.scene-before {
  opacity: .78;
  animation: scene-before-soften 3.2s ease .35s forwards;
}

.scene-after {
  opacity: 0;
  animation: scene-after-rise 1.1s cubic-bezier(.2, .8, .2, 1) 1.05s forwards;
}

.skin {
  fill: #f4c59f;
}

.hair {
  fill: #3f2d26;
}

.shirt {
  fill: #2f78bc;
}

.scene-before .shirt {
  fill: #315f8d;
}

.limb {
  stroke-width: 10;
}

.skin-stroke {
  stroke: #f4c59f;
}

.pant-stroke {
  stroke: #214f86;
}

.pain-pulse {
  fill: rgba(237, 101, 80, .28);
  stroke: rgba(237, 101, 80, .72);
  stroke-width: 2;
  animation: pulse-pain 1s ease-in-out .2s 2 forwards;
}

.pain-bolt {
  stroke: var(--joint-amber);
  stroke-width: 2;
}

.cane {
  stroke: rgba(179, 130, 72, .88);
  stroke-width: 4;
}

.apos-arrow path {
  stroke: rgba(100, 183, 255, .72);
  stroke-width: 2.2;
  opacity: .45;
  animation: arrow-nudge 1s ease-out 1.35s forwards;
}

.apos-arrow text,
.scene-label {
  fill: var(--signal-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-anchor: middle;
}

.scene-label-before {
  fill: rgba(242, 181, 68, .78);
}

.foot-glow {
  fill: rgba(100, 183, 255, .48);
  filter: url("#trackerGlow");
  opacity: 0;
  animation: foot-glow-settle .8s ease-out 1.85s forwards;
}

.foot-glow-b {
  animation-delay: 2s;
}

.outcome-card {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 1.4rem;
  padding: 1.15rem 1.25rem;
  background: rgba(14, 35, 64, .72);
  backdrop-filter: blur(12px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metrics span {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.95rem, 1.25vw, 1.04rem);
  line-height: 1.45;
}

.metrics .metric-value {
  display: block;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-testimonial {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.25rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.hero-testimonial p {
  margin: 0 0 .65rem;
  color: rgba(255, 255, 255, .9);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(.98rem, 1.25vw, 1.15rem);
  line-height: 1.25;
}

.hero-testimonial cite {
  color: rgba(100, 183, 255, .82);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.why-choose {
  background:
    radial-gradient(circle at 12% 18%, rgba(100, 183, 255, .16), transparent 20rem),
    var(--warm-ivory);
}

#how {
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-choose-copy .section-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.why-choose h2 span {
  display: block;
  color: var(--medical-blue);
  font-variation-settings: "SOFT" 55;
}

.why-choose-visual {
  margin: 0;
  max-width: 20rem;
  border: 1px solid var(--rule);
  border-radius: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 36px rgba(14, 35, 64, .08);
}

.why-choose-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.why-scene-grid,
.why-link {
  fill: none;
  stroke: rgba(30, 95, 175, .14);
  stroke-width: 1;
}

.why-link {
  stroke: rgba(30, 95, 175, .38);
  stroke-dasharray: 4 4;
}

.why-sofa,
.why-sofa-arm {
  fill: rgba(30, 95, 175, .12);
}

.why-skin {
  fill: rgba(245, 200, 160, .92);
}

.why-shirt {
  fill: rgba(30, 95, 175, .24);
}

.why-coat {
  fill: rgba(255, 255, 255, .94);
  stroke: rgba(30, 95, 175, .16);
  stroke-width: 1;
}

.why-limb {
  fill: none;
  stroke: rgba(245, 200, 160, .92);
  stroke-width: 8;
  stroke-linecap: round;
}

.why-limb.why-pant {
  stroke: rgba(30, 95, 175, .62);
}

.why-foot-glow {
  fill: rgba(100, 183, 255, .42);
}

.why-tablet {
  fill: rgba(30, 95, 175, .16);
  stroke: rgba(30, 95, 175, .42);
  stroke-width: 1;
}

.why-tablet-dot {
  fill: rgba(255, 255, 255, .88);
}

.why-caption {
  fill: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .04em;
}

.why-cards-panel {
  border-radius: 1.7rem;
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(100, 183, 255, .28), transparent 12rem),
    var(--medical-blue);
  box-shadow: var(--shadow);
}

.why-cards {
  display: grid;
  gap: .85rem;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1.15rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
  box-shadow: 0 10px 28px rgba(8, 18, 32, .14);
}

.why-card-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: .1rem;
  flex-shrink: 0;
}

.why-card h3 {
  margin-bottom: .35rem;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 620;
  line-height: 1.25;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
  line-height: 1.65;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}

.how-eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.how-intro-head {
  grid-column: 1;
  grid-row: 2;
}

.how-intro-head h2 {
  margin-top: 0;
}

.how-intro-head p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.8;
}

.how-aside {
  grid-column: 2;
  grid-row: 2 / 4;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-self: stretch;
}

#how .steps {
  grid-column: 1;
  grid-row: 3;
}

.how-video-carousel {
  width: 100%;
}

.how-video-carousel .video-carousel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.how-video-carousel .video-track {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.42fr) minmax(0, .78fr);
  align-items: center;
  gap: clamp(.35rem, 1vw, .55rem);
  overflow: hidden;
  padding: .35rem 0 1rem;
  min-height: clamp(260px, 34vw, 360px);
}

.how-video-carousel .video-card {
  min-height: clamp(220px, 30vw, 320px);
}

.how-video-carousel .video-card.is-active {
  transform: translateY(-.3rem) scale(1.03);
  box-shadow: 0 24px 56px rgba(14, 35, 64, .2);
}

.how-video-carousel .video-card-shadow {
  opacity: .36;
  filter: saturate(.72);
  transform: scale(.86);
  pointer-events: none;
}

.how-video-carousel .video-card-shadow .video-card-content p,
.how-video-carousel .video-card-shadow .video-category {
  display: none;
}

.how-video-carousel .video-card h3 {
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.how-video-carousel .video-card p {
  font-size: .9rem;
  line-height: 1.5;
}

.how-video-carousel .video-play {
  width: 42px;
  height: 42px;
  font-size: .74rem;
}

.steps {
  display: grid;
}

.how-testimonial {
  align-self: stretch;
  border: 1px solid var(--rule);
  border-radius: 1.6rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(circle at 92% 0%, rgba(100, 183, 255, .14), transparent 12rem),
    var(--white);
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  padding: 1.35rem 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .2s ease;
}

.step:first-child {
  padding-top: 0;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--medical-blue);
  font-weight: 800;
}

.step strong {
  display: block;
  grid-column: 2;
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

.step em {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  line-height: 1.72;
}

.step.is-active span {
  background: var(--deep-navy);
  color: var(--white);
}

.step.is-active strong {
  color: var(--medical-blue);
}

.how-testimonial-quote {
  margin: 0;
  color: var(--deep-navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 520;
  line-height: 1.2;
}

.how-testimonial-body {
  margin: 1.1rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.how-testimonial-person {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.how-testimonial-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-navy);
  color: var(--signal-cyan);
  font-weight: 800;
}

.how-testimonial-person strong,
.how-testimonial-person em {
  display: block;
}

.how-testimonial-person em {
  margin-top: .2rem;
  color: var(--muted);
  font-style: normal;
  font-size: .92rem;
}

.evidence {
  position: relative;
  overflow: hidden;
}

.evidence::before {
  top: 12%;
  bottom: auto;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.evidence-item {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.4rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .09);
}

.evidence-item strong {
  color: var(--joint-amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.evidence-item h3 {
  margin: 1rem 0 .6rem;
  color: var(--white);
}

.evidence-item p,
.evidence-item span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.evidence-item span {
  display: block;
  margin-top: .9rem;
  color: var(--signal-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: .75rem;
}

.evidence-bars {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.4rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, .08);
}

.evidence-bars p {
  color: rgba(255, 255, 255, .84);
}

.bar {
  display: grid;
  grid-template-columns: 170px 1fr 56px;
  align-items: center;
  gap: 1rem;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
}

.bar i {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .17);
  overflow: hidden;
}

.bar i span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--joint-amber), var(--signal-cyan));
  transition: width 1s ease;
}

.bar b {
  color: var(--joint-amber);
}

.videos,
.stories,
.awards,
.faq,
.conditions,
.coverage {
  background:
    radial-gradient(circle at 12% 20%, rgba(100, 183, 255, .18), transparent 20rem),
    var(--warm-ivory);
}

.awards {
  position: relative;
  overflow: hidden;
}

.awards::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 95, 175, .16), transparent 68%);
  pointer-events: none;
}

.awards-panel {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(198, 216, 234, .62);
  border-radius: 1.8rem;
  padding: clamp(.7rem, 2vw, 1.1rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .28));
  box-shadow: 0 18px 54px rgba(14, 35, 64, .12);
  backdrop-filter: blur(16px);
}

.awards-crop {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .46);
}

.awards-panel img {
  display: block;
  width: calc(100% + 7rem);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  transform: translate(-3.8rem, -5.8rem);
  margin-bottom: -8rem;
}

.awards-panel figcaption {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.condition-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.condition-card,
.coverage-card {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 1.35rem;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 14px 36px rgba(14, 35, 64, .08);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.condition-card::before,
.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--medical-blue), var(--signal-cyan));
}

.condition-card::after,
.coverage-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 183, 255, .2), transparent 70%);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .28s ease, transform .28s ease;
}

.condition-card.is-visible,
.coverage-card.is-visible {
  transition-property: opacity, transform, box-shadow, border-color;
}

.condition-card:hover,
.coverage-card:hover {
  border-color: rgba(30, 95, 175, .38);
  box-shadow: 0 20px 48px rgba(14, 35, 64, .13);
  transform: translateY(-5px);
}

.condition-card:hover::after,
.coverage-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.condition-card h3,
.coverage-card h3 {
  margin-bottom: .75rem;
  color: var(--deep-navy);
}

.condition-card p,
.coverage-card p {
  color: var(--muted);
  line-height: 1.7;
}

.condition-card span {
  display: inline-block;
  margin-top: .7rem;
  border-radius: 999px;
  background: var(--warm-ivory);
  padding: .42rem .65rem;
  color: var(--medical-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 100%;
  white-space: normal;
}

.videos {
  position: relative;
  overflow: hidden;
}

.videos::before {
  content: "";
  position: absolute;
  inset: 7rem -6rem auto auto;
  width: min(42vw, 34rem);
  height: min(42vw, 34rem);
  border: 1px solid rgba(30, 95, 175, .14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(100, 183, 255, .18), transparent 62%),
    repeating-radial-gradient(circle, transparent 0 2.4rem, rgba(30, 95, 175, .12) 2.45rem 2.5rem);
  pointer-events: none;
}

.video-carousel {
  display: grid;
  gap: 1rem;
}

.video-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.video-status {
  margin: 0;
  color: var(--medical-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-controls {
  display: flex;
  gap: .7rem;
}

.video-track {
  display: grid;
  grid-template-columns: minmax(72px, .58fr) repeat(3, minmax(0, 1fr)) minmax(72px, .58fr);
  align-items: center;
  gap: clamp(.55rem, 1.4vw, 1rem);
  overflow: hidden;
  padding: .5rem 0 1.2rem;
}

.video-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(320px, 34vw, 500px);
  border: 0;
  border-radius: 1.35rem;
  padding: clamp(.85rem, 1.5vw, 1.15rem);
  background: var(--deep-navy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  text-align: left;
  transition: transform .36s cubic-bezier(.2, .8, .2, 1), box-shadow .36s ease, opacity .36s ease, filter .36s ease;
}

.video-card.is-active {
  box-shadow: 0 28px 70px rgba(14, 35, 64, .22);
  transform: translateY(-.35rem) scale(1.035);
}

.video-card-center {
  opacity: 1;
}

.video-card-shadow {
  opacity: .34;
  filter: saturate(.72);
  transform: scale(.88);
}

.video-card-shadow .video-card-content p,
.video-card-shadow .video-category {
  display: none;
}

.video-track.is-moving-next .video-card {
  animation: video-slide-next .34s cubic-bezier(.2, .8, .2, 1);
}

.video-track.is-moving-prev .video-card {
  animation: video-slide-prev .34s cubic-bezier(.2, .8, .2, 1);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 35, 64, .1), rgba(14, 35, 64, .88)),
    var(--video-thumb) center / cover;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 1.25rem;
  pointer-events: none;
}

.video-card:hover::before,
.video-card:focus-visible::before,
.video-card.is-active::before {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.05);
}

.video-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .8rem;
}

.video-category {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(14, 35, 64, .34);
  padding: .42rem .65rem;
  color: var(--signal-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
}

.video-card p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
}

.video-play {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--joint-amber), var(--signal-cyan));
  color: var(--deep-navy);
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.video-dots {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.video-dot {
  width: 2.1rem;
  height: .38rem;
  border: 0;
  border-radius: 999px;
  background: rgba(30, 95, 175, .22);
  cursor: pointer;
  padding: 0;
  transition: width .24s ease, background .24s ease;
}

.video-dot.is-active {
  width: 3.4rem;
  background: var(--medical-blue);
}

.coverage-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  border-radius: 1.35rem;
  background: var(--deep-navy);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
}

.coverage-banner h3 {
  margin-bottom: .35rem;
  color: var(--white);
}

.coverage-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

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

.moment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(14, 35, 64, .08);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.moment-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--medical-blue), var(--signal-cyan));
  z-index: 1;
}

.moment-card:hover,
.moment-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(100, 183, 255, .55);
  box-shadow: 0 22px 52px rgba(14, 35, 64, .13);
}

.moment-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  filter: saturate(0.88) contrast(0.94);
}

.moment-art-heart {
  transform-origin: 190px 62px;
}

.moment-card:hover .moment-art-heart {
  animation: moment-heart 1.35s ease-in-out infinite;
}

.moment-actor-grandma {
  transform: translate(130px, 55px);
}

.moment-actor-grandchild {
  transform: translate(248px, 80px);
}

.moment-actor-dancer-a {
  transform: translate(160px, 30px);
}

.moment-actor-dancer-b {
  transform: translate(256px, 36px);
}

.moment-actor-hiker {
  transform: translate(200px, 50px);
}

.moment-actor-runner {
  transform: translate(220px, 38px);
}

.moment-actor-gardener {
  transform: translate(186px, 64px);
}

.moment-actor-traveler {
  transform: translate(244px, 42px);
}

.moment-card:hover .moment-actor-grandma {
  animation: moment-grandma 1.75s ease-in-out infinite;
}

.moment-card:hover .moment-actor-grandchild {
  animation: moment-grandchild 1.5s ease-in-out infinite;
}

.moment-card:hover .moment-actor-dancer-a {
  animation: moment-dancer-a 1.65s ease-in-out infinite;
}

.moment-card:hover .moment-actor-dancer-b {
  animation: moment-dancer-b 1.65s ease-in-out infinite;
}

.moment-card:hover .moment-actor-hiker {
  animation: moment-hiker 1.55s ease-in-out infinite;
}

.moment-card:hover .moment-actor-runner {
  animation: moment-runner 1.25s ease-in-out infinite;
}

.moment-card:hover .moment-actor-gardener {
  animation: moment-gardener 1.85s ease-in-out infinite;
}

.moment-card:hover .moment-actor-traveler {
  animation: moment-traveler 1.45s ease-in-out infinite;
}

@keyframes moment-heart {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.14);
  }
}

@keyframes moment-grandma {
  0%,
  100% {
    transform: translate(130px, 55px) rotate(-1.2deg);
  }

  50% {
    transform: translate(130px, 48px) rotate(1.2deg);
  }
}

@keyframes moment-grandchild {
  0%,
  100% {
    transform: translate(248px, 80px) translateY(0) scale(1);
  }

  50% {
    transform: translate(248px, 80px) translateY(-6px) scale(1.03);
  }
}

@keyframes moment-dancer-a {
  0%,
  100% {
    transform: translate(160px, 30px) rotate(-1.6deg);
  }

  50% {
    transform: translate(160px, 24px) rotate(1.6deg);
  }
}

@keyframes moment-dancer-b {
  0%,
  100% {
    transform: translate(256px, 36px) rotate(1.6deg);
  }

  50% {
    transform: translate(256px, 30px) rotate(-1.6deg);
  }
}

@keyframes moment-hiker {
  0%,
  100% {
    transform: translate(200px, 50px) translateY(0) rotate(-0.8deg);
  }

  50% {
    transform: translate(200px, 50px) translateY(-6px) rotate(0.8deg);
  }
}

@keyframes moment-runner {
  0%,
  100% {
    transform: translate(220px, 38px) rotate(-1deg) translateX(-2px);
  }

  50% {
    transform: translate(220px, 31px) rotate(1deg) translateX(3px);
  }
}

@keyframes moment-gardener {
  0%,
  100% {
    transform: translate(186px, 64px) rotate(0);
  }

  50% {
    transform: translate(186px, 58px) rotate(-1.8deg);
  }
}

@keyframes moment-traveler {
  0%,
  100% {
    transform: translate(244px, 42px) translateY(0) rotate(0);
  }

  50% {
    transform: translate(244px, 42px) translateY(-5px) rotate(-1deg);
  }
}

.moment-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .55rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.moment-title {
  margin: 0;
  color: var(--deep-navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 560;
  line-height: 1.2;
}

.moment-desc {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.62;
}

.moment-desc-quote {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: .98rem;
  line-height: 1.55;
}

.moment-pill {
  display: inline-block;
  margin-top: auto;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(100, 183, 255, .14);
  color: var(--medical-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.carousel-btn,
.text-button,
.modal-close {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.carousel-btn {
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--white);
  padding: .75rem 1rem;
  color: var(--medical-blue);
  font-weight: 800;
  transition: transform .2s ease;
}

.text-button {
  margin-top: 1.4rem;
  background: transparent;
  color: var(--medical-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

details {
  border: 1px solid var(--rule);
  border-radius: 1.1rem;
  background: var(--white);
  padding: 1.1rem 1.2rem;
}

summary {
  color: var(--deep-navy);
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: .8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking {
  position: relative;
  overflow: hidden;
}

.booking-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.booking-card .button {
  margin: .8rem 0 1.3rem;
}

.booking-card .cta-trust {
  justify-content: center;
}

.site-footer {
  background: #08182c;
  color: rgba(255, 255, 255, .72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(220px, .65fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2.4rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.footer-contact {
  display: grid;
  gap: .9rem;
}

.footer-contact p,
.footer-disclaimer p {
  margin: 0;
}

.footer-contact-list {
  display: grid;
  gap: .75rem;
  margin: .4rem 0 0;
}

.footer-contact-list a,
.footer-contact-list span {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-links a:hover {
  color: var(--signal-cyan);
}

.footer-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  color: var(--signal-cyan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: .75rem;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: .55rem .75rem;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-disclaimer {
  display: grid;
  gap: .45rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.2rem clamp(1.25rem, 4vw, 3.5rem);
  text-align: center;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.55;
}

.footer-disclaimer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: underline;
  text-underline-offset: .15em;
}

.footer-disclaimer a:hover {
  color: var(--signal-cyan);
}

.video-modal,
.quiz-modal {
  width: min(620px, calc(100vw - 2rem));
  border: 0;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.quiz-modal {
  width: min(860px, calc(100vw - 2rem));
}

.video-modal::backdrop,
.quiz-modal::backdrop {
  background: rgba(14, 35, 64, .78);
  backdrop-filter: blur(8px);
}

.video-modal h2,
.quiz-modal h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.video-modal {
  width: min(960px, calc(100vw - 2rem));
  background: var(--white);
}

.video-frame-shell {
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
  border-radius: 1rem;
  background: var(--deep-navy);
  overflow: hidden;
}

.video-frame-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  float: right;
  border-radius: 999px;
  background: var(--warm-ivory);
  padding: .55rem .8rem;
  color: var(--medical-blue);
  font-weight: 800;
}

.quiz-progress {
  height: 4px;
  margin: 0 0 1.75rem;
  border-radius: 999px;
  background: var(--rule);
  overflow: hidden;
}

.quiz-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--joint-amber), var(--signal-cyan));
  transition: width .28s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-options {
  display: grid;
  gap: .75rem;
}

.quiz-options button,
.quiz-options label {
  border: 1px solid var(--rule);
  border-radius: 1rem;
  background: var(--white);
  padding: 1rem 1.1rem;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.quiz-options label {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.quiz-options input {
  accent-color: var(--medical-blue);
}

.quiz-options button:hover,
.quiz-options label:hover {
  border-color: var(--medical-blue);
  background: var(--warm-ivory);
}

.quiz-hint,
.quiz-note {
  color: var(--muted);
  line-height: 1.75;
}

.quiz-hint {
  margin-bottom: 1rem;
}

.quiz-note {
  margin: 1.5rem 0 0;
}

.quiz-next {
  width: 100%;
  margin-top: 1.25rem;
}

.quiz-result p {
  color: var(--muted);
  line-height: 1.75;
}

.calendly-shell {
  min-width: 320px;
  height: min(700px, 68vh);
  margin-top: 1rem;
  border: 1px solid var(--rule);
  border-radius: 1rem;
  background: var(--warm-ivory);
  overflow: hidden;
}

.calendly-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.calendly-loading,
.calendly-fallback {
  padding: 1rem;
  text-align: center;
}

.calendly-fallback a {
  color: var(--medical-blue);
  font-weight: 800;
}

.quiz-result .button {
  width: 100%;
  margin-top: .75rem;
}

.booking-nudge {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  gap: .75rem;
  width: min(360px, calc(100vw - 2rem));
  border: 1px solid rgba(100, 183, 255, .38);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--white);
  color: var(--deep-navy);
  box-shadow: 0 18px 42px rgba(14, 35, 64, .14);
}

.booking-nudge p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-nudge .text-button {
  justify-self: start;
  margin-top: 0;
}

.booking-nudge .modal-close {
  justify-self: start;
  float: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.condition-card.reveal,
.coverage-card.reveal {
  transition-property: opacity, transform, box-shadow, border-color;
}

.condition-card.reveal.is-visible:hover,
.coverage-card.reveal.is-visible:hover {
  border-color: rgba(30, 95, 175, .38);
  box-shadow: 0 20px 48px rgba(14, 35, 64, .13);
  transform: translateY(-5px);
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

.delay-4 {
  transition-delay: .32s;
}

@keyframes trace-wave {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scene-before-soften {
  0%,
  34% {
    opacity: .78;
  }
  100% {
    opacity: .28;
  }
}

@keyframes scene-after-rise {
  to {
    opacity: 1;
  }
}

@keyframes pulse-pain {
  50% {
    opacity: .4;
    transform: scale(1.12);
  }
}

@keyframes arrow-nudge {
  to {
    opacity: 1;
    transform: translateX(4px);
  }
}

@keyframes foot-glow-settle {
  to {
    opacity: .72;
  }
}

@keyframes video-slide-next {
  0% {
    opacity: .76;
    transform: translateX(1.2rem) scale(.94);
  }
}

@keyframes video-slide-prev {
  0% {
    opacity: .76;
    transform: translateX(-1.2rem) scale(.94);
  }
}

#stories-title em {
  color: var(--medical-blue);
  font-style: italic;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .how-layout,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .how-aside {
    display: contents;
  }

  .how-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .how-intro-head {
    grid-column: 1;
    grid-row: 2;
  }

  .how-video-carousel {
    grid-column: 1;
    grid-row: 3;
  }

  #how .steps {
    grid-column: 1;
    grid-row: 4;
  }

  .how-testimonial {
    grid-column: 1;
    grid-row: 5;
  }

  .why-choose-visual {
    max-width: 16rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .evidence-grid,
  .condition-grid,
  .coverage-grid,
  .moments-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-track {
    grid-template-columns: minmax(54px, .45fr) repeat(3, minmax(0, 1fr)) minmax(54px, .45fr);
  }

  .video-card {
    min-height: 310px;
  }

  .video-card h3 {
    font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  }

  .video-card p {
    display: none;
  }

  .awards-panel img {
    width: calc(100% + 5rem);
    transform: translate(-2.7rem, -4.6rem);
    margin-bottom: -6.2rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .nav-cta {
    padding: .65rem .8rem;
    font-size: .82rem;
  }

  .why-choose-visual {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .metrics,
  .science-stats,
  .evidence-grid,
  .condition-grid,
  .coverage-grid,
  .moments-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .video-carousel-top,
  .video-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .video-track {
    grid-template-columns: minmax(42px, .24fr) minmax(0, 1fr) minmax(42px, .24fr);
  }

  .video-card {
    min-height: 400px;
  }

  .video-card-center:not(.is-active) {
    display: none;
  }

  .video-card-shadow {
    min-height: 340px;
  }

  .video-card-shadow h3 {
    display: none;
  }

  .coverage-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .awards-panel img {
    width: calc(100% + 3rem);
    transform: translate(-1.7rem, -3.25rem);
    margin-bottom: -4.4rem;
  }

  .carousel-btn {
    width: 100%;
  }

  .bar {
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }

  .booking-nudge {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .stable-path {
    stroke-dashoffset: 0;
  }

  .scene-before {
    opacity: .28;
  }

  .scene-after,
  .apos-arrow path,
  .foot-glow {
    opacity: 1;
    transform: none;
  }
}
