:root {
  --bg: #060504;
  --bg-2: #0d0b09;
  --panel: rgba(18, 16, 14, 0.72);
  --panel-strong: rgba(24, 21, 18, 0.9);
  --ink: #f8f1e7;
  --muted: rgba(248, 241, 231, 0.72);
  --soft: rgba(248, 241, 231, 0.52);
  --line: rgba(248, 241, 231, 0.14);
  --gold: #d7b46a;
  --gold-2: #a97a3b;
  --max: 1160px;
  --content: 1080px;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --section-py: clamp(80px, 11vw, 132px);
  --section-py-compact: clamp(48px, 6vw, 72px);
  --section-divider: linear-gradient(
    90deg,
    transparent,
    rgba(248, 241, 231, 0.16) 18%,
    rgba(248, 241, 231, 0.16) 82%,
    transparent
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: -8%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 52% at 18% 8%, rgba(215, 180, 106, 0.11), transparent 58%),
    radial-gradient(ellipse 58% 44% at 82% 14%, rgba(169, 122, 59, 0.07), transparent 52%),
    radial-gradient(ellipse 64% 38% at 52% 92%, rgba(215, 180, 106, 0.06), transparent 54%),
    linear-gradient(180deg, #050403 0%, #0a0807 48%, #050403 100%);
  animation: ambient-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1.2%, -0.8%, 0) scale(1.015);
  }

  100% {
    transform: translate3d(-0.8%, 1%, 0) scale(1.025);
  }
}

main {
  position: relative;
  z-index: 0;
}

.site-band {
  position: relative;
  isolation: isolate;
}

.site-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  height: 1px;
  transform: translateX(-50%);
  background: var(--section-divider);
  pointer-events: none;
}

.hero + .site-band::before {
  display: none;
}

.site-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-band--alt::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.012) 0%,
    rgba(255, 255, 255, 0.028) 50%,
    rgba(255, 255, 255, 0.012) 100%
  );
}

.site-band--gold::after {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(215, 180, 106, 0.045) 52%,
    transparent 100%
  );
}

.site-band--cta::after {
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(215, 180, 106, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.03));
}

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

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

.icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--gold {
  color: var(--gold);
}

.icon--soft {
  color: var(--soft);
}

.icon--step {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.88;
}

.icon--inline {
  display: inline-block;
  vertical-align: -0.18em;
  width: 1em;
  height: 1em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main > section[id],
main > section[id] ~ section {
  scroll-margin-top: 84px;
}

.glass-header {
  --header-pad-x: clamp(16px, 4vw, 48px);
  --header-pad-y: 12px;
  --brand-reserve: clamp(178px, 51vw, 260px);
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: calc(54px + (var(--header-pad-y) * 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: var(--header-pad-y) var(--header-pad-x);
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
  transition:
    background 280ms ease,
    backdrop-filter 280ms ease,
    box-shadow 280ms ease;
}

.glass-header.is-scrolled {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  box-shadow: 0 1px 0 rgba(248, 241, 231, 0.06);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span:last-child {
  color: var(--ink);
}

.nav-menu {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  align-self: center;
  z-index: 32;
  overflow: visible;
}

.menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
  background: rgba(8, 7, 6, 0.42);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 0 0 1px rgba(248, 241, 231, 0.06);
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.menu-toggle span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

.menu-toggle:focus-visible,
.brand:focus-visible,
.nav-menu__links a:focus-visible,
.button:focus-visible,
.scroll-cue:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav-menu.is-open .menu-toggle {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
}

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

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

.glass-header:not(.is-scrolled) .menu-toggle {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-color: rgba(248, 241, 231, 0.34);
}

.glass-header:not(.is-scrolled) .menu-toggle[aria-expanded="true"] {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.nav-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(220px, calc(100vw - (var(--header-pad-x) * 2) - var(--brand-reserve) - 8px));
  min-width: 168px;
  padding: 5px 58px 8px 10px;
  border: 1px solid rgba(248, 241, 231, 0.14);
  border-radius: 22px;
  border-top-right-radius: 27px;
  background:
    linear-gradient(155deg, rgba(248, 241, 231, 0.08) 0%, transparent 42%),
    rgba(10, 8, 7, 0.88);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transform-origin: top right;
  overflow: hidden;
  will-change: opacity, transform;
  contain: layout style paint;
}

.nav-menu__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 62% 38%, rgba(248, 241, 231, 0.22), transparent 68%);
  pointer-events: none;
}

.nav-menu.is-open {
  z-index: 34;
}

.nav-menu__panel[hidden] {
  display: none;
}

.nav-menu__panel:not([hidden]) {
  animation: menu-open 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nav-menu__panel.is-closing {
  animation: menu-close 200ms ease both;
  pointer-events: none;
}

.nav-menu__links {
  display: grid;
  gap: 0;
}

.nav-menu__links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
  padding: 0 14px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-menu__links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: scale(0.28);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes menu-close {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.28);
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-drop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

.brand,
.nav-menu {
  animation: fade-drop 520ms ease both;
}

.nav-menu {
  animation-delay: 80ms;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/theo-hero-maldives.png") center / cover no-repeat;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.045);
  animation: hero-settle 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.32) 0%, rgba(5, 4, 3, 0.08) 28%, rgba(5, 4, 3, 0.78) 78%, #060504 100%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.22) 48%, rgba(5, 4, 3, 0.36) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) 0 clamp(104px, 15vh, 136px);
}

.hero-inner .eyebrow,
.hero h1 {
  opacity: 0;
  animation: fade-rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-inner .eyebrow {
  animation-delay: 220ms;
}

.hero h1 {
  animation-delay: 340ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(215, 180, 106, 0.15), var(--gold));
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  width: min(48px, 10vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, 0.55));
}

.section-heading .eyebrow::after {
  background: linear-gradient(90deg, rgba(215, 180, 106, 0.55), transparent);
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 9.5vw, 138px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.hero h1 {
  padding-top: 0.04em;
}

h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 760;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  gap: 10px;
  color: #120e08;
  background: linear-gradient(135deg, #f6dc9d, var(--gold) 72%, #b7823e);
  box-shadow: 0 18px 38px rgba(215, 180, 106, 0.28);
}

.button .icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  color: rgba(248, 241, 231, 0.82);
}

.scroll-cue .icon {
  width: 22px;
  height: 22px;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

.scroll-cue .icon--ghost {
  position: absolute;
  opacity: 0.34;
  animation-delay: 0.45s;
  translate: 0 10px;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

.logo-strip {
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
  padding: var(--section-py-compact) 0 clamp(36px, 5vw, 56px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.logo-strip p::before,
.logo-strip p::after {
  width: min(72px, 14vw);
  height: 1px;
  content: "";
  background: rgba(248, 241, 231, 0.12);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: stretch;
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
}

.logo-row a,
.logo-row span {
  position: relative;
  height: 52px;
  min-height: 52px;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.8vw, 52px);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  padding: 0 8px;
  opacity: 0.74;
  transition: opacity 160ms ease, transform 160ms ease;
}

.logo-row a:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.logo-strip .logo-card {
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-row a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.logo-row img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.logo-card--strgf img {
  height: 42px;
  max-width: 58px;
}

.logo-card--business img {
  height: 20px;
  max-width: 168px;
  filter: invert(1) brightness(1.1);
}

.logo-card--blick img {
  height: 26px;
  max-width: 128px;
}

.logo-card--yahoo img {
  height: 22px;
  max-width: 136px;
  filter: brightness(0) invert(1);
}

.reveal,
.reveal-child {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal.scroll-target,
.reveal-child.scroll-target {
  opacity: 1;
  transform: none;
  transition: none;
}

.logo-strip.reveal .logo-card {
  opacity: 0;
  transform: translateY(8px);
}

.logo-strip.reveal.is-visible .logo-card,
.logo-strip .logo-card.reveal-child.is-visible {
  opacity: 0.74;
  transform: translateY(0);
}

.logo-strip.reveal.is-visible .logo-card.reveal-child:nth-child(2),
.logo-strip .logo-card.reveal-child.is-visible:nth-child(2) {
  transition-delay: 70ms;
}

.logo-strip.reveal.is-visible .logo-card.reveal-child:nth-child(3),
.logo-strip .logo-card.reveal-child.is-visible:nth-child(3) {
  transition-delay: 120ms;
}

.logo-strip.reveal.is-visible .logo-card.reveal-child:nth-child(4),
.logo-strip .logo-card.reveal-child.is-visible:nth-child(4) {
  transition-delay: 170ms;
}

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

.logo-subline {
  margin-top: clamp(38px, 6vw, 70px);
}

.proof-bar {
  width: min(var(--content), calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 0;
  border-bottom: 0;
}

.proof-bar article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 88px;
  padding: 4px clamp(14px, 2.2vw, 28px);
  border: 0;
  border-left: 1px solid rgba(248, 241, 231, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.proof-bar article:first-child {
  border-left: 0;
}

.proof-stat-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  margin-bottom: 10px;
}

.proof-stat-head .stat-number {
  margin-bottom: 0;
}

.proof-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.proof-stat-icon {
  width: clamp(20px, 2.2vw, 26px);
  height: clamp(20px, 2.2vw, 26px);
  color: rgba(248, 241, 231, 0.62);
}

.proof-bar .stat-number {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.proof-bar .stat-plus {
  color: #6ebf96;
}

.proof-bar p {
  margin: 0;
  max-width: 13.5em;
  color: rgba(248, 241, 231, 0.5);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-py) 0;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 96px);
}

.intro-grid {
  align-items: start;
}

.contact {
  align-items: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.section-copy,
.contact-copy p,
.video-copy p {
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.62;
}

.section-copy p:last-child,
.contact-copy p:last-child,
.video-copy p:last-child {
  margin-bottom: 0;
}

.contact-copy h2 {
  line-height: 1.06;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.video-section {
  padding: var(--section-py) 0;
  background: transparent;
}

.video-shell {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.72fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
  margin: 0 auto;
}

.video-sticky {
  width: 100%;
  min-height: 0;
}

.video-copy {
  padding-top: 6px;
}

.video-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  margin-top: 0;
  margin-bottom: 20px;
}

.video-copy p {
  margin-bottom: 0;
}

.video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #050403;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

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

.video-poster.is-playing::after {
  display: none;
}

.video-poster:has(.video-player) {
  cursor: pointer;
}

.video-control-toggle {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 0;
  background: rgba(8, 6, 4, 0.48);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.video-control-toggle:hover {
  background: rgba(12, 10, 8, 0.62);
  border-color: rgba(215, 180, 106, 0.42);
}

.video-control-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.video-control-toggle:active {
  transform: scale(0.96);
}

.video-play-toggle {
  left: 14px;
}

.video-mute-toggle {
  right: 14px;
}

.video-play-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.video-play-icon--pause {
  display: none;
}

.video-play-toggle.is-playing .video-play-icon--play {
  display: none;
}

.video-play-toggle.is-playing .video-play-icon--pause {
  display: block;
}

.video-mute-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.video-mute-icon--unmuted {
  display: none;
}

.video-mute-toggle:not(.is-muted) .video-mute-icon--muted {
  display: none;
}

.video-mute-toggle:not(.is-muted) .video-mute-icon--unmuted {
  display: block;
}

.video-requirement {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 15px;
}

.video-requirement strong {
  color: var(--ink);
}

.video-embed::after {
  display: none;
}

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

.section-lead {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

.referenzen-section .section-heading {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  max-width: min(640px, 100%);
  margin-inline: auto;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.referenzen-card {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(248, 241, 231, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 6, 4, 0.4);
  box-shadow: var(--shadow);
}

.referenzen-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ── Referenzen IG marquee ── */

.referenzen-marquee-wrap {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(16px, 3vw, 24px);
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.referenzen-marquee-wrap::before,
.referenzen-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(24px, 5vw, 72px);
  pointer-events: none;
}

.referenzen-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}

.referenzen-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2), transparent);
}

.referenzen-marquee {
  overflow: hidden;
  padding: 6px 0;
}

.referenzen-marquee__track {
  display: flex;
  width: max-content;
  animation: referenzen-marquee-scroll 36s linear infinite;
  will-change: transform;
}

.referenzen-marquee-wrap:hover .referenzen-marquee__track {
  animation-play-state: paused;
}

.referenzen-marquee__group {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  padding-right: clamp(12px, 2vw, 18px);
  flex-shrink: 0;
}

@keyframes referenzen-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

a.ig-screenshot-card-link {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: calc(var(--radius) + 2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.ig-screenshot-card-link:hover .ig-screenshot-card,
a.ig-screenshot-card-link:focus-visible .ig-screenshot-card {
  border-color: rgba(248, 241, 231, 0.28);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(248, 241, 231, 0.08);
}

a.ig-screenshot-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ig-screenshot-card {
  width: clamp(280px, 34vw, 420px);
  margin: 0;
  border: 1px solid rgba(248, 241, 231, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background: #000;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(248, 241, 231, 0.05);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ig-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860 / 182;
  object-fit: cover;
  object-position: left center;
}

.ig-profile-card {
  flex: 0 0 auto;
  width: clamp(248px, 28vw, 300px);
  padding: clamp(14px, 2vw, 18px) clamp(14px, 2.2vw, 20px) clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(248, 241, 231, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(165deg, rgba(28, 24, 20, 0.96) 0%, rgba(10, 8, 6, 0.98) 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(248, 241, 231, 0.06);
  overflow: hidden;
}

.ig-profile-card__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248, 241, 231, 0.08);
}

.ig-profile-card__ig-logo {
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.55;
  background:
    radial-gradient(circle at 30% 108%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(248, 241, 231, 0.08);
}

.ig-profile-card__header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(14px, 2.2vw, 18px);
}

.ig-profile-card__avatar {
  flex: 0 0 auto;
  width: clamp(52px, 8vw, 64px);
  height: clamp(52px, 8vw, 64px);
  border-radius: 50%;
  object-fit: cover;
}

.ig-profile-card__meta {
  min-width: 0;
}

.ig-profile-card__name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.ig-profile-card__name {
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-profile-card__verified {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #3897f0;
}

.ig-profile-card__handle {
  display: block;
  color: var(--soft);
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.3;
}

.ig-profile-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: clamp(12px, 2vw, 16px);
  border-top: 1px solid rgba(248, 241, 231, 0.1);
}

.ig-profile-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.ig-profile-card__stat strong {
  color: var(--ink);
  font-size: clamp(13px, 1.45vw, 15px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ig-profile-card__stat span {
  color: var(--soft);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ig-profile-card__stat--followers strong {
  color: var(--gold);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  text-shadow: 0 0 24px rgba(215, 180, 106, 0.28);
}

.ig-profile-card__stat--followers span {
  color: rgba(215, 180, 106, 0.72);
  font-weight: 600;
}

.referenzen-marquee-caption {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}

.referenzen-names {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.referenzen-names p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.referenzen-names strong {
  color: var(--soft);
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.88fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.about-copy h2 {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.about-text p {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.68;
}

.about-text p:last-child {
  margin-bottom: 0;
}

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

.about-gallery .gallery-item--feature {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.about-gallery .gallery-item {
  aspect-ratio: 4 / 5;
}

.partner-section .section-heading {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.partner-section {
  overflow-x: clip;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
  width: 100%;
  min-width: 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  width: 100%;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(12, 10, 8, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: #f7f4ef;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.partner-card--placeholder {
  background: rgba(247, 244, 239, 0.92);
}

.partner-name {
  margin: 0;
  color: #12100d;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.partner-video {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #0c0a08;
}

.partner-video-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.partner-video-cover--blur {
  filter: blur(20px) brightness(0.5);
  transform: scale(1.14);
}

.partner-video.is-playing .partner-video-cover {
  opacity: 0;
}

.partner-video.partner-plyr > .plyr {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  --plyr-color-main: var(--gold);
  --plyr-video-background: #0c0a08;
  --plyr-menu-background: rgba(8, 6, 4, 0.96);
  --plyr-menu-color: #f8f1e7;
  --plyr-font-family: inherit;
  --plyr-font-size-time: 11px;
  --plyr-control-icon-size: 16px;
  --plyr-control-spacing: 8px;
  --plyr-range-fill-background: var(--gold);
  --plyr-range-track-background: rgba(248, 241, 231, 0.18);
  --plyr-video-controls-background: linear-gradient(180deg, transparent 0%, rgba(6, 5, 4, 0.58) 100%);
}

.partner-video.partner-plyr .plyr__video-wrapper {
  height: 100%;
  background: #0c0a08;
}

.partner-video--portrait.partner-plyr .plyr__video-wrapper {
  background: transparent;
}

.partner-video.partner-plyr .plyr__poster {
  background-size: cover;
  background-position: center;
}

.partner-video:not(.is-playing).partner-plyr .plyr__poster {
  opacity: 1;
}

.partner-video:not(.partner-video--portrait).partner-plyr video {
  object-fit: cover;
}

.partner-video.partner-plyr .plyr__control--overlaid {
  background: rgba(8, 6, 4, 0.58);
  border: 1px solid rgba(215, 180, 106, 0.28);
  color: #f8f1e7;
}

.partner-video.partner-plyr .plyr__control--overlaid:hover {
  background: rgba(16, 13, 10, 0.78);
}

.partner-video.partner-plyr .plyr__controls {
  padding: 6px 8px 5px;
  border-top: none;
}

.partner-video:not(.is-playing).partner-plyr .plyr__controls {
  opacity: 0;
  pointer-events: none;
}

.partner-video.partner-plyr .plyr__control {
  color: rgba(248, 241, 231, 0.92);
}

.partner-video.partner-plyr .plyr__control:hover {
  background: rgba(215, 180, 106, 0.14);
  color: #fff;
}

.partner-video.partner-plyr .plyr__control:focus-visible,
.partner-video.partner-plyr .plyr__control--overlaid:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.partner-video.partner-plyr .plyr__progress__buffer {
  color: rgba(248, 241, 231, 0.22);
}

.partner-video video::-webkit-media-controls,
.partner-video video::-webkit-media-controls-enclosure {
  display: none !important;
}

@media (max-width: 640px) {
  .partner-video.partner-plyr .plyr__volume {
    display: none;
  }
}

@media (min-width: 881px) {
  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.partner-video--portrait {
  aspect-ratio: 16 / 9;
  isolation: isolate;
}

.partner-video--portrait .partner-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(20px) brightness(0.5);
  transform: scale(1.14);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.partner-video--portrait.is-playing .partner-video-bg {
  opacity: 1;
}

.partner-video--portrait.partner-plyr .plyr video {
  object-fit: contain;
  object-position: center;
}

.partner-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.partner-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.partner-badge {
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f8f1e7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.partner-ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  color: #12100d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.partner-ig-link:hover {
  color: #8a6a2f;
}

.partner-ig-link--placeholder {
  color: rgba(18, 16, 13, 0.45);
  cursor: default;
  pointer-events: none;
}

.partner-ig-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.partner-placeholder-copy {
  margin: 0;
  color: rgba(18, 16, 13, 0.62);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.video-copy .button {
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 820;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover .icon,
.text-link:focus-visible .icon {
  transform: translateX(3px);
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.steps,
.fit-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.steps article,
.fit-lists article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(248, 241, 231, 0.08);
  border-radius: var(--radius);
  background: rgba(12, 10, 8, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.fit-lists article {
  padding: clamp(26px, 3.5vw, 40px);
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.step-meta {
  margin-bottom: 12px;
}

.steps p,
.fit-lists li {
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(16px, 1.45vw, 18px);
}

.gallery-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-py) 0;
}

.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.gallery-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gallery-instagram {
  color: var(--soft);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.gallery-instagram:hover {
  color: var(--gold);
}

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

.gallery-item {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:not(.gallery-item--placeholder):hover img {
  transform: scale(1.04);
}

.gallery-item--placeholder img {
  object-fit: fill;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (min-width: 881px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

.fit-lists {
  margin-top: 0;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.fit-lists article h3 {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.fit-lists li span {
  flex: 1;
  min-width: 0;
}

.fit-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-lists li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fit-lists li .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.fit-list--yes .icon {
  color: var(--gold);
}

.fit-list--no .icon {
  color: rgba(248, 241, 231, 0.34);
}

.fit-lists li + li {
  margin-top: 10px;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3vw, 34px);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(248, 241, 231, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.lead-form-fields > .button {
  margin-top: 4px;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 241, 231, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 16px;
  outline: none;
}

input {
  min-height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 15px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 241, 231, 0.38);
}

input:focus,
textarea:focus {
  border-color: rgba(215, 180, 106, 0.64);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.12);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.form-status {
  min-height: 20px;
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

.lead-form.is-submitting .lead-form-fields {
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 180ms ease;
}

.lead-form.is-success .lead-form-fields {
  display: none !important;
}

.lead-form:not(.is-success) .form-success {
  display: none !important;
}

.lead-form.is-error .form-status {
  color: #f3a6a6;
}

.button.primary:disabled,
.button.primary.is-loading {
  cursor: wait;
  opacity: 0.92;
}

.button.primary.is-loading .btn-label {
  display: none !important;
}

.button.primary:not(.is-loading) .btn-loading {
  display: none !important;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(18, 14, 8, 0.18);
  border-top-color: #120e08;
  border-radius: 50%;
  animation: form-spin 700ms linear infinite;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px) 0 8px;
  text-align: center;
}

.form-success-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
}

.form-success-text {
  margin: 0;
  max-width: 34ch;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.55;
}

.success-check {
  width: 72px;
  height: 72px;
}

.success-check-circle {
  stroke: #5fd38d;
  stroke-width: 2.5;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: success-circle 520ms ease forwards;
}

.success-check-mark {
  stroke: #5fd38d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: success-mark 320ms 420ms ease forwards;
}

@keyframes success-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-mark {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-spinner {
    animation: none;
  }

  .success-check-circle,
  .success-check-mark {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.footer {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(80px, 11vw, 132px) auto 0;
  padding: 0 0 clamp(56px, 8vw, 84px);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, calc(100% - 36px));
  height: 1px;
  transform: translateX(-50%);
  background: var(--section-divider);
}

.footer-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 44px);
  align-items: end;
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid rgba(248, 241, 231, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(18, 16, 14, 0.5);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.footer-hero__copy {
  min-width: 0;
}

.footer-hero .eyebrow {
  margin-bottom: 14px;
}

.footer-hero__title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.footer-hero__title-tablet,
.footer-hero__title-mobile,
.footer-hero__title-line {
  display: none;
}

.footer-hero__title-line + .footer-hero__title-line {
  margin-top: 0.05em;
}

.footer-hero__title-desktop {
  display: inline;
}

.footer-hero__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.15fr 0.85fr;
  gap: clamp(36px, 5.5vw, 64px);
  margin-top: clamp(52px, 7vw, 80px);
  padding: clamp(44px, 5.5vw, 60px) clamp(4px, 1.5vw, 12px);
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-grid h3 .icon--footer-heading {
  width: 14px;
  height: 14px;
  color: var(--muted);
  opacity: 0.72;
  stroke-width: 1.75;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.footer-grid > div > :last-child {
  margin-bottom: 0;
}

.footer-nachweise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nachweise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-nachweise-list .icon {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  opacity: 0.72;
}

.footer-nachweise-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-nachweise-list strong {
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -0.01em;
}

.footer-link {
  display: block;
  transition: color 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--ink);
}

.legal-footer .footer-grid {
  margin-top: 0;
  padding-top: clamp(32px, 5vw, 48px);
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row a {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.social-row a .icon {
  width: 20px;
  height: 20px;
}

.social-row a:hover,
.social-row a:focus-visible {
  color: var(--gold);
  border-color: rgba(215, 180, 106, 0.34);
  background: rgba(215, 180, 106, 0.08);
  transform: translateY(-1px);
}

.social-row a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  width: max-content;
  max-width: 240px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(10, 9, 8, 0.92);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: 160ms ease;
  font-size: 12px;
  font-weight: 700;
  white-space: normal;
}

.social-row a:hover::after,
.social-row a:focus-visible::after {
  transform: translate(-50%, 0);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 4.5vw, 44px);
  padding-top: clamp(32px, 4vw, 40px);
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 70px;
}

.legal-page h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 10vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: none;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
  text-wrap: balance;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 36px);
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-page address {
  font-style: normal;
}

.legal-page ul {
  margin: 0;
  padding-left: 20px;
}

.legal-page a {
  color: var(--ink);
  font-weight: 800;
}

@media (min-width: 881px) {
  .scroll-cue {
    bottom: 36px;
  }

  .text-link {
    margin-top: 24px;
  }

  .video-sticky {
    position: sticky;
    top: 108px;
    align-self: start;
    height: fit-content;
  }

  .fit-lists {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 32px);
  }
}

@media (max-width: 880px) {
  .glass-header {
    --header-pad-x: clamp(14px, 4vw, 24px);
    --header-pad-y: 12px;
    min-height: calc(56px + (var(--header-pad-y) * 2));
  }

  .nav-menu__panel {
    width: min(220px, calc(100vw - (var(--header-pad-x) * 2) - var(--brand-reserve) - 8px));
    border-radius: 20px;
    border-top-right-radius: 27px;
  }

  .nav-menu__links a {
    min-height: 44px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.1) 0%, rgba(5, 4, 3, 0.16) 32%, rgba(5, 4, 3, 0.82) 70%, #060504 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.34), rgba(5, 4, 3, 0.18));
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding: clamp(108px, 28svh, 148px) 0 clamp(68px, 12svh, 84px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.4vw, 60px);
    line-height: 0.92;
    letter-spacing: -0.01em;
  }

  h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .proof-bar,
  .about-grid,
  .referenzen-grid,
  .video-shell,
  .contact,
  .footer-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 24px);
    overflow-x: clip;
  }

  .partner-card {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .about-gallery .gallery-item--feature {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .referenzen-grid {
    gap: clamp(12px, 3vw, 16px);
    margin-bottom: clamp(20px, 5vw, 28px);
  }

  a.ig-screenshot-card-link,
  .ig-screenshot-card {
    width: clamp(260px, 78vw, 360px);
  }

  .ig-profile-card {
    width: clamp(220px, 72vw, 280px);
  }

  .referenzen-marquee-wrap {
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
  }

  .contact-funnel-entry {
    padding-top: clamp(20px, 5vw, 36px);
    margin-inline: auto;
    width: 100%;
  }

  .logo-strip,
  .proof-bar,
  .section,
  .video-shell,
  .gallery-section,
  .footer {
    width: min(var(--max), calc(100% - 28px));
  }

  main > section[id],
  main > section[id] ~ section {
    scroll-margin-top: 84px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section {
    padding: clamp(72px, 14vw, 96px) 0;
  }

  .footer {
    margin-top: clamp(80px, 16vw, 112px);
    padding-bottom: 56px;
  }

  .contact.site-band--cta {
    padding-bottom: clamp(48px, 10vw, 72px);
  }

  .footer-hero {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    padding: clamp(24px, 5.5vw, 32px) clamp(20px, 4.5vw, 28px);
    border-color: rgba(215, 180, 106, 0.14);
    background:
      radial-gradient(ellipse 120% 80% at 50% 0%, rgba(215, 180, 106, 0.1), transparent 58%),
      linear-gradient(160deg, rgba(215, 180, 106, 0.05), rgba(255, 255, 255, 0.02)),
      rgba(14, 12, 10, 0.78);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(248, 241, 231, 0.06);
  }

  .footer-hero .eyebrow {
    margin-bottom: 10px;
  }

  .footer-hero__title {
    max-width: 100%;
    font-size: clamp(21px, 5vw, 28px);
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  .footer-hero__title-desktop {
    display: none;
  }

  .footer-hero__title-tablet {
    display: block;
  }

  .footer-hero__title-line {
    display: block;
  }

  .footer-hero__cta {
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }

  .footer-grid {
    margin-top: 44px;
    gap: 40px;
    padding: 40px 0;
  }

  .footer-grid h3 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 28px;
    padding-top: 28px;
  }

  .media-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    width: 100%;
    justify-items: center;
    align-items: center;
  }

  .logo-strip::before {
    display: none;
  }

  .logo-row a,
  .logo-row span {
    height: auto;
    min-height: 44px;
    max-width: 148px;
    justify-self: center;
    opacity: 0.78;
  }

  .logo-row a:nth-child(2n) {
    border: 0;
  }

  .logo-row a:nth-child(n + 3) {
    border: 0;
  }

  .logo-row img {
    max-width: 132px;
    height: auto;
    max-height: 30px;
  }

  .logo-card--strgf img {
    height: auto;
    max-width: 60px;
    max-height: 50px;
  }

  .logo-card--business img {
    height: auto;
    max-width: 136px;
    max-height: 24px;
  }

  .logo-card--blick img {
    height: auto;
    max-width: 112px;
    max-height: 32px;
  }

  .logo-card--yahoo img {
    height: auto;
    max-width: 118px;
    max-height: 22px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 0;
  }

  .proof-bar article {
    align-items: flex-start;
    min-height: auto;
    padding: 18px 14px;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(248, 241, 231, 0.11);
  }

  .proof-bar article:first-child {
    border-top: 0;
  }

  .proof-stat-head {
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
  }

  .proof-stat-icon {
    flex-shrink: 0;
    align-self: center;
    width: 22px;
    height: 22px;
  }

  .proof-stars {
    flex-shrink: 0;
  }


  .proof-bar .stat-number {
    color: var(--ink);
    font-size: clamp(28px, 8vw, 36px);
    white-space: nowrap;
  }

  .proof-bar p {
    max-width: none;
    font-size: 14px;
    color: var(--soft);
  }

  .social-row a::after {
    display: none;
  }
}


@media (max-width: 430px) {
  .brand {
    font-size: 13px;
    letter-spacing: 0.14em;
    padding-right: 6px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .logo-strip {
    margin-top: 0;
    padding: 42px 0 22px;
  }

  .media-row {
    gap: 22px 24px;
  }

  .logo-row a,
  .logo-row span {
    min-height: 48px;
  }

  .proof-bar .stat-number {
    font-size: clamp(24px, 6.4vw, 30px);
    white-space: nowrap;
  }

  .proof-stat-head .proof-stars {
    font-size: 11px;
  }

  .proof-bar p {
    font-size: 13px;
    line-height: 1.4;
  }

  .nav-menu__links a {
    min-height: 44px;
  }

  .funnel-entry-card {
    max-width: none;
    padding: 32px 24px;
    gap: 12px;
  }

  .funnel-entry-avatar {
    width: 112px;
    height: 112px;
    object-position: 48% 26%;
    transform: scale(1.14);
  }

  .footer-hero {
    gap: 18px;
    padding: 22px 18px;
  }

  .footer-hero .eyebrow {
    margin-bottom: 8px;
    letter-spacing: 0.16em;
  }

  .footer-hero__title {
    font-size: clamp(19px, 4.7vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  .footer-hero__title-line + .footer-hero__title-line {
    margin-top: 0.08em;
  }

  .footer-hero__title-tablet {
    display: none;
  }

  .footer-hero__title-mobile {
    display: block;
  }

  .footer-hero__cta {
    min-height: 48px;
    font-size: 14px;
  }

  .legal-page {
    width: calc(100% - 28px);
    padding: 102px 0 54px;
  }

  .legal-page h1 {
    font-size: clamp(30px, 7.8vw, 46px);
    line-height: 1.05;
  }

  .legal-section {
    padding: 22px 0;
  }

  .legal-page p,
  .legal-page li,
  .legal-page address {
    font-size: 15px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .scroll-cue .icon {
    animation: none;
    opacity: 0.82;
  }

  .referenzen-marquee-wrap {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .referenzen-marquee-wrap::before,
  .referenzen-marquee-wrap::after {
    display: none;
  }

  .referenzen-marquee__track {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .referenzen-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .reveal,
  .reveal-child,
  .gallery-item {
    opacity: 1;
    transform: none;
  }
}

.contact-funnel-entry {
  display: grid;
  justify-items: center;
  align-self: center;
  min-width: 0;
  padding-top: clamp(12px, 2.5vw, 28px);
  overflow: visible;
}

.funnel-entry-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
  overflow: visible;
}

.contact-funnel-entry img,
.funnel-entry-avatar,
.funnel-avatar {
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: 48% 26%;
  transform: scale(1.14);
}

.funnel-entry-avatar {
  width: clamp(112px, 12vw, 128px);
  height: clamp(112px, 12vw, 128px);
}

.funnel-entry-name {
  margin: 4px 0 0;
  width: 100%;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  overflow: visible;
  white-space: normal;
}

.funnel-entry-role {
  margin: 0 0 8px;
  width: 100%;
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  line-height: 1.35;
  overflow: visible;
  white-space: normal;
  overflow-wrap: break-word;
}

body.funnel-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-transitioning .glass-header {
  transition: none;
}

.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 28px);
  pointer-events: none;
}

.funnel-overlay.is-open {
  pointer-events: auto;
}

.funnel-overlay[hidden] {
  display: none !important;
}

.funnel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease;
}

.funnel-overlay.is-open .funnel-backdrop {
  opacity: 1;
}

.funnel-shell {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100svh - 32px);
  display: grid;
  gap: 16px;
  outline: none;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transform-origin: center center;
  transition:
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.funnel-overlay.is-open .funnel-shell {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.funnel-shell:has([data-funnel-step="form"]:not([hidden])) {
  width: min(520px, 100%);
}

.funnel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(17, 17, 17, 0.72);
  background: rgba(17, 17, 17, 0.06);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.funnel-close:hover {
  color: #111;
  background: rgba(17, 17, 17, 0.1);
}

.funnel-close:focus-visible {
  color: #111;
  background: rgba(17, 17, 17, 0.1);
  outline: 2px solid #111;
  outline-offset: 2px;
}

.funnel-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.funnel-card {
  position: relative;
  overflow: auto;
  max-height: calc(100svh - 96px);
  padding: clamp(28px, 5vw, 36px) clamp(22px, 4vw, 32px);
  border-radius: 22px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.funnel-step {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
  animation: funnel-step-in 280ms ease both;
}

.funnel-step[hidden] {
  display: none !important;
}

@keyframes funnel-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.funnel-avatar {
  width: clamp(120px, 13vw, 136px);
  height: clamp(120px, 13vw, 136px);
}

.funnel-avatar--small {
  width: clamp(88px, 10vw, 104px);
  height: clamp(88px, 10vw, 104px);
}

.funnel-title {
  margin: 0;
  font-size: clamp(28px, 6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.funnel-subtitle {
  margin: -6px 0 4px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
}

.funnel-question {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.funnel-question--compact {
  max-width: 24ch;
  font-size: clamp(20px, 4.8vw, 24px);
  margin-bottom: -4px;
}

.funnel-form .funnel-avatar--small {
  margin-bottom: 2px;
}

.funnel-btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.funnel-btn--primary {
  color: #fff;
  background: #111;
}

.funnel-btn--primary:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.18);
}

.funnel-btn--secondary {
  color: #111;
  background: transparent;
  border: 1.5px solid rgba(17, 17, 17, 0.18);
}

.funnel-btn--secondary:hover,
.funnel-btn--secondary:focus-visible {
  background: rgba(17, 17, 17, 0.04);
}

.funnel-btn--secondary:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.funnel-btn--dismiss {
  margin-top: 8px;
  max-width: 280px;
}

.funnel-btn--primary:disabled,
.funnel-btn--primary.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.funnel-btn--primary.is-loading .btn-label {
  display: none !important;
}

.funnel-btn--primary:not(.is-loading) .btn-loading {
  display: none !important;
}

.funnel-btn--primary.is-loading .btn-spinner {
  border-color: rgba(255, 255, 255, 0.22);
  border-top-color: #fff;
}

.funnel-pills {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.funnel-pill {
  min-height: 52px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.funnel-pill:hover,
.funnel-pill.is-selected {
  opacity: 0.88;
}

.funnel-pill:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.14);
}

.funnel-checks {
  width: 100%;
  display: grid;
  gap: 10px;
  text-align: left;
}

.funnel-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.funnel-check:has(input:checked) {
  border-color: #111;
  background: rgba(17, 17, 17, 0.04);
}

.funnel-check:has(input:focus-visible) {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.funnel-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111;
}

.funnel-check span {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.funnel-step.has-error .funnel-checks {
  outline: 2px solid #d64545;
  outline-offset: 4px;
  border-radius: 14px;
}

.funnel-form {
  width: 100%;
  justify-items: stretch;
}

.funnel-form-fields {
  width: 100%;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.funnel-form-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.funnel-form-layout:only-child,
.funnel-form-fields-col:only-child {
  width: 100%;
}

.funnel-form-fields-col {
  width: 100%;
  display: grid;
  gap: 12px;
}

.funnel-field {
  width: 100%;
  display: block;
}

.funnel-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  color: #111;
  background: #fff;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.funnel-field input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.funnel-field input::placeholder {
  color: #888;
  opacity: 1;
}

.funnel-field--phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
}

.funnel-field--phone:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.funnel-field--phone input {
  min-height: 50px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.funnel-phone-country {
  appearance: none;
  -webkit-appearance: none;
  min-width: 92px;
  max-width: 108px;
  min-height: 50px;
  padding: 0 22px 0 0;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  margin-right: 2px;
  color: rgba(17, 17, 17, 0.82);
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
}

.funnel-phone-country:focus {
  color: #111;
}

.funnel-phone-country:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.funnel-success .funnel-btn--primary {
  width: 100%;
  max-width: 280px;
  margin-top: 4px;
}

.funnel-privacy {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  text-align: left;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.funnel-form .funnel-btn--primary {
  margin-top: -2px;
}

.funnel-privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111;
}

.funnel-privacy a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
}

.funnel-proof {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.04);
}

.funnel-stars {
  display: flex;
  gap: 2px;
  color: #111;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.funnel-proof-rating {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.funnel-proof-copy {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
}

.funnel-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.funnel-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}

.funnel-footer a:hover {
  color: #fff;
}

.funnel-form.is-submitting .funnel-form-fields {
  pointer-events: none;
  opacity: 0.55;
}

.funnel-form.is-success .funnel-form-fields {
  display: none !important;
}

.funnel-form:not(.is-success) .funnel-success {
  display: none !important;
}

.funnel-form.is-error .funnel-form-status {
  color: #d64545;
}

.funnel-success .form-success-title,
.funnel-success .form-success-text {
  color: #111;
}

.funnel-success .form-success-text {
  color: rgba(17, 17, 17, 0.62);
}

.funnel-form-status {
  width: 100%;
  margin: 0;
  min-height: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.funnel-error-actions {
  width: 100%;
  display: grid;
  justify-items: center;
  margin-top: 4px;
}

.funnel-error-actions .funnel-btn {
  max-width: 220px;
}

@media (min-width: 480px) {
  .funnel-form-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
  }
}

@media (max-width: 479px) {
  .funnel-form-layout {
    gap: 14px;
  }

  .funnel-proof {
    width: 100%;
    padding: 16px;
  }
}

@media (max-width: 430px) {
  .funnel-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}
