:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-deep: rgba(9, 17, 30, 0.96);
  --text: #0f1723;
  --muted: #667184;
  --line: rgba(15, 23, 35, 0.08);
  --line-strong: rgba(15, 23, 35, 0.14);
  --accent: #ff6a00;
  --accent-deep: #d85300;
  --navy: #09111e;
  --cyan-glow: rgba(89, 214, 255, 0.18);
  --orange-glow: rgba(255, 133, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 18, 30, 0.1);
  --shadow-md: 0 14px 36px rgba(10, 18, 30, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1200px, calc(100vw - 32px));
  --cyan: #59d6ff;
  --orange: #ff7a1f;
  --pointer-x: 50vw;
  --pointer-y: 22vh;
  --pointer-shift-x: 0px;
  --pointer-shift-y: 0px;
}

:root[data-theme="dark"] {
  --bg: #101317;
  --surface: rgba(23, 27, 34, 0.82);
  --surface-strong: rgba(28, 33, 41, 0.94);
  --surface-deep: rgba(8, 10, 14, 0.98);
  --text: #f0f3f7;
  --muted: #a3acba;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #ff7a1f;
  --accent-deep: #ea5e00;
  --navy: #0b0d11;
  --cyan-glow: rgba(82, 207, 255, 0.16);
  --orange-glow: rgba(255, 120, 31, 0.12);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, var(--cyan-glow), transparent 24%),
    radial-gradient(circle at 88% 16%, var(--orange-glow), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 22%, #f6f7fb 100%);
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 14% 0%, rgba(82, 207, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 120, 31, 0.08), transparent 18%),
    linear-gradient(180deg, #111418 0%, #0d1014 28%, #12151a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 17, 30, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 17, 30, 0.022) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px;
  pointer-events: none;
  opacity: 0.55;
}

:root[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  opacity: 0.34;
}

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

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.site-shader {
  position: fixed;
  inset: -12%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-shader__glow,
.site-shader__mesh {
  position: absolute;
  pointer-events: none;
  will-change: transform, left, top, opacity;
}

.site-shader__glow {
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.56;
}

.site-shader__glow--cyan {
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: min(38rem, 48vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(89, 214, 255, 0.18) 0%,
    rgba(89, 214, 255, 0.1) 28%,
    rgba(89, 214, 255, 0.04) 46%,
    transparent 72%
  );
  transform: translate3d(-50%, -50%, 0);
  animation: shaderFloatCyan 18s ease-in-out infinite alternate;
}

.site-shader__glow--orange {
  top: calc(var(--pointer-y) + clamp(30px, 5vh, 84px));
  left: calc(var(--pointer-x) + clamp(70px, 10vw, 170px));
  width: min(28rem, 34vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 122, 31, 0.14) 0%,
    rgba(255, 122, 31, 0.08) 30%,
    rgba(255, 122, 31, 0.03) 52%,
    transparent 74%
  );
  transform: translate3d(-50%, -50%, 0);
  animation: shaderFloatOrange 22s ease-in-out infinite alternate-reverse;
}

.site-shader__mesh {
  inset: -10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(89, 214, 255, 0.05), transparent 34%, rgba(255, 122, 31, 0.04));
  filter: blur(80px);
  opacity: 0.5;
  transform: translate3d(
      calc(var(--pointer-shift-x) * -0.38),
      calc(var(--pointer-shift-y) * -0.38),
      0
    )
    rotate(-4deg);
  animation: shaderMeshDrift 26s ease-in-out infinite alternate;
}

.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-120px, -120px, 0);
  transition: opacity 180ms ease;
}

.site-cursor__ring,
.site-cursor__core {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.site-cursor__ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(89, 214, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 28px rgba(89, 214, 255, 0.22),
    0 0 18px rgba(255, 122, 31, 0.14);
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%) scale(1);
}

.site-cursor__core {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  box-shadow:
    0 0 16px rgba(89, 214, 255, 0.46),
    0 0 14px rgba(255, 122, 31, 0.28);
  transform: translate(-50%, -50%);
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor.is-interactive .site-cursor__ring {
  transform: translate(-50%, -50%) scale(1.22);
  border-color: rgba(89, 214, 255, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 38px rgba(89, 214, 255, 0.34),
    0 0 24px rgba(255, 122, 31, 0.22);
}

.site-cursor.is-interactive .site-cursor__core {
  transform: translate(-50%, -50%) scale(1.16);
}

.site-cursor.is-pressed .site-cursor__ring {
  transform: translate(-50%, -50%) scale(0.92);
}

.site-cursor.is-pressed .site-cursor__core {
  transform: translate(-50%, -50%) scale(0.86);
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor summary,
  body.has-custom-cursor [role="button"],
  body.has-custom-cursor input[type="range"] {
    cursor: none !important;
  }
}

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

  100% {
    transform: translate3d(-50%, -50%, 0) scale(1.08);
  }
}

@keyframes shaderFloatOrange {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  100% {
    transform: translate3d(-50%, -50%, 0) scale(1.08);
  }
}

@keyframes shaderMeshDrift {
  0% {
    transform: translate3d(
        calc(var(--pointer-shift-x) * -0.38),
        calc(var(--pointer-shift-y) * -0.38),
        0
      )
      rotate(-4deg)
      scale(1);
  }

  100% {
    transform: translate3d(
        calc(var(--pointer-shift-x) * -0.16),
        calc(var(--pointer-shift-y) * -0.16),
        0
      )
      rotate(2deg)
      scale(1.04);
  }
}

.site-header,
.section,
.site-footer {
  width: var(--content-width);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  width: min(1392px, calc(100vw - 12px));
  padding: 8px 12px;
  margin-top: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 16px 34px rgba(9, 17, 30, 0.08),
    0 0 24px rgba(89, 214, 255, 0.04);
  backdrop-filter: blur(18px);
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(255, 106, 0, 0.16));
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong,
.brand-copy span {
  font-size: 0.76rem;
  letter-spacing: -0.04em;
}

.brand-copy strong {
  color: var(--text);
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
}

.site-nav {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 8px 18px rgba(10, 18, 30, 0.06),
    0 0 0 rgba(89, 214, 255, 0),
    0 0 0 rgba(255, 122, 31, 0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-within {
  transform: translateY(-1px);
  border-color: rgba(89, 214, 255, 0.2);
  box-shadow:
    0 12px 22px rgba(9, 17, 30, 0.08),
    0 0 18px rgba(89, 214, 255, 0.1),
    0 0 10px rgba(255, 122, 31, 0.05);
}

.language-toggle__button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(15, 23, 35, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-toggle__button:hover,
.language-toggle__button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.language-toggle__button[aria-pressed="true"] {
  color: var(--text);
  background: rgba(10, 18, 30, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 14px rgba(89, 214, 255, 0.08),
    0 0 8px rgba(255, 122, 31, 0.05);
}

.language-toggle__flag {
  font-size: 0.84rem;
  line-height: 1;
  filter: saturate(1.05);
}

.language-toggle__code {
  line-height: 1;
}

.site-nav a {
  color: rgba(15, 23, 35, 0.74);
  font-size: 0.87rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  text-shadow:
    0 0 16px rgba(89, 214, 255, 0.16),
    0 0 10px rgba(255, 122, 31, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(10, 18, 30, 0.12),
    0 0 18px rgba(89, 214, 255, 0.12),
    0 0 10px rgba(255, 122, 31, 0.06);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 10px 0 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 12px 22px rgba(9, 17, 30, 0.08),
    0 0 18px rgba(89, 214, 255, 0.1),
    0 0 10px rgba(255, 122, 31, 0.05);
}

.theme-toggle__track {
  position: relative;
  width: 36px;
  height: 21px;
  border-radius: 999px;
  background: rgba(15, 23, 35, 0.12);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 35, 0.06);
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #d9e0ea);
  box-shadow: 0 4px 10px rgba(15, 23, 35, 0.2);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.theme-toggle__text {
  font-size: 0.74rem;
  font-weight: 700;
}

.header-cta {
  min-height: 36px;
  padding-inline: 14px;
}

:root[data-theme="dark"] .language-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 26px rgba(82, 207, 255, 0.06);
}

:root[data-theme="dark"] .language-toggle__button {
  color: rgba(243, 245, 249, 0.72);
}

:root[data-theme="dark"] .language-toggle__button:hover,
:root[data-theme="dark"] .language-toggle__button:focus-visible {
  color: rgba(255, 255, 255, 0.98);
}

:root[data-theme="dark"] .language-toggle__button[aria-pressed="true"] {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(82, 207, 255, 0.22),
    0 0 12px rgba(255, 122, 31, 0.14);
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 26px rgba(82, 207, 255, 0.06);
}

:root[data-theme="dark"] .theme-toggle__track {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .theme-toggle__thumb {
  background: linear-gradient(180deg, #f18a2f, #cf4f00);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(82, 207, 255, 0.24);
}

:root[data-theme="dark"] .theme-toggle[aria-pressed="true"] .theme-toggle__thumb,
.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateX(15px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #111827, #09111e);
  border-color: rgba(89, 214, 255, 0.2);
  box-shadow:
    0 16px 32px rgba(9, 17, 30, 0.18),
    0 0 28px rgba(89, 214, 255, 0.1);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line-strong);
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 254, 0.92));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--partners {
  max-width: none;
}

.section-label,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before,
.card-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 35, 0.18), rgba(89, 214, 255, 0.7));
}

.section-heading h2,
.hero-copy h1,
.video-modal__meta h3 {
  margin: 16px 0 0;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.34rem, 0.9vw, 0.8rem);
  max-width: 100%;
  line-height: 1;
  white-space: nowrap;
}

.hero-title__item {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.18rem, 2.06vw, 2.72rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  background-image:
    linear-gradient(180deg, #07111d 0%, #203246 52%, #5f738a 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.28) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
    radial-gradient(circle at 14% 18%, rgba(89, 214, 255, 0.34), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(255, 122, 31, 0.2), transparent 24%);
  background-size: 100% 100%, 180% 100%, 100% 100%, 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow:
    0 0 18px rgba(89, 214, 255, 0.08),
    0 0 24px rgba(255, 122, 31, 0.04);
}

.hero-title__divider {
  position: relative;
  width: clamp(0.84rem, 1.34vw, 1.2rem);
  height: clamp(0.84rem, 1.34vw, 1.2rem);
  flex: 0 0 auto;
}

.hero-title__divider::before,
.hero-title__divider::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-title__divider::before {
  inset: 0.18em;
  border-radius: 0.22em;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(89, 214, 255, 0.94), rgba(255, 122, 31, 0.9));
  box-shadow:
    0 0 16px rgba(89, 214, 255, 0.18),
    0 0 18px rgba(255, 122, 31, 0.1);
}

.hero-title__divider::after {
  inset: 50% auto auto 50%;
  width: 2.4em;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(89, 214, 255, 0.18), rgba(255, 122, 31, 0.18));
  opacity: 0.38;
}

.section-heading h2,
.video-modal__meta h3 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
}

.section-heading p,
.hero-lede,
.stat-card span,
.social-copy p,
.service-card p,
.faq-item p,
.about-copy p,
.footer-copy,
.footer-note,
.hero-stage__meta p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading__single-line {
  max-width: none;
  white-space: nowrap;
}

.hero {
  padding-top: 72px;
}

.hero-inner {
  position: relative;
  overflow: hidden;
  padding: 48px 42px 36px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 28px;
  justify-items: center;
}

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

.hero-inner::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
}

.hero-inner::after {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 214, 255, 0.85), rgba(255, 106, 0, 0.45), transparent);
}

.hero-copy {
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

.hero-lede {
  max-width: 56rem;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-lede span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions--center {
  justify-content: center;
}

.hero-stage {
  width: min(980px, 100%);
  padding: 14px;
  border-radius: 30px;
}

.hero-stage__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #edf2f8;
  border: 1px solid var(--line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(89, 214, 255, 0.08),
    0 0 24px rgba(89, 214, 255, 0.1),
    0 0 14px rgba(255, 122, 31, 0.06);
}

.hero-stage__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 24px;
  border: 0;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 122, 31, 0.06), transparent 22%),
    #ffffff;
  cursor: pointer;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero-stage__cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-stage__cover-mark {
  width: min(33vw, 320px);
  margin-inline: auto;
}

.hero-stage__cover-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.34em;
  color: #212733;
  font-size: clamp(1.18rem, 2.3vw, 2.68rem);
  font-weight: 500;
  letter-spacing: 0.34em;
}

.hero-stage__cover-wordmark-accent {
  color: #ff7a1f;
}

.hero-stage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.hero-stage__video::-webkit-media-controls,
.hero-stage__video::-webkit-media-controls-enclosure,
.hero-stage__video::-webkit-media-controls-panel {
  background: transparent !important;
  background-image: none !important;
}

.hero-stage__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
}

.hero-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10, 18, 30, 0.08);
}

.hero-control--primary {
  background: linear-gradient(180deg, #111827, #09111e);
  border-color: rgba(89, 214, 255, 0.2);
  color: #ffffff;
}

.hero-stage__timeline {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.hero-stage__seek {
  --seek-progress: 0%;
  width: 100%;
  margin: 0;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--accent) 0,
      var(--accent) var(--seek-progress),
      rgba(15, 23, 35, 0.12) var(--seek-progress),
      rgba(15, 23, 35, 0.12) 100%
    );
  outline: none;
  cursor: pointer;
}

.hero-stage__seek::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10, 18, 30, 0.2);
}

.hero-stage__seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10, 18, 30, 0.2);
}

.hero-stage__seek::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.hero-stage__time {
  display: inline-flex;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.logo-card {
  position: relative;
  display: block;
  min-height: 144px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(89, 214, 255, 0.08), transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.logo-card:hover,
.logo-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(89, 214, 255, 0.28);
  box-shadow:
    0 24px 50px rgba(10, 18, 30, 0.16),
    0 0 34px rgba(89, 214, 255, 0.18),
    0 0 18px rgba(255, 122, 31, 0.08);
}

.logo-card:hover::after,
.logo-card:focus-visible::after {
  opacity: 1;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.98);
  opacity: 1;
  transform: scale(1.24);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    opacity 220ms ease;
}

.logo-card:hover img,
.logo-card:focus-visible img {
  transform: scale(1.28);
}

.section-social {
  padding-top: 62px;
}

.social-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.social-shell::before,
.social-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.social-shell::before {
  left: -6%;
  bottom: -8%;
  width: 300px;
  height: 300px;
  background: rgba(89, 214, 255, 0.26);
}

.social-shell::after {
  right: -5%;
  top: 18%;
  width: 260px;
  height: 260px;
  background: rgba(255, 133, 51, 0.2);
}

.social-shell > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .social-shell:hover,
  .social-shell:focus-within {
    transform: translateY(-6px);
    border-color: rgba(89, 214, 255, 0.28);
    box-shadow:
      0 34px 72px rgba(10, 18, 30, 0.18),
      0 0 48px rgba(89, 214, 255, 0.22),
      0 0 28px rgba(255, 122, 31, 0.12);
  }

  .social-shell:hover::before,
  .social-shell:focus-within::before {
    opacity: 0.7;
  }

  .social-shell:hover::after,
  .social-shell:focus-within::after {
    opacity: 0.72;
  }
}

.social-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.social-notes {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.social-notes span {
  color: var(--muted);
  font-weight: 700;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 9 / 18.5;
  padding: 16px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #181c21, #040507 68%, #000000);
  box-shadow:
    0 30px 76px rgba(5, 10, 18, 0.28),
    0 0 34px rgba(82, 207, 255, 0.08),
    0 0 16px rgba(255, 122, 31, 0.05);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.phone-frame::before {
  inset: 5px;
  z-index: 0;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -30px 42px rgba(0, 0, 0, 0.3);
}

.phone-frame::after {
  inset: -10px;
  z-index: 0;
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 22%, rgba(82, 207, 255, 0.26), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(255, 122, 31, 0.2), transparent 24%);
  filter: blur(18px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.phone-frame__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 38%;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #020407, #0b0e13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-frame__notch::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, #78b0ff, #121827 72%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 12px rgba(82, 207, 255, 0.16);
}

.phone-frame__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.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;
}

.phone-frame__audio {
  position: absolute;
  top: 28px;
  right: 18px;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 8, 12, 0.72);
  color: #f4f7fb;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.phone-frame__audio-icon {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.phone-frame__audio-icon--off {
  opacity: 1;
  transform: scale(1);
}

.phone-frame__audio[aria-pressed="true"] {
  border-color: rgba(82, 207, 255, 0.34);
  background: rgba(7, 12, 18, 0.82);
  box-shadow:
    0 0 18px rgba(82, 207, 255, 0.14),
    0 0 18px rgba(255, 122, 31, 0.08);
}

.phone-frame__audio[aria-pressed="true"] .phone-frame__audio-icon--off {
  opacity: 0;
  transform: scale(0.82);
}

.phone-frame__audio[aria-pressed="true"] .phone-frame__audio-icon--on {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) {
  .phone-frame:hover,
  .phone-frame:focus-within {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(82, 207, 255, 0.24);
    box-shadow:
      0 36px 88px rgba(4, 8, 14, 0.38),
      0 0 44px rgba(82, 207, 255, 0.12),
      0 0 24px rgba(255, 122, 31, 0.08);
  }

  .phone-frame:hover::after,
  .phone-frame:focus-within::after {
    opacity: 1;
    transform: scale(1.02);
  }

  .phone-frame:hover .phone-frame__audio,
  .phone-frame:focus-within .phone-frame__audio {
    transform: translateY(-2px);
    border-color: rgba(82, 207, 255, 0.24);
    box-shadow:
      0 0 20px rgba(82, 207, 255, 0.12),
      0 0 14px rgba(255, 122, 31, 0.08);
  }
}

.account-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.account-carousel__viewport {
  min-width: 0;
  overflow: hidden;
}

.account-carousel__button {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.account-carousel__button span {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-1px);
}

.account-carousel__button:hover,
.account-carousel__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(89, 214, 255, 0.3);
  box-shadow:
    0 18px 34px rgba(10, 18, 30, 0.14),
    0 0 30px rgba(89, 214, 255, 0.2),
    0 0 18px rgba(255, 122, 31, 0.12);
}

.account-carousel__button:disabled {
  opacity: 0.38;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.account-grid {
  --account-columns: 5;
  --account-gap: 14px;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--account-gap) * (var(--account-columns) - 1))) / var(--account-columns)
  );
  gap: var(--account-gap);
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 2px 18px;
}

.account-grid::-webkit-scrollbar {
  display: none;
}

.account-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 198px;
  padding: 16px 13px 15px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 254, 0.92)),
    linear-gradient(135deg, rgba(89, 214, 255, 0.04), rgba(255, 122, 31, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 22px 48px rgba(10, 18, 30, 0.1),
    0 0 0 rgba(89, 214, 255, 0),
    0 0 0 rgba(255, 122, 31, 0);
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.account-card::before,
.account-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.account-card::before {
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
  opacity: 0.82;
}

.account-card::after {
  inset: -10px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(89, 214, 255, 0.34), transparent 26%),
    radial-gradient(circle at 78% 82%, rgba(255, 122, 31, 0.22), transparent 28%);
  filter: blur(18px);
  opacity: 0;
}

.account-card:hover,
.account-card:focus-visible {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(89, 214, 255, 0.34);
  box-shadow:
    0 34px 68px rgba(10, 18, 30, 0.18),
    0 0 60px rgba(89, 214, 255, 0.3),
    0 0 34px rgba(255, 122, 31, 0.18);
}

.account-card:hover::after,
.account-card:focus-visible::after {
  opacity: 1;
  transform: scale(1.02);
}

.account-card__avatar-wrap,
.account-card__name,
.account-card__category,
.account-card__followers {
  position: relative;
  z-index: 1;
}

.account-card__avatar-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 2px;
}

.account-card__avatar {
  position: relative;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(10, 18, 30, 0.16);
}

.account-card__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 150, 48, 1), rgba(230, 38, 132, 0.98), rgba(120, 94, 255, 0.9));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.account-card__avatar--contain img {
  object-fit: contain;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.account-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 241, 248, 0.72));
  transition:
    transform 320ms cubic-bezier(0.2, 0.82, 0.2, 1),
    filter 220ms ease;
}

.account-card:hover img,
.account-card:focus-visible img {
  transform: scale(1.08);
}

.account-card:hover .account-card__avatar,
.account-card:focus-visible .account-card__avatar {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(10, 18, 30, 0.18),
    0 0 24px rgba(89, 214, 255, 0.2),
    0 0 18px rgba(255, 122, 31, 0.12);
}

.account-card:hover .account-card__followers,
.account-card:focus-visible .account-card__followers {
  box-shadow:
    0 0 24px rgba(89, 214, 255, 0.16),
    0 0 16px rgba(255, 122, 31, 0.08);
}

.account-card__name {
  margin: 4px 0 0;
  min-height: 2.5em;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
}

.account-card__category {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.account-card__followers {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: auto 0 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(10, 15, 23, 0.08);
  border: 1px solid rgba(15, 23, 35, 0.08);
  color: rgba(15, 23, 35, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
}

.account-card__followers::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  box-shadow:
    0 0 10px rgba(82, 207, 255, 0.34),
    0 0 12px rgba(255, 150, 48, 0.2);
}

.account-grid__error {
  min-width: 100%;
  margin: 0;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 40px;
  border-radius: 42px;
}

.services-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.service-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(89, 214, 255, 0.26);
  box-shadow:
    0 24px 48px rgba(10, 18, 30, 0.14),
    0 0 30px rgba(89, 214, 255, 0.14),
    0 0 18px rgba(255, 122, 31, 0.08);
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.services-media {
  display: flex;
  align-self: stretch;
  overflow: hidden;
  border-radius: 30px;
  min-height: 480px;
  background:
    linear-gradient(135deg, rgba(89, 214, 255, 0.1), rgba(255, 106, 0, 0.08)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    var(--shadow-lg),
    0 0 28px rgba(89, 214, 255, 0.12),
    0 0 16px rgba(255, 122, 31, 0.06);
}

.services-media__video {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

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

.faq-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(89, 214, 255, 0.24);
  box-shadow:
    0 22px 44px rgba(10, 18, 30, 0.14),
    0 0 28px rgba(89, 214, 255, 0.14),
    0 0 16px rgba(255, 122, 31, 0.08);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 700;
  font-size: 1.02rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--text);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  line-height: 1.68;
  color: var(--text-muted);
}

.faq-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 28px;
}

.faq-cta p {
  margin: 0;
  max-width: 680px;
  font-size: 1.04rem;
  line-height: 1.62;
}

.video-grid {
  display: grid;
  gap: 16px;
}

.video-grid--testimonials {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.video-grid--testimonial-landscapes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 16px auto 0;
}

.video-card--testimonial-portrait,
.video-card--testimonial-landscape {
  border-color: rgba(89, 214, 255, 0.18);
  box-shadow:
    0 24px 48px rgba(10, 18, 30, 0.16),
    0 0 24px rgba(89, 214, 255, 0.12),
    0 0 14px rgba(255, 122, 31, 0.08);
}

.video-card--testimonial-landscape {
  width: min(100%, 520px);
  max-width: 520px;
  flex: 1 1 420px;
  aspect-ratio: 16 / 9 !important;
}

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

.video-grid--vertical {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-card {
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(89, 214, 255, 0.08),
    0 0 24px rgba(89, 214, 255, 0.1),
    0 0 14px rgba(255, 122, 31, 0.06);
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(89, 214, 255, 0.28);
  box-shadow:
    0 28px 56px rgba(10, 18, 30, 0.18),
    0 0 42px rgba(89, 214, 255, 0.22),
    0 0 24px rgba(255, 122, 31, 0.12);
}

.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.video-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: #05090f;
  transition: opacity 220ms ease;
}

.video-card.is-preview-active.is-preview-ready .video-card__preview {
  opacity: 1;
}

.video-card.is-preview-active.is-preview-ready img {
  opacity: 0;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.02), rgba(8, 18, 35, 0.66));
}

.video-card__play {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(9, 17, 30, 0.76);
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow:
    0 10px 24px rgba(8, 18, 35, 0.18),
    0 0 18px rgba(89, 214, 255, 0.16);
}

.video-card__testimonial-meta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 3px;
  width: min(320px, calc(100% - 28px));
  max-width: min(320px, calc(100% - 28px));
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.78), rgba(8, 18, 35, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 28px rgba(8, 18, 35, 0.22),
    0 0 20px rgba(89, 214, 255, 0.14),
    0 0 12px rgba(255, 122, 31, 0.08);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.video-card__testimonial-name,
.video-card__testimonial-role {
  margin: 0;
  color: #ffffff;
  line-height: 1.15;
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-card__testimonial-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.video-card__testimonial-role {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 600;
}

.video-card__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.video-card--testimonial-portrait .video-card__overlay,
.video-card--testimonial-landscape .video-card__overlay {
  display: none;
}

.video-card--testimonial-portrait .video-card__play,
.video-card--testimonial-landscape .video-card__play {
  z-index: 2;
  box-shadow:
    0 12px 28px rgba(8, 18, 35, 0.22),
    0 0 28px rgba(89, 214, 255, 0.24),
    0 0 18px rgba(255, 122, 31, 0.12);
}

.video-card--testimonial-portrait:hover,
.video-card--testimonial-portrait:focus-visible,
.video-card--testimonial-landscape:hover,
.video-card--testimonial-landscape:focus-visible {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 32px 64px rgba(10, 18, 30, 0.22),
    0 0 46px rgba(89, 214, 255, 0.24),
    0 0 28px rgba(255, 122, 31, 0.14);
}

.video-card--testimonial-portrait:hover .video-card__testimonial-meta,
.video-card--testimonial-portrait:focus-visible .video-card__testimonial-meta,
.video-card--testimonial-landscape:hover .video-card__testimonial-meta,
.video-card--testimonial-landscape:focus-visible .video-card__testimonial-meta {
  box-shadow:
    0 20px 32px rgba(8, 18, 35, 0.24),
    0 0 28px rgba(89, 214, 255, 0.18),
    0 0 16px rgba(255, 122, 31, 0.1);
}

.video-card--horizontal-preview .video-card__overlay {
  display: none;
}

.video-card--horizontal-preview .video-card__play {
  z-index: 2;
}

.video-card--horizontal-preview {
  aspect-ratio: 16 / 9 !important;
}

.video-card--vertical-preview .video-card__overlay {
  display: none;
}

.video-card--vertical-preview .video-card__play {
  z-index: 2;
}

.video-card--vertical-preview {
  aspect-ratio: 9 / 16 !important;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.section-divider__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 113, 132, 0.38), transparent);
}

.section-divider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(89, 214, 255, 0.92), rgba(255, 122, 31, 0.9));
  box-shadow:
    0 0 16px rgba(89, 214, 255, 0.24),
    0 0 14px rgba(255, 122, 31, 0.14);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  overflow: hidden;
  border-radius: 36px;
}

.about-media img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 18%;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
  margin-bottom: 18px;
  padding: 34px;
  border-radius: 36px 36px 0 0;
  background:
    linear-gradient(180deg, #0c1320, #05090f);
  color: #ffffff;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06) inset;
}

:root[data-theme="dark"] .site-header {
  background: rgba(18, 22, 28, 0.84);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(82, 207, 255, 0.05);
}

:root[data-theme="dark"] .site-nav a {
  color: rgba(240, 243, 247, 0.78);
}

:root[data-theme="dark"] .site-nav a:hover,
:root[data-theme="dark"] .site-nav a:focus-visible {
  color: #ffffff;
}

:root[data-theme="dark"] .brand-copy strong {
  color: #f6f8fb;
}

:root[data-theme="dark"] .brand-copy span {
  color: rgba(240, 243, 247, 0.68);
}

:root[data-theme="dark"] .button-primary {
  background: linear-gradient(180deg, #252a34, #171b23);
  border-color: rgba(82, 207, 255, 0.2);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(82, 207, 255, 0.1);
}

:root[data-theme="dark"] .button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .button:hover,
:root[data-theme="dark"] .button:focus-visible {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(82, 207, 255, 0.18),
    0 0 18px rgba(255, 122, 31, 0.1);
}

:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .theme-toggle:focus-visible {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(82, 207, 255, 0.16),
    0 0 16px rgba(255, 122, 31, 0.08);
}

:root[data-theme="dark"] .panel,
:root[data-theme="dark"] .hero-inner,
:root[data-theme="dark"] .logo-card,
:root[data-theme="dark"] .account-card,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .faq-item,
:root[data-theme="dark"] .video-card,
:root[data-theme="dark"] .video-modal__dialog {
  background: linear-gradient(180deg, rgba(27, 31, 39, 0.96), rgba(17, 20, 26, 0.94));
  border-color: rgba(255, 255, 255, 0.07);
}

:root[data-theme="dark"] .hero-inner::after {
  background: linear-gradient(90deg, transparent, rgba(82, 207, 255, 0.7), rgba(255, 122, 31, 0.38), transparent);
}

:root[data-theme="dark"] .hero-title__item {
  background-image:
    linear-gradient(180deg, #f8fbff 0%, #e1e8f2 44%, #9ca9ba 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.24) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
    radial-gradient(circle at 16% 20%, rgba(82, 207, 255, 0.32), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(255, 122, 31, 0.18), transparent 24%);
  text-shadow:
    0 0 22px rgba(82, 207, 255, 0.12),
    0 0 28px rgba(255, 122, 31, 0.06);
}

:root[data-theme="dark"] .social-shell,
:root[data-theme="dark"] .services-media {
  background: linear-gradient(180deg, rgba(24, 28, 35, 0.96), rgba(15, 18, 23, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(82, 207, 255, 0.12),
    0 0 18px rgba(255, 122, 31, 0.08);
}

:root[data-theme="dark"] .social-shell:hover,
:root[data-theme="dark"] .social-shell:focus-within {
  border-color: rgba(82, 207, 255, 0.26);
  box-shadow:
    0 36px 78px rgba(0, 0, 0, 0.32),
    0 0 54px rgba(82, 207, 255, 0.18),
    0 0 32px rgba(255, 122, 31, 0.12);
}

:root[data-theme="dark"] .account-carousel__button {
  background: rgba(27, 31, 39, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
}

:root[data-theme="dark"] .account-carousel__button:hover,
:root[data-theme="dark"] .account-carousel__button:focus-visible {
  border-color: rgba(82, 207, 255, 0.3);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(82, 207, 255, 0.2),
    0 0 18px rgba(255, 122, 31, 0.12);
}

:root[data-theme="dark"] .account-card {
  background:
    linear-gradient(180deg, rgba(40, 46, 58, 0.76), rgba(24, 29, 38, 0.92)),
    linear-gradient(135deg, rgba(82, 207, 255, 0.05), rgba(255, 122, 31, 0.04));
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .account-card:hover,
:root[data-theme="dark"] .account-card:focus-visible {
  border-color: rgba(82, 207, 255, 0.34);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.34),
    0 0 56px rgba(82, 207, 255, 0.2),
    0 0 32px rgba(255, 122, 31, 0.14);
}

:root[data-theme="dark"] .account-card__name {
  color: #f5f7fb;
}

:root[data-theme="dark"] .account-card__followers {
  background: rgba(7, 11, 17, 0.54);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 251, 0.9);
}

:root[data-theme="dark"] .site-shader__glow--cyan {
  background: radial-gradient(
    circle,
    rgba(82, 207, 255, 0.2) 0%,
    rgba(82, 207, 255, 0.12) 28%,
    rgba(82, 207, 255, 0.04) 46%,
    transparent 72%
  );
  opacity: 0.7;
}

:root[data-theme="dark"] .site-shader__glow--orange {
  background: radial-gradient(
    circle,
    rgba(255, 122, 31, 0.16) 0%,
    rgba(255, 122, 31, 0.08) 30%,
    rgba(255, 122, 31, 0.03) 52%,
    transparent 74%
  );
  opacity: 0.62;
}

:root[data-theme="dark"] .site-shader__mesh {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, rgba(82, 207, 255, 0.06), transparent 34%, rgba(255, 122, 31, 0.05));
  opacity: 0.56;
}

:root[data-theme="dark"] .site-cursor__ring {
  border-color: rgba(82, 207, 255, 0.44);
  background: rgba(12, 16, 21, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(82, 207, 255, 0.28),
    0 0 22px rgba(255, 122, 31, 0.16);
}

:root[data-theme="dark"] .section-divider__line {
  background: linear-gradient(90deg, transparent, rgba(163, 172, 186, 0.28), transparent);
}

:root[data-theme="dark"] .account-grid__error {
  background: rgba(27, 31, 39, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .hero-stage__media {
  background: #0d1014;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(82, 207, 255, 0.12),
    0 0 28px rgba(82, 207, 255, 0.14),
    0 0 18px rgba(255, 122, 31, 0.08);
}

:root[data-theme="dark"] .hero-control {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 22px rgba(82, 207, 255, 0.05);
}

:root[data-theme="dark"] .hero-control--primary {
  background: linear-gradient(180deg, #252a34, #171b23);
  border-color: rgba(82, 207, 255, 0.2);
}

:root[data-theme="dark"] .hero-stage__seek {
  background:
    linear-gradient(
      90deg,
      var(--accent) 0,
      var(--accent) var(--seek-progress),
      rgba(255, 255, 255, 0.14) var(--seek-progress),
      rgba(255, 255, 255, 0.14) 100%
    );
}

:root[data-theme="dark"] .hero-stage__seek::-webkit-slider-thumb,
:root[data-theme="dark"] .hero-stage__seek::-moz-range-thumb {
  background: #f5f7fb;
}

:root[data-theme="dark"] .logo-card img {
  mix-blend-mode: screen;
  filter: var(--logo-dark-filter, grayscale(1) invert(1) brightness(2.04) contrast(2.36));
  opacity: 1;
  transform: scale(1.32);
}

:root[data-theme="dark"] .logo-card[data-dark-style="native"] img {
  mix-blend-mode: normal;
  filter: grayscale(1) brightness(1.18) contrast(1.14);
}

:root[data-theme="dark"] .logo-card:hover,
:root[data-theme="dark"] .logo-card:focus-visible {
  border-color: rgba(82, 207, 255, 0.34);
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(82, 207, 255, 0.16),
    0 0 28px rgba(255, 122, 31, 0.1);
}

:root[data-theme="dark"] .video-card:hover,
:root[data-theme="dark"] .video-card:focus-visible {
  border-color: rgba(82, 207, 255, 0.3);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(82, 207, 255, 0.18),
    0 0 26px rgba(255, 122, 31, 0.12);
}

:root[data-theme="dark"] .video-card {
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(82, 207, 255, 0.1),
    0 0 26px rgba(82, 207, 255, 0.1),
    0 0 16px rgba(255, 122, 31, 0.06);
}

:root[data-theme="dark"] .service-card:hover,
:root[data-theme="dark"] .service-card:focus-within,
:root[data-theme="dark"] .faq-item:hover,
:root[data-theme="dark"] .faq-item:focus-within {
  border-color: rgba(82, 207, 255, 0.28);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(82, 207, 255, 0.14),
    0 0 22px rgba(255, 122, 31, 0.08);
}

:root[data-theme="dark"] .faq-cta {
  background: linear-gradient(180deg, rgba(27, 31, 39, 0.96), rgba(17, 20, 26, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(82, 207, 255, 0.08);
}

:root[data-theme="dark"] .video-card__play {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .phone-frame {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #191d22, #040507 70%, #000000);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(82, 207, 255, 0.1),
    0 0 18px rgba(255, 122, 31, 0.06);
}

:root[data-theme="dark"] .phone-frame__audio {
  background: rgba(8, 11, 15, 0.78);
  color: #f5f7fb;
}

:root[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #14171d, #090b0e);
}

:root[data-theme="dark"] .footer-copy a,
:root[data-theme="dark"] .footer-copy p,
:root[data-theme="dark"] .footer-note p {
  color: rgba(240, 243, 247, 0.72);
}

:root[data-theme="dark"] .video-modal__close {
  background: rgba(255, 255, 255, 0.06);
}

.site-footer .brand-copy strong,
.site-footer .brand-copy span {
  font-size: 1.2rem;
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-copy a,
.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 9, 15, 0.78);
  backdrop-filter: blur(18px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 36px 90px rgba(5, 9, 15, 0.28);
  overflow: auto;
}

.video-modal__close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 14px;
  border: 0;
  background: rgba(8, 18, 35, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.video-modal__player {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
}

.video-modal__player video {
  width: 100%;
  max-height: 72vh;
  background: #000;
}

.video-modal__meta {
  padding: 18px 4px 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .site-header {
    gap: 10px;
    width: min(1392px, calc(100vw - 14px));
    padding: 8px 10px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .header-tools {
    gap: 5px;
  }

  .language-toggle__code,
  .theme-toggle__text,
  .header-cta {
    font-size: 0.7rem;
  }

  .hero-inner,
  .services-shell,
  .about-shell {
    grid-template-columns: 1fr;
  }

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

  .account-grid {
    --account-columns: 4;
  }

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

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

  .video-card--testimonial-landscape {
    width: min(100%, 520px);
    max-width: 520px;
  }

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

  .social-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .site-header {
    border-radius: 28px;
    padding: 14px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-inner {
    padding: 32px;
  }

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

  .hero-stage__timeline {
    grid-column: 1 / -1;
    order: 4;
  }

  .hero-copy h1 {
    gap: 0.34rem;
  }

  .hero-title__item {
    font-size: clamp(0.98rem, 1.84vw, 1.84rem);
  }

  .hero-title__divider {
    width: 0.86rem;
    height: 0.86rem;
  }

  .theme-toggle {
    min-height: 46px;
  }

  .language-toggle {
    padding: 4px;
  }

  .language-toggle__button {
    min-height: 34px;
    padding: 0 10px;
  }

  .logo-grid,
  .video-grid--horizontal,
  .video-grid--vertical,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-grid {
    --account-columns: 3;
  }

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

  .video-card--testimonial-landscape {
    width: min(100%, 560px);
    max-width: 100%;
  }

  .social-shell,
  .services-shell {
    padding: 28px;
  }

  .services-media,
  .services-media__video {
    min-height: 360px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --content-width: min(100vw - 20px, 100%);
  }

  .hero-inner {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.24rem;
    column-gap: 0.26rem;
    white-space: normal;
    line-height: 1.08;
  }

  .hero-title__item {
    font-size: clamp(0.9rem, 3vw, 1.16rem);
    letter-spacing: -0.035em;
  }

  .hero-title__divider {
    width: 0.68rem;
    height: 0.68rem;
  }

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

  .hero-control {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-lede span {
    display: inline;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .section-heading__single-line {
    white-space: normal;
  }

  .video-grid--horizontal,
  .video-grid--vertical,
  .video-grid--testimonials,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .video-grid--testimonial-landscapes {
    width: 100%;
  }

  .account-grid {
    --account-columns: 2;
  }

  .video-card--testimonial-landscape {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .site-footer {
    padding: 26px 22px;
    border-radius: 28px 28px 0 0;
  }

  .video-card__title {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .account-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-carousel__button {
    width: 46px;
    height: 46px;
  }

  .account-grid {
    --account-columns: 2;
  }

  .account-carousel__button[data-account-prev] {
    justify-self: start;
  }

  .account-carousel__button[data-account-next] {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-shader__glow,
  .site-shader__mesh {
    animation: none;
  }
}
