:root {
  --canvas: #f6f9fc;
  --canvas-strong: #eef4fb;
  --surface: #ffffff;
  --surface-soft: #fbfdff;
  --ink: #0b1020;
  --ink-soft: #1d2942;
  --text: #27364f;
  --muted: #6b778d;
  --line: #dce6f2;
  --line-strong: #c9d5e5;
  --violet: #635bff;
  --cyan: #00b8d9;
  --mint: #17b978;
  --coral: #ff6b4a;
  --gold: #f4b740;
  --shadow-sm: 0 10px 30px rgba(25, 38, 64, 0.08);
  --shadow-md: 0 24px 70px rgba(25, 38, 64, 0.14);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: 1160px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

::selection {
  background: rgba(99, 91, 255, 0.18);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  min-height: 64px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 10px 40px rgba(11, 16, 32, 0.08),
    0 2px 8px rgba(11, 16, 32, 0.04);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  transform: translateX(-50%);
  transition:
    background 500ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 500ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1),
    color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth color transitions for all children */
.site-header .brand,
.site-header .nav a,
.site-header .menu-button,
.site-header .menu-button__lines span,
.site-header .header-cta {
  transition:
    color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    background 400ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand__mark {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(99, 91, 255, 0.22));
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 6px 18px rgba(99, 91, 255, 0.35));
}

.brand span {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav a {
  position: relative;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 10px;
  transition: color 200ms ease, background 200ms ease, transform 150ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms ease;
}

.nav a:active {
  transform: scale(0.93);
  background: rgba(99, 91, 255, 0.08);
  color: var(--violet);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(11, 16, 32, 0.04);
}

.nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}

.nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-header.is-scrolled {
  border-color: rgba(220, 230, 242, 0.6);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 12px 40px rgba(11, 16, 32, 0.1),
    0 2px 8px rgba(11, 16, 32, 0.05);
}

/* Dark glass navbar — adapts when scrolled over dark sections */
.site-header.is-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(12, 16, 36, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 14px 48px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-header.is-dark .brand {
  color: #ffffff;
}

.site-header.is-dark .nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-dark .nav a:hover,
.site-header.is-dark .nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-dark .nav a.is-active {
  color: #ffffff;
}

.site-header.is-dark .nav a.is-active::after {
  background: #ffffff;
}

.site-header.is-dark .nav a:active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header.is-dark .header-cta {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.site-header.is-dark .header-cta:hover,
.site-header.is-dark .header-cta:focus-visible {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(99, 91, 255, 0.4);
}

.site-header.is-dark .menu-button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-dark .menu-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header.is-dark .menu-button__lines span {
  background: #ffffff;
}

.site-header.is-dark .menu-button[aria-expanded="true"] {
  background: #ffffff;
  border-color: #ffffff;
}

.site-header.is-dark .menu-button[aria-expanded="true"] .menu-button__lines span {
  background: var(--ink);
}

.site-header.is-dark.is-scrolled {
  background: rgba(15, 18, 38, 0.78);
}

/* Mobile panel adapts to dark mode when navbar is dark */
.site-header.is-dark ~ .mobile-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 36, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.3);
}

.site-header.is-dark ~ .mobile-panel a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-dark ~ .mobile-panel a:hover,
.site-header.is-dark ~ .mobile-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.site-header.is-dark ~ .mobile-panel a:active {
  background: rgba(124, 92, 255, 0.18);
  color: #c4b5ff;
}

.header-cta {
  margin-left: 2px;
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 20px;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.95) translateY(0);
  transition-duration: 80ms;
}

.button--primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 16, 32, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--violet);
  box-shadow: 0 18px 42px rgba(99, 91, 255, 0.28);
}

.button--secondary {
  border-color: rgba(201, 213, 229, 0.85);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(25, 38, 64, 0.1);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(99, 91, 255, 0.42);
  color: var(--violet);
}

.button--large {
  min-height: 52px;
  padding: 15px 22px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 230, 242, 0.7);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease, transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-button:hover {
  background: rgba(99, 91, 255, 0.04);
  border-color: rgba(99, 91, 255, 0.18);
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.08);
}

.menu-button:active {
  transform: scale(0.9);
  background: rgba(99, 91, 255, 0.08);
}

.menu-button[aria-expanded="true"] {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.25);
}

.menu-button__lines {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 16px;
}

.menu-button__lines span {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 350ms cubic-bezier(0.4, 0.0, 0.2, 1), opacity 250ms ease, width 300ms cubic-bezier(0.4, 0.0, 0.2, 1), background 250ms ease;
}

.menu-button__lines span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button__lines span:nth-child(2) {
  width: 14px;
}

.menu-button__lines span:nth-child(3) {
  transform: translateY(6px);
}

/* Open state → X */
.menu-button[aria-expanded="true"] .menu-button__lines span {
  background: #ffffff;
}

.menu-button[aria-expanded="true"] .menu-button__lines span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-button[aria-expanded="true"] .menu-button__lines span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-panel {
  position: fixed;
  top: 92px;
  left: 18px;
  right: 18px;
  z-index: 90;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(220, 230, 242, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(11, 16, 32, 0.18), 0 4px 14px rgba(11, 16, 32, 0.06);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;
  transition: opacity 300ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0ms 300ms;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 300ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0ms 0ms;
}

.mobile-panel a {
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: background 200ms ease, transform 150ms cubic-bezier(0.2, 0.8, 0.2, 1), color 200ms ease, opacity 250ms ease;
}

.mobile-panel.is-open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel.is-open a:nth-child(1) { transition-delay: 60ms; }
.mobile-panel.is-open a:nth-child(2) { transition-delay: 110ms; }
.mobile-panel.is-open a:nth-child(3) { transition-delay: 160ms; }
.mobile-panel.is-open a:nth-child(4) { transition-delay: 210ms; }
.mobile-panel.is-open a:nth-child(5) { transition-delay: 260ms; }
.mobile-panel.is-open a:nth-child(6) { transition-delay: 310ms; }

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: rgba(99, 91, 255, 0.05);
  color: var(--violet);
}

.mobile-panel a:active {
  transform: scale(0.96);
  background: rgba(99, 91, 255, 0.1);
  color: var(--violet);
}

.hero {
  position: relative;
  display: block;
  min-height: min(880px, 88svh);
  overflow: hidden;
  padding: 148px 0 80px;
  /* Stripe-style clean white with subtle brand tints */
  background:
    radial-gradient(70% 50% at 15% 0%, rgba(124, 92, 255, 0.08), transparent 60%),
    radial-gradient(60% 50% at 100% 30%, rgba(0, 184, 217, 0.06), transparent 65%),
    radial-gradient(80% 60% at 50% 100%, rgba(255, 107, 200, 0.05), transparent 70%),
    #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--canvas) 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-aurora {
  display: none;
}

.hero-aurora__blob {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  filter: blur(110px);
  will-change: transform;
}

.hero-aurora__blob--violet {
  top: -240px;
  left: -160px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.45) 0%, rgba(99, 91, 255, 0) 60%);
  animation: aurora-drift-a 22s ease-in-out infinite;
}

.hero-aurora__blob--cyan {
  top: -180px;
  right: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0, 184, 217, 0.36) 0%, rgba(0, 184, 217, 0) 60%);
  animation: aurora-drift-b 26s ease-in-out infinite;
}

.hero-aurora__blob--coral {
  bottom: -320px;
  left: -120px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.28) 0%, rgba(255, 107, 74, 0) 60%);
  animation: aurora-drift-c 30s ease-in-out infinite;
}

.hero-aurora__blob--mint {
  bottom: -220px;
  right: 6%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(23, 185, 120, 0.24) 0%, rgba(23, 185, 120, 0) 60%);
  animation: aurora-drift-d 28s ease-in-out infinite;
}

@keyframes aurora-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(140px, 80px) scale(1.14); }
  66%      { transform: translate(-60px, 120px) scale(0.92); }
}

@keyframes aurora-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-130px, 70px) scale(0.94); }
  66%      { transform: translate(80px, 140px) scale(1.1); }
}

@keyframes aurora-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(160px, -90px) scale(1.12); }
}

@keyframes aurora-drift-d {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-130px, -70px) scale(0.94); }
}

.hero-rings {
  display: none;
}

.hero-rings svg {
  display: block;
}

@keyframes rings-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-particles {
  display: none;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #635bff, #00b8d9);
  box-shadow: 0 0 14px rgba(99, 91, 255, 0.6);
  opacity: 0;
  animation: particle-float 12s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { top: 18%; left: 14%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 26%; left: 62%; animation-delay: -2s; width: 4px; height: 4px; background: linear-gradient(135deg, #ff6b4a, #f4b740); box-shadow: 0 0 12px rgba(255, 107, 74, 0.6); }
.hero-particles span:nth-child(3) { top: 70%; left: 22%; animation-delay: -4s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { top: 44%; left: 8%; animation-delay: -6s; background: linear-gradient(135deg, #17b978, #00b8d9); box-shadow: 0 0 12px rgba(23, 185, 120, 0.6); }
.hero-particles span:nth-child(5) { top: 62%; left: 70%; animation-delay: -8s; width: 4px; height: 4px; }
.hero-particles span:nth-child(6) { top: 82%; left: 48%; animation-delay: -10s; width: 7px; height: 7px; }
.hero-particles span:nth-child(7) { top: 12%; left: 40%; animation-delay: -3s; width: 4px; height: 4px; background: linear-gradient(135deg, #f4b740, #ff6b4a); box-shadow: 0 0 12px rgba(244, 183, 64, 0.6); }
.hero-particles span:nth-child(8) { top: 56%; left: 56%; animation-delay: -5s; }

@keyframes particle-float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
  20%      { opacity: 0.9; transform: translateY(-20px) scale(1); }
  80%      { opacity: 0.9; transform: translateY(-60px) scale(1.1); }
  90%      { opacity: 0; transform: translateY(-80px) scale(0.8); }
}

.scene-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.scene-panel--main {
  top: 14%;
  right: 3%;
  width: 360px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: rotate(-2deg);
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line-strong);
}

.window-bar span:first-child {
  background: var(--coral);
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--mint);
}

.hero-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(220, 230, 242, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 22px 48px rgba(20, 30, 60, 0.18),
    0 4px 14px rgba(20, 30, 60, 0.08);
}

.hero-card--reviews {
  display: grid;
  gap: 16px;
}

.hero-card__head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
}

.hero-card__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f4f7fb;
  border: 1px solid rgba(220, 230, 242, 0.9);
}

.hero-card__brand-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero-card__brand-info strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.hero-card__brand-info span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(23, 185, 120, 0.1);
  color: #0f8c5b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #17b978;
  box-shadow: 0 0 0 3px rgba(23, 185, 120, 0.18);
}

.hero-card__rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0 4px;
  border-top: 1px solid #eef2f8;
}

.hero-card__rating-value {
  color: var(--ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-card__rating-detail {
  display: grid;
  gap: 4px;
}

.hero-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #f4b740;
}

.hero-card__stars svg {
  width: 14px;
  height: 14px;
  fill: #f4b740;
}

.hero-card__rating-detail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.hero-card__review {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 10px;
  background: #f7f9fc;
}

.hero-card__review p {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}

.hero-card__review span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.scene-panel--logo {
  right: 6%;
  left: auto;
  bottom: 8%;
  width: 260px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: rotate(2deg);
}

.hero-card--map {
  overflow: hidden;
  padding: 0;
}

.hero-card__map {
  position: relative;
  height: 96px;
  background:
    linear-gradient(135deg, #eaf2fb 0%, #dde7f3 100%),
    repeating-linear-gradient(45deg, rgba(180, 200, 220, 0.4) 0, rgba(180, 200, 220, 0.4) 1px, transparent 1px, transparent 14px);
  background-blend-mode: normal;
  border-bottom: 1px solid #eef2f8;
}

.hero-card__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.7) 40%, transparent 42%),
    linear-gradient(45deg, transparent 70%, rgba(180, 200, 220, 0.6) 71%, transparent 72%);
}

.hero-card__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b4a, #f4b740);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 107, 74, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.hero-card__pin svg {
  width: 18px;
  height: 18px;
}

.hero-card__map-body {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.hero-card__map-body strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-card__map-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f8c5b;
  font-size: 12px;
  font-weight: 700;
}

.hero-card__map-meta svg {
  width: 13px;
  height: 13px;
}

.scene-panel--flow {
  top: 49%;
  left: 3%;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.scene-panel--flow svg {
  width: 15px;
  height: 15px;
  color: var(--violet);
}

.scene-panel--feed {
  right: 6%;
  bottom: 11%;
  width: 300px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: rotate(2deg);
}

.hero-feed {
  display: grid;
  padding: 6px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(220, 230, 242, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 22px 48px rgba(20, 30, 60, 0.18),
    0 4px 14px rgba(20, 30, 60, 0.08);
}

.hero-feed__row {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 200ms ease;
}

.hero-feed__row:hover {
  background: #f7f9fc;
}

.hero-feed__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero-feed__avatar--star {
  background: rgba(244, 183, 64, 0.16);
}

.hero-feed__avatar--lead {
  background: rgba(23, 185, 120, 0.14);
}

.hero-feed__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-feed__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.hero-feed__head strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-feed__head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  flex: 0 0 auto;
}

.hero-feed__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-feed__divider {
  height: 1px;
  margin: 0 12px;
  background: #eef2f8;
}

.hero__content {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 720px;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid rgba(99, 91, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (max-width: 1240px) {
  h1 {
    max-width: 560px;
    font-size: 56px;
  }
}

@media (max-width: 1080px) {
  h1 {
    max-width: 500px;
    font-size: 50px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.62;
}

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

.hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 46px;
}

.hero-signal {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 230, 242, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 28px rgba(20, 30, 60, 0.06),
    0 2px 6px rgba(20, 30, 60, 0.04);
  backdrop-filter: blur(14px);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease, border-color 320ms ease;
  overflow: hidden;
}

.hero-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.04), rgba(0, 184, 217, 0.02));
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.hero-signal:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 91, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 22px 44px rgba(20, 30, 60, 0.12),
    0 4px 12px rgba(20, 30, 60, 0.06);
}

.hero-signal:hover::before {
  opacity: 1;
}

.hero-signal__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-signal__icon--violet {
  background: linear-gradient(135deg, #7b73ff 0%, #4b46d4 100%);
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.32);
}

.hero-signal__icon--cyan {
  background: linear-gradient(135deg, #2cd1ec 0%, #008ca6 100%);
  box-shadow: 0 8px 20px rgba(0, 184, 217, 0.28);
}

.hero-signal__icon--gold {
  background: linear-gradient(135deg, #ffc55e 0%, #ff7a4a 100%);
  box-shadow: 0 8px 20px rgba(244, 140, 64, 0.3);
}

.hero-signal__icon svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-signal__text {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-signal__text strong {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.008em;
}

.hero-signal__text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.trust-rail {
  position: relative;
  z-index: 3;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.trust-rail__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trust-rail__track {
  display: flex;
  width: max-content;
  animation: trust-marquee 38s linear infinite;
}

.trust-rail:hover .trust-rail__track {
  animation-play-state: paused;
}

.trust-rail__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.trust-rail__group span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.trust-rail__group span svg {
  width: 16px;
  height: 16px;
  color: var(--violet);
  flex: 0 0 auto;
}

.trust-rail__dot {
  width: 4px !important;
  height: 4px;
  padding: 0;
  border-radius: 999px;
  background: var(--line-strong);
}

@keyframes trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  padding: 128px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  max-width: none;
  align-items: end;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.services-tier-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 14px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.03);
  border: 1px solid rgba(99, 91, 255, 0.12);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.services-tier-label::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(99, 91, 255, 0.06) 0%, rgba(0, 184, 217, 0.04) 50%, rgba(99, 91, 255, 0.06) 100%);
  background-size: 200% 100%;
  animation: tier-shimmer 3s ease-in-out infinite;
}

.services-tier-label:hover {
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 4px 20px rgba(99, 91, 255, 0.1);
}

@keyframes tier-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.services-tier-label--alt {
  margin-top: 72px;
  border-color: rgba(0, 184, 217, 0.12);
}

.services-tier-label--alt::before {
  background: linear-gradient(120deg, rgba(0, 184, 217, 0.06) 0%, rgba(99, 91, 255, 0.04) 50%, rgba(0, 184, 217, 0.06) 100%);
  background-size: 200% 100%;
}

.services-tier-label--alt:hover {
  border-color: rgba(0, 184, 217, 0.35);
  box-shadow: 0 4px 20px rgba(0, 184, 217, 0.1);
}

.services-tier-label__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--violet);
  animation: dot-pulse 2s ease-in-out infinite;
}

.services-tier-label--alt .services-tier-label__dot {
  background: var(--cyan);
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(99, 91, 255, 0.08); }
}

.services-tier-label--alt .services-tier-label__dot {
  animation-name: dot-pulse-alt;
}

@keyframes dot-pulse-alt {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(0, 184, 217, 0.08); }
}

.services-tier-label strong {
  position: relative;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.services-tier-label span:last-child {
  position: relative;
  color: var(--muted);
  font-weight: 500;
}

.services-core {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.core-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(220, 230, 242, 0.7);
  border-radius: 20px;
  background: var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(25, 38, 64, 0.04),
    0 12px 32px rgba(25, 38, 64, 0.05);
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms ease, border-color 400ms ease;
}

.core-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0;
  transition: opacity 320ms ease;
}

.core-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 60px rgba(99, 91, 255, 0.1),
    0 8px 24px rgba(25, 38, 64, 0.08);
}

.core-card:hover::before {
  opacity: 1;
}

.core-card--primary {
  background:
    linear-gradient(180deg, rgba(99, 91, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface);
  border-color: rgba(99, 91, 255, 0.22);
}

.core-card--primary::before {
  opacity: 1;
}

.core-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #635bff, #4b46d4);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(99, 91, 255, 0.3);
}

.core-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.14), rgba(0, 184, 217, 0.1));
  color: var(--violet);
  border: 1px solid rgba(99, 91, 255, 0.16);
}

.core-card__icon svg {
  width: 24px;
  height: 24px;
}

.core-card h3 {
  font-size: 26px;
  letter-spacing: -0.012em;
}

.core-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.core-card__list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.core-card__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
}

.core-card__list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(23, 185, 120, 0.12);
  color: #0f8c5b;
  stroke-width: 3;
}

.core-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 200ms ease, gap 200ms ease;
}

.core-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.core-card:hover .core-card__cta {
  color: var(--violet);
  gap: 12px;
}

.core-card:hover .core-card__cta svg {
  transform: translateX(2px);
}

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

.addon-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(220, 230, 242, 0.6);
  border-radius: 18px;
  background: var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(25, 38, 64, 0.03),
    0 10px 28px rgba(25, 38, 64, 0.04);
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms ease, border-color 400ms ease;
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.03) 0%, rgba(0, 184, 217, 0.03) 100%);
  transition: opacity 400ms ease;
}

.addon-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: none;
}

.addon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 91, 255, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 50px rgba(99, 91, 255, 0.1),
    0 6px 18px rgba(25, 38, 64, 0.06);
}

.addon-card:hover::before {
  opacity: 1;
}

.addon-card:hover::after {
  animation: card-shine 700ms ease forwards;
}

@keyframes card-shine {
  to { left: 120%; }
}

.addon-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--ink);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.addon-card:hover .addon-card__icon {
  transform: scale(1.08) translateY(-2px);
}

.addon-card__icon svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.addon-card__icon--social {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.08) 0%, rgba(255, 107, 74, 0.06) 100%);
  color: #c026d3;
  border: 1px solid rgba(192, 38, 211, 0.12);
}

.addon-card:hover .addon-card__icon--social {
  box-shadow: 0 4px 16px rgba(192, 38, 211, 0.15);
}

.addon-card__icon--maps {
  background: rgba(0, 184, 217, 0.07);
  color: #008ca6;
  border: 1px solid rgba(0, 184, 217, 0.12);
}

.addon-card:hover .addon-card__icon--maps {
  box-shadow: 0 4px 16px rgba(0, 184, 217, 0.15);
}

.addon-card__icon--care {
  background: rgba(23, 185, 120, 0.07);
  color: #0f8c5b;
  border: 1px solid rgba(23, 185, 120, 0.12);
}

.addon-card:hover .addon-card__icon--care {
  box-shadow: 0 4px 16px rgba(23, 185, 120, 0.15);
}

.addon-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.addon-card__price {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.03);
  border: 1px solid rgba(220, 230, 242, 0.7);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: background 300ms ease, border-color 300ms ease;
}

.addon-card:hover .addon-card__price {
  background: rgba(99, 91, 255, 0.04);
  border-color: rgba(99, 91, 255, 0.14);
}

.section--system {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(99, 91, 255, 0.24), rgba(99, 91, 255, 0) 38%),
    linear-gradient(74deg, rgba(23, 185, 120, 0.18), rgba(23, 185, 120, 0) 44%),
    #101525;
}

.section--system::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -120px;
  width: 520px;
  height: 260px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.36), rgba(244, 183, 64, 0.24));
  transform: rotate(-11deg);
}

.system-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.system-copy h2,
.section--system h3 {
  color: #ffffff;
}

.system-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.system-copy .eyebrow {
  color: #8ce8ff;
}

.system-copy .eyebrow span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.system-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.system-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
}

.system-points svg {
  width: 20px;
  height: 20px;
  color: var(--mint);
}

.system-visual {
  min-width: 0;
}

.system-window {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.pipeline {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
}

.pipeline__metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pipeline__metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.pipeline__metric strong {
  color: var(--ink);
  font-size: 58px;
  line-height: 0.9;
}

.pipeline__row {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.pipeline__row b {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--mint));
}

.pipeline__row:nth-child(3) b {
  width: 78%;
}

.pipeline__row:nth-child(4) b {
  width: 88%;
}

.pipeline__code {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #bcefff;
}

.pipeline__code code {
  font-size: 13px;
}

/* Stripe-clean dark section */
.section--scale {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(50% 40% at 25% 20%, rgba(124, 92, 255, 0.18), transparent 65%),
    radial-gradient(45% 40% at 80% 80%, rgba(0, 184, 217, 0.1), transparent 65%),
    #0a0e26;
  color: #ffffff;
}

.scale-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}

.scale-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scale-bg__focal {
  display: none;
}

.scale-bg::after {
  display: none;
}

.scale-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 56px;
}

.scale-heading {
  max-width: 760px;
}

.scale-heading h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.scale-heading h2 strong {
  color: #ffffff;
  font-weight: 700;
  display: inline;
}

.scale-heading h2 span {
  color: #c8cfe0;
  font-weight: 600;
  display: inline;
}

.scale-heading p {
  margin: 24px 0 0;
  color: #b8c0d3;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}

.scale-heading--secondary {
  margin-top: 16px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scale-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin: 24px 0 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scale-stats div {
  display: grid;
  gap: 14px;
}

.scale-stats strong {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(120deg, #ffb185 0%, #ff6fb0 40%, #b07cff 80%, #6a52ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scale-stats span {
  color: #eef1f8;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 280px;
}

.section--clients {
  position: relative;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.section--clients::before,
.section--clients::after {
  content: "";
  position: absolute;
  inset: 0 auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.5;
}

.section--clients::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.18), transparent 70%);
}

.section--clients::after {
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 184, 217, 0.16), transparent 70%);
}

.section--clients .container {
  position: relative;
  z-index: 1;
}

.clients-wall {
  position: relative;
  margin-top: 36px;
}

.clients-wall__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-wall__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 48s linear infinite;
}

.clients-wall:hover .clients-wall__track {
  animation-play-state: paused;
}

.clients-wall__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 96px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(25, 38, 64, 0.04);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 14px 30px rgba(25, 38, 64, 0.08);
}

.client-logo span {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.012em;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 280ms ease, opacity 280ms ease, color 280ms ease;
}

.client-logo:hover span {
  filter: grayscale(0);
  opacity: 1;
  color: var(--ink);
}

.client-logo strong {
  font-weight: 800;
  color: var(--violet);
}

@keyframes clients-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ── Reference projects (Marken section) ───────────────────── */
.references {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.reference {
  position: relative;
}

.reference__link {
  display: grid;
  gap: 0;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(25, 38, 64, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.reference__link:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow: 0 32px 60px rgba(25, 38, 64, 0.16);
}

.reference__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.reference__bar {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 14px;
  background: #f3f6fa;
  border-bottom: 1px solid #eaeef4;
  z-index: 2;
}

.reference__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6dde7;
}

.reference__bar span:nth-child(1) { background: #ff6b6b; }
.reference__bar span:nth-child(2) { background: #ffc15c; }
.reference__bar span:nth-child(3) { background: #4dcc6e; }

.reference__bar em {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e3e9f1;
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.reference__shot {
  position: absolute;
  inset: 30px 0 0;
  padding: 18px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.reference__shot--cafe {
  background: linear-gradient(135deg, #fff5e8 0%, #ffd5b5 60%, #ff9a6f 100%);
}

.reference__shot--bau {
  background: linear-gradient(135deg, #e3eaf2 0%, #b1c2d4 60%, #2c4565 100%);
}

.reference__shot--weber {
  background: linear-gradient(135deg, #eaf7ff 0%, #b8e1f4 60%, #00b8d9 100%);
}

.reference__shot--studio {
  background: linear-gradient(135deg, #f3e8ff 0%, #c7b0f0 50%, #635bff 100%);
}

.reference__shot--kanzlei {
  background: linear-gradient(135deg, #f4f0e8 0%, #d4c4a8 60%, #8a6f3f 100%);
}

.reference__shot--mueller {
  background: linear-gradient(135deg, #ffe8ec 0%, #f7b0bb 60%, #d6325f 100%);
}

.reference__shot-hero {
  height: 28px;
  width: 65%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.reference__shot-row {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  width: 100%;
}

.reference__shot-row--short {
  width: 60%;
}

.reference__shot-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.reference__shot-tiles span {
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
}

.reference__shot--bau .reference__shot-tiles,
.reference__shot--studio .reference__shot-tiles {
  grid-template-columns: repeat(2, 1fr);
}

.reference__shot--bau .reference__shot-tiles span,
.reference__shot--studio .reference__shot-tiles span {
  height: 46px;
}

.reference__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid #eef2f8;
}

.reference__meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.reference__meta > div > span {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

.reference__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--violet);
  font-size: 12.5px;
  font-weight: 700;
  transition: background 200ms ease, gap 200ms ease;
}

.reference__link:hover .reference__cta {
  background: rgba(99, 91, 255, 0.16);
  gap: 9px;
}

.reference__cta svg {
  width: 13px;
  height: 13px;
}

/* ── Reviews grid ──────────────────────────────────────────── */
.section--reviews {
  position: relative;
  padding: 128px 0;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
}

.section--reviews .section-heading {
  text-align: center;
  margin: 0 auto 56px;
}

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

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

.review-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(25, 38, 64, 0.05);
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(25, 38, 64, 0.1);
}

.review-card--featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.04), rgba(0, 184, 217, 0.03)),
    #ffffff;
  border-color: rgba(99, 91, 255, 0.2);
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__stars {
  display: inline-flex;
  gap: 2px;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid #e3e9f1;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.review-card__source svg {
  width: 14px;
  min-width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.005em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.review-card--featured blockquote {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.review-card__person {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #eef2f8;
  min-width: 0;
}

.review-card__person > div {
  min-width: 0;
  overflow: hidden;
}

.review-card__person strong,
.review-card__person span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--violet), #4b46d4);
  flex-shrink: 0;
}

.review-card__avatar[data-color="coral"] { background: linear-gradient(135deg, #ff6b4a, #d6325f); }
.review-card__avatar[data-color="cyan"] { background: linear-gradient(135deg, #00b8d9, #0f8c5b); }
.review-card__avatar[data-color="mint"] { background: linear-gradient(135deg, #17b978, #00b8d9); }
.review-card__avatar[data-color="gold"] { background: linear-gradient(135deg, #f4b740, #ff6b4a); }
.review-card__avatar[data-color="violet"] { background: linear-gradient(135deg, #635bff, #4b46d4); }

.review-card__person strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.review-card__person span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

/* ── Über uns Section (with reactive rays canvas) ──────────── */
.section--about {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(50% 40% at 25% 25%, rgba(106, 82, 255, 0.18), transparent 65%),
    radial-gradient(45% 40% at 80% 75%, rgba(60, 109, 255, 0.12), transparent 65%),
    #050720;
  color: #ffffff;
  isolation: isolate;
}

.about-rays {
  display: none;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.35;
}

.about-bg__glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 120%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, rgba(140, 110, 255, 0.55), rgba(80, 100, 255, 0.25) 30%, rgba(5, 7, 32, 0) 60%);
  filter: blur(10px);
}

.about-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 80%);
}

.about-bg__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(5, 7, 32, 0), rgba(5, 7, 32, 0.4) 60%, rgba(5, 7, 32, 0.9));
}

.about-content {
  position: relative;
  z-index: 2;
}

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

.about-heading .eyebrow {
  justify-content: center;
  color: #b8c0ff;
}

.about-heading .eyebrow span {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.about-heading h2 {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.about-heading h2 strong {
  display: block;
  background: linear-gradient(120deg, #b8d8ff 0%, #ffffff 50%, #d8b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.about-heading h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 36px;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.about-lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: #c8cde0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin: 80px 0 0;
  padding: 36px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.about-stats > div {
  display: grid;
  gap: 8px;
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #c8cde0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stats span {
  color: #b8c0d3;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.about-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 80px 0 0;
  padding: 24px 0 0;
}

.about-journey__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 23px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.06));
  overflow: hidden;
}

.about-journey__progress {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8d8ff, #d8b8ff, #ffb8d8);
  box-shadow: 0 0 12px rgba(216, 184, 255, 0.6);
  transition: width 1800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-journey.is-visible .about-journey__progress {
  width: 100%;
}

.about-step {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 26px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background 320ms ease, border-color 320ms ease;
}

.about-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 216, 255, 0.32);
}

.about-step__dot {
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #b8d8ff;
  box-shadow: 0 0 0 4px rgba(184, 216, 255, 0.18), 0 0 16px rgba(184, 216, 255, 0.6);
  z-index: 2;
}

.about-step--current .about-step__dot {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.8);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.about-step__year {
  color: #b8d8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-step strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.about-step p {
  margin: 4px 0 0;
  color: #b8c0d3;
  font-size: 13.5px;
  line-height: 1.55;
}

.section--video {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(45% 40% at 15% 25%, rgba(99, 91, 255, 0.14), transparent 65%),
    radial-gradient(45% 40% at 85% 75%, rgba(0, 184, 217, 0.1), transparent 65%),
    #07091c;
  color: #ffffff;
}

.video-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}

.video-bg__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.7;
}

.video-bg__orb--a {
  top: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.55), transparent 70%);
  animation: orb-drift-a 14s ease-in-out infinite;
}

.video-bg__orb--b {
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 107, 200, 0.45), transparent 70%);
  animation: orb-drift-b 16s ease-in-out infinite;
}

@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -20px); }
}

.video-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: center;
}

.video-copy .eyebrow {
  color: #b8c0ff;
}

.video-copy .eyebrow span {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.video-copy h2 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.video-copy p:not(.eyebrow) {
  margin: 22px 0 32px;
  color: #b8c0d3;
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
}

.video-frame__glow {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff8b6b, #ff5fa8 35%, #a070ff 65%, #6a52ff);
  filter: blur(22px);
  opacity: 0.55;
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.video-frame__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #0a0e26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a0e26;
}

.video-frame__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(124, 92, 255, 0.28), transparent 60%),
    linear-gradient(135deg, #0a0e26, #131a3a 80%);
  transition: opacity 320ms ease;
}

.video-frame__placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 80%);
}

.video-frame__placeholder-brand {
  position: relative;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
}

.video-frame__placeholder-brand img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(99, 91, 255, 0.35);
}

.video-frame__placeholder-brand strong {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.video-frame.is-playing .video-frame__placeholder {
  opacity: 0;
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: opacity 320ms ease;
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}

.video-play__circle svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: currentColor;
  stroke: currentColor;
}

.video-play:hover .video-play__circle,
.video-play:focus-visible .video-play__circle {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 26px 60px rgba(99, 91, 255, 0.5),
    0 8px 22px rgba(99, 91, 255, 0.35);
}

.video-play__ring {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: ring-pulse 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.video-play__ring--two {
  animation-delay: 1.2s;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

.video-frame__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 320ms ease;
}

.video-frame.is-playing .video-frame__caption {
  opacity: 0;
}

.video-frame__caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff5fa8;
  box-shadow: 0 0 0 3px rgba(255, 95, 168, 0.22);
}

.section--proof {
  position: relative;
  background: var(--surface);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 38, 64, 0.06);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.5), rgba(0, 184, 217, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  z-index: 2;
}

.project-card:hover {
  box-shadow: 0 28px 60px rgba(25, 38, 64, 0.14);
  transform: translateY(-6px);
  border-color: transparent;
}

.project-card:hover::before {
  opacity: 1;
}

.project-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  font-weight: 700;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(0, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: 0.42;
  mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.8) 40%, transparent 90%);
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.8) 40%, transparent 90%);
  pointer-events: none;
}

.project-visual__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 1;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.project-visual__icon svg {
  width: 20px;
  height: 20px;
}

.project-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 13px;
  letter-spacing: 0.005em;
}

.project-visual--one {
  background: linear-gradient(135deg, #635bff, #00b8d9);
}

.project-visual--two {
  background: linear-gradient(135deg, #ff6b4a, #f4b740);
}

.project-visual--three {
  background: linear-gradient(135deg, #17b978, #235789);
}

.project-card__body {
  padding: 28px;
}

.project-card__label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: none;
}

.project-card h3 {
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.project-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.project-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid #eef2f8;
}

.project-card dt {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

.section--process {
  background:
    linear-gradient(180deg, var(--canvas) 0%, #ffffff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-step {
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section--fit {
  padding-top: 0;
  background: #ffffff;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(0, 184, 217, 0.12), rgba(0, 184, 217, 0) 36%),
    linear-gradient(70deg, rgba(244, 183, 64, 0.14), rgba(244, 183, 64, 0) 42%),
    var(--surface-soft);
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 700;
}

.fit-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--mint);
}

.section--contact {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(45% 40% at 25% 25%, rgba(90, 76, 255, 0.16), transparent 65%),
    radial-gradient(45% 40% at 80% 80%, rgba(0, 184, 217, 0.1), transparent 65%),
    #06081f;
  isolation: isolate;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.contact-bg__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 55% at 15% 20%, rgba(99, 91, 255, 0.32), transparent 65%),
    radial-gradient(45% 55% at 90% 80%, rgba(0, 184, 217, 0.18), transparent 70%);
  filter: blur(30px);
}

.contact-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 95%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 95%);
}

.contact-bg__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  will-change: transform;
}

.contact-bg__orb--a {
  top: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.4), transparent 70%);
  animation: contact-orb-a 22s ease-in-out infinite;
}

.contact-bg__orb--b {
  bottom: -200px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(99, 138, 255, 0.28), transparent 70%);
  animation: contact-orb-b 26s ease-in-out infinite;
}

.contact-bg__orb--c {
  top: 55%;
  right: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  filter: blur(60px);
}

@keyframes contact-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.06); }
}

@keyframes contact-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.04); }
}

.contact-bg__noise {
  display: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 72px;
  align-items: start;
}

.contact-layout::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 60%;
  height: calc(100% + 80px);
  background:
    radial-gradient(60% 70% at 60% 50%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(80% 90% at 50% 50%, rgba(184, 192, 255, 0.1), transparent 80%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.contact-form {
  position: relative;
}

.contact-copy h2 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.contact-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c8cde0;
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 520px;
}

.contact-copy .eyebrow {
  color: #b8c0ff;
}

.contact-copy .eyebrow span {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-trust {
  display: grid;
  gap: 4px;
  margin: 40px 0 32px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.contact-trust__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 200ms ease;
}

.contact-trust__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.contact-trust__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(184, 192, 255, 0.06) 100%);
  border: 1px solid rgba(184, 192, 255, 0.18);
  color: #ffffff;
  flex-shrink: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-trust__icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 1.8;
  display: block;
}

.contact-trust__item strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.contact-trust__item span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  font-weight: 500;
}

.contact-links {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-links a:hover {
  color: #b8c0ff;
}

.contact-links svg {
  width: 18px;
  height: 18px;
  color: #b8c0ff;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 36px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-form::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  margin: 0 0 6px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form .form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.contact-form [data-field].is-error input,
.contact-form [data-field].is-error select,
.contact-form [data-field].is-error textarea {
  border-color: #ff5f5f;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(255, 95, 95, 0.12);
}

.contact-form [data-field].is-error .form-label {
  color: #c33636;
}

.contact-form .form-error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: -2px;
  color: #c33636;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  animation: error-rise 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-form [data-field].is-error .form-error {
  display: inline-flex;
}

.contact-form .form-error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #c33636;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  flex: 0 0 auto;
}

@keyframes error-rise {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form [data-field].is-success input:not(:focus),
.contact-form [data-field].is-success select:not(:focus),
.contact-form [data-field].is-success textarea:not(:focus) {
  border-color: rgba(23, 185, 120, 0.5);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
  background: #fafbfd;
  color: var(--ink);
  outline: none;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 144px;
  resize: vertical;
  padding: 14px 16px;
  line-height: 1.55;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b778d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #98a2b3;
  font-weight: 500;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #cdd6e3;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.14);
}

.contact-form button[type="submit"] {
  margin-top: 6px;
  width: 100%;
  background: linear-gradient(135deg, var(--ink) 0%, #1d2942 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 16, 32, 0.25);
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
  background: linear-gradient(135deg, var(--violet) 0%, #4b46d4 100%);
  box-shadow: 0 18px 40px rgba(99, 91, 255, 0.36);
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* ── Premium chip-grid selector — replaces standard <select> ─────────── */
.form-chip-field {
  display: grid;
  gap: 12px;
}

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

.chip-grid > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0) 0%, rgba(124, 92, 255, 0) 60%, rgba(0, 184, 217, 0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 320ms ease;
}

.chip::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 16, 32, 0.18);
  background: transparent;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.16);
  color: #635bff;
  flex-shrink: 0;
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chip__icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.chip__label {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.chip__desc {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.4);
  background: rgba(124, 92, 255, 0.03);
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.08);
}

.chip:hover .chip__icon {
  transform: scale(1.06);
  background: rgba(124, 92, 255, 0.14);
}

/* Selected state — triggered when input is checked */
.chip-grid > input[type="radio"]:checked + .chip {
  border-color: rgba(124, 92, 255, 0.55);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(0, 184, 217, 0.04));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(124, 92, 255, 0.18);
}

.chip-grid > input[type="radio"]:checked + .chip::before {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.6) 0%, rgba(255, 107, 200, 0.4) 50%, rgba(0, 184, 217, 0.5) 100%);
}

.chip-grid > input[type="radio"]:checked + .chip::after {
  border-color: #ffffff;
  background: radial-gradient(circle, #ffffff 0 4px, transparent 5px);
}

.chip-grid > input[type="radio"]:checked + .chip .chip__icon {
  background: linear-gradient(135deg, #7c5cff 0%, #b070ff 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(124, 92, 255, 0.35);
}

.chip-grid > input[type="radio"]:focus-visible + .chip {
  outline: 2px solid rgba(124, 92, 255, 0.6);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .chip-grid {
    grid-template-columns: 1fr;
  }
}

.form-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #17b978;
  box-shadow: 0 0 0 3px rgba(23, 185, 120, 0.18);
}

.site-footer {
  position: relative;
  padding: 96px 0 36px;
  background: #030516;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  isolation: isolate;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-bg__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 60%);
  filter: blur(80px);
}

.footer-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 90%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 90%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.brand--footer {
  color: #ffffff;
  font-size: 18px;
}

.brand--footer .brand__mark {
  filter: drop-shadow(0 4px 14px rgba(184, 192, 255, 0.32));
}

.footer-social {
  display: inline-flex;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(184, 192, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-cols {
  display: contents;
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-col__title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease, padding-left 200ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffffff;
  padding-left: 4px;
}

.footer-cta {
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.18), rgba(0, 184, 217, 0.1));
  border: 1px solid rgba(184, 192, 255, 0.22);
}

.footer-cta strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.footer-cta p {
  margin: 6px 0 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.footer-cta .button {
  width: 100%;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  min-height: 42px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.footer-cta .button:hover {
  background: linear-gradient(135deg, var(--violet), #4b46d4);
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease, border-color 320ms ease;
  will-change: transform;
}

[data-tilt]:hover {
  transform: translateY(-4px);
}

.solution-card[data-tilt]:hover {
  transform: translateY(-6px);
}

.button[data-magnetic] {
  transition: transform 120ms cubic-bezier(0.2, 0.8, 0.2, 1), background 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 900ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.32s; }
.hero__content > *:nth-child(4) { animation-delay: 0.46s; }
.hero__content > *:nth-child(5) { animation-delay: 0.6s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scene {
  opacity: 0;
  animation: scene-fade 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

@keyframes scene-fade {
  to { opacity: 1; }
}

.scene-panel--main { animation: float-a 7s ease-in-out infinite; }
.scene-panel--logo { animation: float-b 8s ease-in-out infinite; }
.scene-panel--feed { animation: float-c 6.5s ease-in-out infinite; }

@keyframes float-a {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

@keyframes float-b {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(8px); }
}

@keyframes float-c {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-6px); }
}

.scale-stats strong {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease 200ms, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms;
}

.scale-stats.is-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.scale-bg svg g {
  opacity: 0.7;
}

@media (max-width: 1120px) {
  .services-core {
    grid-template-columns: 1fr;
  }

  .services-addons {
    grid-template-columns: 1fr;
  }

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

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

  .project-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .project-visual {
    min-height: 100%;
  }

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

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

  .review-card--featured {
    grid-column: span 2;
  }

  .about-heading h2 {
    font-size: 44px;
  }

  .about-heading h2 span {
    font-size: 28px;
  }

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

  .about-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .about-journey__line {
    display: none;
  }

  .about-step__dot {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 6px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-brand,
  .footer-cta {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-scene {
    opacity: 0.76;
  }

  .scene-panel--main {
    right: -140px;
  }

  .scene-panel--flow {
    left: 5%;
  }

  .scene-panel--logo {
    left: auto;
    right: 8%;
    bottom: 9%;
  }

  .scene-panel--code {
    display: none;
  }

  .section-heading--split,
  .system-layout,
  .fit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .system-layout,
  .contact-layout {
    gap: 40px;
  }

  .scale-heading h2 {
    font-size: 36px;
  }

  .scale-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .scale-stats strong {
    font-size: 48px;
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .video-copy h2 {
    font-size: 36px;
  }
}

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

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 56px;
    padding: 6px 6px 6px 16px;
    border-radius: 14px;
  }

  .mobile-panel {
    top: 78px;
    left: 12px;
    right: 12px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: min(820px, 86svh);
    padding: 118px 0 48px;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .hero-scene {
    opacity: 0.52;
  }

  .scene-stripe {
    height: 150px;
  }

  .scene-panel--main {
    display: none;
  }

  .scene-panel--flow,
  .scene-panel--logo {
    display: none;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  h3 {
    font-size: 21px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .button--large {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .services-core,
  .services-addons,
  .process-grid,
  .form-row,
  .references,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card--featured {
    grid-column: span 1;
  }

  .review-card--featured blockquote {
    font-size: 17px;
  }

  .about-heading h2 {
    font-size: 36px;
  }

  .about-heading h2 span {
    font-size: 22px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .about-stats strong {
    font-size: 42px;
  }

  .about-journey {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-copy h2 {
    font-size: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand,
  .footer-cta {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .core-card {
    padding: 26px;
  }

  .core-card h3 {
    font-size: 22px;
  }

  .clients-quote {
    padding: 28px;
  }

  .clients-quote blockquote {
    font-size: 18px;
  }

  .client-logo {
    min-width: 180px;
    height: 84px;
  }

  .services-tier-label {
    flex-wrap: wrap;
  }

  .section--scale {
    padding: 88px 0;
  }

  .scale-heading h2 {
    font-size: 30px;
  }

  .scale-stats {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
    padding-top: 28px;
  }

  .scale-stats strong {
    font-size: 52px;
  }

  .scale-bg__focal {
    width: 220px;
    height: 220px;
    top: 42%;
  }

  .section--video {
    padding: 88px 0;
  }

  .section--about {
    padding: 88px 0;
  }

  .video-copy h2 {
    font-size: 30px;
  }

  .video-play__circle {
    width: 68px;
    height: 68px;
  }

  .video-play__ring {
    width: 68px;
    height: 68px;
  }

  .video-play__circle svg {
    width: 24px;
    height: 24px;
  }

  .hero__signals {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 32px;
  }

  .hero-signal {
    padding: 14px 16px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .hero-signal__icon {
    width: 40px;
    height: 40px;
  }

  .hero-signal__icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-signal__text strong {
    font-size: 14px;
  }

  .hero-signal__text span {
    font-size: 12px;
  }

  .trust-rail__inner {
    justify-content: flex-start;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .project-card {
    display: block;
  }

  .project-visual {
    min-height: 180px;
  }

  .fit-layout {
    padding: 28px;
  }

  .contact-form {
    padding: 20px;
  }

}

@media (max-width: 600px) {
  .hero__content {
    max-width: 358px;
  }

  h1 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .container {
    max-width: 358px;
  }

  .site-header {
    left: 12px;
    width: min(366px, calc(100% - 24px));
    transform: none;
  }

  .mobile-panel {
    right: auto;
    width: min(366px, calc(100% - 24px));
  }
}

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

  .site-header {
    border-radius: 8px;
  }

  .brand span {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: min(820px, 86svh);
  }

  .hero__content {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__signals div,
  .core-card,
  .addon-card,
  .project-card__body,
  .process-step {
    padding: 20px;
  }

  .fit-layout {
    padding: 22px;
  }
}

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

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

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