:root {
  --bg-color: #000000;
  --text-color: #efebdf;
  --highlight-color: #126aca;
  --surface-color: #101216;
  --muted-color: #a7a399;
  --container: 1140px;
  --ribbon-height: 42px;
  --nav-height: 78px;
  --radius-lg: 26px;
  --radius-md: 16px;
  --motion-scale: 1;
  --reveal-duration: 520ms;
  --reveal-distance: 28px;
  --section-gap: clamp(1.45rem, 2.6vw, 2.35rem);
  --space-xs: 0.4rem;
  --space-sm: 0.7rem;
  --space-md: 1rem;
  --space-lg: 1.4rem;
  --space-xl: 2rem;
  --border-strong: color-mix(in srgb, var(--highlight-color) 35%, transparent);
  --border-soft: color-mix(in srgb, var(--text-color) 14%, transparent);
  --shadow-ambient: 0 18px 70px color-mix(in srgb, var(--highlight-color) 30%, transparent);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ribbon-height) + var(--nav-height) + 1.35rem);
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--highlight-color) 78%, white);
  outline-offset: 2px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambient-bg {
  position: fixed;
  inset: -30%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 14%, color-mix(in srgb, var(--highlight-color) 30%, transparent) 0%, transparent 34%),
    radial-gradient(circle at 85% 25%, color-mix(in srgb, var(--highlight-color) 22%, transparent) 0%, transparent 30%),
    radial-gradient(circle at 40% 90%, color-mix(in srgb, var(--highlight-color) 20%, transparent) 0%, transparent 36%);
  filter: blur(36px);
  opacity: 0.95;
  transition: opacity 240ms ease;
  animation: ambientMove calc(16s * var(--motion-scale)) ease-in-out infinite alternate;
}

body:not(.anim-ambient) .ambient-bg {
  animation: none;
  opacity: 0.3;
}

@keyframes ambientMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-3%, -2%, 0) scale(1.04);
  }
}

@keyframes brandDotBlink {
  0%,
  100% {
    opacity: 0.95;
    transform: scale(1);
    box-shadow:
      0 0 0 5px color-mix(in srgb, var(--highlight-color) 22%, transparent),
      0 0 14px color-mix(in srgb, var(--highlight-color) 30%, transparent);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.9);
    box-shadow:
      0 0 0 2px color-mix(in srgb, var(--highlight-color) 12%, transparent),
      0 0 7px color-mix(in srgb, var(--highlight-color) 18%, transparent);
  }
}

.container {
  width: min(var(--container), calc(100% - clamp(1rem, 3.5vw, 2rem)));
  margin-inline: auto;
  min-width: 0;
}

.top-ribbon {
  position: sticky;
  top: 0;
  z-index: 30;
  text-align: center;
  background: color-mix(in srgb, var(--highlight-color) 24%, var(--bg-color));
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
}

.top-ribbon.is-hidden {
  display: none;
}

.site-nav {
  position: sticky;
  top: calc(var(--ribbon-height) + 0.3rem);
  z-index: 20;
  margin-top: 1rem;
  background: color-mix(in srgb, var(--surface-color) 82%, transparent);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.55rem 0.9rem 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    ". brand toggle"
    "links links links";
  align-items: center;
  column-gap: 0.9rem;
  row-gap: 0.45rem;
  backdrop-filter: blur(10px);
  min-height: 78px;
}

body[data-nav-fixed="static"] .top-ribbon {
  position: relative;
  top: auto;
}

body[data-nav-fixed="static"] .site-nav {
  position: relative;
  top: auto;
}

.brand {
  grid-area: brand;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.02em;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.45rem;
  background: var(--highlight-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--highlight-color) 24%, transparent);
  animation: brandDotBlink 2s ease-in-out infinite;
}

.brand-accent {
  color: var(--highlight-color);
  text-shadow: 0 0 18px color-mix(in srgb, var(--highlight-color) 45%, transparent);
}

.brand-inline {
  white-space: nowrap;
}

.footer-brand .brand-accent {
  color: var(--highlight-color);
}

.nav-links {
  grid-area: links;
  justify-self: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.05rem;
  color: color-mix(in srgb, var(--text-color) 88%, transparent);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.26rem 0.38rem;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover {
  color: var(--highlight-color);
  background: color-mix(in srgb, var(--highlight-color) 14%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--highlight-color);
  color: white;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.1;
  max-width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform calc(220ms * var(--motion-scale)) ease, box-shadow calc(220ms * var(--motion-scale)) ease, background-color calc(220ms * var(--motion-scale)) ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--highlight-color) 35%, transparent);
}

.btn:hover {
  transform: translateY(-2px);
}

body.anim-enabled.anim-cta-pulse .btn:not(.btn-ghost) {
  animation: ctaPulse calc(4.8s * var(--motion-scale)) ease-in-out infinite;
}

.btn-small {
  padding: 0.58rem 0.95rem;
  font-size: 0.82rem;
}

.theme-icon-toggle {
  grid-area: toggle;
  justify-self: end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-color) 26%, transparent);
  background: color-mix(in srgb, var(--surface-color) 76%, transparent);
  color: var(--text-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

body.hide-theme-toggle .theme-icon-toggle {
  display: none;
}

.theme-icon-toggle:hover {
  border-color: color-mix(in srgb, var(--highlight-color) 45%, transparent);
  transform: translateY(-1px);
}

.theme-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.btn-ghost {
  background: transparent;
  border-color: color-mix(in srgb, var(--text-color) 26%, transparent);
  color: var(--text-color);
  box-shadow: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--highlight-color) 44%, transparent);
  background: color-mix(in srgb, var(--highlight-color) 14%, transparent);
}

body[data-button-style="soft"] .btn:not(.btn-ghost) {
  border-radius: 14px;
  background: color-mix(in srgb, var(--highlight-color) 52%, var(--surface-color));
  color: var(--text-color);
  border-color: color-mix(in srgb, var(--highlight-color) 42%, transparent);
}

body[data-button-style="soft"] .sticky-cta {
  border-radius: 14px;
}

body[data-button-style="sharp"] .btn:not(.btn-ghost) {
  border-radius: 10px;
  padding-inline: 1.3rem;
  letter-spacing: 0.01em;
  border-color: color-mix(in srgb, var(--highlight-color) 60%, transparent);
}

body[data-button-style="sharp"] .sticky-cta {
  border-radius: 10px;
  letter-spacing: 0.01em;
}

body[data-button-style="outline"] .btn:not(.btn-ghost) {
  border-radius: 999px;
  background: transparent;
  color: var(--text-color);
  border-color: color-mix(in srgb, var(--highlight-color) 65%, transparent);
  box-shadow: none;
}

body[data-button-style="outline"] .btn:not(.btn-ghost):hover {
  background: color-mix(in srgb, var(--highlight-color) 20%, transparent);
}

body[data-button-style="outline"] .sticky-cta {
  background: color-mix(in srgb, var(--bg-color) 72%, transparent);
  color: var(--text-color);
  border-color: color-mix(in srgb, var(--highlight-color) 70%, transparent);
  box-shadow: none;
}

main {
  display: grid;
  gap: var(--section-gap);
  padding-bottom: 2.2rem;
  min-width: 0;
}

main > section[id] {
  scroll-margin-top: calc(var(--ribbon-height) + var(--nav-height) + 1.35rem);
}

.hero {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.2rem;
  align-items: stretch;
  min-width: 0;
}

.hero-copy {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color) 82%, transparent), color-mix(in srgb, var(--highlight-color) 18%, transparent));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--highlight-color) 78%, white);
  font-size: 0.76rem;
  line-height: 1.3;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 0.75rem;
  text-align: left;
  line-height: 1.06;
  max-width: 16.5ch;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-sub {
  margin-top: 0.8rem;
  color: color-mix(in srgb, var(--text-color) 84%, transparent);
  max-width: 63ch;
  overflow-wrap: break-word;
}

.cta-row {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof {
  margin-top: 0.85rem;
  color: var(--muted-color);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-color) 90%, transparent), color-mix(in srgb, var(--highlight-color) 14%, transparent));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  overflow: hidden;
}

body.anim-enabled.anim-hero-float .hero-panel {
  animation: panelFloat calc(8s * var(--motion-scale)) ease-in-out infinite;
}

.panel-glow {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  right: -10%;
  top: -20%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--highlight-color) 72%, transparent);
  filter: blur(38px);
  opacity: 0.5;
}

body.anim-enabled .panel-glow {
  animation: glowPulse calc(6.2s * var(--motion-scale)) ease-in-out infinite alternate;
}

.hero-panel h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  text-align: left;
}

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

.metric-card {
  background: color-mix(in srgb, var(--bg-color) 74%, var(--surface-color));
  border: 1px solid color-mix(in srgb, var(--highlight-color) 24%, transparent);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
}

.metric-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
}

.metric-label {
  margin-top: 0.35rem;
  color: var(--muted-color);
  font-size: 0.83rem;
}

.panel-note {
  margin-top: 0.9rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 0.85rem;
  color: color-mix(in srgb, var(--text-color) 88%, transparent);
  font-size: 0.92rem;
  display: grid;
  gap: 0.38rem;
}

.trust-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--surface-color) 65%, transparent);
}

.trust-strip .container {
  padding-block: 1rem;
  display: grid;
  gap: 0.8rem;
}

.trust-strip p {
  color: var(--muted-color);
  font-size: 0.86rem;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-strip li {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--text-color) 90%, transparent);
}

.logo-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid var(--border-soft);
  padding-block: 0.9rem;
}

.logo-marquee .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 0;
}

.logo-marquee-viewport {
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 0.95vw, 0.8rem);
  width: max-content;
  will-change: transform;
  animation: logoScrollLeft 28s linear infinite;
}

.logo-ticker-item {
  flex: 0 0 auto;
  height: 48px;
  min-width: 160px;
  border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.45rem 0.75rem;
  background: color-mix(in srgb, var(--surface-color) 80%, transparent);
  text-align: center;
}

.logo-ticker-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 6px;
  filter: none;
  flex: 0 0 auto;
}

.logo-ticker-item span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--text-color) 88%, transparent);
  white-space: nowrap;
}

.section {
  display: grid;
  gap: clamp(0.95rem, 1.8vw, 1.3rem);
  min-width: 0;
}

.section > * {
  min-width: 0;
}

.section-head {
  display: grid;
  gap: clamp(0.34rem, 0.9vw, 0.58rem);
  max-width: 72ch;
  justify-items: start;
  text-align: left;
}

.section h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  max-width: 30ch;
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(155deg, color-mix(in srgb, var(--surface-color) 88%, transparent), color-mix(in srgb, var(--highlight-color) 10%, transparent));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  height: 100%;
  min-width: 0;
}

.service-card h3 {
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.service-card p {
  color: color-mix(in srgb, var(--text-color) 86%, transparent);
  font-size: 0.94rem;
  overflow-wrap: break-word;
}

.service-card .outcome {
  font-size: 0.84rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--highlight-color) 70%, white);
}

.section-process {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--highlight-color) 10%, transparent), transparent);
  border-block: 1px solid var(--border-soft);
  padding-block: clamp(1rem, 2.2vw, 1.8rem);
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
  background: color-mix(in srgb, var(--surface-color) 72%, transparent);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.88rem;
  min-width: 0;
}

.timeline .index {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--highlight-color) 25%, transparent);
  border: 1px solid var(--border-strong);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.timeline h3 {
  font-size: 1rem;
  overflow-wrap: break-word;
}

.timeline p {
  margin-top: 0.35rem;
  color: color-mix(in srgb, var(--text-color) 86%, transparent);
  font-size: 0.93rem;
  overflow-wrap: break-word;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.result-card {
  background: color-mix(in srgb, var(--surface-color) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--highlight-color) 24%, transparent);
  border-radius: var(--radius-md);
  padding: 0.98rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  height: 100%;
  min-width: 0;
}

.section-video-testimonials {
  border-block: 1px solid var(--border-soft);
  padding-block: clamp(1.2rem, 2.6vw, 2.15rem);
}

.section-video-testimonials .container {
  display: grid;
  gap: 1.05rem;
}

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

.video-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  padding-inline: 0.75rem;
}

.video-carousel-viewport .video-grid {
  transform: translateX(0);
  align-items: stretch;
}

.video-carousel-viewport .video-grid.is-carousel {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: none;
}

.video-carousel-viewport .video-grid.is-carousel .video-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-width: 0;
}

.video-carousel-nav {
  display: none !important;
}

.video-grid.is-carousel {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: none;
  transform: translateX(0);
}

.video-grid.is-carousel.is-swiping {
  transition: transform var(--video-swipe-duration, 700ms) cubic-bezier(0.22, 0.61, 0.36, 1);
}

.video-grid.is-carousel[data-carousel-mode="desktop"] {
  transition: opacity 260ms ease, filter 260ms ease;
}

.video-grid.is-carousel[data-carousel-mode="desktop"].is-swiping {
  opacity: 0.88;
  filter: saturate(1.06);
}

.video-grid.is-carousel .video-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-width: 0;
}

.video-card {
  background: linear-gradient(
    170deg,
    color-mix(in srgb, var(--surface-color) 88%, transparent),
    color-mix(in srgb, var(--highlight-color) 10%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--highlight-color) 20%, var(--border-soft));
  border-radius: 24px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  justify-items: center;
  text-align: center;
  height: 100%;
  min-width: 0;
  grid-template-rows: auto minmax(2.5em, auto) minmax(1.4em, auto);
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 340px;
  min-height: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--highlight-color) 30%, transparent);
  background: #0b0b0b;
  box-shadow: 0 20px 40px color-mix(in srgb, #000000 35%, transparent);
}

.video-wrap iframe,
.video-wrap video,
.video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrap img {
  object-fit: contain;
  object-position: center;
  background: #000000;
}

.video-wrap video {
  object-fit: contain;
  object-position: center;
  background: #000000;
}

body[data-video-aspect="portrait"] .video-wrap {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

body[data-video-aspect="portrait"] .video-wrap video,
body[data-video-aspect="portrait"] .video-wrap img {
  object-fit: contain;
  object-position: center;
  background: #000000;
}

body[data-video-aspect="square"] .video-wrap {
  aspect-ratio: 1 / 1;
}

body[data-video-aspect="portrait"] .video-grid,
body[data-video-aspect="square"] .video-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body[data-video-aspect="portrait"] .video-grid.is-carousel,
body[data-video-aspect="square"] .video-grid.is-carousel {
  display: flex;
}

body[data-video-aspect="portrait"] .video-grid.is-carousel .video-card,
body[data-video-aspect="square"] .video-grid.is-carousel .video-card {
  flex-basis: calc((100% - 2rem) / 3);
}

body[data-video-aspect="portrait"] .video-card,
body[data-video-aspect="square"] .video-card {
  justify-items: center;
  text-align: center;
}

.video-launch {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(180deg, transparent 35%, color-mix(in srgb, #000000 55%, transparent) 100%);
}

.video-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--highlight-color) 14%, transparent);
  opacity: 0;
  transition: opacity 160ms ease;
}

.video-launch:hover::after {
  opacity: 1;
}

.video-play-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--highlight-color) 90%, #ffffff 10%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--highlight-color) 45%, transparent);
  position: relative;
  z-index: 1;
}

.video-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.video-card h3 {
  font-size: 0.98rem;
  line-height: 1.28;
  text-wrap: balance;
  width: 100%;
  min-height: 2.5em;
  display: block;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card p {
  font-size: 0.85rem;
  color: var(--muted-color);
  line-height: 1.4;
  width: 100%;
  min-height: 1.4em;
  display: block;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-discovery-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

.video-discovery-cta .btn {
  min-width: min(320px, 100%);
}

.video-card.is-tapped {
  animation: videoTapSweep 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes videoTapSweep {
  0% {
    transform: translateX(0);
  }
  38% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.video-card-empty {
  justify-content: center;
  text-align: center;
  min-height: 240px;
}

.video-speed-controls {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  z-index: 4;
  display: grid;
  justify-items: end;
}

.video-sound-toggle {
  position: absolute;
  top: 0.48rem;
  left: 0.48rem;
  z-index: 4;
  border: 1px solid color-mix(in srgb, #ffffff 28%, transparent);
  background: color-mix(in srgb, #000000 52%, transparent);
  color: #efebdf;
  border-radius: 999px;
  padding: 0.38rem 0.64rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  backdrop-filter: blur(6px);
}

.video-sound-icon {
  width: 1.06rem;
  height: 1.06rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.video-sound-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.video-sound-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-sound-icon .icon-body {
  fill: currentColor;
  stroke: none;
}

.video-sound-icon .icon-wave,
.video-sound-icon .icon-mute {
  transition: opacity 160ms ease;
}

.video-sound-icon .icon-mute {
  opacity: 0;
}

.video-sound-toggle.is-muted .icon-wave {
  opacity: 0;
}

.video-sound-toggle.is-muted .icon-mute {
  opacity: 1;
}

.video-sound-toggle.is-on .icon-wave {
  opacity: 1;
}

.video-sound-toggle.is-on .icon-mute {
  opacity: 0;
}

.video-sound-toggle.is-on {
  border-color: color-mix(in srgb, var(--highlight-color) 60%, transparent);
  background: color-mix(in srgb, var(--highlight-color) 45%, #000000 55%);
  color: #ffffff;
}

.video-speed-toggle {
  border: 1px solid color-mix(in srgb, #ffffff 28%, transparent);
  background: color-mix(in srgb, #000000 52%, transparent);
  color: #ffffff;
  border-radius: 50%;
  width: 2.05rem;
  height: 2.05rem;
  padding: 0.34rem;
  font-size: 0.68rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.video-speed-gear {
  font-size: 0.94rem;
  line-height: 1;
}

.video-speed-panel {
  margin-top: 0.32rem;
  display: none;
  width: min(180px, calc(100vw - 2rem));
  padding: 0.46rem 0.58rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, #ffffff 20%, transparent);
  background: color-mix(in srgb, #000000 60%, transparent);
  backdrop-filter: blur(8px);
}

.video-speed-controls.is-open .video-speed-panel {
  display: grid;
}

.video-speed-slider {
  width: 100%;
  margin: 0;
  accent-color: var(--highlight-color);
  cursor: pointer;
}

.video-speed-slider:focus-visible {
  outline: none;
}

.video-speed-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, #ffffff 24%, transparent);
}

.video-speed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--highlight-color);
  border: 1px solid color-mix(in srgb, #ffffff 78%, transparent);
}

.video-speed-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, #ffffff 24%, transparent);
}

.video-speed-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--highlight-color);
  border: 1px solid color-mix(in srgb, #ffffff 78%, transparent);
}

.video-speed-readout {
  margin-top: 0.38rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.result-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted-color);
}

.result-meta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.result-growth {
  font-size: 1.06rem;
  color: color-mix(in srgb, var(--highlight-color) 72%, white);
  font-weight: 700;
  overflow-wrap: break-word;
}

.section-testimonials {
  border-block: 1px solid var(--border-soft);
  padding-block: clamp(1rem, 2.2vw, 1.8rem);
}

.testimonial-slider {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-color) 80%, transparent);
}

.testimonial-track {
  display: flex;
  transition: transform calc(500ms * var(--motion-scale)) ease;
}

.testimonial {
  flex: 0 0 100%;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  display: grid;
  gap: 0.8rem;
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: color-mix(in srgb, var(--text-color) 92%, transparent);
  overflow-wrap: break-word;
}

.testimonial .person {
  color: var(--muted-color);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0 1rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--highlight-color);
  border-color: var(--highlight-color);
}

.section-engagement-levels {
  display: grid;
  gap: 1rem;
  position: relative;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  perspective: 1200px;
}

.engagement-card {
  background:
    radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--highlight-color) 16%, transparent) 0%, transparent 52%),
    linear-gradient(168deg, color-mix(in srgb, var(--surface-color) 92%, transparent), color-mix(in srgb, var(--highlight-color) 14%, transparent));
  border: 1px solid color-mix(in srgb, var(--highlight-color) 30%, var(--border-soft));
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  box-shadow:
    0 16px 36px color-mix(in srgb, #000000 34%, transparent),
    0 0 0 1px color-mix(in srgb, var(--highlight-color) 14%, transparent) inset;
}

.engagement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, color-mix(in srgb, #ffffff 11%, transparent) 0%, transparent 34%),
    linear-gradient(180deg, transparent 64%, color-mix(in srgb, #000000 20%, transparent) 100%);
  pointer-events: none;
  opacity: 0.95;
}

.engagement-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55%;
  height: 90px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--highlight-color) 24%, transparent), transparent 72%);
  pointer-events: none;
}

.engagement-card:hover {
  transform: translateY(-8px) rotateX(1.5deg) rotateY(-1deg);
  border-color: color-mix(in srgb, var(--highlight-color) 50%, var(--border-soft));
  box-shadow:
    0 26px 54px color-mix(in srgb, #000000 42%, transparent),
    0 0 0 1px color-mix(in srgb, var(--highlight-color) 24%, transparent) inset;
}

.engagement-card h3 {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--highlight-color) 84%, white);
  position: relative;
  z-index: 1;
}

.engagement-points {
  display: grid;
  gap: 0.42rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.engagement-points li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem;
  padding-left: 0;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--text-color) 90%, transparent);
  line-height: 1.45;
}

.engagement-points li::before {
  content: "\2713";
  color: color-mix(in srgb, var(--highlight-color) 86%, white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transform: translateY(0.08rem);
}

.engagement-card .btn {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.section-offer {
  padding: clamp(1.15rem, 2.2vw, 1.9rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(145deg, color-mix(in srgb, var(--highlight-color) 20%, transparent), color-mix(in srgb, var(--surface-color) 90%, transparent));
  box-shadow: var(--shadow-ambient);
}

.section-offer h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  margin-top: 0.5rem;
}

.offer-points {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.offer-points li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  font-size: 0.93rem;
}

.offer-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.5rem;
  background: var(--highlight-color);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--highlight-color) 20%, transparent);
}

.guarantee {
  margin-top: 0.78rem;
  border-top: 1px dashed var(--border-strong);
  padding-top: 0.75rem;
  color: color-mix(in srgb, var(--text-color) 90%, transparent);
  font-weight: 600;
}

.section-faq {
  border-block: 1px solid var(--border-soft);
  padding-block: clamp(1rem, 2.2vw, 1.8rem);
}

.journey-strip {
  display: grid;
  gap: 0.9rem;
}

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

.journey-step {
  border: 1px solid color-mix(in srgb, var(--highlight-color) 26%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-color) 86%, transparent);
  padding: 0.86rem 0.92rem;
  display: grid;
  gap: 0.36rem;
  min-width: 0;
}

.journey-step strong {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--highlight-color) 78%, white);
}

.journey-step p {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--text-color) 86%, transparent);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-color) 74%, transparent);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.88rem 1rem;
  overflow-wrap: break-word;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1rem 1rem;
  color: color-mix(in srgb, var(--text-color) 88%, transparent);
  font-size: 0.93rem;
  overflow-wrap: break-word;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.9rem;
  min-width: 0;
}

.contact-copy,
.lead-form {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--surface-color) 80%, transparent);
  padding: clamp(1rem, 2.2vw, 1.5rem);
  min-width: 0;
}

.contact-copy {
  display: grid;
  gap: 0.8rem;
}

.contact-copy h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.contact-points span {
  border: 1px solid color-mix(in srgb, var(--highlight-color) 34%, transparent);
  background: color-mix(in srgb, var(--highlight-color) 12%, transparent);
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-meta {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.contact-meta li {
  border: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--bg-color) 62%, transparent);
  padding: 0.52rem 0.62rem;
  min-width: 0;
}

.contact-next-steps {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.15rem;
}

.contact-next-steps li {
  position: relative;
  padding-left: 1.02rem;
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--text-color) 88%, transparent);
  line-height: 1.42;
}

.contact-next-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--highlight-color);
}

.contact-meta a {
  color: color-mix(in srgb, var(--highlight-color) 68%, white);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form-link-card {
  align-content: start;
  gap: 0.75rem;
}

.contact-form-kicker {
  margin-bottom: -0.1rem;
}

.contact-form-link-card h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  line-height: 1.2;
}

.contact-form-link-card p {
  color: color-mix(in srgb, var(--text-color) 86%, transparent);
  font-size: 0.92rem;
}

.contact-action-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.contact-action-stack .btn {
  width: 100%;
  justify-content: center;
}

.contact-action-stack .btn.is-hidden {
  display: none;
}

.contact-form-note {
  margin-top: 0.2rem;
  min-height: 0;
  font-size: 0.79rem;
  color: var(--muted-color);
}

.lead-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted-color);
}

.lead-form input,
.lead-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  min-height: 42px;
  background: color-mix(in srgb, var(--bg-color) 82%, var(--surface-color));
  color: var(--text-color);
  font: inherit;
}

.lead-form textarea {
  min-height: 94px;
  resize: vertical;
}

.form-status {
  min-height: 1.1rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--highlight-color) 72%, white);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 1rem 0 1.5rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer p {
  color: var(--muted-color);
  font-size: 0.88rem;
}

.admin-link {
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--highlight-color) 68%, white);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 20;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--highlight-color) 92%, black 8%);
  color: white;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, white 20%, transparent);
  box-shadow: 0 15px 28px color-mix(in srgb, var(--highlight-color) 33%, transparent);
}

body[data-hero-theme="accent"] .hero-copy,
body[data-hero-theme="accent"] .hero-panel {
  border-color: color-mix(in srgb, var(--highlight-color) 48%, transparent);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--highlight-color) 22%, transparent);
}

body[data-hero-theme="soft"] .hero-copy,
body[data-hero-theme="soft"] .hero-panel {
  background: color-mix(in srgb, var(--surface-color) 88%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 20%, transparent);
}

body[data-hero-theme="glass"] .hero-copy,
body[data-hero-theme="glass"] .hero-panel {
  background: color-mix(in srgb, var(--surface-color) 58%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 30%, transparent);
  backdrop-filter: blur(14px);
}

body[data-services-theme="accent"] .service-card {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--highlight-color) 22%, var(--surface-color)),
    color-mix(in srgb, var(--surface-color) 86%, transparent)
  );
  border-color: color-mix(in srgb, var(--highlight-color) 48%, transparent);
}

body[data-services-theme="soft"] .service-card {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-services-theme="glass"] .service-card {
  background: color-mix(in srgb, var(--surface-color) 52%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(12px);
}

body[data-process-theme="accent"] .section-process {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--highlight-color) 12%, transparent),
    color-mix(in srgb, var(--highlight-color) 20%, transparent),
    color-mix(in srgb, var(--highlight-color) 12%, transparent)
  );
}

body[data-process-theme="accent"] .timeline li {
  border-color: color-mix(in srgb, var(--highlight-color) 44%, transparent);
}

body[data-process-theme="soft"] .timeline li {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
}

body[data-process-theme="glass"] .timeline li {
  background: color-mix(in srgb, var(--surface-color) 56%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(10px);
}

body[data-results-theme="accent"] .result-card {
  border-color: color-mix(in srgb, var(--highlight-color) 52%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--highlight-color) 22%, transparent);
}

body[data-results-theme="soft"] .result-card {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-results-theme="glass"] .result-card {
  background: color-mix(in srgb, var(--surface-color) 54%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(10px);
}

body[data-video-testimonials-theme="accent"] .video-card {
  border-color: color-mix(in srgb, var(--highlight-color) 52%, transparent);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--highlight-color) 26%, transparent);
}

body[data-video-testimonials-theme="soft"] .video-card {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-video-testimonials-theme="glass"] .video-card {
  background: color-mix(in srgb, var(--surface-color) 52%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(12px);
}

body[data-testimonials-theme="accent"] .testimonial-slider {
  border-color: color-mix(in srgb, var(--highlight-color) 50%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--highlight-color) 20%, transparent);
}

body[data-testimonials-theme="soft"] .testimonial-slider {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-testimonials-theme="glass"] .testimonial-slider {
  background: color-mix(in srgb, var(--surface-color) 56%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(10px);
}

body[data-offer-theme="accent"] .section-offer {
  border-color: color-mix(in srgb, var(--highlight-color) 62%, transparent);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--highlight-color) 30%, transparent);
}

body[data-offer-theme="soft"] .section-offer {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
  box-shadow: none;
}

body[data-offer-theme="glass"] .section-offer {
  background: color-mix(in srgb, var(--surface-color) 54%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 28%, transparent);
  backdrop-filter: blur(12px);
}

body[data-faq-theme="accent"] .faq-item {
  border-color: color-mix(in srgb, var(--highlight-color) 45%, transparent);
}

body[data-faq-theme="soft"] .faq-item {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-faq-theme="glass"] .faq-item {
  background: color-mix(in srgb, var(--surface-color) 52%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(10px);
}

body[data-contact-theme="accent"] .contact-copy,
body[data-contact-theme="accent"] .lead-form {
  border-color: color-mix(in srgb, var(--highlight-color) 48%, transparent);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--highlight-color) 20%, transparent);
}

body[data-contact-theme="soft"] .contact-copy,
body[data-contact-theme="soft"] .lead-form {
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
}

body[data-contact-theme="glass"] .contact-copy,
body[data-contact-theme="glass"] .lead-form {
  background: color-mix(in srgb, var(--surface-color) 54%, transparent);
  border-color: color-mix(in srgb, var(--highlight-color) 24%, transparent);
  backdrop-filter: blur(10px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.17, 0.84, 0.44, 1),
    transform var(--reveal-duration) cubic-bezier(0.17, 0.84, 0.44, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

body.anim-enabled[data-reveal-mode="scroll"] [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-distance) * 0.9), 0);
}

body.anim-enabled[data-reveal-mode="scroll"][data-reveal-style="fade"] [data-reveal]:not(.is-visible) {
  transform: none;
}

body.anim-enabled[data-reveal-mode="scroll"][data-reveal-style="zoom"] [data-reveal]:not(.is-visible) {
  transform: scale(0.95);
}

body.no-motion .ambient-bg,
body.no-motion [data-reveal],
body.no-motion .btn,
body.no-motion .testimonial-track,
body.no-motion .hero-panel,
body.no-motion .panel-glow,
body.no-motion .logo-marquee-track {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

[data-section].is-hidden {
  display: none !important;
}

body[data-color-mode="light"] {
  --bg-color: #efebdf;
  --text-color: #000000;
  --highlight-color: #126aca;
  --surface-color: #e4dccb;
  --muted-color: #4f4a41;
}

body[data-color-mode="light"] .top-ribbon {
  background: color-mix(in srgb, var(--highlight-color) 14%, var(--bg-color));
  border-bottom-color: color-mix(in srgb, #000000 14%, transparent);
  color: #000000;
}

body[data-color-mode="light"] .site-nav {
  background: color-mix(in srgb, var(--surface-color) 86%, var(--bg-color));
  border-color: color-mix(in srgb, #000000 16%, transparent);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--highlight-color) 16%, transparent);
}

body[data-color-mode="light"] .nav-links {
  color: color-mix(in srgb, #000000 84%, transparent);
}

body[data-color-mode="light"] .nav-links a:hover {
  color: var(--highlight-color);
  background: color-mix(in srgb, var(--highlight-color) 14%, transparent);
}

body[data-color-mode="light"] .hero-copy,
body[data-color-mode="light"] .hero-panel,
body[data-color-mode="light"] .service-card,
body[data-color-mode="light"] .result-card,
body[data-color-mode="light"] .video-card,
body[data-color-mode="light"] .testimonial-slider,
body[data-color-mode="light"] .contact-copy,
body[data-color-mode="light"] .lead-form,
body[data-color-mode="light"] .timeline li,
body[data-color-mode="light"] .faq-item,
body[data-color-mode="light"] .metric-card {
  background: color-mix(in srgb, var(--surface-color) 82%, var(--bg-color));
  border-color: color-mix(in srgb, #000000 14%, transparent);
}

body[data-color-mode="light"] .video-card {
  background: linear-gradient(
    170deg,
    color-mix(in srgb, var(--surface-color) 86%, var(--bg-color)),
    color-mix(in srgb, var(--highlight-color) 10%, var(--bg-color))
  );
}

body[data-color-mode="light"] .section-offer {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--highlight-color) 18%, var(--bg-color)),
    color-mix(in srgb, var(--surface-color) 86%, var(--bg-color))
  );
  border-color: color-mix(in srgb, var(--highlight-color) 46%, transparent);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--highlight-color) 20%, transparent);
}

body[data-color-mode="light"] .section-process,
body[data-color-mode="light"] .section-video-testimonials,
body[data-color-mode="light"] .section-testimonials,
body[data-color-mode="light"] .section-faq,
body[data-color-mode="light"] .logo-marquee,
body[data-color-mode="light"] .trust-strip,
body[data-color-mode="light"] .site-footer {
  border-color: color-mix(in srgb, #000000 14%, transparent);
}

body[data-color-mode="light"] .btn.btn-ghost {
  border-color: color-mix(in srgb, #000000 18%, transparent);
  background: color-mix(in srgb, var(--surface-color) 76%, var(--bg-color));
}

body[data-color-mode="light"] .btn.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--highlight-color) 45%, transparent);
  background: color-mix(in srgb, var(--highlight-color) 12%, var(--bg-color));
}

body[data-color-mode="light"] .theme-icon-toggle {
  border-color: color-mix(in srgb, #000000 20%, transparent);
  background: color-mix(in srgb, var(--surface-color) 78%, var(--bg-color));
}

body[data-color-mode="light"] .sticky-cta {
  color: #ffffff;
}

body[data-color-mode="light"] .ambient-bg {
  opacity: 0.55;
}

body[data-nav-variant="glass-line"] .site-nav {
  border-radius: 18px;
  border-color: color-mix(in srgb, var(--highlight-color) 35%, transparent);
  background: color-mix(in srgb, var(--surface-color) 68%, transparent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--highlight-color) 22%, transparent);
}

body[data-nav-variant="split-solid"] .site-nav {
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-color) 92%, var(--bg-color));
  padding: 0.5rem 0.6rem;
}

body[data-nav-variant="split-solid"] .nav-links {
  background: color-mix(in srgb, var(--bg-color) 75%, var(--surface-color));
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

body[data-nav-variant="minimal-underline"] .site-nav {
  border: 0;
  border-radius: 0;
  padding-inline: 0.15rem;
  background: transparent;
  backdrop-filter: none;
}

body[data-nav-variant="minimal-underline"] .nav-links a {
  position: relative;
  border-radius: 0;
  background: transparent;
  padding-bottom: 0.28rem;
}

body[data-nav-variant="minimal-underline"] .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--highlight-color);
  transition: transform 180ms ease;
}

body[data-nav-variant="minimal-underline"] .nav-links a:hover::after {
  transform: scaleX(1);
}

body[data-nav-variant="boxed-floating"] .site-nav {
  border-radius: 12px;
  border-color: color-mix(in srgb, var(--text-color) 28%, transparent);
  background: color-mix(in srgb, var(--surface-color) 90%, var(--bg-color));
  box-shadow: 0 18px 30px color-mix(in srgb, #000000 14%, transparent);
}

body[data-nav-variant="compact-center"] .site-nav {
  width: min(980px, calc(100% - 2rem));
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 0.8rem;
}

body[data-nav-variant="compact-center"] .brand {
  margin: 0;
}

body[data-nav-variant="compact-center"] .nav-links {
  margin: 0;
  justify-content: center;
}

body[data-nav-variant="soft-outline"] .site-nav {
  border: 1px dashed color-mix(in srgb, var(--text-color) 24%, transparent);
  background: color-mix(in srgb, var(--surface-color) 78%, var(--bg-color));
}

body[data-nav-variant="accent-bar"] .site-nav {
  border-radius: 16px;
  border-top: 3px solid var(--highlight-color);
  background: color-mix(in srgb, var(--surface-color) 86%, var(--bg-color));
}

@keyframes panelFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes glowPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.72; transform: scale(1.16); }
}

@keyframes ctaPulse {
  0%, 80%, 100% { box-shadow: 0 8px 30px color-mix(in srgb, var(--highlight-color) 35%, transparent); }
  40% { box-shadow: 0 12px 34px color-mix(in srgb, var(--highlight-color) 55%, transparent); }
}

@keyframes logoScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes logoScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

body[data-logo-direction="left"] .logo-marquee-track {
  animation-name: logoScrollRight;
}

body[data-logo-direction="right"] .logo-marquee-track {
  animation-name: logoScrollLeft;
}

body[data-logo-speed="slow"] .logo-marquee-track {
  animation-duration: 38s;
}

body[data-logo-speed="normal"] .logo-marquee-track {
  animation-duration: 28s;
}

body[data-logo-speed="fast"] .logo-marquee-track {
  animation-duration: 18s;
}

body:not(.logo-ticker-enabled) .logo-marquee {
  display: none;
}

body[data-template="conversion-lab"] .hero,
body[data-template="conversion-lab"] .contact-grid {
  gap: 1.2rem;
}

body[data-template="conversion-lab"] .service-card,
body[data-template="conversion-lab"] .result-card,
body[data-template="conversion-lab"] .timeline li,
body[data-template="conversion-lab"] .contact-copy,
body[data-template="conversion-lab"] .lead-form {
  border-radius: 10px;
}

body[data-template="conversion-lab"] .section-offer {
  border-radius: 10px;
}

body[data-template="story-led"] h1 {
  font-size: clamp(2.1rem, 6.2vw, 4.1rem);
}

body[data-template="story-led"] .hero {
  grid-template-columns: 1fr;
}

body[data-template="story-led"] .hero-panel {
  order: -1;
}

body[data-template="story-led"] .section-head h2 {
  max-width: 25ch;
}

body[data-template="minimal-executive"] .ambient-bg {
  opacity: 0.35;
}

body[data-template="minimal-executive"] .hero-copy,
body[data-template="minimal-executive"] .hero-panel,
body[data-template="minimal-executive"] .service-card,
body[data-template="minimal-executive"] .result-card,
body[data-template="minimal-executive"] .timeline li,
body[data-template="minimal-executive"] .contact-copy,
body[data-template="minimal-executive"] .lead-form {
  background: color-mix(in srgb, var(--surface-color) 84%, transparent);
}

body[data-template="minimal-executive"] .top-ribbon {
  letter-spacing: 0.02em;
}

body[data-template="bold-split"] .hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-template="bold-split"] h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.5rem);
}

body[data-template="bold-split"] .hero-copy,
body[data-template="bold-split"] .hero-panel {
  border-radius: 18px;
}

body[data-template="neon-grid"] .site-nav {
  border-color: color-mix(in srgb, var(--highlight-color) 40%, transparent);
}

body[data-template="neon-grid"] .service-card,
body[data-template="neon-grid"] .result-card,
body[data-template="neon-grid"] .video-card,
body[data-template="neon-grid"] .testimonial-slider,
body[data-template="neon-grid"] .section-offer {
  border-color: color-mix(in srgb, var(--highlight-color) 42%, transparent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--highlight-color) 22%, transparent);
}

body[data-template="editorial-serif"] .hero h1,
body[data-template="editorial-serif"] .section h2 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body[data-template="editorial-serif"] .hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
}

body[data-template="creator-loop"] .site-nav {
  border-radius: 24px;
}

body[data-template="creator-loop"] .hero-copy,
body[data-template="creator-loop"] .hero-panel,
body[data-template="creator-loop"] .service-card,
body[data-template="creator-loop"] .result-card,
body[data-template="creator-loop"] .video-card,
body[data-template="creator-loop"] .contact-copy,
body[data-template="creator-loop"] .lead-form,
body[data-template="creator-loop"] .section-offer {
  border-radius: 24px;
}

body[data-template="creator-loop"] .btn {
  border-radius: 16px;
}

body[data-template="signal-minimal"] .ambient-bg {
  opacity: 0.22;
  filter: blur(46px);
}

body[data-template="signal-minimal"] .btn:not(.btn-ghost),
body[data-template="signal-minimal"] .section-offer,
body[data-template="signal-minimal"] .sticky-cta {
  box-shadow: none;
}

body[data-template="signal-minimal"] .hero-copy,
body[data-template="signal-minimal"] .hero-panel,
body[data-template="signal-minimal"] .service-card,
body[data-template="signal-minimal"] .result-card,
body[data-template="signal-minimal"] .video-card,
body[data-template="signal-minimal"] .contact-copy,
body[data-template="signal-minimal"] .lead-form {
  background: color-mix(in srgb, var(--surface-color) 88%, transparent);
}

body[data-template="growth-dashboard"] .hero {
  grid-template-columns: 1fr;
}

body[data-template="growth-dashboard"] .hero-panel {
  order: -1;
}

body[data-template="growth-dashboard"] .metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-template="magazine-impact"] .hero {
  gap: 2.5rem;
}

body[data-template="magazine-impact"] .section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  max-width: 24ch;
}

body[data-template="magazine-impact"] .service-card {
  border-left: 3px solid var(--highlight-color);
}

body[data-template="trust-stack"] .trust-strip {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--highlight-color) 14%, transparent),
    color-mix(in srgb, var(--surface-color) 72%, transparent)
  );
}

body[data-template="trust-stack"] .result-card,
body[data-template="trust-stack"] .testimonial-slider,
body[data-template="trust-stack"] .section-offer {
  border-color: color-mix(in srgb, var(--highlight-color) 36%, transparent);
}

body[data-services-style="split"] .card-grid {
  grid-template-columns: 1fr;
}

body[data-services-style="split"] .service-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem 1.1rem;
}

body[data-services-style="split"] .service-card h3,
body[data-services-style="split"] .service-card p {
  margin: 0;
}

body[data-services-style="split"] .service-card p:not(.outcome) {
  grid-column: 1 / -1;
}

body[data-services-style="minimal"] .service-card {
  background: color-mix(in srgb, var(--surface-color) 72%, transparent);
  border-style: dashed;
}

body[data-process-style="steps"] .timeline li {
  grid-template-columns: 1fr;
  border-left: 3px solid var(--highlight-color);
}

body[data-process-style="steps"] .timeline .index {
  width: 36px;
  height: 36px;
}

body[data-process-style="compact"] .timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-process-style="compact"] .timeline li {
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 0.8rem;
}

body[data-results-style="highlight"] .result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-results-style="highlight"] .result-card:first-child {
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--highlight-color) 40%, transparent);
}

body[data-results-style="minimal"] .result-card {
  background: color-mix(in srgb, var(--surface-color) 70%, transparent);
  border-style: dashed;
}

.testimonial-dots.is-hidden {
  display: none;
}

.testimonial-track.is-static {
  transform: none !important;
}

body[data-testimonials-style="grid"] .testimonial-slider,
body[data-testimonials-style="quotes"] .testimonial-slider {
  overflow: visible;
}

body[data-testimonials-style="grid"] .testimonial-track.is-static {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body[data-testimonials-style="grid"] .testimonial {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-color) 84%, transparent);
  padding: 1rem;
}

body[data-testimonials-style="quotes"] .testimonial-track.is-static {
  display: grid;
  gap: 1rem;
}

body[data-testimonials-style="quotes"] .testimonial {
  border-left: 4px solid var(--highlight-color);
  background: color-mix(in srgb, var(--surface-color) 80%, transparent);
}

body[data-faq-style="cards"] .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}

body[data-faq-style="cards"] .faq-item summary {
  cursor: default;
}

body[data-faq-style="cards"] .faq-item {
  height: 100%;
}

body[data-faq-style="cards"] .faq-item p {
  padding-top: 0;
}

body[data-faq-style="minimal"] .faq-item {
  background: transparent;
  border: 1px dashed var(--border-soft);
}

body[data-contact-style="stacked"] .contact-grid {
  grid-template-columns: 1fr;
}

body[data-contact-style="compact"] .contact-grid {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

body[data-contact-style="compact"] .contact-copy,
body[data-contact-style="compact"] .lead-form {
  padding: 0.95rem;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .site-nav {
    border-radius: 20px;
    row-gap: 0.58rem;
    column-gap: 0.85rem;
    padding: 0.72rem 0.95rem;
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
      ". brand toggle"
      "links links links";
  }

  .brand,
  body[data-nav-variant="compact-center"] .brand {
    font-size: 1.24rem;
    justify-self: center !important;
    margin-inline: auto;
    text-align: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    padding-bottom: 0.22rem;
    gap: 0.55rem 0.75rem;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 0.32rem 0.58rem;
    border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
    background: color-mix(in srgb, var(--surface-color) 60%, transparent);
  }

  .section-head {
    justify-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .section h2 {
    text-align: center;
    margin-inline: auto;
    max-width: 26ch;
  }

  .hero h1,
  .hero-panel h2 {
    text-align: center;
    margin-inline: auto;
  }

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

  .contact-grid {
    gap: 0.72rem;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    perspective: none;
  }

  .engagement-card:hover {
    transform: none;
  }

  .video-grid,
  body[data-video-aspect="portrait"] .video-grid,
  body[data-video-aspect="square"] .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-carousel-viewport {
    padding-inline: 0.3rem;
  }

  .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="portrait"] .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="square"] .video-carousel-viewport .video-grid.is-carousel .video-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .video-grid.is-carousel[data-carousel-mode="compact"],
  body[data-video-aspect="portrait"] .video-grid.is-carousel[data-carousel-mode="compact"],
  body[data-video-aspect="square"] .video-grid.is-carousel[data-carousel-mode="compact"] {
    display: flex;
  }

  .video-grid.is-carousel[data-carousel-mode="compact"] .video-card,
  body[data-video-aspect="portrait"] .video-grid.is-carousel[data-carousel-mode="compact"] .video-card,
  body[data-video-aspect="square"] .video-grid.is-carousel[data-carousel-mode="compact"] .video-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  body[data-process-style="compact"] .timeline,
  body[data-testimonials-style="grid"] .testimonial-track.is-static,
  body[data-faq-style="cards"] .faq-list {
    grid-template-columns: 1fr;
  }

  body[data-template="growth-dashboard"] .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-cta {
    width: calc(100% - 1.4rem);
    text-align: center;
  }
}

@media (max-width: 680px) {
  .top-ribbon {
    font-size: 0.74rem;
    padding-inline: 0.85rem;
  }

  .site-nav {
    margin-top: 0.6rem;
    border-radius: 16px;
    padding: 0.62rem 0.72rem;
    gap: 0.62rem;
    min-height: 82px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .theme-icon-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0.34rem 0.42rem;
    padding: 0 0.1rem 0.14rem;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: normal;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.28rem 0.54rem;
    border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-color) 64%, transparent);
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

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

  body[data-template="growth-dashboard"] .metrics-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .video-grid,
  body[data-video-aspect="portrait"] .video-grid,
  body[data-video-aspect="square"] .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="portrait"] .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="square"] .video-carousel-viewport .video-grid.is-carousel .video-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .video-grid.is-carousel[data-carousel-mode="compact"],
  body[data-video-aspect="portrait"] .video-grid.is-carousel[data-carousel-mode="compact"],
  body[data-video-aspect="square"] .video-grid.is-carousel[data-carousel-mode="compact"] {
    display: flex;
  }

  .video-grid.is-carousel[data-carousel-mode="compact"] .video-card,
  body[data-video-aspect="portrait"] .video-grid.is-carousel[data-carousel-mode="compact"] .video-card,
  body[data-video-aspect="square"] .video-grid.is-carousel[data-carousel-mode="compact"] .video-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .logo-marquee {
    padding-block: 0.7rem;
  }

  .logo-ticker-item {
    min-width: 130px;
    height: 42px;
    padding: 0.38rem 0.62rem;
    gap: 0.4rem;
  }

  .logo-ticker-item img {
    width: 20px;
    height: 20px;
  }

  .logo-ticker-item span {
    font-size: 0.74rem;
  }

  .hero {
    margin-top: 1.35rem;
    gap: 0.85rem;
  }

  .hero-proof {
    font-size: 0.87rem;
  }

  .video-card {
    padding: 0.78rem;
    border-radius: 18px;
  }

  .video-wrap {
    border-radius: 16px;
  }

  .video-sound-toggle,
  .video-speed-toggle {
    font-size: 0.66rem;
  }

  .video-carousel-nav {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .video-carousel-viewport {
    padding-inline: 0.3rem;
  }

  .video-nav-icon {
    width: 16px;
    height: 16px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  main {
    gap: clamp(1.45rem, 4.8vw, 1.9rem);
  }

  .section {
    gap: 0.78rem;
  }

  .section h2 {
    max-width: 24ch;
    font-size: clamp(1.2rem, 6.2vw, 1.74rem);
    line-height: 1.14;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(1.38rem, 8.4vw, 1.92rem);
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 0.94rem;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .result-card,
  .contact-copy,
  .lead-form,
  .section-offer {
    padding: 0.84rem;
  }

  .contact-meta {
    gap: 0.4rem;
  }

  .contact-points span {
    font-size: 0.7rem;
    padding: 0.24rem 0.44rem;
  }

  .contact-meta li {
    padding: 0.44rem 0.52rem;
  }

  .contact-next-steps li {
    font-size: 0.8rem;
  }

  .offer-points li {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 0.5rem;
    font-size: 0.88rem;
  }

  .offer-points li::before {
    margin-top: 0.42rem;
  }

  .video-grid,
  body[data-video-aspect="portrait"] .video-grid,
  body[data-video-aspect="square"] .video-grid {
    gap: 0.7rem;
  }

  .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="portrait"] .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="square"] .video-carousel-viewport .video-grid.is-carousel .video-card {
    flex-basis: calc((100% - 0.7rem) / 2);
    max-width: calc((100% - 0.7rem) / 2);
  }

  .sticky-cta {
    bottom: 0.72rem;
    width: calc(100% - 1rem);
    padding: 0.72rem 0.95rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .site-nav {
    padding: 0.56rem 0.62rem;
    min-height: 76px;
    row-gap: 0.44rem;
    column-gap: 0.62rem;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand::before {
    width: 8px;
    height: 8px;
    margin-right: 0.38rem;
  }

  .theme-icon-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 0.34rem;
    padding-bottom: 0.16rem;
  }

  .nav-links a {
    font-size: 0.84rem;
    padding: 0.22rem 0.42rem;
  }

  .hero {
    margin-top: 1.05rem;
    gap: 0.68rem;
  }

  .hero-proof {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .result-meta {
    gap: 0.35rem 0.55rem;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .result-growth {
    font-size: 0.96rem;
  }

  .contact-meta {
    font-size: 0.84rem;
  }

  .contact-next-steps li {
    padding-left: 0.88rem;
  }

  .video-carousel-nav {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .video-carousel-nav-left {
    left: 0.22rem;
  }

  .video-carousel-nav-right {
    right: 0.22rem;
  }

  .video-carousel-viewport {
    padding-inline: 0.25rem;
  }

  .video-grid,
  body[data-video-aspect="portrait"] .video-grid,
  body[data-video-aspect="square"] .video-grid {
    gap: 0.55rem;
  }

  .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="portrait"] .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="square"] .video-carousel-viewport .video-grid.is-carousel .video-card {
    flex-basis: calc((100% - 0.55rem) / 2);
    max-width: calc((100% - 0.55rem) / 2);
  }

  .video-card {
    padding: 0.62rem;
    border-radius: 14px;
  }

  .video-wrap {
    border-radius: 12px;
    min-height: 120px;
  }

  .video-card h3 {
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .video-card p {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .video-sound-toggle,
  .video-speed-toggle {
    font-size: 0.6rem;
  }

  .video-sound-toggle {
    padding: 0.26rem 0.42rem;
  }

  .video-speed-toggle {
    width: 1.88rem;
    height: 1.88rem;
    padding: 0.3rem;
  }

  .video-sound-icon {
    width: 0.94rem;
    height: 0.94rem;
  }

  .video-speed-panel {
    width: min(150px, calc(100vw - 1.6rem));
    padding: 0.34rem 0.44rem;
  }

  .video-speed-readout {
    font-size: 0.6rem;
  }

  .video-play-icon {
    width: 44px;
    height: 44px;
  }

  .video-play-icon::before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #ffffff;
  }
}

@media (max-width: 420px) {
  .top-ribbon {
    font-size: 0.68rem;
    padding: 0.56rem 0.62rem;
    line-height: 1.3;
  }

  .site-nav {
    border-radius: 12px;
    min-height: 72px;
  }

  .brand {
    font-size: 1.04rem;
  }

  .theme-icon-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.28rem 0.34rem;
    padding: 0 0.08rem 0;
  }

  .nav-links a {
    white-space: normal;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.2rem 0.34rem;
  }

  .logo-ticker-item {
    min-width: 112px;
    height: 40px;
    gap: 0.32rem;
  }

  .logo-ticker-item span {
    font-size: 0.68rem;
  }

  .video-carousel-nav {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .video-carousel-nav-left {
    left: 0.25rem;
  }

  .video-carousel-nav-right {
    right: 0.25rem;
  }

  .video-carousel-viewport {
    padding-inline: 0.2rem;
  }

  .video-nav-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(var(--container), calc(100% - 0.8rem));
  }

  main {
    gap: clamp(1.15rem, 5vw, 1.5rem);
  }

  .top-ribbon {
    font-size: 0.64rem;
    padding: 0.5rem 0.5rem;
  }

  .site-nav {
    padding: 0.46rem 0.5rem;
    min-height: 66px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand::before {
    width: 6px;
    height: 6px;
    margin-right: 0.25rem;
  }

  .theme-icon-toggle {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    gap: 0.22rem 0.28rem;
    padding-bottom: 0;
  }

  .nav-links a {
    font-size: 0.74rem;
    line-height: 1.2;
    padding: 0.16rem 0.28rem;
    border-radius: 999px;
  }

  .logo-ticker-item {
    min-width: 98px;
    height: 36px;
    padding: 0.28rem 0.42rem;
    gap: 0.24rem;
  }

  .logo-ticker-item img {
    width: 16px;
    height: 16px;
  }

  .logo-ticker-item span {
    font-size: 0.62rem;
  }

  .video-carousel-nav {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .video-carousel-nav-left {
    left: 0.2rem;
  }

  .video-carousel-nav-right {
    right: 0.2rem;
  }

  .video-carousel-viewport {
    padding-inline: 0.16rem;
  }

  .video-grid,
  body[data-video-aspect="portrait"] .video-grid,
  body[data-video-aspect="square"] .video-grid {
    gap: 0.42rem;
  }

  .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="portrait"] .video-carousel-viewport .video-grid.is-carousel .video-card,
  body[data-video-aspect="square"] .video-carousel-viewport .video-grid.is-carousel .video-card {
    flex-basis: calc((100% - 0.42rem) / 2);
    max-width: calc((100% - 0.42rem) / 2);
  }

  .video-card {
    padding: 0.52rem;
    border-radius: 12px;
  }

  .video-wrap {
    border-radius: 10px;
    min-height: 0;
  }

  .video-card h3 {
    font-size: 0.78rem;
    min-height: 0;
  }

  .video-card p {
    font-size: 0.69rem;
  }

  .video-speed-controls {
    top: 0.28rem;
    right: 0.28rem;
  }

  .video-sound-toggle {
    top: 0.28rem;
    left: 0.28rem;
  }

  .video-sound-icon {
    width: 0.88rem;
    height: 0.88rem;
  }
}
