:root {
  --bg: #d9d8d5;
  --surface: #eeece8;
  --surface-soft: #e2e0dc;
  --ink: #6a3c37;
  --ink-2: #7e473f;
  --ink-3: #9c5146;
  --text: #fffaf5;
  --text-dark: #4d3733;
  --muted: #826761;
  --muted-light: rgba(88, 62, 57, 0.74);
  --coral: #bf5b4b;
  --coral-2: #d56855;
  --magenta: #d44caf;
  --violet: #4c45c7;
  --cyan: #159cc8;
  --green: #62b88c;
  --amber: #e39b32;
  --line: rgba(191, 91, 75, 0.3);
  --line-dark: rgba(191, 91, 75, 0.2);
  --shadow: 0 28px 80px rgba(117, 76, 66, 0.2);
  --shadow-soft: 0 18px 46px rgba(117, 76, 66, 0.12);
  --container: 1180px;
  --header-h: 82px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-block: calc(var(--header-h) + 18px) 12vh;
  overflow-x: hidden;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(212, 76, 175, 0.2), transparent 28vw),
    radial-gradient(circle at 86% 18%, rgba(227, 155, 50, 0.22), transparent 26vw),
    linear-gradient(115deg, #d3d2cf 0%, var(--bg) 42%, #e3e1de 100%);
  color: var(--text-dark);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: min(54vw, 760px);
  aspect-ratio: 992 / 542;
  background: url("public/assets/brand-blob-cutout.png") center / contain no-repeat;
  opacity: 0.46;
  filter: saturate(1.12);
}

body::before {
  left: -25vw;
  top: 112px;
  transform: rotate(-5deg);
}

body::after {
  right: -25vw;
  top: 52vh;
  transform: scaleX(-1) rotate(7deg);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

.spline-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #f1eee6;
}

.spline-background iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.54;
  filter: saturate(1.08) sepia(0.08) hue-rotate(352deg) brightness(1.06) contrast(0.94);
  transform: scale(1.02);
}

.spline-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 233, 0.2);
  backdrop-filter: blur(1px) saturate(1.08);
}

.spline-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 246, 239, 0.3), rgba(236, 231, 219, 0.24)),
    rgba(244, 241, 233, 0.24);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--text-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

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

.liquid-loader[hidden] {
  display: none;
}

.liquid-loader {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 76, 175, 0.24), transparent 260px),
    radial-gradient(circle at 42% 58%, rgba(21, 156, 200, 0.18), transparent 300px),
    rgba(13, 16, 20, 0.9);
  color: white;
  font-family: system-ui, sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(10px) saturate(1.08);
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.liquid-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loader-track {
  position: relative;
  width: clamp(180px, 28vw, 240px);
  height: 32px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(255, 255, 255, 0.1);
}

.liquid-fill {
  position: absolute;
  top: 2px;
  left: 2px;
  height: calc(100% - 4px);
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899, #f59e0b);
  border-radius: 14px;
  animation:
    fillProgress 4s ease-out infinite,
    colorShift 3s linear infinite;
  box-shadow:
    0 0 12px rgba(124, 58, 237, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.loading-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  animation: textGlow 1s ease-in-out infinite;
}

.dot {
  margin-left: 3px;
  animation: blink 1.5s infinite;
}

.dot:nth-of-type(1) {
  animation-delay: 0s;
}

.dot:nth-of-type(2) {
  animation-delay: 0.3s;
}

.dot:nth-of-type(3) {
  animation-delay: 0.6s;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(115deg, #090b0f 0%, #121017 37%, #181013 58%, #07090b 100%),
    #07090b;
}

.ambient__mesh {
  position: absolute;
  width: 86vw;
  height: 34vh;
  opacity: 0.5;
  filter: blur(48px);
  transform: rotate(-12deg);
}

.ambient__mesh--coral {
  left: -22vw;
  top: 18vh;
  background: linear-gradient(90deg, rgba(243, 106, 93, 0.52), rgba(232, 97, 208, 0.16), transparent);
}

.ambient__mesh--cyan {
  right: -28vw;
  top: 42vh;
  background: linear-gradient(90deg, transparent, rgba(66, 216, 232, 0.22), rgba(143, 109, 255, 0.18));
  transform: rotate(18deg);
}

.ambient__line {
  position: absolute;
  left: -12vw;
  width: 124vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 106, 93, 0.58), rgba(66, 216, 232, 0.38), transparent);
  opacity: 0.44;
  animation: signalLine 13s ease-in-out infinite alternate;
}

.ambient__line--one {
  top: 31vh;
  transform: rotate(-8deg);
}

.ambient__line--two {
  top: 67vh;
  animation-delay: -5s;
  transform: rotate(7deg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 0 44px;
  color: #fff;
  background: rgba(8, 10, 13, 0.76);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(8, 10, 13, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.brand,
.footer-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 168px;
  height: auto;
}

.brand span,
.footer-brand span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg,
.hero__proof svg,
.product-card button svg,
.video-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  padding: 152px 0 64px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(9, 11, 15, 0.96), rgba(18, 16, 23, 0.95) 42%, rgba(22, 13, 16, 0.95) 68%, rgba(7, 9, 11, 0.98)),
    #090b0f;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 106, 93, 0.75), rgba(66, 216, 232, 0.48), transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 56px;
}

.hero__copy {
  position: relative;
  min-width: 0;
}

.hero__copy h1 {
  --hero-title-x: 0px;
  --hero-title-y: 0px;
  --hero-title-scale: 1;
  position: relative;
  z-index: 3;
  display: inline-block;
  transform: translate(var(--hero-title-x), var(--hero-title-y)) scale(var(--hero-title-scale));
  transform-origin: left center;
  will-change: transform;
}

.hero__mark,
.section-mark {
  margin: 0 0 18px;
  color: var(--coral-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.brand-hero h1 {
  max-width: 690px;
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
}

.hero h1 {
  text-wrap: balance;
}

.hero h1::first-line {
  color: #fff;
}

.hero h1 span,
.accent-text {
  color: var(--coral);
}

.hero__copy > p:not(.hero__mark),
.brand-hero__copy > p:not(.hero__mark) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted-light);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__actions--training {
  --hero-cta-x: 0px;
  --hero-cta-y: 0px;
  --hero-cta-scale: 1;
  position: relative;
  z-index: 4;
  display: inline-flex;
  margin-top: 28px;
  transform: translate3d(var(--hero-cta-x), var(--hero-cta-y), 0) scale(var(--hero-cta-scale));
  transform-origin: left center;
  will-change: transform;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff7764);
  box-shadow: 0 18px 44px rgba(243, 106, 93, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(243, 106, 93, 0.34);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.button--outline {
  color: var(--text-dark);
  border-color: rgba(17, 19, 21, 0.2);
  background: rgba(255, 255, 255, 0.55);
}

.button--outline:hover,
.button--outline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 106, 93, 0.46);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero__proof svg {
  color: var(--coral);
}

.hero__stage {
  position: relative;
  min-height: 610px;
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 54px 54px 78px 8px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.52;
}

.hero__cell {
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.76;
  filter: saturate(1.25) contrast(1.08);
  animation: floatPanel 7s ease-in-out infinite alternate;
}

.hero__cell--one {
  right: -10px;
  top: 28px;
}

.hero__cell--two {
  left: 24px;
  bottom: 22px;
  animation-delay: -2s;
}

.hero__cell-cluster {
  --hero-cell-x: -25px;
  --hero-cell-y: 30px;
  --hero-cell-rotation: 0deg;
  position: relative;
  z-index: 0;
  width: min(100%, 430px);
  margin-top: 34px;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.02);
  transform: translate(var(--hero-cell-x), var(--hero-cell-y)) rotate(var(--hero-cell-rotation));
  pointer-events: none;
}

.video-card {
  position: absolute;
  z-index: 2;
  left: 74px;
  right: 18px;
  top: 130px;
  height: 360px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0a0d11;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(12, 14, 17, 0.56), transparent 34%);
}

.video-card__cell-cluster {
  position: absolute;
  left: 18px;
  bottom: 58px;
  z-index: 2;
  width: min(38%, 210px);
  aspect-ratio: 1;
  background: url("public/assets/hero-cell-cluster.png?v=1") center / contain no-repeat;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.02);
  pointer-events: none;
  animation: floatPanel 7s ease-in-out infinite alternate;
}

.video-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff8069);
  box-shadow: 0 22px 54px rgba(243, 106, 93, 0.44);
}

.video-card__play svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.video-card__bar {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 52px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.video-card__bar span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  animation: videoProgress 5s ease-in-out infinite alternate;
}

.video-card__controls {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.video-card__controls small {
  font-size: 12px;
  font-weight: 800;
}

.floating-window {
  --hero-window-x: 0px;
  --hero-window-y: 0px;
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(292px, 44%);
  min-height: 100px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(21, 24, 30, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  animation: heroWindowFloat 6.5s ease-in-out infinite alternate;
  will-change: transform;
}

.floating-window--top {
  right: 7%;
  top: 62px;
}

.floating-window--left {
  left: 38px;
  bottom: 78px;
  animation-delay: -2s;
}

.floating-window--right {
  right: 0;
  bottom: 96px;
  animation-delay: -4s;
}

.floating-window__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--coral);
  border: 1px solid rgba(243, 106, 93, 0.42);
  background: rgba(243, 106, 93, 0.1);
}

.floating-window__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-window strong {
  display: block;
  font-size: 14px;
}

.floating-window span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.floating-window b {
  color: var(--coral);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.liquid-info-card {
  position: absolute;
  left: -6px;
  top: 108px;
  z-index: 4;
  width: 190px;
  height: 254px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  color: #fffaf5;
  background: lightgrey;
  box-shadow: #d11bff42 0 15px 40px -5px;
}

.liquid-info-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 22px;
  border-radius: 21px;
  background: linear-gradient(rgba(255, 255, 255, 0.473), rgba(150, 150, 150, 0.25));
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.liquid-info-card__content span {
  color: rgba(255, 250, 245, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.liquid-info-card__content strong {
  color: #fffaf5;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.liquid-info-card__content small {
  color: rgba(255, 250, 245, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.liquid-info-card__content em {
  color: #fffaf5;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.liquid-info-card:hover .liquid-info-card__content em,
.liquid-info-card:focus-within .liquid-info-card__content em {
  opacity: 1;
  transform: translateY(0);
}

.liquid-info-card__blob {
  position: absolute;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 5em;
  opacity: 0.6;
  filter: blur(20px);
}

.liquid-info-card__blob--one {
  left: -50px;
  top: -90px;
  background: #ff930fe7;
}

.liquid-info-card__blob--two {
  left: 110px;
  top: -20px;
  background: #bf0fff;
}

.liquid-info-card__blob--three {
  left: -40px;
  top: 100px;
  background: #ff1b6b;
}

.liquid-info-card__blob--four {
  left: 100px;
  top: 180px;
  background: #0061ff;
}

.liquid-info-card:hover .liquid-info-card__blob--one {
  animation: liquidCardFloatOne 6s linear infinite alternate;
}

.liquid-info-card:hover .liquid-info-card__blob--two {
  animation: liquidCardFloatTwo 6s linear infinite alternate;
}

.liquid-info-card:hover .liquid-info-card__blob--three {
  animation: liquidCardFloatThree 6s linear infinite alternate;
}

.liquid-info-card:hover .liquid-info-card__blob--four {
  animation: liquidCardFloatFour 6s linear infinite alternate;
}

.section {
  position: relative;
  z-index: 1;
  padding: 104px 0;
}

.course-path,
.brand-teaser,
.brand-story,
.brand-catalog {
  background: var(--bg);
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

.section-top h2,
.wound-copy h2,
.contact__lead h2,
.brand-story h2,
.brand-catalog h2 {
  margin: 0;
  max-width: 790px;
  color: var(--text-dark);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.section-top p:not(.section-mark),
.brand-story p,
.wound-copy p,
.contact__lead p {
  margin: 14px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

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

.module-card,
.product-card,
.course-tile,
.booking-panel,
.login-panel {
  border-radius: var(--radius);
}

.module-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(20, 18, 18, 0.09);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 106, 93, 0.34);
}

.module-card span {
  color: var(--coral);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.module-card svg {
  width: 36px;
  height: 36px;
  color: var(--coral);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card:nth-child(2) svg,
.module-card:nth-child(5) svg {
  color: var(--violet);
}

.module-card:nth-child(3) svg,
.module-card:nth-child(6) svg {
  color: var(--cyan);
}

.module-card h3,
.product-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.wound-section {
  background:
    linear-gradient(180deg, rgba(248, 248, 246, 0), var(--surface) 24%, var(--surface) 76%, rgba(248, 248, 246, 0)),
    var(--surface);
}

.wound-grid,
.brand-story__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.wound-media,
.brand-story__media,
.brand-hero__visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.wound-media img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.wound-media--sphere {
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.wound-media--sphere img {
  width: min(100%, 390px);
  aspect-ratio: 1;
  object-fit: contain;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
}

.feature-list div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(20, 18, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.feature-list strong {
  display: block;
  color: var(--coral);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
}

.feature-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reservation {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 10, 13, 0.96), rgba(25, 18, 23, 0.96)),
    #090b0f;
  overflow: hidden;
}

.reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.24;
}

.reservation__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(330px, 0.7fr) minmax(330px, 0.78fr);
  align-items: start;
  gap: 22px;
}

.reservation h2,
.reservation .section-mark,
.contact h2 {
  color: #fff;
}

.reservation__lead h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 36px;
  line-height: 1.12;
}

.course-selector {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.course-tile {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  text-align: left;
  color: #fff;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.course-tile.is-selected {
  border-color: rgba(243, 106, 93, 0.72);
  box-shadow: 0 16px 40px rgba(243, 106, 93, 0.18);
}

.course-tile img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.course-tile span,
.course-tile strong,
.course-tile small {
  margin-inline: 18px;
}

.course-tile span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.course-tile strong {
  font-size: 17px;
}

.course-tile small {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.booking-panel,
.login-panel {
  padding: 22px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.booking-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.booking-panel__top strong {
  color: #fff;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar span,
.calendar button {
  min-width: 0;
  height: 38px;
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.calendar span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.calendar button {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.calendar button:not(:disabled):hover,
.calendar button.is-selected {
  border-color: var(--coral);
  background: var(--coral);
}

.calendar button:disabled {
  opacity: 0.36;
}

.selected-slot {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.selected-slot span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.selected-slot small {
  color: rgba(255, 255, 255, 0.6);
}

.booking-panel .button {
  width: 100%;
  margin-top: 18px;
}

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: -22px -22px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.login-tabs button {
  min-height: 52px;
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.login-tabs button.is-active {
  color: var(--coral);
  box-shadow: inset 0 -2px 0 var(--coral);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  outline: 0;
}

.auth-form input:focus {
  border-color: rgba(66, 216, 232, 0.72);
  box-shadow: 0 0 0 3px rgba(66, 216, 232, 0.14);
}

.auth-form .button {
  width: 100%;
}

.confirmation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(56, 217, 176, 0.44);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(56, 217, 176, 0.13);
  opacity: 0.76;
}

.confirmation.is-active {
  opacity: 1;
  box-shadow: 0 18px 44px rgba(56, 217, 176, 0.16);
}

.confirmation svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 2px solid var(--green);
  border-radius: 50%;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation strong,
.confirmation span {
  display: block;
}

.confirmation span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  position: relative;
  min-height: 388px;
  padding: 12px 12px 18px;
  border: 1px solid rgba(20, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 106, 93, 0.34);
}

.product-card > button {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(20, 18, 18, 0.12);
  border-radius: 50%;
  color: rgba(17, 19, 21, 0.68);
  background: rgba(255, 255, 255, 0.78);
}

.product-card > button.is-active {
  color: var(--coral);
  border-color: rgba(243, 106, 93, 0.34);
  background: rgba(243, 106, 93, 0.12);
}

.product-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-soft);
}

.product-card h3 {
  margin: 16px 4px 4px;
}

.product-card span {
  display: block;
  margin: 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-card strong {
  display: block;
  margin: 14px 4px 0;
  color: var(--text-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.brand-page .ambient {
  background:
    linear-gradient(115deg, #100c0d 0%, #17151a 42%, #161012 66%, #090b0d 100%),
    #090b0d;
}

.brand-hero {
  min-height: 92svh;
  padding: 150px 0 88px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 12, 13, 0.97), rgba(23, 21, 26, 0.96) 44%, rgba(22, 16, 18, 0.96) 70%, rgba(9, 11, 13, 0.98)),
    #090b0d;
}

.brand-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 60px;
}

.brand-hero__visual {
  position: relative;
}

.brand-hero__visual img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.brand-story__media img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

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

.brand-benefits span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(20, 18, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-dark);
  font-weight: 800;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filters button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(17, 19, 21, 0.16);
  border-radius: var(--radius);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.catalog-filters button.is-active {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
}

.product-card.is-hidden {
  display: none;
}

.contact {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  color: #fff;
  background: var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: 58px;
}

.contact__lead img {
  width: 62px;
  margin-bottom: 24px;
}

.contact__lead p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border: 1px solid rgba(243, 106, 93, 0.42);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.contact-panel div {
  min-height: 148px;
  padding: 26px;
  border-right: 1px solid rgba(243, 106, 93, 0.28);
  border-bottom: 1px solid rgba(243, 106, 93, 0.28);
}

.contact-panel div:nth-child(2n) {
  border-right: 0;
}

.contact-panel div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.contact-panel strong,
.contact-panel a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  background: #090b0f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, 0.45fr));
  gap: 52px;
  padding: 58px 0 44px;
}

.footer-brand-block p {
  max-width: 410px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.footer__inner h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.footer__inner a:not(.footer-brand) {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.video-dialog {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: #0b0d12;
  box-shadow: var(--shadow);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.video-dialog__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
}

.video-dialog__frame {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
}

.video-dialog__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.video-dialog__frame div {
  position: relative;
  z-index: 1;
  padding: 34px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.video-dialog__frame strong,
.video-dialog__frame span {
  display: block;
}

.video-dialog__frame strong {
  max-width: 580px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1.12;
}

.video-dialog__frame span {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 42px, 0) scale(0.985);
  transition:
    opacity 680ms ease,
    filter 680ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal.is-scroll-past {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, -42px, 0) scale(0.985);
}

/* palette refresh based on the medicaVITA brand board */
.ambient {
  background:
    radial-gradient(circle at 14% 48%, rgba(212, 76, 175, 0.3), transparent 22vw),
    radial-gradient(circle at 33% 45%, rgba(227, 155, 50, 0.34), transparent 20vw),
    radial-gradient(circle at 72% 26%, rgba(21, 156, 200, 0.18), transparent 16vw),
    linear-gradient(115deg, #d7d6d3 0%, #e2e0dc 48%, #d1d0cc 100%);
}

.ambient__mesh {
  opacity: 0.62;
  filter: blur(38px);
}

.ambient__mesh--coral {
  background: linear-gradient(90deg, rgba(212, 76, 175, 0.48), rgba(227, 155, 50, 0.42), rgba(191, 91, 75, 0.3));
}

.ambient__mesh--cyan {
  background: linear-gradient(90deg, transparent, rgba(21, 156, 200, 0.34), rgba(76, 69, 199, 0.22));
}

.ambient__line {
  background: linear-gradient(90deg, transparent, rgba(191, 91, 75, 0.5), rgba(227, 155, 50, 0.34), transparent);
  opacity: 0.28;
}

.site-header {
  color: var(--text-dark);
  background: rgba(231, 229, 225, 0.84);
  border-bottom: 1px solid rgba(191, 91, 75, 0.22);
  box-shadow: 0 18px 50px rgba(112, 75, 67, 0.08);
}

.site-header.is-scrolled {
  background: rgba(238, 236, 232, 0.94);
  box-shadow: 0 18px 48px rgba(117, 76, 66, 0.14);
}

.site-header {
  overflow: visible;
}

.site-header .brand {
  isolation: isolate;
  overflow: visible;
}

.site-header .brand img,
.site-header .brand span {
  position: relative;
  z-index: 2;
}

.brand span,
.footer-brand span {
  color: var(--coral);
}

.site-nav {
  color: rgba(77, 55, 51, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--coral);
}

.site-nav a::after {
  background: linear-gradient(90deg, var(--coral), var(--magenta), var(--amber));
}

.header-cta {
  color: var(--coral);
  border-color: rgba(191, 91, 75, 0.34);
  background: rgba(255, 250, 245, 0.36);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(191, 91, 75, 0.62);
  box-shadow: 0 12px 28px rgba(191, 91, 75, 0.14);
}

.header-cta {
  color: #fffaf5;
  border-color: rgba(255, 250, 245, 0.34);
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 52%, var(--magenta) 100%);
  box-shadow: 0 14px 34px rgba(191, 91, 75, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(255, 250, 245, 0.72);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(191, 91, 75, 0.3);
}

.nav-toggle {
  color: var(--coral);
  border-color: rgba(191, 91, 75, 0.26);
  background: rgba(255, 250, 245, 0.42);
}

.hero,
.brand-hero {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 58%, rgba(212, 76, 175, 0.32), transparent 20vw),
    radial-gradient(circle at 34% 54%, rgba(227, 155, 50, 0.34), transparent 17vw),
    radial-gradient(circle at 80% 28%, rgba(21, 156, 200, 0.2), transparent 16vw),
    linear-gradient(115deg, #d6d5d2 0%, #e5e3df 48%, #d2d1cd 100%);
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(191, 91, 75, 0.55), rgba(227, 155, 50, 0.36), transparent);
}

.hero h1,
.brand-hero h1,
.hero h1::first-line {
  color: var(--coral);
}

.section-top h2,
.wound-copy h2,
.contact__lead h2,
.brand-story h2,
.brand-catalog h2,
.reservation__lead h2 {
  color: var(--coral);
}

.hero__mark,
.section-mark {
  color: var(--coral);
}

.hero__copy > p:not(.hero__mark),
.brand-hero__copy > p:not(.hero__mark),
.hero__proof li,
.video-card__controls,
.floating-window span {
  color: var(--muted-light);
}

.hero__stage::before {
  border-color: rgba(191, 91, 75, 0.25);
  background-image:
    linear-gradient(rgba(191, 91, 75, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 91, 75, 0.11) 1px, transparent 1px);
}

.button--primary {
  color: #fffaf5;
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 54%, var(--magenta) 100%);
  box-shadow: 0 18px 44px rgba(191, 91, 75, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 54px rgba(191, 91, 75, 0.3);
}

.button--liquid {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.button--liquid::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(-45deg, var(--magenta) 0%, var(--cyan) 100%);
  z-index: -2;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 180ms ease;
}

.button--liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(-45deg, var(--magenta) 0%, var(--cyan) 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
  opacity: 0.72;
  z-index: -3;
  pointer-events: none;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.button--liquid:hover::before,
.button--liquid:focus-visible::before {
  transform: rotate(-180deg);
}

.button--liquid:hover::after,
.button--liquid:focus-visible::after {
  filter: blur(30px);
  opacity: 0.88;
}

.button--liquid:active::before {
  transform: rotate(-180deg) scale(0.7);
}

.button--ghost,
.button--outline {
  color: var(--coral);
  border-color: rgba(191, 91, 75, 0.32);
  background: rgba(255, 250, 245, 0.42);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--outline:hover,
.button--outline:focus-visible {
  border-color: rgba(191, 91, 75, 0.58);
  background: rgba(255, 250, 245, 0.68);
}

.video-card {
  border-color: rgba(191, 91, 75, 0.24);
  background: var(--surface-soft);
}

.video-card::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(77, 55, 51, 0.62)),
    linear-gradient(90deg, rgba(238, 236, 232, 0.32), transparent 38%);
}

.video-card__play {
  background: radial-gradient(circle at 64% 36%, var(--cyan), var(--violet) 48%, var(--magenta) 72%, var(--amber));
  box-shadow: 0 22px 54px rgba(212, 76, 175, 0.28);
}

.video-card__bar {
  background: rgba(255, 250, 245, 0.48);
}

.video-card__bar span {
  background: linear-gradient(90deg, var(--magenta), var(--amber), var(--cyan));
}

.floating-window {
  color: var(--text-dark);
  border-color: rgba(191, 91, 75, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.78), rgba(226, 224, 220, 0.52)),
    rgba(238, 236, 232, 0.74);
  box-shadow: 0 22px 54px rgba(117, 76, 66, 0.16);
}

.floating-window__icon {
  background: radial-gradient(circle at 62% 36%, rgba(21, 156, 200, 0.28), rgba(212, 76, 175, 0.18) 58%, rgba(227, 155, 50, 0.18));
}

.module-card,
.product-card,
.feature-list div,
.brand-benefits span,
.catalog-filters button {
  border-color: rgba(191, 91, 75, 0.16);
  background: rgba(255, 250, 245, 0.52);
}

.module-card:hover,
.product-card:hover,
.catalog-filters button.is-active {
  border-color: rgba(191, 91, 75, 0.36);
}

.wound-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(212, 76, 175, 0.16), transparent 22vw),
    radial-gradient(circle at 82% 74%, rgba(227, 155, 50, 0.18), transparent 24vw),
    linear-gradient(180deg, rgba(217, 216, 213, 0), var(--surface) 24%, var(--surface) 76%, rgba(217, 216, 213, 0));
}

.wound-media,
.brand-story__media,
.brand-hero__visual {
  box-shadow: 0 24px 70px rgba(117, 76, 66, 0.18);
}

.reservation {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 16% 24%, rgba(212, 76, 175, 0.28), transparent 20vw),
    radial-gradient(circle at 52% 20%, rgba(227, 155, 50, 0.22), transparent 18vw),
    radial-gradient(circle at 84% 58%, rgba(21, 156, 200, 0.17), transparent 20vw),
    linear-gradient(115deg, #d4d3cf 0%, #e4e2df 52%, #d2d0cc 100%);
}

.reservation::before {
  background:
    linear-gradient(rgba(191, 91, 75, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 91, 75, 0.09) 1px, transparent 1px);
  opacity: 0.4;
}

.reservation h2,
.reservation .section-mark,
.contact h2 {
  color: var(--coral);
}

.course-tile {
  color: var(--text-dark);
  border-color: rgba(191, 91, 75, 0.18);
  background: rgba(255, 250, 245, 0.5);
}

.course-tile.is-selected {
  border-color: rgba(191, 91, 75, 0.56);
  box-shadow: 0 16px 40px rgba(191, 91, 75, 0.16);
}

.course-tile small,
.booking-panel__top,
.calendar span,
.selected-slot span,
.selected-slot small,
.login-tabs button,
.auth-form label,
.confirmation span {
  color: var(--muted);
}

.booking-panel,
.login-panel,
.selected-slot {
  border-color: rgba(191, 91, 75, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.72), rgba(226, 224, 220, 0.5)),
    rgba(238, 236, 232, 0.72);
  box-shadow: 0 24px 60px rgba(117, 76, 66, 0.14);
}

.booking-panel__top strong,
.calendar button,
.auth-form input,
.confirmation,
.confirmation strong {
  color: var(--text-dark);
}

.calendar button,
.auth-form input {
  border-color: rgba(191, 91, 75, 0.2);
  background: rgba(255, 250, 245, 0.58);
}

.calendar button:not(:disabled):hover,
.calendar button.is-selected {
  border-color: var(--coral);
  color: #fffaf5;
  background: var(--coral);
}

.login-tabs {
  border-bottom-color: rgba(191, 91, 75, 0.18);
}

.login-tabs button {
  background: rgba(255, 250, 245, 0.3);
}

.login-tabs button.is-active {
  color: var(--coral);
}

.auth-form input:focus {
  border-color: rgba(21, 156, 200, 0.62);
  box-shadow: 0 0 0 3px rgba(21, 156, 200, 0.14);
}

.login-panel {
  border: 2px solid transparent;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.78), rgba(226, 224, 220, 0.56)) padding-box,
    linear-gradient(145deg, transparent 28%, var(--coral), var(--amber), var(--magenta), var(--cyan)) border-box;
  background-size:
    100% 100%,
    220% 100%;
  background-position:
    0 0,
    0% 50%;
  box-shadow:
    0 24px 60px rgba(117, 76, 66, 0.16),
    0 16px 48px rgba(191, 91, 75, 0.13);
  animation: loginFrameGradient 5s ease infinite;
}

.login-panel button:active {
  scale: 0.96;
}

.confirmation {
  border-color: rgba(98, 184, 140, 0.42);
  background: rgba(98, 184, 140, 0.15);
}

.brand-page .ambient {
  background:
    radial-gradient(circle at 18% 42%, rgba(212, 76, 175, 0.3), transparent 22vw),
    radial-gradient(circle at 46% 40%, rgba(227, 155, 50, 0.28), transparent 19vw),
    radial-gradient(circle at 78% 28%, rgba(21, 156, 200, 0.18), transparent 18vw),
    linear-gradient(115deg, #d7d6d3 0%, #e4e2df 52%, #d1d0cc 100%);
}

.contact {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 18% 30%, rgba(212, 76, 175, 0.22), transparent 20vw),
    radial-gradient(circle at 76% 58%, rgba(227, 155, 50, 0.2), transparent 24vw),
    var(--surface-soft);
}

.contact__lead p,
.contact-panel strong,
.contact-panel a,
.footer-brand-block p,
.footer__inner a:not(.footer-brand),
.footer-bottom {
  color: var(--muted);
}

.contact-panel {
  border-color: rgba(191, 91, 75, 0.28);
  background: rgba(255, 250, 245, 0.38);
}

.contact-panel div,
.contact-panel div:nth-child(2n),
.contact-panel div:nth-last-child(-n + 2) {
  border-color: rgba(191, 91, 75, 0.2);
}

.site-footer {
  color: var(--muted);
  background: #d0cfca;
  border-top: 1px solid rgba(191, 91, 75, 0.18);
}

.footer__inner h3 {
  color: var(--coral);
}

.footer-bottom {
  border-top-color: rgba(191, 91, 75, 0.16);
}

:focus-visible {
  outline: 3px solid rgba(21, 156, 200, 0.44);
  outline-offset: 3px;
}

@keyframes signalLine {
  0% {
    opacity: 0.22;
    translate: -4vw 0;
  }
  100% {
    opacity: 0.5;
    translate: 4vw 0;
  }
}

@keyframes floatPanel {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes heroWindowFloat {
  0% {
    transform: translate3d(var(--hero-window-x), calc(var(--hero-window-y) - 5px), 0);
  }

  100% {
    transform: translate3d(var(--hero-window-x), calc(var(--hero-window-y) + 8px), 0);
  }
}

@keyframes videoProgress {
  0% {
    width: 24%;
  }
  100% {
    width: 72%;
  }
}

@keyframes fillProgress {
  0% {
    width: 4px;
  }

  25% {
    width: 25%;
  }

  50% {
    width: 50%;
  }

  75% {
    width: 75%;
  }

  100% {
    width: calc(100% - 4px);
  }
}

@keyframes colorShift {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }

  33% {
    filter: hue-rotate(120deg) brightness(1.1);
  }

  66% {
    filter: hue-rotate(240deg) brightness(0.9);
  }

  100% {
    filter: hue-rotate(360deg) brightness(1);
  }
}

@keyframes textGlow {
  0%,
  100% {
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@keyframes liquidCardFloatOne {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(40px, 30px);
  }
}

@keyframes liquidCardFloatTwo {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-30px, 40px);
  }
}

@keyframes liquidCardFloatThree {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(50px, -30px);
  }
}

@keyframes liquidCardFloatFour {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-40px, -40px);
  }
}

@keyframes loginFrameGradient {
  0% {
    background-position:
      0 0,
      0% 50%;
  }

  50% {
    background-position:
      0 0,
      100% 50%;
  }

  100% {
    background-position:
      0 0,
      0% 50%;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 24px;
  }

  .hero__grid,
  .brand-hero__grid,
  .reservation__grid {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    min-height: 590px;
  }

  .module-grid,
  .product-grid,
  .product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reservation__lead {
    max-width: 760px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    background: rgba(238, 236, 232, 0.98);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 220ms ease,
      visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 22px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .brand-hero {
    padding-top: 124px;
  }

  .hero h1,
  .brand-hero h1 {
    font-size: 52px;
  }

  .wound-grid,
  .brand-story__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel div,
  .contact-panel div:nth-child(2n),
  .contact-panel div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 106, 93, 0.28);
  }

  .contact-panel div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .footer-bottom {
    width: min(100% - 32px, var(--container));
  }

  .hero,
  .brand-hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .section,
  .contact {
    padding: 72px 0;
  }

  .hero h1,
  .brand-hero h1 {
    font-size: 42px;
  }

  .section-top h2,
  .wound-copy h2,
  .contact__lead h2,
  .brand-story h2,
  .brand-catalog h2 {
    font-size: 34px;
  }

  .feature-list,
  .brand-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .hero__proof {
    display: none;
  }

  .hero__stage {
    min-height: 520px;
  }

  .video-card {
    left: 0;
    right: 0;
    top: 96px;
    height: 320px;
  }

  .liquid-info-card {
    display: none;
  }

  .floating-window {
    width: 245px;
    min-height: 88px;
    padding: 14px;
  }

  .floating-window--top {
    right: 0;
    top: 24px;
  }

  .floating-window--left {
    left: 0;
    bottom: 20px;
  }

  .floating-window--right {
    right: 0;
    bottom: 118px;
  }

  .hero__cell {
    width: 180px;
    height: 130px;
  }

  .video-card__cell-cluster {
    left: 12px;
    bottom: 58px;
    width: min(42%, 170px);
  }

  .hero__cell-cluster {
    width: min(100%, 340px);
    margin-top: 26px;
  }

  .module-grid,
  .product-grid,
  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card {
    min-height: 220px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

  .hero__actions,
  .brand-benefits,
  .hero__proof,
  .feature-list,
  .module-grid,
  .product-grid,
  .product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero h1,
  .brand-hero h1 {
    font-size: 36px;
  }

  .hero__stage {
    min-height: 600px;
  }

  .video-card {
    height: 300px;
  }

  .floating-window {
    width: min(100%, 280px);
  }

  .floating-window--right {
    bottom: 8px;
  }

  .floating-window--left {
    bottom: 116px;
  }

  .login-tabs button {
    font-size: 13px;
  }

  .video-dialog__frame {
    min-height: 420px;
  }

  .video-dialog__frame strong {
    font-size: 28px;
  }
}

.hero::before,
.brand-hero::before,
.course-path::before,
.wound-section::before,
.reservation::after,
.brand-teaser::before,
.brand-story::before,
.brand-catalog::before,
.contact::before {
  content: "";
  position: absolute;
  inset: -8% -18vw;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("public/assets/brand-blob-cutout.png"),
    url("public/assets/brand-blob-cutout.png");
  background-repeat: no-repeat;
  background-size:
    min(58vw, 820px) auto,
    min(52vw, 720px) auto;
  background-position:
    left -13vw top 8%,
    right -12vw bottom 10%;
  opacity: 0.58;
  mix-blend-mode: normal;
  filter: saturate(1.12);
}

.brand-hero::before,
.reservation::after,
.contact::before {
  opacity: 0.52;
}

.brand-hero,
.course-path,
.wound-section,
.brand-teaser,
.brand-story,
.brand-catalog,
.contact {
  position: relative;
  overflow: hidden;
}

.wound-section::before,
.brand-story::before {
  background-position:
    left -15vw center,
    right -14vw center;
}

.course-path > .container,
.wound-section > .container,
.reservation__grid,
.brand-teaser > .container,
.brand-story > .container,
.brand-catalog > .container,
.contact > .container,
.brand-hero__grid {
  position: relative;
  z-index: 1;
}

.reservation::before {
  z-index: 0;
}

@media (max-width: 760px) {
  .hero::before,
  .brand-hero::before,
  .course-path::before,
  .wound-section::before,
  .reservation::after,
  .brand-teaser::before,
  .brand-story::before,
  .brand-catalog::before,
  .contact::before {
    inset: -4% -40vw;
    background-size:
      520px auto,
      460px auto;
    background-position:
      left -270px top 90px,
      right -250px bottom 40px;
    opacity: 0.38;
  }

  body::before,
  body::after {
    width: 520px;
    opacity: 0.34;
  }

  body::before {
    left: -340px;
    top: 96px;
  }

  body::after {
    right: -340px;
    top: 56vh;
  }
}

.ambient,
body::before,
body::after,
.hero::before,
.hero::after,
.brand-hero::before,
.course-path::before,
.wound-section::before,
.reservation::before,
.reservation::after,
.brand-teaser::before,
.brand-story::before,
.brand-catalog::before,
.contact::before {
  display: none;
}

body {
  background: var(--bg);
}

.hero,
.brand-hero,
.course-path,
.wound-section,
.reservation,
.brand-teaser,
.brand-story,
.brand-catalog,
.contact {
  background: transparent;
}

.site-footer {
  background: rgba(238, 236, 232, 0.94);
  border-top: 1px solid rgba(191, 91, 75, 0.22);
  box-shadow: 0 -18px 48px rgba(117, 76, 66, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
}

main > section,
.site-footer {
  scroll-margin-block: calc(var(--header-h) + 18px) 12vh;
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  main > section {
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

.wound-media.wound-media--sphere {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.wound-media.wound-media--sphere img {
  --orange-object-x: 0px;
  --orange-object-y: 0px;
  display: block;
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: translate(var(--orange-object-x), var(--orange-object-y));
  pointer-events: none;
  will-change: transform;
}

@media (min-width: 761px) {
  .hero__copy h1 {
    transform: translate(
        max(var(--hero-title-x), calc(24px - max(24px, calc((100vw - var(--container)) / 2)))),
        var(--hero-title-y)
      )
      scale(var(--hero-title-scale));
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .hero__copy h1 {
    max-width: 520px;
    transform: translate(
        max(var(--hero-title-x), calc(24px - max(24px, calc((100vw - var(--container)) / 2)))),
        var(--hero-title-y)
      )
      scale(1);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero__copy {
    display: grid;
    justify-items: start;
  }

  .hero__copy h1,
  .hero__cell-cluster,
  .hero__actions--training {
    transform: none !important;
  }

  .hero__copy h1 {
    max-width: 620px;
  }

  .hero__cell-cluster {
    width: min(70vw, 360px);
    margin: 28px auto 0;
    justify-self: center;
  }

  .hero__actions--training {
    width: max-content;
    margin: 28px 0 0;
  }

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

@media (max-width: 760px) {
  main > section,
  .site-footer {
    scroll-margin-block: calc(var(--header-h) + 12px) 0;
  }

  .hero,
  .brand-hero {
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 56px;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .hero__copy {
    display: grid;
    justify-items: start;
    overflow: visible;
  }

  .hero__copy h1 {
    max-width: min(100%, 360px);
    transform: none !important;
    transform-origin: left top;
  }

  .hero__cell-cluster {
    width: min(86vw, 300px);
    margin: 22px auto 0 calc((100vw - 100%) / -2);
    justify-self: start;
    transform: none !important;
  }

  .hero__actions--training {
    display: flex;
    width: min(100%, 300px);
    margin: 24px auto 0;
    justify-self: center;
    transform: none !important;
  }

  .hero__actions--training .button {
    width: 100%;
    min-height: 56px;
    justify-content: center;
  }

  .hero__stage {
    display: grid;
    gap: 12px;
    min-height: auto !important;
    margin-top: 4px;
  }

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

  .hero__stage::before,
  .video-card,
  .hero__cell,
  .video-card__cell-cluster {
    display: none;
  }

  .floating-window {
    position: relative !important;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 14px;
    color: var(--text-dark);
    border-color: rgba(191, 91, 75, 0.2);
    background:
      linear-gradient(135deg, rgba(255, 250, 245, 0.68), rgba(238, 236, 232, 0.48)),
      rgba(238, 236, 232, 0.5);
    box-shadow: 0 16px 38px rgba(117, 76, 66, 0.12);
    transform: none !important;
    animation: none !important;
  }

  .floating-window span {
    color: var(--muted-light);
  }

  .module-card {
    min-height: auto;
    padding: 20px;
  }

  .section-top h2,
  .wound-copy h2,
  .contact__lead h2,
  .brand-story h2,
  .brand-catalog h2,
  .reservation__lead h2 {
    max-width: 520px;
    line-height: 1.15;
  }

  .wound-media.wound-media--sphere {
    display: grid;
    min-height: 300px;
    place-items: center;
  }

  .wound-media.wound-media--sphere img {
    width: min(78vw, 320px);
    margin-inline: auto;
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .container,
  .footer-bottom {
    width: min(100% - 28px, var(--container));
  }

  .hero,
  .brand-hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 48px;
  }

  .hero h1,
  .brand-hero h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero__copy h1 {
    max-width: 318px;
  }

  .hero__cell-cluster {
    width: min(88vw, 280px);
    margin-top: 18px;
    margin-left: calc((100vw - 100%) / -2);
  }

  .hero__actions--training {
    width: min(100%, 290px);
    margin-top: 20px;
  }

  .hero__stage {
    gap: 10px;
    margin-top: 20px;
  }

  .floating-window {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 13px;
  }

  .floating-window__icon {
    width: 38px;
    height: 38px;
  }

  .floating-window strong {
    font-size: 13px;
  }

  .floating-window span {
    font-size: 11px;
  }

  .floating-window b {
    font-size: 18px;
  }

  .section-top h2,
  .wound-copy h2,
  .contact__lead h2,
  .brand-story h2,
  .brand-catalog h2,
  .reservation__lead h2 {
    font-size: 30px;
  }

  .wound-media.wound-media--sphere {
    min-height: 260px;
  }

  .wound-media.wound-media--sphere img {
    width: min(78vw, 280px);
  }
}

@media (max-width: 430px) {
  .booking-panel,
  .login-panel {
    padding: 16px;
  }

  .booking-panel__top {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
  }

  .calendar {
    gap: 5px;
  }

  .calendar span,
  .calendar button {
    height: 36px;
    border-radius: 5px;
    font-size: 11px;
  }

  .selected-slot {
    margin-top: 16px;
    padding: 14px;
  }

  .login-tabs {
    margin: -16px -16px 16px;
  }
}

body.mobile-edit-mode {
  user-select: none;
}

body.mobile-edit-mode [data-mobile-edit-item] {
  cursor: grab;
  outline: 2px dashed rgba(191, 91, 75, 0.68);
  outline-offset: 5px;
  touch-action: none;
}

body.mobile-edit-mode [data-mobile-edit-item].is-mobile-editing {
  cursor: grabbing;
  outline-color: rgba(212, 76, 175, 0.95);
}

body.mobile-edit-mode .hero__copy h1[data-mobile-edit-item],
body.mobile-edit-mode .hero__cell-cluster[data-mobile-edit-item],
body.mobile-edit-mode .hero__actions--training[data-mobile-edit-item],
body.mobile-edit-mode .floating-window[data-mobile-edit-item] {
  transform: translate3d(var(--mobile-edit-x, 0px), var(--mobile-edit-y, 0px), 0) scale(var(--mobile-edit-scale, 1)) !important;
  transform-origin: center center;
  pointer-events: auto;
  will-change: transform;
}

body.mobile-edit-mode .hero__actions--training[data-mobile-edit-item] .button {
  pointer-events: none;
}

body.mobile-edit-mode .floating-window[data-mobile-edit-item] {
  z-index: 22;
}

.mobile-edit-toolbar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #fffaf5;
  border: 1px solid rgba(255, 250, 245, 0.28);
  border-radius: 8px;
  background: rgba(77, 55, 51, 0.9);
  box-shadow: 0 18px 48px rgba(77, 55, 51, 0.28);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.mobile-edit-toolbar strong {
  color: #ffd8ce;
  font-size: 12px;
}

.mobile-edit-toolbar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-edit-toolbar button {
  min-height: 30px;
  padding: 0 10px;
  color: #fffaf5;
  border: 1px solid rgba(255, 250, 245, 0.32);
  border-radius: 6px;
  background: rgba(191, 91, 75, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 430px) {
  .mobile-edit-toolbar {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-edit-toolbar strong {
    display: none;
  }
}

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

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

  .reveal.is-scroll-past {
    opacity: 1;
    filter: none;
    transform: none;
  }

  html {
    scroll-snap-type: none !important;
  }

  .liquid-fill {
    width: calc(100% - 4px);
  }
}
