:root {
  --bg: #f2eded;
  --bg-soft: #fffafa;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-soft: rgba(255, 255, 255, 0.74);
  --glass-stroke: rgba(30, 18, 22, 0.12);
  --glass-stroke-strong: rgba(30, 18, 22, 0.2);
  --liquid-glass-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.32);
  --liquid-glass-surface:
    radial-gradient(72% 130% at 96% 4%, rgba(58, 145, 255, 0.075), transparent 54%),
    radial-gradient(58% 140% at 42% 112%, rgba(255, 70, 166, 0.045), transparent 54%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 24% 76%, rgba(255, 255, 255, 0.24));
  --liquid-glass-highlight:
    linear-gradient(105deg, rgba(255, 255, 255, 0.76), transparent 22% 78%, rgba(255, 255, 255, 0.58)),
    radial-gradient(110% 80% at 18% 0%, rgba(255, 255, 255, 0.56), transparent 42%);
  --liquid-glass-border: rgba(255, 255, 255, 0.44);
  --liquid-glass-shadow:
    0 22px 58px rgba(35, 24, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  --liquid-glass-filter: blur(24px) saturate(175%) contrast(1.04) brightness(1.04);
  --text: #030303;
  --muted: rgba(3, 3, 3, 0.68);
  --shadow: 0 24px 70px rgba(35, 24, 29, 0.12);
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
}

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

button {
  font: inherit;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(20, 10, 14, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.34;
}

.glow--green {
  top: 8rem;
  left: -9rem;
  background: #22ff87;
  opacity: 0.08;
}

.glow--pink {
  right: 8vw;
  top: 7rem;
  background: #ff008a;
  opacity: 0.09;
}

.glow--blue {
  right: -10rem;
  top: 6rem;
  background: #0657ff;
  opacity: 0.08;
}

.site-header {
  position: sticky;
  top: clamp(10px, 1.2vw, 16px);
  z-index: 50;
  width: min(100% - 32px, 1320px);
  margin: clamp(10px, 1.2vw, 16px) auto 0;
}

.nav-shell {
  --nav-contrast-top: 100%;
  --nav-contrast-bottom: 0px;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 10px 14px 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition: border-color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.site-header.is-glass .nav-shell {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 46%, rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 38px rgba(35, 24, 29, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(13px) saturate(138%);
  -webkit-backdrop-filter: blur(13px) saturate(138%);
  overflow: hidden;
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(72% 130% at 96% 4%, rgba(58, 145, 255, 0.024), transparent 58%),
    radial-gradient(58% 140% at 42% 112%, rgba(255, 70, 166, 0.016), transparent 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065), transparent 24% 76%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 260ms var(--ease);
}

.site-header.is-glass .nav-shell::before {
  opacity: 0.3;
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.26), transparent 24% 82%, rgba(255, 255, 255, 0.17)),
    radial-gradient(110% 80% at 18% 0%, rgba(255, 255, 255, 0.18), transparent 44%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.19),
    inset 0 12px 20px rgba(255, 255, 255, 0.07);
  transition: opacity 260ms var(--ease);
}

.site-header.is-glass .nav-shell::after {
  opacity: 0.32;
}

.nav-shell > * {
  position: relative;
  z-index: 2;
}

.brand {
  width: clamp(112px, 10vw, 144px);
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  transition: filter 260ms var(--ease), opacity 260ms var(--ease);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.1vw, 44px);
}

.nav-links a,
.mobile-menu a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 220ms var(--ease), transform 180ms var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #050505;
  color: white;
  background:
    linear-gradient(180deg, #343434 0%, #050505 56%, #171717 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -14px 22px rgba(255, 255, 255, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: #000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -14px 22px rgba(255, 255, 255, 0.1),
    0 14px 26px rgba(0, 0, 0, 0.22);
}

.site-header.is-over-dark .mobile-menu a {
  color: rgba(255, 255, 255, 0.74);
}

.site-header.is-over-dark .mobile-menu a:hover {
  color: #fff;
}

.site-header.is-over-dark .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-over-dark .mobile-menu {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(28, 28, 30, 0.84), rgba(9, 9, 10, 0.72)),
    rgba(12, 12, 13, 0.82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header.is-over-dark .nav-cta {
  border-color: rgba(255, 255, 255, 0.84);
  color: #070707;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.78), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 230, 230, 0.94) 58%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -14px 22px rgba(210, 210, 210, 0.16),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

.site-header.is-over-dark .nav-cta:hover {
  border-color: #fff;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.9), transparent 52%),
    linear-gradient(180deg, #fff 0%, rgba(238, 238, 238, 0.96) 58%, #fff 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -14px 22px rgba(210, 210, 210, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.3);
}

.site-header.is-over-dark.is-glass .nav-shell {
  border-color: rgba(255, 255, 255, 0.14);
}

.site-header.is-over-dark.is-glass .nav-shell::before {
  opacity: 0.2;
}

.site-header.is-over-dark.is-glass .nav-shell::after {
  opacity: 0.2;
}

.nav-bg-contrast {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(32, 32, 34, 0.58), rgba(10, 10, 12, 0.3) 48%, rgba(28, 28, 30, 0.48)),
    rgba(8, 8, 9, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  clip-path: inset(var(--nav-contrast-top) 0 var(--nav-contrast-bottom) 0 round 999px);
  transition: clip-path 80ms linear, opacity 180ms var(--ease);
}

.site-header.is-glass .nav-bg-contrast {
  opacity: 1;
}

.nav-contrast {
  position: absolute;
  inset: 0;
  z-index: 4;
  min-height: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: inherit;
  pointer-events: none;
  clip-path: inset(var(--nav-contrast-top) 0 var(--nav-contrast-bottom) 0 round 999px);
  transition: clip-path 80ms linear;
}

.nav-contrast > * {
  position: relative;
  z-index: 1;
}

.nav-contrast .brand img {
  filter: invert(1) brightness(1.08);
}

.nav-contrast .nav-links a {
  color: #fff;
}

.nav-contrast .nav-links a:hover {
  color: #fff;
}

.nav-contrast .nav-cta {
  border-color: rgba(255, 255, 255, 0.88);
  color: #050505;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.72), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 232, 232, 0.96) 58%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -14px 22px rgba(210, 210, 210, 0.16),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

.nav-contrast .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(3, 3, 3, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -9px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.mobile-menu {
  display: none;
}

.hero {
  width: min(100% - 80px, 1160px);
  min-height: clamp(710px, 72vh, 820px);
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 48px) 0 clamp(30px, 3.8vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

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

.hero-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--text);
  font-size: 86px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-title span {
  display: inline;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  white-space: normal;
}

.hero-sub {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(3, 3, 3, 0.52);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero-sub strong {
  color: rgba(3, 3, 3, 0.78);
}

.hero-card {
  --card-lift: 0px;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  --wave-x: 0px;
  --wave-y: 0px;
  --wave-back-x: 0px;
  --wave-back-y: 0px;
  --wave-scroll: 0px;
  --ui-x: 0px;
  --ui-y: 0px;
  --chip-one-x: 0px;
  --chip-one-y: 0px;
  --chip-two-x: 0px;
  --chip-two-y: 0px;
  --pill-x: 0px;
  --pill-y: 0px;
  --ui-scale: 1;
  --chip-scale: 1;
  --pill-scale: 1;
  min-height: 552px;
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(22, 92, 255, 0.62);
  background:
    radial-gradient(108% 58% at -18% -8%, rgba(255, 238, 181, 0.95) 0 15%, rgba(180, 236, 246, 0.72) 31%, transparent 53%),
    radial-gradient(86% 48% at 91% 5%, rgba(178, 252, 255, 0.92) 0 23%, rgba(67, 188, 246, 0.42) 41%, transparent 62%),
    radial-gradient(116% 74% at 68% 104%, rgba(3, 34, 214, 0.98) 0 36%, transparent 70%),
    linear-gradient(152deg, #eafcff 0%, #71d8ff 28%, #0d7ff3 56%, #071feb 100%);
  box-shadow: 0 34px 88px rgba(25, 16, 20, 0.18);
  display: grid;
  grid-template-rows: 224px auto auto;
  align-content: space-between;
  gap: 18px;
  transform: perspective(1100px) translateY(var(--card-lift)) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x));
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  will-change: transform;
}

.hero-card:hover {
  --card-lift: -4px;
  --ui-scale: 1.025;
  --chip-scale: 1.035;
  --pill-scale: 1.03;
  box-shadow: 0 42px 96px rgba(25, 16, 20, 0.22);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -42% -54%;
  opacity: 0.9;
  pointer-events: none;
  background:
    radial-gradient(118% 28% at -2% 34%, transparent 0 42%, rgba(255, 255, 255, 0.84) 45%, rgba(176, 239, 255, 0.42) 53%, transparent 70%),
    radial-gradient(116% 30% at 74% 24%, transparent 0 43%, rgba(226, 255, 255, 0.62) 48%, rgba(21, 123, 230, 0.34) 58%, transparent 74%),
    radial-gradient(104% 38% at 16% 68%, transparent 0 40%, rgba(206, 251, 255, 0.48) 46%, rgba(10, 88, 231, 0.54) 60%, transparent 78%);
  filter: blur(12px);
  transform: translate3d(var(--wave-x), calc(var(--wave-y) + var(--wave-scroll)), 0) rotate(-13deg);
  mix-blend-mode: screen;
  will-change: transform;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -28%;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(134% 30% at -24% 24%, transparent 0 48%, rgba(255, 255, 255, 0.66) 50%, rgba(175, 240, 255, 0.22) 58%, transparent 72%),
    radial-gradient(108% 28% at 92% 8%, transparent 0 42%, rgba(255, 255, 255, 0.48) 46%, rgba(21, 130, 236, 0.2) 58%, transparent 72%),
    radial-gradient(92% 28% at 34% 88%, transparent 0 38%, rgba(0, 58, 210, 0.34) 52%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 42%);
  opacity: 0.84;
  transform: translate3d(var(--wave-back-x), calc(var(--wave-back-y) + var(--wave-scroll)), 0);
  will-change: transform;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.solar-showcase {
  min-height: 224px;
  margin-top: 0;
  position: relative;
}

.solar-ui-card {
  position: absolute;
  right: -30px;
  top: 22px;
  width: 326px;
  height: 196px;
  border-radius: 24px;
  overflow: hidden;
  color: #050505;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transform: translate3d(var(--ui-x), var(--ui-y), 0) rotate(7deg) scale(var(--ui-scale));
  transform-origin: 58% 54%;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  will-change: transform;
  z-index: 3;
}

.hero-card:hover .solar-ui-card {
  box-shadow:
    0 34px 58px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solar-ui-card__bar {
  height: 24px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(3, 3, 3, 0.56);
  background: rgba(246, 246, 246, 0.94);
  font-size: 10px;
  font-weight: 900;
}

.solar-ui-card__nav {
  height: 28px;
  margin: 7px 10px 0;
  display: grid;
  grid-template-columns: 1fr 32px 38px 48px;
  align-items: center;
  gap: 7px;
}

.solar-ui-card__nav strong {
  width: 62px;
  height: 11px;
  border-radius: 999px;
  background: rgba(5, 15, 38, 0.18);
}

.solar-ui-card__nav span {
  height: 8px;
  border-radius: 999px;
  background: rgba(5, 15, 38, 0.12);
}

.solar-ui-card__bar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.18);
}

.solar-ui-card__hero {
  height: 94px;
  margin: 3px 9px 0;
  padding: 12px;
  border-radius: 18px;
  background:
    radial-gradient(78% 92% at 96% 16%, rgba(145, 233, 255, 0.78), transparent 50%),
    linear-gradient(140deg, rgba(5, 19, 61, 0.94), rgba(20, 77, 235, 0.88)),
    linear-gradient(90deg, #071a52, #0d4efc);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.solar-ui-card__hero span,
.solar-ui-card__hero strong {
  display: block;
}

.solar-ui-card__hero span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.solar-ui-card__hero em {
  width: fit-content;
  display: block;
  margin-top: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #06133b;
  background: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.solar-ui-card__hero strong {
  max-width: 138px;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
}

.solar-ui-card__image {
  width: 96px;
  height: 66px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(circle at 76% 22%, rgba(255, 239, 128, 0.9) 0 9%, transparent 10%),
    linear-gradient(145deg, rgba(32, 220, 255, 0.96), rgba(7, 91, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 12px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  position: relative;
}

.solar-ui-card__image span {
  position: absolute;
  height: 22px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #116cff, #00c7ff);
  background-size: 13px 11px, 13px 11px, auto;
}

.solar-ui-card__image span:nth-child(1) {
  width: 58px;
  left: 10px;
  bottom: 9px;
  transform: rotate(-6deg);
  transition: transform 420ms var(--ease);
}

.solar-ui-card__image span:nth-child(2) {
  width: 46px;
  right: 9px;
  bottom: 17px;
  transform: rotate(5deg);
  transition: transform 420ms var(--ease);
}

.solar-ui-card__image span:nth-child(3) {
  width: 34px;
  right: 22px;
  top: 13px;
  opacity: 0.72;
  transform: rotate(-3deg);
  transition: transform 420ms var(--ease);
}

.hero-card:hover .solar-ui-card__image span:nth-child(1) {
  transform: translateY(-2px) rotate(-6deg);
}

.hero-card:hover .solar-ui-card__image span:nth-child(2) {
  transform: translateY(2px) rotate(5deg);
}

.hero-card:hover .solar-ui-card__image span:nth-child(3) {
  transform: translateY(-1px) rotate(-3deg);
}

.solar-ui-card__body {
  margin: 8px 10px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr;
  gap: 7px;
}

.solar-ui-card__body span {
  height: 28px;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.08);
  border: 1px solid rgba(3, 3, 3, 0.06);
}

.solar-ui-card__body span:first-child {
  background: rgba(255, 255, 255, 0.78);
}

.solar-ui-card__cta {
  width: fit-content;
  margin: 8px 10px 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 3, 3, 0.9);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.solar-pill {
  position: absolute;
  left: 20px;
  bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-size: 12px;
  font-weight: 900;
  transform: translate3d(var(--pill-x), var(--pill-y), 0) rotate(-2deg) scale(var(--pill-scale));
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
  will-change: transform;
  z-index: 4;
}

.solar-pill:hover {
  --pill-scale: 1.08;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lead-chip {
  position: absolute;
  min-width: 98px;
  padding: 9px 13px;
  border-radius: 18px;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
  will-change: transform;
  z-index: 4;
}

.lead-chip:hover {
  --chip-scale: 1.08;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  z-index: 6;
}

.lead-chip span,
.lead-chip strong {
  display: block;
}

.lead-chip span {
  color: rgba(3, 3, 3, 0.58);
  font-size: 10px;
  font-weight: 900;
}

.lead-chip strong {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

.lead-chip--one {
  right: 118px;
  top: 4px;
  transform: translate3d(var(--chip-one-x), var(--chip-one-y), 0) rotate(-7deg) scale(var(--chip-scale));
}

.lead-chip--two {
  right: 50px;
  bottom: 2px;
  transform: translate3d(var(--chip-two-x), var(--chip-two-y), 0) rotate(3deg) scale(var(--chip-scale));
}

.hero-card__content {
  margin-top: 2px;
}

.hero-card__content h2 {
  max-width: 322px;
  margin: 0;
  font-size: 37px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-card__content p {
  max-width: 310px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-card__button {
  min-height: 54px;
  margin-top: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.66);
  font-size: 18px;
  font-weight: 850;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.hero-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-card__call {
  margin-top: 2px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.hero-card__call:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
}

.hero-card__call strong,
.hero-card__call small {
  display: block;
}

.hero-card__call strong {
  font-size: 14px;
  line-height: 1.2;
}

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

.call-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  font-weight: 900;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.hero-card__call:hover .call-arrow {
  transform: translateX(3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.call-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 28px 0 120px;
  scroll-margin-top: 116px;
}

.workflow-heading {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.workflow-heading h2 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

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

.workflow-card {
  min-height: 440px;
  padding: 28px 28px 26px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(26, 18, 24, 0.14);
  transform: translateY(0);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 88px rgba(26, 18, 24, 0.2);
}

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

.workflow-card::before {
  inset: -26%;
  opacity: 0.82;
  filter: blur(12px);
  mix-blend-mode: screen;
}

.workflow-card::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 42%);
}

.workflow-card > * {
  position: relative;
  z-index: 1;
}

.workflow-card--trust {
  color: #030303;
  background:
    radial-gradient(78% 54% at 8% 7%, rgba(255, 246, 180, 0.96), transparent 56%),
    radial-gradient(84% 68% at 88% 4%, rgba(44, 238, 210, 0.72), transparent 52%),
    linear-gradient(150deg, #ffe500 0%, #ffbe00 44%, #ff6a3d 100%);
}

.workflow-card--trust::before {
  background:
    radial-gradient(86% 24% at 8% 44%, transparent 0 38%, rgba(255, 255, 255, 0.56) 42%, transparent 70%),
    radial-gradient(92% 26% at 86% 68%, transparent 0 42%, rgba(30, 255, 214, 0.5) 47%, transparent 74%);
}

.workflow-card--qualify {
  background:
    radial-gradient(74% 58% at 12% 12%, rgba(255, 230, 126, 0.88), transparent 48%),
    radial-gradient(92% 68% at 92% 12%, rgba(16, 246, 189, 0.7), transparent 50%),
    radial-gradient(92% 70% at 46% 86%, rgba(255, 0, 138, 0.72), transparent 58%),
    linear-gradient(150deg, #172cff 0%, #0618f1 60%, #051088 100%);
}

.workflow-card--qualify::before {
  background:
    radial-gradient(112% 28% at 12% 34%, transparent 0 42%, rgba(255, 255, 255, 0.52) 46%, transparent 70%),
    radial-gradient(94% 30% at 88% 68%, transparent 0 38%, rgba(255, 255, 255, 0.34) 45%, transparent 74%);
}

.workflow-card--handoff {
  background:
    radial-gradient(82% 58% at 4% 10%, rgba(255, 244, 145, 0.78), transparent 48%),
    radial-gradient(92% 76% at 90% 4%, rgba(0, 196, 255, 0.72), transparent 54%),
    radial-gradient(90% 70% at 38% 78%, rgba(255, 0, 112, 0.58), transparent 58%),
    linear-gradient(152deg, #ff5a00 0%, #fb2c00 46%, #066dff 100%);
}

.workflow-card--handoff::before {
  background:
    radial-gradient(94% 26% at 6% 42%, transparent 0 38%, rgba(255, 255, 255, 0.44) 45%, transparent 70%),
    radial-gradient(96% 28% at 88% 74%, transparent 0 42%, rgba(255, 255, 255, 0.3) 48%, transparent 76%);
}

.workflow-visual {
  height: 238px;
  position: relative;
}

.mini-page {
  position: absolute;
  left: 16px;
  top: 8px;
  width: 245px;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transform: rotate(-5deg);
  transition: transform 280ms var(--ease);
}

.workflow-card:hover .mini-page {
  transform: translateY(-6px) rotate(-4deg);
}

.mini-page__bar {
  height: 26px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-page__bar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.18);
}

.mini-page__hero {
  margin: 8px 11px;
  padding: 13px;
  height: 76px;
  border-radius: 16px;
  background: linear-gradient(135deg, #050505, #1736ff);
}

.mini-page__hero span,
.mini-page__hero strong,
.mini-page__hero i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.mini-page__hero span {
  width: 64px;
  height: 9px;
}

.mini-page__hero strong {
  width: 128px;
  height: 18px;
  margin-top: 10px;
}

.mini-page__hero i {
  width: 82px;
  height: 12px;
  margin-top: 9px;
  opacity: 0.58;
}

.mini-rating {
  width: fit-content;
  margin: 0 0 8px 13px;
  padding: 7px 10px;
  border-radius: 999px;
  display: flex;
  gap: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 22px rgba(11, 27, 71, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  transform: rotate(-2deg);
}

.mini-rating span {
  --star-y: 0px;
  --star-opacity: 0.94;
  width: 13px;
  height: 13px;
  display: block;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    linear-gradient(135deg, #ffe16b, #ffb000 54%, #ff8200);
  clip-path: polygon(50% 0, 62% 34%, 98% 34%, 69% 55%, 80% 91%, 50% 69%, 20% 91%, 31% 55%, 2% 34%, 38% 34%);
  filter: drop-shadow(0 2px 3px rgba(155, 95, 0, 0.22)) saturate(1.04);
  opacity: var(--star-opacity);
  transform: translateY(var(--star-y));
}

.mini-rating span:nth-child(even) {
  --star-y: 1px;
  --star-opacity: 0.86;
}

.mini-rating[data-animate="pending"] span {
  opacity: 0;
  transform: translate3d(-5px, 16px, 0) scale(0.54) rotate(-18deg);
  filter: blur(2px) saturate(1.1);
}

.mini-rating[data-animate="pending"].is-visible span {
  animation: star-waterfall 680ms var(--ease) forwards;
}

.mini-rating[data-animate="pending"].is-visible span:nth-child(1) {
  animation-delay: 80ms;
}

.mini-rating[data-animate="pending"].is-visible span:nth-child(2) {
  animation-delay: 170ms;
}

.mini-rating[data-animate="pending"].is-visible span:nth-child(3) {
  animation-delay: 260ms;
}

.mini-rating[data-animate="pending"].is-visible span:nth-child(4) {
  animation-delay: 350ms;
}

.mini-rating[data-animate="pending"].is-visible span:nth-child(5) {
  animation-delay: 440ms;
}

.mini-page__proof {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 2px 11px 0;
}

.mini-page__proof span {
  height: 34px;
  border-radius: 13px;
  background: rgba(3, 3, 3, 0.08);
}

.trust-orbit,
.filter-pill {
  position: absolute;
  border-radius: 999px;
  padding: 10px 15px;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  font-size: 12px;
  font-weight: 950;
}

.trust-orbit--one {
  right: 8px;
  top: 34px;
  transform: rotate(7deg);
}

.trust-orbit--two {
  left: 2px;
  bottom: 30px;
  transform: rotate(-5deg);
}

.filter-stack {
  position: absolute;
  inset: 8px 10px auto;
  height: 184px;
}

.filter-stack__panel {
  width: 208px;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  color: #030303;
  transition: transform 280ms var(--ease);
}

.filter-stack__panel:first-child {
  transform: rotate(-5deg);
}

.filter-stack__panel:nth-child(2) {
  margin: -8px 0 0 66px;
  transform: rotate(5deg);
}

.workflow-card:hover .filter-stack__panel:first-child {
  transform: translateY(-4px) rotate(-4deg);
}

.workflow-card:hover .filter-stack__panel:nth-child(2) {
  transform: translateY(4px) rotate(4deg);
}

.filter-stack__panel span,
.filter-stack__panel strong {
  display: block;
}

.filter-stack__panel span {
  color: rgba(3, 3, 3, 0.54);
  font-size: 11px;
  font-weight: 900;
}

.filter-stack__panel strong {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 950;
}

.filter-pill {
  left: 0;
  bottom: 28px;
}

.filter-pill--right {
  left: auto;
  right: 4px;
  top: 28px;
  bottom: auto;
}

.handoff-phone {
  position: absolute;
  left: 42px;
  top: 2px;
  width: 128px;
  height: 190px;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(8deg);
  transition: transform 280ms var(--ease);
}

.workflow-card:hover .handoff-phone {
  transform: translateY(-6px) rotate(6deg);
}

.handoff-phone span,
.handoff-phone div,
.handoff-phone i {
  display: block;
  border-radius: 999px;
}

.handoff-phone span {
  width: 44px;
  height: 8px;
  margin: 0 auto 16px;
  background: rgba(3, 3, 3, 0.18);
}

.handoff-phone div {
  height: 90px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 218, 0, 0.95) 0 8%, transparent 9%),
    linear-gradient(145deg, #0529ff, #18dfff);
}

.handoff-phone i {
  width: 70px;
  height: 12px;
  margin: 18px auto 0;
  background: rgba(3, 3, 3, 0.16);
}

.handoff-card {
  position: absolute;
  right: 6px;
  top: 82px;
  min-width: 150px;
  padding: 15px 16px;
  border-radius: 20px;
  color: #030303;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: rotate(-6deg);
}

.handoff-card span,
.handoff-card strong {
  display: block;
}

.handoff-card span {
  color: rgba(3, 3, 3, 0.54);
  font-size: 11px;
  font-weight: 900;
}

.handoff-card strong {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 950;
}

.handoff-arrow {
  position: absolute;
  right: 44px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #030303;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.handoff-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.workflow-copy {
  max-width: 285px;
}

.workflow-copy span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 950;
}

.workflow-copy h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: 0;
}

.workflow-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.28;
}

.workflow-card--trust .workflow-copy p {
  color: rgba(3, 3, 3, 0.58);
}

.reference-strip {
  width: min(100%, 850px);
  margin: 58px auto 0;
  padding: 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 24px 70px rgba(35, 24, 29, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.reference-strip span,
.reference-strip strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
}

.reference-strip span {
  padding: 0 14px;
  color: rgba(3, 3, 3, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.reference-strip strong {
  padding: 0 18px;
  color: rgba(3, 3, 3, 0.82);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  font-size: 14px;
  font-weight: 950;
}

.projects {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 90px 0 136px;
  scroll-margin-top: 0;
}

.projects-heading {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.projects-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.projects-heading h2 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.projects-heading p:last-child {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 19px;
  line-height: 1.35;
}

.case-grid {
  display: grid;
  gap: 32px;
}

.case-grid--solar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card {
  min-height: 650px;
  padding: 24px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 90px rgba(26, 18, 24, 0.14);
  transform: translateY(0);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 110px rgba(26, 18, 24, 0.2);
}

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

.case-card::before {
  inset: -22%;
  opacity: 0.9;
  filter: blur(14px);
  mix-blend-mode: screen;
}

.case-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.22), transparent 42%);
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card--solaris {
  background:
    radial-gradient(92% 72% at 6% 4%, rgba(255, 244, 140, 0.94), transparent 50%),
    radial-gradient(82% 64% at 88% 10%, rgba(0, 220, 255, 0.72), transparent 54%),
    radial-gradient(86% 70% at 30% 82%, rgba(255, 0, 126, 0.7), transparent 62%),
    linear-gradient(150deg, #ffb800 0%, #ff5a00 36%, #0827ff 100%);
}

.case-card--solaris::before {
  background:
    radial-gradient(96% 26% at 8% 44%, transparent 0 42%, rgba(255, 255, 255, 0.54) 47%, transparent 72%),
    radial-gradient(92% 24% at 88% 64%, transparent 0 42%, rgba(72, 255, 218, 0.46) 48%, transparent 74%);
}

.case-card--walkers {
  background:
    radial-gradient(86% 70% at 14% 8%, rgba(255, 239, 156, 0.86), transparent 46%),
    radial-gradient(76% 66% at 92% 6%, rgba(255, 0, 112, 0.72), transparent 55%),
    radial-gradient(92% 76% at 74% 80%, rgba(0, 226, 255, 0.56), transparent 58%),
    linear-gradient(150deg, #071fff 0%, #0614ca 56%, #03093e 100%);
}

.case-card--walkers::before {
  background:
    radial-gradient(112% 28% at 10% 34%, transparent 0 40%, rgba(255, 255, 255, 0.5) 46%, transparent 70%),
    radial-gradient(96% 28% at 90% 72%, transparent 0 42%, rgba(255, 255, 255, 0.32) 48%, transparent 76%);
}

.case-media {
  min-height: 382px;
  position: relative;
}

.case-result {
  position: absolute;
  left: 0;
  top: 4px;
  z-index: 4;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, #343434 0%, #050505 58%, #171717 100%);
  border: 1px solid #030303;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.case-browser {
  position: absolute;
  top: 72px;
  left: -26px;
  width: calc(100% + 86px);
  height: 260px;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: rotate(-4deg);
  transition: transform 280ms var(--ease);
}

.case-card:hover .case-browser {
  transform: translateY(-7px) rotate(-3deg);
}

.case-card--walkers .case-browser {
  left: auto;
  right: -38px;
  transform: rotate(4deg);
}

.case-card--walkers:hover .case-browser {
  transform: translateY(-7px) rotate(3deg);
}

.case-browser--wide {
  top: 68px;
}

.case-browser__bar {
  height: 35px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(3, 3, 3, 0.08);
}

.case-browser__bar span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.18);
}

.case-browser__bar strong {
  min-width: 0;
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.46);
  background: rgba(3, 3, 3, 0.06);
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-browser img {
  width: 100%;
  height: calc(100% - 35px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

.case-float {
  position: absolute;
  z-index: 5;
  min-width: 138px;
  padding: 13px 15px;
  border-radius: 18px;
  color: #030303;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.case-float span,
.case-float strong {
  display: block;
}

.case-float span {
  color: rgba(3, 3, 3, 0.54);
  font-size: 11px;
  font-weight: 900;
}

.case-float strong {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 950;
}

.case-float--one {
  right: 8px;
  top: 16px;
  transform: rotate(5deg);
}

.case-float--two {
  left: 24px;
  bottom: 8px;
  transform: rotate(-4deg);
}

.case-copy {
  max-width: 470px;
}

.case-copy > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.case-copy h3 {
  margin: 20px 0 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.case-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.35;
}

.case-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.other-work {
  margin-top: 64px;
}

.other-work__head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.other-work__head h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 550;
  letter-spacing: 0;
}

.other-work__head p:last-child {
  margin: 14px auto 0;
  max-width: 560px;
  color: rgba(3, 3, 3, 0.58);
  font-size: 17px;
  line-height: 1.35;
}

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

.other-card {
  min-height: 318px;
  padding: 12px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 22px 58px rgba(35, 24, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(35, 24, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.other-card img {
  width: 100%;
  height: 165px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 13px;
  border: 1px solid rgba(3, 3, 3, 0.08);
}

.other-card div {
  padding: 17px 6px 5px;
}

.other-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.58);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(3, 3, 3, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.other-card h4 {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0;
}

.other-card p {
  margin: 8px 0 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 750;
}

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

.reveal-item[data-reveal="pending"] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.reveal-item[data-reveal="pending"].is-visible {
  animation: project-reveal 640ms var(--ease) forwards;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-glass .nav-shell,
  .mobile-menu,
  .menu-toggle,
  .reference-strip {
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 20px, 720px);
    top: 8px;
    margin-top: 8px;
  }

  .nav-shell {
    min-height: 64px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 8px 10px 8px 16px;
  }

  .nav-contrast {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: inherit;
  }

  .brand {
    width: 116px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-self: end;
    gap: 8px;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    width: 100%;
    margin: 10px 0 0;
    padding: 12px;
    border: 1px solid var(--glass-stroke);
    border-radius: 30px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
      rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    animation: menu-in 180ms var(--ease);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
    gap: 7px;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(3, 3, 3, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(3, 3, 3, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .mobile-menu a::after {
    content: none;
  }

  .mobile-menu a:hover {
    color: var(--text);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.78);
  }
}

@media (max-width: 900px) {
  .hero {
    width: min(100% - 28px, 720px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 58px;
  }

  .hero-title {
    max-width: 690px;
    font-size: 72px;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-card {
    min-height: 540px;
    width: 100%;
  }

  .workflow {
    width: min(100% - 28px, 720px);
    padding: 64px 0 92px;
  }

  .workflow-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .workflow-heading h2 {
    font-size: 48px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workflow-card {
    min-height: 390px;
  }

  .workflow-visual {
    height: 210px;
  }

  .reference-strip {
    border-radius: 34px;
  }

  .projects {
    width: min(100% - 28px, 720px);
    padding: 104px 0 110px;
  }

  .projects-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .projects-heading h2 {
    font-size: 48px;
  }

  .projects-heading p:last-child {
    margin-left: 0;
  }

  .case-grid--solar {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-card {
    min-height: 610px;
  }

  .other-work {
    margin-top: 54px;
  }

  .other-work__head {
    text-align: left;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    max-width: 520px;
  }

  .nav-shell {
    padding-left: 14px;
  }

  .nav-contrast {
    padding-left: 14px;
  }

  .brand {
    width: 104px;
  }

  .nav-cta {
    padding-inline: 13px;
    width: 78px;
    font-size: 0;
  }

  .nav-cta::before {
    content: "Call";
    font-size: 14px;
  }

  .nav-cta--back::before {
    content: "Zur\00fc ck";
  }

  .hero {
    padding-top: 48px;
    width: calc(100% - 28px);
    max-width: 390px;
  }

  .hero-copy {
    max-width: 360px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .hero-sub {
    max-width: 340px;
    font-size: 17px;
    margin-top: 22px;
  }

  .hero-card {
    min-height: 560px;
    padding: 24px;
    border-radius: 16px;
  }

  .solar-showcase {
    min-height: 194px;
  }

  .solar-ui-card {
    right: -56px;
    top: 20px;
    width: 292px;
    height: 182px;
  }

  .solar-pill {
    left: 18px;
    bottom: 20px;
  }

  .lead-chip--one {
    right: 96px;
    top: 6px;
  }

  .lead-chip--two {
    right: 32px;
    bottom: 0;
  }

  .lead-chip {
    min-width: 90px;
    padding: 8px 10px;
  }

  .lead-chip strong {
    font-size: 13px;
  }

  .hero-card__content {
    margin-top: 0;
  }

  .hero-card__content h2 {
    font-size: 32px;
  }

  .hero-card__button {
    min-height: 56px;
    font-size: 16px;
  }

  .workflow {
    width: calc(100% - 32px);
    max-width: 390px;
    padding: 50px 0 78px;
  }

  .workflow-heading {
    margin-bottom: 32px;
  }

  .workflow-heading h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .workflow-card {
    min-height: 430px;
    padding: 24px;
    border-radius: 16px;
  }

  .workflow-visual {
    height: 232px;
  }

  .mini-page {
    left: 8px;
    width: 235px;
  }

  .filter-stack__panel {
    width: 196px;
  }

  .filter-stack__panel:nth-child(2) {
    margin-left: 52px;
  }

  .handoff-phone {
    left: 24px;
  }

  .handoff-card {
    right: -2px;
  }

  .workflow-copy h3 {
    font-size: 24px;
  }

  .reference-strip {
    margin-top: 34px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    border-radius: 28px;
  }

  .reference-strip span,
  .reference-strip strong {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
  }

  .reference-strip span {
    grid-column: 1 / -1;
    min-height: 22px;
    padding: 0;
    color: rgba(3, 3, 3, 0.48);
    background: transparent;
    border: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .reference-strip strong {
    font-size: 13px;
  }

  .reference-strip strong:first-of-type {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 258px);
  }

  .reference-strip strong:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 230px);
  }

  .projects {
    width: calc(100% - 32px);
    max-width: 390px;
    padding: 128px 0 82px;
  }

  .projects-heading {
    margin-bottom: 32px;
  }

  .projects-heading h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .projects-heading p:last-child {
    font-size: 17px;
    margin-top: 18px;
  }

  .case-card {
    min-height: 590px;
    padding: 18px;
    border-radius: 18px;
  }

  .case-media {
    min-height: 302px;
  }

  .case-result {
    min-height: 38px;
    max-width: calc(100% - 8px);
    padding: 0 13px;
    font-size: 12px;
  }

  .case-browser,
  .case-card--walkers .case-browser {
    top: 66px;
    left: -34px;
    right: auto;
    width: calc(100% + 76px);
    height: 214px;
    border-radius: 18px;
  }

  .case-browser__bar {
    height: 31px;
  }

  .case-browser img {
    height: calc(100% - 31px);
  }

  .case-float {
    min-width: 112px;
    padding: 10px 12px;
    border-radius: 15px;
  }

  .case-float strong {
    font-size: 13px;
  }

  .case-float--one {
    right: -4px;
    top: 20px;
  }

  .case-float--two {
    left: 4px;
    bottom: 0;
  }

  .case-copy h3 {
    font-size: 28px;
  }

  .case-copy p {
    font-size: 15px;
  }

  .case-tags strong {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .other-work__head h3 {
    font-size: 30px;
  }

  .other-work__head p:last-child {
    font-size: 16px;
  }

  .other-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .other-card {
    min-height: 132px;
    grid-template-columns: 122px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .other-card img {
    height: 108px;
  }

  .other-card div {
    padding: 0 4px 0 0;
  }

  .other-card h4 {
    font-size: 17px;
  }

  .other-card p {
    font-size: 13px;
  }
}

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

  .case-result {
    font-size: 11px;
  }

  .other-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .other-card img {
    height: 98px;
  }
}

/* References v2: calmer proof system */
.case-grid {
  gap: 22px;
}

.case-card,
.case-card--solaris,
.case-card--walkers {
  min-height: auto;
  padding: 14px;
  border-radius: 20px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 24px 70px rgba(35, 24, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 84px rgba(35, 24, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.case-card::before {
  inset: 0;
  opacity: 0.62;
  filter: none;
  mix-blend-mode: normal;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 42%),
    radial-gradient(72% 48% at 12% 0%, rgba(255, 255, 255, 0.64), transparent 58%);
}

.case-card::after {
  display: none;
}

.case-media {
  min-height: 0;
  display: grid;
  gap: 14px;
}

.case-browser,
.case-browser--wide,
.case-card--walkers .case-browser {
  position: relative;
  inset: auto;
  width: 100%;
  height: 300px;
  margin: 0;
  border-radius: 17px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(3, 3, 3, 0.1);
  box-shadow: 0 16px 34px rgba(35, 24, 29, 0.08);
  transform: none;
}

.case-card:hover .case-browser,
.case-card--walkers:hover .case-browser {
  transform: translateY(-2px);
}

.case-browser__bar {
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(3, 3, 3, 0.08);
}

.case-browser__bar strong {
  color: rgba(3, 3, 3, 0.46);
  background: rgba(3, 3, 3, 0.055);
}

.case-browser img {
  height: calc(100% - 36px);
  filter: saturate(0.92) contrast(0.98);
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-result,
.case-float {
  position: static;
  min-width: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-radius: 999px;
  transform: none;
  white-space: nowrap;
}

.case-result {
  color: #fff;
  background: linear-gradient(180deg, #343434 0%, #050505 58%, #171717 100%);
  border: 1px solid #030303;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-weight: 950;
}

.case-float {
  color: rgba(3, 3, 3, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.case-float span,
.case-float strong {
  margin: 0;
  display: inline;
  line-height: 1;
}

.case-float span {
  color: rgba(3, 3, 3, 0.5);
  font-size: 12px;
  font-weight: 900;
}

.case-float strong {
  font-size: 13px;
  font-weight: 950;
}

.case-copy {
  max-width: none;
  padding: 0 6px 6px;
}

.case-copy > span {
  min-height: 30px;
  color: rgba(3, 3, 3, 0.56);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(3, 3, 3, 0.08);
}

.case-copy h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: 29px;
  line-height: 1.04;
}

.case-copy p {
  max-width: 520px;
  color: rgba(3, 3, 3, 0.62);
  font-size: 16px;
  line-height: 1.36;
}

.case-tags strong {
  color: rgba(3, 3, 3, 0.72);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.other-work {
  margin-top: 78px;
}

.other-work__head {
  margin-bottom: 24px;
}

.other-work__head h3 {
  font-size: 34px;
}

.other-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.other-card {
  min-height: 118px;
  padding: 10px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 52px rgba(35, 24, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.other-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(35, 24, 29, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.other-card img {
  width: 142px;
  height: 92px;
  border-radius: 16px;
  filter: saturate(0.88) contrast(0.96);
}

.other-card div {
  min-width: 0;
  padding: 0 8px 0 0;
}

.other-card span {
  min-height: 28px;
  color: rgba(3, 3, 3, 0.54);
  background: rgba(255, 255, 255, 0.56);
}

.other-card h4 {
  margin-top: 10px;
  font-size: 18px;
}

.other-card p {
  color: rgba(3, 3, 3, 0.58);
  font-size: 14px;
}

@media (max-width: 900px) {
  .case-grid--solar,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .case-browser,
  .case-browser--wide,
  .case-card--walkers .case-browser {
    height: 330px;
  }
}

@media (max-width: 640px) {
  .case-card {
    min-height: auto;
    padding: 12px;
    gap: 16px;
  }

  .case-media {
    gap: 12px;
  }

  .case-browser,
  .case-browser--wide,
  .case-card--walkers .case-browser {
    height: 222px;
    border-radius: 16px;
  }

  .case-browser__bar {
    height: 32px;
  }

  .case-browser img {
    height: calc(100% - 32px);
  }

  .case-metrics {
    gap: 7px;
  }

  .case-result,
  .case-float {
    min-height: 34px;
    padding: 0 11px;
  }

  .case-result {
    font-size: 12px;
  }

  .case-float span,
  .case-float strong {
    font-size: 12px;
  }

  .case-copy {
    padding: 0 4px 4px;
  }

  .case-copy h3 {
    font-size: 25px;
  }

  .case-copy p {
    font-size: 15px;
  }

  .case-tags {
    gap: 7px;
  }

  .other-work {
    margin-top: 58px;
  }

  .other-work__head h3 {
    font-size: 28px;
  }

  .other-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    border-radius: 20px;
  }

  .other-card img {
    width: 112px;
    height: 82px;
  }
}

@media (max-width: 360px) {
  .case-result,
  .case-float {
    white-space: normal;
  }

  .other-card {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .other-card img {
    width: 98px;
    height: 76px;
  }
}

/* References v3: editorial proof rows */
.projects-heading {
  margin-bottom: 48px;
}

.projects-heading p:last-child {
  max-width: 650px;
}

.case-grid--solar {
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.case-card,
.case-card--solaris,
.case-card--walkers {
  min-height: 390px;
  padding: 16px;
  border-radius: 28px;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-template-rows: auto;
  align-items: stretch;
  gap: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(3, 3, 3, 0.09);
  box-shadow: 0 28px 84px rgba(35, 24, 29, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 96px rgba(35, 24, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.case-card::before {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), transparent 42%),
    radial-gradient(72% 64% at 0% 0%, rgba(255, 255, 255, 0.78), transparent 62%);
}

.case-card--solaris {
  --case-accent: #0b67ff;
}

.case-card--walkers {
  --case-accent: #ef3c42;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.case-card--solaris::after,
.case-card--walkers::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, var(--case-accent), rgba(3, 3, 3, 0.12));
  opacity: 0.78;
}

.case-card--walkers .case-media {
  grid-column: 2;
  grid-row: 1;
}

.case-card--walkers .case-copy {
  grid-column: 1;
  grid-row: 1;
}

.case-card--walkers .case-metrics {
  grid-template-columns: 1fr 0.88fr 1fr;
}

.case-card--walkers .case-result,
.case-card--walkers .case-float {
  font-size: 12px;
}

.case-media {
  min-height: 360px;
  gap: 12px;
}

.case-browser,
.case-browser--wide,
.case-card--walkers .case-browser {
  height: 292px;
  border-radius: 22px;
  border-color: rgba(3, 3, 3, 0.1);
  box-shadow: 0 18px 42px rgba(35, 24, 29, 0.11);
}

.case-browser img {
  filter: saturate(0.98) contrast(0.98);
}

.case-metrics {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 8px;
}

.case-result,
.case-float {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  padding: 0 12px;
}

.case-result {
  font-size: 13px;
}

.case-float {
  background: rgba(255, 255, 255, 0.58);
}

.case-copy {
  min-height: 100%;
  padding: 24px 18px 18px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card--walkers .case-copy {
  padding: 24px 8px 18px 18px;
}

.case-copy > span {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.5);
}

.case-copy h3 {
  max-width: 420px;
  margin-top: 22px;
  font-size: 37px;
  line-height: 0.98;
}

.case-copy p {
  max-width: 430px;
  margin-top: 18px;
  font-size: 17px;
}

.case-tags {
  margin-top: 28px;
}

.case-tags strong {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.6);
}

.other-work {
  margin-top: 72px;
}

.other-work__head {
  margin-bottom: 22px;
}

.other-work__head h3 {
  font-size: 32px;
}

.other-grid {
  width: min(100%, 1040px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.09);
  box-shadow: 0 24px 70px rgba(35, 24, 29, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.other-card {
  min-height: 202px;
  padding: 10px 12px 12px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.other-card:not(:last-child) {
  border-right: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 20px 0 0 20px;
}

.other-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.other-card img {
  width: 100%;
  height: 94px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(3, 3, 3, 0.08);
}

.other-card div {
  padding: 0 2px;
}

.other-card span {
  min-height: 27px;
  font-size: 11px;
}

.other-card h4 {
  margin-top: 11px;
  font-size: 17px;
}

.other-card p {
  font-size: 13px;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .case-card,
  .case-card--solaris,
  .case-card--walkers {
    grid-template-columns: 1fr;
  }

  .case-card--walkers .case-media,
  .case-card--walkers .case-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .case-card--walkers .case-copy,
  .case-copy {
    padding: 10px 8px 8px;
  }

  .case-browser,
  .case-browser--wide,
  .case-card--walkers .case-browser {
    height: 330px;
  }

  .case-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .other-card:nth-child(2) {
    border-right: 0;
  }

  .other-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(3, 3, 3, 0.08);
  }
}

@media (max-width: 640px) {
  .projects-heading {
    margin-bottom: 34px;
  }

  .case-card,
  .case-card--solaris,
  .case-card--walkers {
    padding: 12px;
    border-radius: 24px;
  }

  .case-card--solaris::after,
  .case-card--walkers::after {
    width: 100%;
    height: 3px;
    inset: 0 0 auto;
    border-radius: 24px 24px 0 0;
  }

  .case-media {
    min-height: auto;
  }

  .case-browser,
  .case-browser--wide,
  .case-card--walkers .case-browser {
    height: 224px;
    border-radius: 18px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .case-result,
  .case-float {
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 13px;
  }

  .case-copy h3 {
    font-size: 30px;
  }

  .case-copy p {
    font-size: 16px;
  }

  .other-work {
    margin-top: 56px;
  }

  .other-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 0;
  }

  .other-card,
  .other-card:not(:last-child) {
    min-height: 118px;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 3, 3, 0.08);
    border-radius: 18px;
  }

  .other-card:last-child {
    border-bottom: 0;
  }

  .other-card img {
    width: 112px;
    height: 82px;
  }
}

@media (max-width: 360px) {
  .other-card,
  .other-card:not(:last-child) {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .other-card img {
    width: 96px;
    height: 74px;
  }
}

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

  .hero-card {
    transform: none;
  }

  .hero-card:hover {
    --card-lift: 0px;
    --ui-scale: 1;
    --chip-scale: 1;
    --pill-scale: 1;
  }

  .hero-card::before {
    transform: rotate(-13deg);
  }

  .hero-card::after {
    transform: none;
  }

  .mini-rating[data-animate="pending"] span {
    animation: none;
    opacity: var(--star-opacity);
    transform: translateY(var(--star-y));
    filter: drop-shadow(0 2px 3px rgba(155, 95, 0, 0.22)) saturate(1.04);
  }

  .reveal-item[data-reveal="pending"] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .solar-ui-card {
    transform: rotate(7deg);
  }

  .lead-chip--one {
    transform: rotate(-7deg);
  }

  .lead-chip--two {
    transform: rotate(3deg);
  }

  .solar-pill {
    transform: rotate(-2deg);
  }
}

@keyframes project-reveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes faq-cta-bg-drift {
  0% {
    opacity: 0.16;
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  100% {
    opacity: 0.24;
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes faq-cta-wave {
  0% {
    transform: translate3d(-1.5%, 1%, 0) rotate(-8deg);
  }

  100% {
    transform: translate3d(2%, -1%, 0) rotate(-6deg);
  }
}

@keyframes faq-sun-rays-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes booking-success-rays-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes booking-success-check-pulse {
  0%,
  100% {
    transform: scale(1);
  }

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

@keyframes faq-sun-pulse {
  0%,
  100% {
    transform: translateZ(1px) scale(1);
    filter: saturate(1) brightness(1);
  }

  50% {
    transform: translateZ(1px) scale(1.008);
    filter: saturate(1.02) brightness(1.012);
  }
}

@keyframes faq-sun-glow {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.99);
  }

  50% {
    opacity: 0.58;
    transform: scale(1.015);
  }
}

@keyframes star-waterfall {
  0% {
    opacity: 0;
    transform: translate3d(-5px, 16px, 0) scale(0.54) rotate(-18deg);
    filter: blur(2px) saturate(1.1);
  }

  52% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.18) rotate(7deg);
    filter: blur(0) drop-shadow(0 6px 8px rgba(155, 95, 0, 0.18)) saturate(1.12);
  }

  76% {
    transform: translate3d(0, calc(var(--star-y) + 2px), 0) scale(0.96) rotate(-2deg);
  }

  100% {
    opacity: var(--star-opacity);
    transform: translateY(var(--star-y)) scale(1) rotate(0);
    filter: drop-shadow(0 2px 3px rgba(155, 95, 0, 0.22)) saturate(1.04);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* References v4: proof studio */
.proof-section {
  width: min(100% - 80px, 1180px);
  padding-top: 84px;
}

.proof-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.proof-studio {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: 0 34px 100px rgba(31, 22, 28, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

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

.proof-studio::before {
  inset: -24%;
  z-index: -2;
  background:
    radial-gradient(46% 34% at 8% 18%, rgba(255, 234, 120, 0.72), transparent 68%),
    radial-gradient(42% 34% at 84% 10%, rgba(50, 210, 255, 0.5), transparent 70%),
    radial-gradient(54% 44% at 74% 88%, rgba(34, 80, 255, 0.34), transparent 74%),
    radial-gradient(42% 36% at 32% 78%, rgba(255, 0, 126, 0.2), transparent 74%);
  filter: blur(22px);
}

.proof-studio::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(circle at 1px 1px, rgba(3, 3, 3, 0.06) 1px, transparent 0);
  background-size: auto, 18px 18px;
  opacity: 0.72;
}

.proof-studio__copy {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.proof-label {
  width: fit-content;
  min-height: 34px;
  margin: 0 0 24px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #343434 0%, #060606 58%, #171717 100%);
  border: 1px solid #030303;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 950;
}

.proof-studio__copy h3 {
  max-width: 360px;
  margin: 0;
  color: var(--text);
  font-size: 40px;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-studio__copy > p:not(.proof-label) {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(3, 3, 3, 0.6);
  font-size: 18px;
  line-height: 1.38;
}

.proof-case-list {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  gap: 10px;
}

.proof-case-list article {
  min-height: 98px;
  padding: 16px 18px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-radius: 24px;
  color: rgba(3, 3, 3, 0.84);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  transition: transform 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.proof-case-list article:first-child {
  color: #fff;
  background: linear-gradient(180deg, #2d2d2d 0%, #060606 70%, #171717 100%);
  border-color: #030303;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.proof-case-list article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(31, 22, 28, 0.08);
}

.proof-case-list article:first-child:hover {
  background: linear-gradient(180deg, #343434 0%, #050505 70%, #171717 100%);
}

.proof-case-list span {
  font-size: 12px;
  font-weight: 950;
  color: currentColor;
  opacity: 0.62;
}

.proof-case-list strong {
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.proof-case-list em {
  color: currentColor;
  opacity: 0.62;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.proof-stage {
  position: relative;
  min-height: 538px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(70% 46% at 12% 8%, rgba(255, 244, 171, 0.82), transparent 68%),
    radial-gradient(74% 52% at 90% 18%, rgba(78, 229, 255, 0.56), transparent 72%),
    linear-gradient(160deg, rgba(238, 252, 255, 0.92) 0%, rgba(213, 238, 255, 0.92) 45%, rgba(246, 242, 255, 0.9) 100%);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

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

.proof-stage::before {
  left: -18%;
  right: -18%;
  top: 18%;
  height: 64%;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(255, 255, 255, 0.72) 23%, rgba(52, 161, 255, 0.34) 35%, transparent 56%),
    linear-gradient(151deg, transparent 12%, rgba(0, 95, 255, 0.36) 40%, rgba(252, 255, 255, 0.62) 51%, transparent 72%);
  filter: blur(14px);
  transform: rotate(-8deg);
  opacity: 0.92;
}

.proof-stage::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 38%),
    radial-gradient(circle at 1px 1px, rgba(3, 3, 3, 0.055) 1px, transparent 0);
  background-size: auto, 16px 16px;
  opacity: 0.68;
}

.proof-browser {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(22, 31, 49, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.proof-studio:hover .proof-browser--main {
  transform: translateY(-8px);
  box-shadow: 0 36px 88px rgba(22, 31, 49, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.proof-studio:hover .proof-browser--secondary {
  transform: translateY(-5px);
}

.proof-browser--main {
  left: 5%;
  top: 44px;
  width: 76%;
  height: 334px;
}

.proof-browser--secondary {
  right: 5%;
  bottom: 38px;
  width: 48%;
  height: 214px;
}

.proof-browser__bar {
  height: 36px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(3, 3, 3, 0.42);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(3, 3, 3, 0.08);
}

.proof-browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.18);
}

.proof-browser__bar strong {
  min-height: 24px;
  margin-left: 8px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.06);
  color: rgba(3, 3, 3, 0.44);
  font-size: 12px;
  font-weight: 950;
}

.proof-browser img {
  width: 100%;
  height: calc(100% - 36px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

.proof-pill {
  position: absolute;
  z-index: 4;
  min-height: 62px;
  padding: 12px 18px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(22, 31, 49, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.proof-pill--one {
  right: 8%;
  top: 66px;
}

.proof-pill--two {
  left: 10%;
  bottom: 64px;
}

.proof-pill span {
  color: rgba(3, 3, 3, 0.48);
  font-size: 11px;
  font-weight: 950;
}

.proof-pill strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 950;
  white-space: nowrap;
}

.proof-metrics {
  width: min(100%, 1080px);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-metrics article {
  min-height: 62px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.proof-metrics span {
  color: rgba(3, 3, 3, 0.46);
  font-size: 12px;
  font-weight: 950;
}

.proof-metrics strong {
  color: rgba(3, 3, 3, 0.82);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.proof-ledger {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(270px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.proof-ledger__head {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(76% 56% at 18% 12%, rgba(255, 255, 255, 0.18), transparent 68%),
    linear-gradient(180deg, #303030 0%, #050505 68%, #171717 100%);
  border: 1px solid rgba(3, 3, 3, 0.9);
  box-shadow: 0 28px 70px rgba(3, 3, 3, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.proof-ledger__head .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.proof-ledger__head h3 {
  max-width: 330px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 34px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

.proof-ledger__list {
  min-height: 330px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: 0 24px 70px rgba(35, 24, 29, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.proof-ledger__list article {
  min-height: 72px;
  padding: 10px;
  display: grid;
  grid-template-columns: 82px 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(3, 3, 3, 0.06);
  transition: transform 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}

.proof-ledger__list article:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(31, 22, 28, 0.08);
}

.proof-ledger__thumb {
  width: 82px;
  height: 54px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(3, 3, 3, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.proof-ledger__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.88) contrast(0.96);
}

.proof-ledger__list span {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.55);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(3, 3, 3, 0.08);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.proof-ledger__list strong {
  min-width: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
}

.proof-ledger__list em {
  color: rgba(3, 3, 3, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .proof-section {
    width: min(100% - 36px, 760px);
  }

  .proof-studio {
    grid-template-columns: 1fr;
  }

  .proof-studio__copy {
    min-height: auto;
  }

  .proof-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .proof-stage {
    min-height: 500px;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
  }

  .proof-ledger__head {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .proof-section {
    width: min(100% - 28px, 430px);
    padding-top: 70px;
  }

  .proof-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .proof-heading h2 {
    font-size: 47px;
  }

  .proof-heading p:last-child {
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .proof-studio {
    padding: 10px;
    border-radius: 30px;
  }

  .proof-studio__copy {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .proof-studio__copy h3 {
    font-size: 31px;
  }

  .proof-studio__copy > p:not(.proof-label) {
    font-size: 16px;
  }

  .proof-case-list {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .proof-stage {
    min-height: 430px;
    border-radius: 24px;
  }

  .proof-browser {
    border-radius: 18px;
  }

  .proof-browser--main {
    left: 5%;
    top: 30px;
    width: 90%;
    height: 202px;
  }

  .proof-browser--secondary {
    right: 5%;
    bottom: 102px;
    width: 68%;
    height: 130px;
  }

  .proof-browser__bar {
    height: 30px;
  }

  .proof-browser img {
    height: calc(100% - 30px);
  }

  .proof-pill {
    min-height: 52px;
    width: 42%;
    padding: 8px 11px;
    border-radius: 18px;
  }

  .proof-pill--one {
    top: auto;
    right: 6%;
    bottom: 24px;
  }

  .proof-pill--two {
    left: 6%;
    bottom: 24px;
  }

  .proof-pill strong {
    font-size: 13px;
  }

  .proof-metrics article {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
  }

  .proof-metrics strong {
    text-align: left;
  }

  .proof-ledger {
    margin-top: 58px;
  }

  .proof-ledger__head,
  .proof-ledger__list {
    border-radius: 26px;
  }

  .proof-ledger__head {
    padding: 24px;
  }

  .proof-ledger__head h3 {
    font-size: 30px;
  }

  .proof-ledger__list article {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px 13px;
    padding: 10px;
  }

  .proof-ledger__thumb {
    grid-row: span 3;
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }

  .proof-ledger__list span {
    justify-self: start;
  }

  .proof-ledger__list em {
    text-align: left;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-studio:hover .proof-browser--main,
  .proof-studio:hover .proof-browser--secondary,
  .proof-case-list article:hover,
  .proof-ledger__list article:hover {
    transform: none;
  }
}

/* References v5: clean showcase tiles */
.references-v5 {
  width: min(100% - 80px, 1180px);
  padding: 90px 0 134px;
}

.references-v5__heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.references-v5__heading h2 {
  font-size: 62px;
}

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

.reference-case {
  position: relative;
  overflow: visible;
  min-height: 640px;
  padding: 14px;
  display: grid;
  grid-template-rows: 386px 1fr;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: 0 30px 90px rgba(35, 24, 29, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.reference-case:hover {
  border-color: rgba(3, 3, 3, 0.12);
  box-shadow: 0 30px 90px rgba(35, 24, 29, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.reference-case.is-notice-open {
  z-index: 30;
}

.reference-case__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 246, 246, 0.58)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(3, 3, 3, 0.07);
}

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

.reference-case__visual::before {
  inset: -24%;
  z-index: -2;
  filter: blur(18px);
  opacity: 0.72;
}

.reference-case__visual::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 1px 1px, rgba(3, 3, 3, 0.065) 1px, transparent 0),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 42%);
  background-size: 16px 16px, auto;
  opacity: 0.44;
}

.reference-case--sun .reference-case__visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 246, 0.58)),
    rgba(255, 255, 255, 0.68);
}

.reference-case--sun .reference-case__visual::before {
  background:
    radial-gradient(70% 38% at 12% 12%, rgba(255, 255, 255, 0.95), transparent 72%),
    radial-gradient(76% 36% at 92% 80%, rgba(222, 222, 222, 0.5), transparent 74%);
}

.reference-case--sky .reference-case__visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 246, 0.58)),
    rgba(255, 255, 255, 0.68);
}

.reference-case--sky .reference-case__visual::before {
  background:
    radial-gradient(70% 38% at 12% 12%, rgba(255, 255, 255, 0.95), transparent 72%),
    radial-gradient(76% 36% at 92% 80%, rgba(222, 222, 222, 0.5), transparent 74%);
}

.reference-browser {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 62px rgba(23, 29, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: none;
  transition: box-shadow 240ms var(--ease);
}

.reference-case:hover .reference-browser {
  transform: none;
  box-shadow: 0 26px 62px rgba(23, 29, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.reference-browser__bar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(3, 3, 3, 0.08);
}

.reference-browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.18);
}

.reference-browser__bar strong {
  min-height: 23px;
  margin-left: 7px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.46);
  background: rgba(3, 3, 3, 0.06);
  font-size: 12px;
  font-weight: 950;
}

.reference-browser img {
  width: 100%;
  height: calc(100% - 34px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

.reference-case__body {
  padding: 27px 18px 14px;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reference-tags span {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 950;
}

.reference-case__body h3 {
  margin: 20px 0 0;
  max-width: 460px;
  color: var(--text);
  font-size: 35px;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
}

.reference-case__body p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 16px;
  line-height: 1.36;
}

.case-footer {
  margin-top: auto;
  padding-top: 24px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}

.case-footer__chips {
  grid-column: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-footer__chips span {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.case-footer__button {
  grid-column: 2;
  justify-self: end;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(3, 3, 3, 0.1);
  color: #fff;
  background: linear-gradient(180deg, #343434 0%, #050505 66%, #171717 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 24px rgba(3, 3, 3, 0.14);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.case-footer__button:hover {
  background: linear-gradient(180deg, #1f1f1f 0%, #000 66%, #111 100%);
}

.case-footer.is-open .case-footer__button {
  color: #080808;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(180deg, #ffd84a 0%, #f2a900 100%);
  border-color: rgba(137, 91, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 30px rgba(183, 116, 0, 0.22);
}

.case-footer__arrow {
  position: relative;
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.case-footer__arrow::before,
.case-footer__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: right center;
}

.case-footer__arrow::before {
  top: 0;
  transform: rotate(42deg);
}

.case-footer__arrow::after {
  bottom: 0;
  transform: rotate(-42deg);
}

.case-footer__bang {
  width: 18px;
  height: 18px;
  display: none;
  place-items: center;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-1px);
}

.case-footer.is-open .case-footer__arrow {
  display: none;
}

.case-footer.is-open .case-footer__bang {
  display: grid;
}

.case-footer__notice {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  width: min(430px, calc(100% - 4px));
  padding: 14px 16px 14px 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-radius: 24px;
  color: rgba(3, 3, 3, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    rgba(255, 248, 226, 0.72);
  border: 1px solid rgba(191, 132, 0, 0.22);
  box-shadow: 0 22px 64px rgba(61, 42, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: right top;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.case-footer.is-open .case-footer__notice {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.case-footer__notice-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(180deg, #ffd94d 0%, #f1aa00 100%);
  border: 1px solid rgba(137, 91, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.case-footer__notice strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.case-footer__notice p {
  max-width: none;
  margin: 5px 0 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.case-footer__notice a {
  margin-top: 10px;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #343434 0%, #050505 66%, #171717 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 22px rgba(3, 3, 3, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.reference-support {
  margin-top: 56px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow: 0 28px 86px rgba(35, 24, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.reference-support__head {
  min-height: 320px;
  padding: 30px 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border-radius: 26px;
  background:
    radial-gradient(76% 58% at 13% 10%, rgba(32, 109, 255, 0.66), transparent 50%),
    radial-gradient(90% 72% at 88% 8%, rgba(15, 226, 216, 0.34), transparent 54%),
    radial-gradient(92% 74% at 48% 88%, rgba(112, 46, 255, 0.78), transparent 60%),
    linear-gradient(150deg, #0b1f9f 0%, #0629d8 48%, #1810a7 72%, #12046f 100%);
  border: 1px solid rgba(35, 92, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 20px 54px rgba(35, 24, 29, 0.12);
}

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

.reference-support__head::before {
  inset: -26%;
  z-index: -2;
  background:
    radial-gradient(92% 20% at 0% 34%, transparent 0 38%, rgba(255, 255, 255, 0.68) 46%, transparent 72%),
    radial-gradient(90% 20% at 104% 66%, transparent 0 40%, rgba(223, 251, 255, 0.62) 49%, transparent 76%);
  filter: blur(16px);
  opacity: 0.95;
}

.reference-support__head::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(76% 58% at 38% 50%, rgba(3, 3, 3, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, transparent 32%);
  opacity: 0.82;
}

.reference-support__head .section-kicker {
  position: relative;
  z-index: 1;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 14px rgba(3, 3, 3, 0.22);
}

.reference-support__head h3 {
  position: relative;
  z-index: 1;
  max-width: 292px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 32px;
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(3, 3, 3, 0.32);
}

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

.support-projects article {
  min-height: 155px;
  padding: 12px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(3, 3, 3, 0.08);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.support-projects article:hover {
  transform: none;
  border-color: rgba(3, 3, 3, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 38px rgba(35, 24, 29, 0.08);
}

.support-projects img {
  width: 118px;
  height: 112px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 1px solid rgba(3, 3, 3, 0.08);
  filter: saturate(0.92) contrast(0.96);
}

.support-projects div {
  min-width: 0;
}

.support-projects span {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.52);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(3, 3, 3, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.support-projects strong {
  display: block;
  margin-top: 13px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.08;
}

.support-projects em {
  display: block;
  margin-top: 7px;
  color: rgba(3, 3, 3, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
}

.benefits {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 26px 0 128px;
  scroll-margin-top: 116px;
}

.benefits-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.benefits-heading .section-kicker {
  color: rgba(3, 3, 3, 0.72);
}

.benefits-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.benefits-heading h2 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.benefits-heading p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 19px;
  line-height: 1.35;
}

.benefits-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  scrollbar-width: none;
}

.benefits-track::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  position: relative;
  min-width: 0;
  flex: 0 0 calc((100% - 96px) / 5);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 22px 58px rgba(35, 24, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(150%) contrast(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(150%) contrast(1.03);
  scroll-snap-align: start;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: var(--liquid-glass-surface);
  opacity: 0.38;
  mix-blend-mode: screen;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 30px 72px rgba(35, 24, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit-art {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 22px 54px rgba(26, 18, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  isolation: isolate;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

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

.benefit-art::before {
  inset: -26%;
  z-index: -2;
  filter: blur(14px);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.benefit-art::after {
  inset: 0;
  z-index: -1;
  background:
    var(--liquid-glass-highlight),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.58;
}

.benefit-art svg {
  width: 68px;
  height: 68px;
  padding: 16px;
  overflow: visible;
  border-radius: 18px;
  color: #fff;
  background: var(--liquid-glass-bg);
  border: 1px solid var(--liquid-glass-border);
  box-shadow:
    0 18px 38px rgba(3, 3, 3, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: var(--liquid-glass-filter);
  -webkit-backdrop-filter: var(--liquid-glass-filter);
  transform: translateY(0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.benefit-card:hover .benefit-art {
  transform: translateY(-3px);
  box-shadow: 0 30px 72px rgba(26, 18, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.benefit-card:hover .benefit-art svg {
  transform: translateY(-8px);
  background: var(--liquid-glass-bg);
  box-shadow:
    0 24px 44px rgba(3, 3, 3, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.benefit-art svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

.benefit-card p {
  margin: 10px 0 0;
  color: rgba(3, 3, 3, 0.55);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.28;
}

.benefit-card--trust .benefit-art {
  background:
    radial-gradient(84% 64% at 8% 8%, rgba(255, 246, 178, 0.98), transparent 56%),
    radial-gradient(82% 70% at 96% 92%, rgba(255, 0, 131, 0.56), transparent 62%),
    linear-gradient(145deg, #ffe500 0%, #ffb200 48%, #ff6a2f 100%);
}

.benefit-card--trust .benefit-art::before {
  background:
    radial-gradient(88% 26% at 8% 42%, transparent 0 38%, rgba(255, 255, 255, 0.58) 46%, transparent 72%),
    radial-gradient(92% 28% at 94% 70%, transparent 0 40%, rgba(255, 0, 132, 0.34) 48%, transparent 74%);
}

.benefit-card--filter .benefit-art {
  background:
    radial-gradient(82% 62% at 12% 16%, rgba(255, 239, 126, 0.82), transparent 52%),
    radial-gradient(86% 66% at 92% 12%, rgba(50, 229, 255, 0.76), transparent 54%),
    radial-gradient(90% 72% at 42% 88%, rgba(255, 0, 138, 0.7), transparent 60%),
    linear-gradient(145deg, #1831ff 0%, #0a19ed 62%, #25008f 100%);
}

.benefit-card--filter .benefit-art::before {
  background:
    radial-gradient(100% 28% at 10% 36%, transparent 0 40%, rgba(255, 255, 255, 0.52) 48%, transparent 72%),
    radial-gradient(92% 28% at 90% 72%, transparent 0 42%, rgba(255, 255, 255, 0.34) 50%, transparent 76%);
}

.benefit-card--speed .benefit-art {
  background:
    radial-gradient(82% 58% at 6% 10%, rgba(255, 231, 94, 0.82), transparent 52%),
    radial-gradient(76% 60% at 102% 82%, rgba(255, 0, 137, 0.7), transparent 62%),
    linear-gradient(145deg, #ff8415 0%, #fb430d 46%, #2027d9 100%);
}

.benefit-card--speed .benefit-art::before {
  background:
    radial-gradient(96% 26% at 8% 38%, transparent 0 38%, rgba(255, 255, 255, 0.44) 46%, transparent 70%),
    radial-gradient(94% 26% at 94% 72%, transparent 0 42%, rgba(255, 255, 255, 0.26) 50%, transparent 76%);
}

.benefit-card--quality .benefit-art {
  background:
    radial-gradient(78% 60% at 12% 88%, rgba(255, 0, 139, 0.86), transparent 58%),
    radial-gradient(84% 68% at 96% 8%, rgba(28, 226, 86, 0.82), transparent 58%),
    radial-gradient(72% 58% at 68% 64%, rgba(16, 43, 255, 0.58), transparent 64%),
    linear-gradient(145deg, #ff0079 0%, #c900b4 44%, #12c64a 100%);
}

.benefit-card--quality .benefit-art::before {
  background:
    radial-gradient(100% 28% at 14% 34%, transparent 0 40%, rgba(255, 255, 255, 0.42) 48%, transparent 74%),
    radial-gradient(96% 30% at 88% 72%, transparent 0 42%, rgba(255, 255, 255, 0.28) 50%, transparent 76%);
}

.benefit-card--scale .benefit-art {
  background:
    radial-gradient(86% 62% at 6% 6%, rgba(255, 27, 27, 0.92), transparent 56%),
    radial-gradient(86% 64% at 96% 0%, rgba(48, 217, 255, 0.78), transparent 58%),
    radial-gradient(84% 64% at 12% 98%, rgba(255, 126, 0, 0.72), transparent 62%),
    linear-gradient(145deg, #ff3900 0%, #f80b55 44%, #0870ff 100%);
}

.benefit-card--scale .benefit-art::before {
  background:
    radial-gradient(102% 26% at 8% 36%, transparent 0 38%, rgba(255, 255, 255, 0.38) 46%, transparent 72%),
    radial-gradient(94% 28% at 90% 74%, transparent 0 42%, rgba(255, 255, 255, 0.3) 50%, transparent 76%);
}

.benefits-controls {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

.benefits-controls.is-hidden {
  display: none;
}

.benefits-controls button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #030303;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(35, 24, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.benefits-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(35, 24, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.benefits-controls button[hidden] {
  display: none;
}

.benefits-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.process {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 26px 0 146px;
  scroll-margin-top: 116px;
}

.process-heading {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}

.process-heading .section-kicker {
  color: rgba(3, 3, 3, 0.72);
}

.process-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.serif-italic {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
  hyphens: none;
}

.process-heading p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 19px;
  line-height: 1.35;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  right: calc(25% - 48px);
  top: 31px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(3, 3, 3, 0.14) 0 7px, transparent 7px 16px);
  pointer-events: none;
}

.process-step {
  position: relative;
  min-width: 0;
}

.process-step__number {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(35, 24, 29, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 950;
}

.process-step__body {
  min-height: 284px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 58px rgba(35, 24, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.process-step:hover .process-step__body {
  transform: translateY(-4px);
  border-color: rgba(3, 3, 3, 0.13);
  box-shadow: 0 30px 68px rgba(35, 24, 29, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-step__label {
  display: block;
  color: rgba(3, 3, 3, 0.48);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.process-step h3 {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.process-step p {
  margin: 12px 0 0;
  color: rgba(3, 3, 3, 0.56);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.34;
}

.process-step__duration {
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(3, 3, 3, 0.09);
  border-radius: 999px;
  color: rgba(3, 3, 3, 0.66);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 950;
}

.process-result {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  padding: 28px 24px 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(88% 76% at 0% 0%, rgba(255, 231, 73, 0.88), transparent 54%),
    radial-gradient(72% 78% at 100% 0%, rgba(255, 0, 135, 0.9), transparent 56%),
    radial-gradient(92% 78% at 86% 100%, rgba(22, 65, 255, 0.92), transparent 60%),
    linear-gradient(135deg, #ff8a00 0%, #ff245e 48%, #182fff 100%);
  box-shadow: 0 32px 84px rgba(34, 20, 41, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.process-result::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(78% 20% at 10% 46%, transparent 0 42%, rgba(255, 255, 255, 0.36) 50%, transparent 76%),
    radial-gradient(72% 22% at 92% 68%, transparent 0 44%, rgba(255, 255, 255, 0.24) 52%, transparent 78%);
  filter: blur(16px);
  opacity: 0.84;
  pointer-events: none;
}

.process-result > * {
  position: relative;
  z-index: 1;
}

.process-result > div {
  min-width: 0;
}

.process-result > div > span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.process-result > div > strong {
  display: block;
  max-width: none;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.process-result__button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 40px rgba(19, 8, 20, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  white-space: nowrap;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.process-result__button::before,
.fit-panel__button::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -34%;
  width: 34%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  transition: opacity 220ms var(--ease), transform 620ms var(--ease);
}

.process-result__button > span,
.fit-panel__button > span {
  position: relative;
  z-index: 1;
}

.process-result__button > span:first-child {
  min-width: 0;
}

.process-result__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 24px 50px rgba(19, 8, 20, 0.18);
}

.process-result__button:hover::before,
.fit-panel__button:hover::before {
  opacity: 1;
  transform: translateX(430%) skewX(-18deg);
}

.process-result__button strong,
.process-result__button small {
  display: block;
  color: inherit;
}

.process-result__button strong {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.16;
}

.process-result__button small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.process-result__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.process-result__button:hover .process-result__arrow {
  transform: translateX(3px);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-result__arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 0 0 148px;
  scroll-margin-top: 116px;
}

.fit-heading {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.fit-heading .section-kicker {
  color: rgba(3, 3, 3, 0.72);
}

.fit-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.fit-heading p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 19px;
  line-height: 1.35;
}

.fit-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.fit-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
}

.fit-panel--main {
  --fit-bg-x: 0px;
  --fit-bg-y: 0px;
  --fit-bg-alt-x: 0px;
  --fit-bg-drift-x: 0px;
  --fit-bg-drift-y: 0px;
  --fit-bg-scroll: 0px;
  --fit-bg-scroll-inverse: 0px;
  --fit-wave-x: 0px;
  --fit-wave-y: 0px;
  --fit-layer-x: 0px;
  --fit-layer-y: 0px;
  --fit-pointer-x: 0px;
  --fit-pointer-y: 0px;
  padding: clamp(30px, 3.4vw, 38px) clamp(24px, 2.8vw, 30px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(76% 58% at calc(13% + var(--fit-bg-x)) calc(10% + var(--fit-bg-y) + var(--fit-bg-scroll)), rgba(32, 109, 255, 0.66), transparent 50%),
    radial-gradient(90% 72% at calc(88% + var(--fit-bg-alt-x)) calc(8% + var(--fit-bg-y)), rgba(15, 226, 216, 0.34), transparent 54%),
    radial-gradient(92% 74% at calc(48% + var(--fit-bg-drift-x)) calc(88% + var(--fit-bg-drift-y) + var(--fit-bg-scroll-inverse)), rgba(112, 46, 255, 0.78), transparent 60%),
    linear-gradient(150deg, #0b1f9f 0%, #0629d8 48%, #1810a7 72%, #12046f 100%);
  box-shadow: 0 34px 90px rgba(20, 16, 54, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  isolation: isolate;
  will-change: background;
}

.fit-panel--main::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(106% 26% at 12% 35%, transparent 0 42%, rgba(255, 255, 255, 0.14) 48%, transparent 72%),
    radial-gradient(94% 28% at 88% 76%, transparent 0 40%, rgba(255, 255, 255, 0.1) 48%, transparent 76%);
  opacity: 0.34;
  transform: translate3d(var(--fit-wave-x), calc(var(--fit-wave-y) + var(--fit-bg-scroll)), 0) rotate(-9deg);
  mix-blend-mode: screen;
  will-change: transform;
}

.fit-panel--main::after {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(50% + var(--fit-pointer-x)) calc(52% + var(--fit-pointer-y)), rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(68% 44% at 18% 88%, rgba(122, 72, 255, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%);
  opacity: 0.46;
  transform: translate3d(var(--fit-layer-x), var(--fit-layer-y), 0);
  mix-blend-mode: screen;
  will-change: transform;
}

.fit-panel--main > * {
  position: relative;
  z-index: 1;
}

.fit-panel--quiet {
  align-self: stretch;
  padding: clamp(28px, 3.2vw, 36px) clamp(24px, 2.8vw, 30px) clamp(24px, 2.8vw, 30px);
  color: var(--text);
  border: 1px solid rgba(3, 3, 3, 0.08);
  background: #fff;
  box-shadow: 0 18px 44px rgba(35, 24, 29, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.fit-panel__label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fit-panel--quiet .fit-panel__label {
  color: rgba(3, 3, 3, 0.46);
}

.fit-main-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.fit-main-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.fit-main-row span {
  width: 104px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #030303;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.fit-main-row p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.fit-panel__button {
  position: relative;
  overflow: hidden;
  width: min(100%, 306px);
  margin-top: 30px;
  min-height: 62px;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 40px rgba(19, 8, 20, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  white-space: nowrap;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.fit-panel__button > span:first-child {
  min-width: 0;
}

.fit-panel__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 24px 50px rgba(19, 8, 20, 0.18);
}

.fit-panel__button strong,
.fit-panel__button small {
  display: block;
  color: inherit;
}

.fit-panel__button strong {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.16;
}

.fit-panel__button small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.fit-panel__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.fit-panel__button:hover .fit-panel__arrow {
  transform: translateX(3px);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.fit-panel__arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-quiet-list {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 36px;
  list-style: none;
}

.fit-quiet-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  color: rgba(3, 3, 3, 0.62);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.fit-quiet-list li::before {
  content: "\2013";
  color: rgba(3, 3, 3, 0.34);
  font-weight: 900;
}

.fit-quiet-note {
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(3, 3, 3, 0.08);
  color: rgba(3, 3, 3, 0.5);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.38;
}

.fit-footer-line {
  max-width: 760px;
  margin: 42px auto 0;
  color: rgba(3, 3, 3, 0.49);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.faq {
  width: min(100% - 80px, 1160px);
  margin: 0 auto;
  padding: 0 0 150px;
  scroll-margin-top: 116px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.faq-main {
  min-width: 0;
}

.faq-heading {
  max-width: 620px;
  margin: 0 0 38px;
  text-align: left;
}

.faq-heading .section-kicker {
  margin-bottom: 18px;
  color: rgba(3, 3, 3, 0.72);
}

.faq-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(64px, 6.8vw, 92px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.faq-heading h2 em {
  display: inline-block;
  margin-right: 12px;
  font-weight: 400;
}

.faq-heading p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 19px;
  line-height: 1.35;
}

.faq-list {
  width: min(100%, 640px);
  margin: 0;
  display: grid;
  gap: 0;
}

.faq-item {
  position: relative;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease-in-out, transform 420ms ease-in-out;
}

.faq-item[data-faq-reveal="pending"] {
  opacity: 0;
  transform: translateY(16px);
}

.faq-item[data-faq-reveal="pending"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 48px;
  padding: 15px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 0;
  color: #030303;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 200ms ease-in-out;
}

.faq-question:hover {
  color: rgba(3, 3, 3, 0.64);
}

.faq-question span:first-child {
  min-width: 0;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: 0;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
  transition: transform 300ms ease-in-out;
}

.faq-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: 50% 50%;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 300ms ease-in-out;
}

.faq-item.is-open .faq-answer {
  height: auto;
}

.faq-answer__inner {
  padding: 0 48px 18px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.faq-item.is-open .faq-answer__inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  max-width: 590px;
  margin: 0;
  color: rgba(3, 3, 3, 0.58);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.faq-cta {
  position: sticky;
  top: 116px;
  min-height: 454px;
  padding: 34px 32px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(88% 72% at 88% 74%, rgba(27, 22, 174, 0.9), transparent 62%),
    radial-gradient(88% 72% at 80% 70%, rgba(255, 0, 149, 0.74), transparent 60%),
    radial-gradient(96% 76% at 0% 12%, rgba(255, 199, 0, 0.98), transparent 58%),
    radial-gradient(82% 76% at 12% 100%, rgba(255, 92, 33, 0.92), transparent 60%),
    linear-gradient(150deg, #ffbd00 0%, #ff5b2c 44%, #182fff 100%);
  background-size: 118% 118%, 120% 120%, 112% 112%, 116% 116%, 100% 100%;
  background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 0 0;
  box-shadow: 0 36px 90px rgba(35, 24, 29, 0.16);
}

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

.faq-cta::before {
  inset: -10%;
  opacity: 0.2;
  background:
    radial-gradient(70% 46% at 12% 8%, rgba(255, 255, 255, 0.32), transparent 62%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 42%);
  mix-blend-mode: screen;
  animation: faq-cta-bg-drift 14s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.faq-cta::after {
  width: 124%;
  height: 60%;
  left: -10%;
  bottom: -6%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(120deg, rgba(255, 118, 28, 0.8), rgba(255, 0, 160, 0.76), rgba(36, 22, 182, 0.76));
  transform: rotate(-8deg);
  animation: faq-cta-wave 12s ease-in-out infinite alternate;
}

.faq-cta > * {
  position: relative;
  z-index: 1;
}

.faq-cta__sun {
  --sun-x: 0px;
  --sun-y: 0px;
  --sun-lift: 0px;
  width: 112px;
  height: 112px;
  position: relative;
  border-radius: 999px;
  isolation: isolate;
  transform: translate3d(var(--sun-x), calc(var(--sun-y) + var(--sun-lift)), 0);
  filter: drop-shadow(0 18px 28px rgba(148, 76, 0, 0.2));
  transition: filter 220ms ease-in-out;
  will-change: transform;
}

.faq-cta__sun::before {
  content: "";
  position: absolute;
  inset: -17px;
  z-index: -1;
  border-radius: inherit;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 242, 145, 0.72) 0 4deg, transparent 4deg 13deg);
  mask-image: radial-gradient(circle, transparent 0 47%, black 50% 68%, transparent 72%);
  opacity: 0.48;
  filter: blur(0.15px);
  transform-origin: 50% 50%;
  animation: faq-sun-rays-spin 46s linear infinite;
  transition: opacity 260ms ease-in-out;
}

.faq-cta__sun::after {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -2;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 237, 130, 0.46), rgba(255, 188, 27, 0.2) 44%, transparent 70%);
  filter: blur(7px);
  opacity: 0.62;
  animation: faq-sun-glow 5.8s ease-in-out infinite;
}

.faq-cta__sun span {
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 20%),
    radial-gradient(circle at 42% 37%, #fff08c 0 26%, #ffd245 52%, #f7a30b 78%, #de7c00 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 10px 10px 18px rgba(255, 255, 255, 0.2),
    inset -16px -18px 26px rgba(149, 78, 0, 0.2),
    0 0 0 9px rgba(255, 236, 111, 0.13),
    0 12px 24px rgba(108, 58, 0, 0.16);
  transform: translateZ(1px);
  animation: faq-sun-pulse 6.5s ease-in-out infinite;
}

.faq-cta__sun.is-sun-active {
  filter: drop-shadow(0 21px 30px rgba(148, 76, 0, 0.23));
}

.faq-cta__sun.is-sun-active::after {
  opacity: 0.66;
}

.faq-cta h3 {
  max-width: 300px;
  margin: 34px 0 22px;
  color: #fff;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.faq-cta__button {
  width: min(100%, 306px);
  margin-top: 0;
}

.faq-cta__mail {
  width: min(100%, 306px);
  min-height: 62px;
  margin-top: 22px;
  padding: 8px 8px 8px 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #151515;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -14px 22px rgba(255, 255, 255, 0.18),
    0 16px 34px rgba(25, 9, 36, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 200ms ease-in-out, border-color 200ms ease-in-out, background 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.faq-cta__mail:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -14px 22px rgba(255, 255, 255, 0.22),
    0 20px 40px rgba(25, 9, 36, 0.13);
}

.faq-cta__mail-icon {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.faq-cta__mail-icon {
  width: 34px;
  height: 34px;
  color: rgba(21, 21, 21, 0.74);
  background: rgba(21, 21, 21, 0.05);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.faq-cta__mail-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.faq-cta__mail-copy {
  min-width: 0;
}

.faq-cta__mail-copy span,
.faq-cta__mail-copy strong {
  display: block;
}

.faq-cta__mail-copy span {
  color: rgba(21, 21, 21, 0.9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.faq-cta__mail-copy strong {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(21, 21, 21, 0.58);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-cta__mail-arrow {
  width: 46px;
  height: 46px;
}

.faq-cta__mail:hover .faq-cta__mail-arrow {
  transform: translateX(3px);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-booking {
  position: relative;
  width: 100%;
  margin-top: 24px;
  padding: clamp(92px, 11vw, 150px) 0 clamp(14px, 1.7vw, 22px);
  overflow: hidden;
  color: #fff;
  background: #0d0d0e;
}

.contact-booking::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: max(18px, calc((100vw - 1160px) / 2 - 70px));
  top: 50%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(62, 88, 255, 0.34), rgba(125, 57, 255, 0.2) 34%, transparent 68%);
  filter: blur(46px);
  opacity: 0.72;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-booking__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  grid-template-areas:
    "copy calendar"
    "form calendar";
  gap: 20px 42px;
  align-items: start;
}

.contact-booking [data-contact-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
  transition-delay: var(--contact-reveal-delay, 0ms);
}

.contact-booking [data-contact-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-booking__copy {
  grid-area: copy;
  max-width: 680px;
  min-width: 0;
}

.contact-booking__kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.contact-booking__title {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contact-booking__title em {
  display: block;
  margin-top: 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 0.9;
  white-space: normal;
}

.contact-booking__subline {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.38;
}

.contact-form-card {
  grid-area: form;
  max-width: 620px;
  min-width: 0;
  min-height: clamp(590px, 43vw, 628px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 90px rgba(0, 0, 0, 0.22);
}

.contact-form-card__label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.contact-form {
  flex: 1;
  display: grid;
  align-content: space-between;
  gap: 13px;
}

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

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.contact-field span em {
  color: rgba(255, 255, 255, 0.44);
  font-style: normal;
  font-weight: 650;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background:
    linear-gradient(#151516, #151516) padding-box,
    linear-gradient(135deg, transparent, transparent) border-box;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 180ms ease-in-out, background 180ms ease-in-out, box-shadow 180ms ease-in-out;
}

.contact-field input {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
}

.contact-field textarea {
  min-height: 118px;
  padding: 15px 18px;
  border-radius: 24px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: transparent;
  background:
    linear-gradient(#151516, #151516) padding-box,
    linear-gradient(135deg, #2f73ff, #8d56ff) border-box;
  box-shadow: 0 0 0 3px rgba(86, 100, 255, 0.16);
}

.contact-field small {
  display: none;
  min-height: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.contact-field small:not(:empty) {
  display: block;
}

.contact-field.has-error input,
.contact-field.has-error textarea {
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-form__button {
  width: min(100%, 382px);
  justify-self: center;
  min-height: 58px;
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.7);
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.contact-form__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 #fff, 0 22px 44px rgba(0, 0, 0, 0.34);
}

.contact-form__button:hover .contact-form__arrow {
  transform: translateX(3px);
}

.contact-form__button strong {
  color: #030303;
  font-size: 16px;
  line-height: 1.08;
}

.contact-form__button small {
  color: rgba(3, 3, 3, 0.58);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.1;
}

.contact-form__arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-color: rgba(3, 3, 3, 0.08);
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.96), rgba(232, 232, 232, 0.78)),
    rgba(240, 240, 240, 0.9);
  box-shadow: inset 0 1px 0 #fff, 0 10px 22px rgba(0, 0, 0, 0.12);
}

.contact-form__arrow svg {
  display: block;
}

.contact-form__note {
  width: min(100%, 382px);
  justify-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.contact-form__note[data-state="error"] {
  color: rgba(255, 205, 205, 0.86);
}

.contact-form.is-success {
  align-content: center;
  justify-items: center;
  gap: 0;
}

.contact-form-success {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px 18px;
  color: #fff;
  background: transparent;
  text-align: center;
  overflow: visible;
}

.contact-form-success__icon {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #fff;
  isolation: isolate;
}

.contact-form-success__badge {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 50%;
  animation: booking-success-rays-spin 42s linear infinite;
}

.contact-form-success__check {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-success__label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-success > strong {
  max-width: 390px;
  color: #fff;
  font-size: clamp(27px, 2.4vw, 34px);
  font-weight: 850;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-form-success > strong span {
  display: block;
}

.contact-form-success > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
  text-wrap: balance;
}

.booking-card {
  position: relative;
  grid-area: calendar;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.booking-card__header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card__header h3 {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.booking-card__header span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.booking-card__body {
  position: relative;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.booking-card__embed {
  width: 100%;
  min-height: 664px;
  background: #171717;
}

.booking-card__embed.is-hidden {
  display: none;
}

.booking-card__fallback {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.booking-card__fallback[hidden] {
  display: none;
}

.booking-preview__button {
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.7);
  color: #030303;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 38px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.booking-preview__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 #fff, 0 22px 44px rgba(0, 0, 0, 0.34);
}

.booking-preview__button strong {
  color: #030303;
  font-size: 16px;
  line-height: 1.08;
}

.booking-preview__button small {
  color: rgba(3, 3, 3, 0.58);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.1;
}

.booking-preview__arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-color: rgba(3, 3, 3, 0.08);
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.96), rgba(232, 232, 232, 0.78)),
    rgba(240, 240, 240, 0.9);
  box-shadow: inset 0 1px 0 #fff, 0 10px 22px rgba(0, 0, 0, 0.12);
}

.booking-preview__button:hover .booking-preview__arrow {
  transform: translateX(3px);
}

.process-result__button,
.fit-panel__button,
.hero-card__call {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(72% 130% at 92% 0%, rgba(86, 151, 255, 0.07), transparent 58%),
    radial-gradient(58% 140% at 40% 112%, rgba(255, 92, 170, 0.045), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 48px rgba(19, 8, 20, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--liquid-glass-filter);
  -webkit-backdrop-filter: var(--liquid-glass-filter);
}

.process-result__button:hover,
.fit-panel__button:hover,
.hero-card__call:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    radial-gradient(72% 130% at 92% 0%, rgba(86, 151, 255, 0.085), transparent 58%),
    radial-gradient(58% 140% at 40% 112%, rgba(255, 92, 170, 0.055), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 58px rgba(19, 8, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

.hero-card__button,
.call-arrow,
.fit-panel__arrow,
.process-result__arrow,
.contact-form__button,
.contact-form__arrow,
.booking-preview__button,
.booking-preview__arrow,
.booking-details__success-button,
.benefits-controls button {
  position: relative;
  overflow: hidden;
  border-color: var(--liquid-glass-border);
  background: var(--liquid-glass-bg);
  box-shadow: var(--liquid-glass-shadow);
  backdrop-filter: var(--liquid-glass-filter);
  -webkit-backdrop-filter: var(--liquid-glass-filter);
}

.hero-card__button,
.contact-form__button,
.booking-preview__button,
.booking-details__success-button,
.benefits-controls button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66) 46%, rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 58px rgba(35, 24, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.32);
}

.hero-card__call::before,
.call-arrow::before,
.fit-panel__arrow::before,
.process-result__arrow::before,
.contact-form__button::before,
.contact-form__arrow::before,
.booking-preview__button::before,
.booking-preview__arrow::before,
.booking-details__success-button::before,
.benefits-controls button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: var(--liquid-glass-surface);
  opacity: 0.56;
  mix-blend-mode: screen;
}

.hero-card__call::after,
.call-arrow::after,
.fit-panel__arrow::after,
.process-result__arrow::after,
.contact-form__button::after,
.contact-form__arrow::after,
.booking-preview__button::after,
.booking-preview__arrow::after,
.booking-details__success-button::after,
.benefits-controls button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: var(--liquid-glass-highlight);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    inset 0 16px 24px rgba(255, 255, 255, 0.2);
  opacity: 0.5;
}

.hero-card__call > *,
.call-arrow > *,
.fit-panel__arrow > *,
.process-result__arrow > *,
.contact-form__button > *,
.contact-form__arrow > *,
.booking-preview__button > *,
.booking-preview__arrow > *,
.booking-details__success-button > *,
.benefits-controls button > * {
  position: relative;
  z-index: 1;
}

.hero-card__button:hover,
.contact-form__button:hover,
.booking-preview__button:hover,
.booking-details__success-button:hover,
.benefits-controls button:hover {
  background: var(--liquid-glass-bg);
  box-shadow:
    0 28px 68px rgba(35, 24, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.24);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(72, 72, 72, 0.95) 0%, rgba(5, 5, 5, 0.98) 58%, rgba(24, 24, 24, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 24px rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(82, 82, 82, 0.96) 0%, rgba(5, 5, 5, 0.98) 58%, rgba(24, 24, 24, 0.96) 100%);
}

.booking-preview {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(74% 44% at 96% 100%, rgba(88, 66, 255, 0.15), transparent 62%),
    #1b1b1c;
  box-shadow: 0 36px 88px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.booking-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-preview__top strong {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.booking-preview__nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
}

.booking-preview__nav button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.booking-preview__nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-preview__nav button:hover:not(:disabled) {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.booking-preview__nav button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.booking-preview__weekdays,
.booking-preview__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-preview__weekdays {
  gap: 5px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 850;
}

.booking-preview__weekdays span {
  text-align: center;
}

.booking-preview__days {
  gap: 5px;
}

.booking-preview__days span,
.booking-preview__days button {
  width: min(100%, 46px);
  height: 46px;
  justify-self: center;
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: default;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.booking-preview__days span.is-muted {
  color: rgba(255, 255, 255, 0.28);
}

.booking-preview__days button {
  position: relative;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.booking-preview__days button:hover {
  transform: translateY(-1px);
}

.booking-preview__days button:focus-visible,
.booking-preview__times button:focus-visible,
.booking-preview__format button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.booking-preview__days .is-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.booking-preview__days .is-fully-booked {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.booking-preview__days .is-selected {
  color: #050505;
  background: #fff;
}

.booking-preview__days .is-today::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.booking-preview__slots {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  color: #fff;
}

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

.booking-preview__slot-head > span:first-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.booking-preview__format {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.booking-preview__format button {
  min-height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.booking-preview__format button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.booking-preview__times {
  display: grid;
  gap: 8px;
}

.booking-preview__times p {
  margin: 0;
  padding: 18px 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.booking-preview__times button {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.booking-preview__times button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.booking-preview__times button:disabled,
.booking-preview__times button.is-unavailable {
  color: rgba(255, 255, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  cursor: not-allowed;
}

.booking-preview__times button:disabled:hover,
.booking-preview__times button.is-unavailable:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.booking-preview__times button.is-selected {
  color: #050505;
  border-color: #fff;
  background: #fff;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__button:disabled,
.booking-preview__button:disabled,
.booking-details__submit:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
}

.booking-html,
.booking-page {
  min-height: 100%;
  background: #0d0d0e;
}

.booking-page {
  min-height: 100vh;
  color: #fff;
  background: #0d0d0e;
}

.booking-page .site-header {
  margin-bottom: 0;
}

.booking-page .site-header .brand img {
  filter: invert(1) brightness(1.08);
}

.booking-page .site-header .nav-links a {
  color: #fff;
}

.booking-page .nav-shell {
  overflow: hidden;
}

.booking-page .site-header:not(.is-glass) .nav-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.booking-page .site-header:not(.is-glass) .nav-shell::before,
.booking-page .site-header:not(.is-glass) .nav-shell::after {
  opacity: 0;
}

.booking-page .nav-cta--back {
  min-width: 116px;
  border-color: rgba(255, 255, 255, 0.88);
  color: #050505;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.72), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 232, 232, 0.96) 58%, rgba(255, 255, 255, 0.98) 100%);
  text-align: center;
}

.booking-page__main {
  width: 100%;
  min-height: calc(100vh - 150px);
  padding: clamp(78px, 8vw, 118px) 0 clamp(72px, 7vw, 110px);
  background: transparent;
}

.booking-details {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.booking-details__copy {
  min-width: 0;
}

.booking-details__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.booking-details__copy h1 span {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
}

.booking-details__copy p:not(.contact-booking__kicker) {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  font-weight: 550;
  line-height: 1.42;
}

.booking-details__slot {
  width: min(100%, 460px);
  margin-top: 34px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-details__slot span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-details__slot strong {
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.12;
}

.booking-details__slot em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-style: normal;
  font-weight: 750;
}

.booking-details__card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.booking-details__form {
  display: grid;
  gap: 14px;
}

.booking-details__submit {
  margin-top: 10px;
}

.booking-details__note {
  width: 100%;
}

.booking-details__success {
  min-height: 410px;
  padding: 34px 20px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  overflow: visible;
}

.booking-details__success-icon {
  position: relative;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.booking-details__success-badge {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 50%;
  animation: booking-success-rays-spin 42s linear infinite;
}

.booking-details__success-check {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-details__success-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-details__success > strong {
  max-width: 390px;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 850;
  line-height: 1.04;
  text-wrap: balance;
}

.booking-details__success > strong span {
  display: block;
}

.booking-details__success > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
  text-wrap: balance;
}

.booking-details__success-button {
  width: min(100%, 360px);
  margin-top: 14px;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .booking-details__success-icon,
  .booking-details__success-badge,
  .contact-form-success__badge {
    animation: none;
  }
}

.booking-details__invalid {
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 22px;
  text-align: center;
}

.booking-details__invalid strong {
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.18;
}

.booking-details__return {
  width: min(100%, 360px);
  justify-self: center;
}

.booking-details__form[hidden],
.booking-details__invalid[hidden],
.booking-details__success[hidden] {
  display: none;
}

.legal-html,
.legal-page {
  min-height: 100%;
  background: #0d0d0e;
}

.legal-page {
  min-height: 100vh;
  color: #fff;
}

.legal-page .site-header {
  margin-bottom: 0;
}

.legal-page .site-header .brand img {
  filter: invert(1) brightness(1.08);
}

.legal-page .site-header .nav-links a {
  color: #fff;
}

.legal-page .site-header:not(.is-glass) .nav-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.legal-page .site-header:not(.is-glass) .nav-shell::before,
.legal-page .site-header:not(.is-glass) .nav-shell::after {
  opacity: 0;
}

.legal-page .nav-cta--back {
  min-width: 116px;
  border-color: rgba(255, 255, 255, 0.88);
  color: #050505;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(255, 255, 255, 0.72), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 232, 232, 0.96) 58%, rgba(255, 255, 255, 0.98) 100%);
  text-align: center;
}

.legal-page__main {
  width: 100%;
  min-height: calc(100vh - 134px);
  padding: clamp(82px, 8vw, 126px) 0 clamp(72px, 7vw, 108px);
}

.legal-document {
  width: min(100% - 56px, 920px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.legal-document__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-document__intro {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.46;
}

.legal-section {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.legal-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 850;
  line-height: 1.04;
}

.legal-section h3 {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 850;
}

.legal-section p,
.legal-section li,
.legal-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.58;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-address {
  font-style: normal;
}

.legal-placeholder {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(5, 5, 5, 0.86);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  vertical-align: baseline;
}

.legal-note {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.legal-footer {
  width: 100%;
  padding: 0 0 16px;
  color: rgba(255, 255, 255, 0.58);
  background: #0d0d0e;
}

.legal-footer__bar {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
  min-height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.legal-footer__brand {
  min-width: 0;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.2;
  white-space: nowrap;
  transition: color 180ms var(--ease);
}

.legal-footer__brand span {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 600;
}

.legal-footer__brand strong {
  color: inherit;
  font-size: 14px;
  font-weight: 850;
}

.legal-footer__nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.legal-footer__nav a {
  color: rgba(255, 255, 255, 0.56);
  transition: color 180ms var(--ease);
}

.legal-footer__nav a + a {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-footer a:hover {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 980px) {
  .references-v5 {
    width: min(100% - 36px, 760px);
  }

  .benefits {
    width: min(100% - 36px, 760px);
  }

  .process {
    width: min(100% - 36px, 760px);
  }

  .fit {
    width: min(100% - 36px, 760px);
  }

  .faq {
    width: min(100% - 36px, 760px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-list {
    width: 100%;
  }

  .faq-cta {
    position: relative;
    top: auto;
    width: min(100%, 430px);
    min-height: 430px;
    margin: 0 auto;
  }

  .process-heading h2 {
    font-size: 52px;
  }

  .process-timeline {
    gap: 16px;
  }

  .process-timeline::before {
    right: calc(25% - 43px);
  }

  .process-step__body {
    min-height: 326px;
    padding: 20px;
  }

  .process-step h3 {
    font-size: 20px;
  }

  .process-step p {
    font-size: 14px;
  }

  .process-result {
    grid-template-columns: 1fr;
  }

  .process-result > div > strong {
    font-size: 25px;
    white-space: normal;
  }

  .process-result__button {
    width: min(100%, 320px);
  }

  .fit-split {
    grid-template-columns: 1fr;
  }

  .fit-panel {
    min-height: auto;
  }

  .benefits-heading {
    text-align: left;
  }

  .benefit-card {
    flex-basis: min(260px, 42vw);
  }

  .reference-cases,
  .reference-support {
    grid-template-columns: 1fr;
  }

  .reference-support__head {
    min-height: 320px;
  }

  .contact-booking {
    padding: 92px 0 24px;
  }

  .contact-booking__inner {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "calendar"
      "form";
    gap: 22px;
  }

  .contact-booking::before {
    width: 480px;
    height: 480px;
    right: -160px;
    top: 46%;
  }

  .contact-booking__copy,
  .contact-form-card {
    max-width: none;
  }

  .booking-card {
    min-height: auto;
  }

  .booking-card__body,
  .booking-card__fallback {
    min-height: 0;
  }

  .booking-card__embed {
    min-height: 560px;
  }

  .booking-details {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .booking-details__copy h1 {
    font-size: 64px;
  }

  .booking-details__card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .references-v5 {
    width: min(100% - 28px, 430px);
    padding: 72px 0 104px;
  }

  .benefits {
    width: min(100% - 28px, 430px);
    padding: 14px 0 94px;
  }

  .process {
    width: min(100% - 28px, 430px);
    padding: 0 0 104px;
  }

  .fit {
    width: min(100% - 28px, 430px);
    padding: 0 0 104px;
  }

  .faq {
    width: min(100% - 28px, 430px);
    padding: 0 0 112px;
  }

  .process-heading {
    margin-bottom: 38px;
  }

  .process-heading h2 {
    font-size: 42px;
    line-height: 1.07;
  }

  .process-heading p:last-child {
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .process-timeline::before {
    left: 22px;
    right: auto;
    top: 26px;
    bottom: 26px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, rgba(3, 3, 3, 0.14) 0 7px, transparent 7px 16px);
  }

  .process-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .process-step__number {
    width: 52px;
    height: 52px;
    font-size: 12px;
    transform: translateX(-4px);
  }

  .process-step__body {
    min-height: 0;
    margin-top: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .process-step h3 {
    font-size: 20px;
  }

  .process-step p {
    font-size: 14px;
  }

  .process-step__duration {
    margin-top: 18px;
  }

  .process-result {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .process-result > div > strong {
    font-size: 23px;
  }

  .process-result__button {
    min-width: 0;
    width: 100%;
    min-height: 62px;
    padding: 8px 8px 8px 18px;
    white-space: normal;
    text-align: left;
  }

  .fit-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .fit-heading h2 {
    font-size: 42px;
    line-height: 1.07;
  }

  .fit-heading p:last-child {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .fit-split {
    gap: 16px;
  }

  .fit-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .fit-main-list,
  .fit-quiet-list {
    margin-top: 28px;
  }

  .fit-main-row {
    gap: 10px;
  }

  .fit-main-row span {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .fit-main-row p,
  .fit-quiet-list li {
    font-size: 14px;
  }

  .fit-panel__button {
    width: 100%;
    min-height: 62px;
    padding: 8px 8px 8px 18px;
    white-space: normal;
    text-align: left;
  }

  .fit-quiet-note {
    margin-top: 28px;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .faq-heading .section-kicker {
    margin-bottom: 14px;
  }

  .faq-heading h2 {
    font-size: 58px;
    line-height: 0.9;
  }

  .faq-heading h2 em {
    margin-right: 8px;
  }

  .faq-heading p:last-child {
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item {
    border-bottom-color: rgba(3, 3, 3, 0.09);
  }

  .faq-question {
    min-height: 58px;
    padding: 17px 0;
    gap: 18px;
  }

  .faq-question span:first-child {
    font-size: 18px;
    line-height: 1.18;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-answer__inner {
    padding: 0 34px 18px 0;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-cta {
    width: 100%;
    min-height: 390px;
    padding: 26px;
    border-radius: 18px;
  }

  .faq-cta__sun {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 14px 24px rgba(148, 76, 0, 0.18));
  }

  .faq-cta__sun::before {
    inset: -12px;
  }

  .faq-cta h3 {
    max-width: 280px;
    margin: 30px 0 20px;
    font-size: 34px;
  }

  .faq-cta__button {
    min-height: 58px;
    font-size: 18px;
  }

  .faq-cta__mail {
    width: 100%;
  }

  .contact-booking {
    margin-top: 4px;
    padding: 76px 0 20px;
  }

  .contact-booking__inner {
    width: min(100% - 28px, 430px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "calendar"
      "form";
    gap: 20px;
  }

  .contact-booking::before {
    width: 360px;
    height: 360px;
    right: -170px;
    top: 44%;
  }

  .contact-booking__copy,
  .contact-form-card {
    max-width: none;
  }

  .contact-booking__kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .contact-booking__title {
    font-size: 46px;
    line-height: 0.98;
  }

  .contact-booking__title em {
    margin-top: 10px;
    font-size: 30px;
  }

  .contact-booking__subline {
    margin-top: 22px;
    font-size: 17px;
  }

  .contact-form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-field input {
    min-height: 50px;
  }

  .contact-field textarea {
    min-height: 104px;
  }

  .booking-card {
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }

  .booking-card__header {
    min-height: 54px;
    padding-bottom: 12px;
  }

  .booking-card__header h3 {
    font-size: 16px;
  }

  .booking-card__body {
    overflow: visible;
    border-radius: 0;
  }

  .booking-card__body,
  .booking-card__fallback {
    min-height: 0;
  }

  .booking-card__embed {
    min-height: 520px;
  }

  .booking-page__main {
    padding: 58px 0 72px;
  }

  .booking-page .nav-links {
    display: none;
  }

  .booking-details {
    width: min(100% - 28px, 430px);
    gap: 24px;
  }

  .booking-details__copy h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  .booking-details__copy p:not(.contact-booking__kicker) {
    margin-top: 20px;
    font-size: 16px;
  }

  .booking-details__slot {
    margin-top: 24px;
    padding: 15px 0;
  }

  .booking-details__slot strong {
    font-size: 18px;
  }

  .booking-details__card {
    padding: 18px;
    border-radius: 22px;
  }

  .booking-details__form .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-details__submit {
    width: 100%;
  }

  .legal-footer {
    padding-bottom: 14px;
  }

  .legal-footer__bar {
    width: min(100% - 28px, 430px);
    min-height: 46px;
    padding: 0 2px;
    gap: 10px;
    font-size: 11px;
  }

  .legal-footer__brand strong {
    font-size: 12px;
  }

  .legal-footer__nav a + a {
    margin-left: 10px;
    padding-left: 10px;
  }

  .benefits-heading {
    margin-bottom: 34px;
  }

  .benefits-heading h2 {
    font-size: 42px;
    line-height: 1.07;
  }

  .benefits-heading p:last-child {
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
  }

  .benefits-track {
    gap: 16px;
    margin-left: -2px;
    margin-right: -2px;
    padding: 0 2px 8px;
  }

  .benefit-card {
    flex-basis: min(276px, 82vw);
  }

  .benefit-art {
    height: 188px;
    border-radius: 16px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }

  .benefits-controls {
    margin-top: 20px;
  }

  .references-v5__heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .references-v5__heading h2 {
    font-size: 46px;
  }

  .references-v5__heading p:last-child {
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .reference-cases {
    gap: 16px;
  }

  .reference-case {
    min-height: auto;
    padding: 10px;
    grid-template-rows: 322px auto;
    border-radius: 28px;
  }

  .reference-case__visual {
    border-radius: 22px;
  }

  .reference-browser {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 22px;
  }

  .reference-browser__bar {
    height: 30px;
  }

  .reference-browser img {
    height: calc(100% - 30px);
  }

  .reference-case__body {
    padding: 22px 10px 8px;
  }

  .reference-case__body h3 {
    font-size: 30px;
  }

  .reference-case__body p {
    font-size: 15px;
  }

  .case-footer {
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    min-height: 64px;
  }

  .case-footer__chips {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
  }

  .case-footer__chips span {
    min-height: 34px;
    padding: 0 12px;
  }

  .case-footer__button {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .case-footer__notice {
    position: fixed;
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 16px;
    width: auto;
    transform: translateY(12px) scale(0.98);
    transform-origin: center bottom;
  }

  .case-footer.is-open .case-footer__notice {
    transform: translateY(0) scale(1);
  }

  .reference-support {
    margin-top: 38px;
    padding: 10px;
    border-radius: 28px;
  }

  .reference-support__head {
    min-height: 330px;
    padding: 22px;
    border-radius: 22px;
  }

  .reference-support__head h3 {
    font-size: 30px;
  }

  .support-projects {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-projects article {
    min-height: 124px;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    border-radius: 20px;
  }

  .support-projects img {
    width: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .support-projects strong {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-case:hover,
  .reference-case:hover .reference-browser,
  .support-projects article:hover,
  .process-step:hover {
    transform: none;
  }
}
