:root {
  --bg: #030306;
  --bg-2: #07070d;
  --ink: #f7f4ff;
  --muted: #a9a1bb;
  --muted-2: #746d86;
  --violet: #7c2dff;
  --violet-2: #a972ff;
  --lilac: #d9c4ff;
  --line: rgba(217, 196, 255, 0.18);
  --glass: rgba(14, 12, 24, 0.56);
  --glass-2: rgba(21, 16, 36, 0.68);
  --white-soft: rgba(255, 255, 255, 0.9);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(124, 45, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(217, 196, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, #020204 0%, #07070d 42%, #030306 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  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: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.4px),
    radial-gradient(circle at 70% 80%, rgba(217, 196, 255, 0.12) 0 1px, transparent 1.5px);
  background-size: 170px 170px, 230px 230px;
}

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

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

button {
  border: 0;
}

::selection {
  background: rgba(169, 114, 255, 0.45);
  color: #fff;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lilac), var(--violet));
  box-shadow: 0 0 24px rgba(169, 114, 255, 0.95);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(124, 45, 255, 0.18), rgba(217, 196, 255, 0.05) 38%, transparent 67%);
  mix-blend-mode: screen;
  transition: opacity 280ms ease;
}

.site-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 40px), 1180px);
  min-height: 72px;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.54);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition:
    min-height 300ms ease,
    top 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-nav.is-scrolled {
  top: 12px;
  min-height: 58px;
  border-color: rgba(217, 196, 255, 0.24);
  background: rgba(7, 6, 13, 0.74);
  box-shadow: 0 18px 60px rgba(124, 45, 255, 0.14);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 196, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(124, 45, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 28px rgba(217, 196, 255, 0.12), 0 0 24px rgba(124, 45, 255, 0.16);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(247, 244, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 240ms ease;
}

.nav-links a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--lilac), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 240ms ease, transform 240ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 196, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 196, 255, 0.08), rgba(124, 45, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 rgba(124, 45, 255, 0);
  color: #fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  isolation: isolate;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease),
    background 300ms ease;
}

.nav-cta::before,
.button::before {
  position: absolute;
  inset: -70% -25%;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.36), transparent 48%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 700ms var(--ease);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  border-color: rgba(217, 196, 255, 0.58);
  box-shadow: 0 0 34px rgba(124, 45, 255, 0.25), inset 0 0 28px rgba(217, 196, 255, 0.08);
  transform: translateY(-2px);
}

.nav-cta:hover::before,
.button:hover::before,
.nav-cta:focus-visible::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(58%);
}

.nav-toggle {
  display: none;
}

.section-dark,
.section-band {
  position: relative;
  overflow: clip;
}

.section-band {
  padding: clamp(96px, 13vw, 180px) 0;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(calc(100% - 40px), 940px);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 82px);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.center-heading {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--lilac);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h2 {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 5.2rem;
  line-height: 0.95;
  font-weight: 900;
}

h3 {
  color: var(--white-soft);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  display: grid;
  min-height: 96svh;
  place-items: center;
  padding: 124px 20px 82px;
  isolation: isolate;
}

.hero-canvas,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: -4;
  opacity: 0.72;
}

.hero-veil {
  z-index: -3;
  background:
    radial-gradient(circle at 0% 28%, rgba(124, 45, 255, 0.32), transparent 25rem),
    radial-gradient(circle at 100% 70%, rgba(217, 196, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 50% 52%, rgba(124, 45, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, rgba(3, 3, 6, 0.02), rgba(3, 3, 6, 0.98) 92%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 1040px);
  margin: auto;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 5rem;
  line-height: 0.9;
  font-weight: 900;
}

.mask-line {
  display: block;
  overflow: hidden;
}

.mask-line span {
  display: block;
  filter: blur(18px);
  transform: translateY(112%) rotateX(18deg);
  transform-origin: left bottom;
  animation: titleReveal 1400ms var(--ease) forwards;
}

.mask-line:nth-child(2) span {
  animation-delay: 220ms;
}

.hero-copy {
  width: min(730px, 100%);
  margin: 20px auto 0;
  color: rgba(247, 244, 255, 0.78);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.button-primary {
  min-height: 54px;
  padding-inline: 22px;
  background:
    linear-gradient(135deg, rgba(124, 45, 255, 0.92), rgba(169, 114, 255, 0.28)),
    rgba(255, 255, 255, 0.06);
}

.button-ghost {
  min-height: 54px;
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.orbital-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1300px;
}

.float-mockup {
  position: absolute;
  border: 1px solid rgba(217, 196, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(10, 8, 18, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 44px rgba(124, 45, 255, 0.16);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  animation: floatDrift 8s ease-in-out infinite;
}

.float-mockup::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  opacity: 0.35;
  transform: translateX(-55%);
  animation: lightPass 6s ease-in-out infinite;
}

.mockup-label {
  color: rgba(247, 244, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mockup-ad {
  top: 20%;
  left: 6%;
  width: clamp(168px, 15vw, 232px);
  padding: 14px;
  transform: rotate(-10deg) translateZ(70px);
}

.ad-visual {
  position: relative;
  height: 142px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 34% 34%, rgba(217, 196, 255, 0.36), transparent 44%),
    linear-gradient(135deg, rgba(124, 45, 255, 0.78), rgba(7, 7, 14, 0.7));
}

.ad-visual span:first-child {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.ad-visual span:last-child {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 68%;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 0 rgba(255, 255, 255, 0.22);
}

.metric-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.metric-strip b {
  color: var(--muted);
  font-size: 0.72rem;
}

.mockup-page {
  top: 16%;
  right: 8%;
  width: clamp(190px, 17vw, 292px);
  padding: 12px;
  transform: rotate(8deg) translateZ(110px);
  animation-delay: -1.2s;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding-bottom: 12px;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(217, 196, 255, 0.56);
}

.landing-wire {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.landing-wire i {
  display: block;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(217, 196, 255, 0.58), rgba(255, 255, 255, 0.06));
}

.landing-wire i:first-child {
  height: 54px;
}

.landing-wire i:nth-child(3) {
  width: 72%;
}

.mockup-dashboard {
  right: 13%;
  bottom: 18%;
  width: clamp(176px, 16vw, 258px);
  padding: 16px;
  transform: rotate(-4deg) translateZ(60px);
  animation-delay: -2.1s;
}

.mockup-dashboard strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 3rem;
  line-height: 1;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
}

.chart-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--lilac), rgba(124, 45, 255, 0.38));
  box-shadow: 0 0 20px rgba(169, 114, 255, 0.22);
}

.mockup-feed {
  bottom: 18%;
  left: 12%;
  width: clamp(150px, 14vw, 220px);
  padding: 12px;
  transform: rotate(6deg) translateZ(98px);
  animation-delay: -3s;
}

.feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.feed-head span {
  width: 76px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.44);
}

.feed-head i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(217, 196, 255, 0.52);
}

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

.feed-grid i {
  aspect-ratio: 1;
  border-radius: 6px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(124, 45, 255, 0.64), rgba(217, 196, 255, 0.14));
}

.mockup-growth {
  top: 54%;
  left: 78%;
  width: clamp(184px, 17vw, 280px);
  padding: 16px;
  opacity: 0.72;
  transform: translateX(-50%) rotate(-2deg) translateZ(140px);
  animation-delay: -4.1s;
}

.mockup-growth span {
  color: rgba(247, 244, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mockup-growth svg {
  width: 100%;
  margin-top: 12px;
  fill: none;
}

.mockup-growth path {
  stroke: var(--lilac);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(169, 114, 255, 0.72));
}

.mockup-growth circle {
  fill: #fff;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 30px;
  height: 52px;
  place-items: start center;
  border: 1px solid rgba(217, 196, 255, 0.3);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--lilac);
  box-shadow: 0 0 14px var(--violet-2);
  animation: cue 1600ms ease-in-out infinite;
}

.pattern-break {
  min-height: 86vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(3, 3, 6, 0.9), rgba(10, 8, 18, 0.8)),
    radial-gradient(circle at 88% 44%, rgba(124, 45, 255, 0.22), transparent 34rem);
}

.strategy-field {
  position: absolute;
  inset: 0;
  opacity: 0.74;
}

.strategy-field svg {
  width: 100%;
  height: 100%;
}

.draw-path {
  fill: none;
  stroke: rgba(217, 196, 255, 0.55);
  stroke-dasharray: 1500;
  stroke-dashoffset: calc(1500 - (1500 * var(--line-progress, 0)));
  stroke-linecap: round;
  stroke-width: 1.2;
  filter: drop-shadow(0 0 18px rgba(124, 45, 255, 0.55));
}

.path-two {
  stroke: rgba(124, 45, 255, 0.4);
  stroke-width: 1;
}

.statement {
  font-size: 6.6rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.statement span,
.cta-copy h2 span {
  color: var(--lilac);
  text-shadow: 0 0 34px rgba(169, 114, 255, 0.28);
}

.statement-copy {
  max-width: 690px;
  margin-top: 30px;
  color: rgba(247, 244, 255, 0.76);
  font-size: 1.28rem;
}

.services {
  background:
    radial-gradient(circle at 12% 42%, rgba(124, 45, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, #030306, #080711 50%, #030306);
}

.service-constellation {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 168px;
  gap: 16px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(217, 196, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(11, 9, 19, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(217, 196, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(124, 45, 255, 0.22), transparent 40%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  content: "";
  border: 1px solid rgba(217, 196, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(217, 196, 255, 0.6) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(217, 196, 255, 0.22) 49% 51%, transparent 52%);
  opacity: 0.58;
  transform: translateZ(34px);
}

.service-card:hover {
  border-color: rgba(217, 196, 255, 0.42);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.44), 0 0 46px rgba(124, 45, 255, 0.18);
}

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

.service-card h3,
.service-card p,
.card-index {
  position: relative;
  z-index: 1;
  transform: translateZ(44px);
}

.service-card h3 {
  width: min(100%, 420px);
  margin-bottom: 10px;
  font-size: 1.42rem;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: rgba(247, 244, 255, 0.62);
  font-size: 0.92rem;
}

.card-index {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(217, 196, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card.large {
  grid-column: span 5;
  grid-row: span 2;
}

.service-card.wide {
  grid-column: span 5;
}

.service-card.tall {
  grid-column: span 3;
  grid-row: span 2;
}

.method {
  background:
    radial-gradient(circle at 82% 26%, rgba(217, 196, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #030306, #080710);
}

.method-heading {
  width: min(900px, 100%);
}

.timeline-wrap {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  overflow: hidden;
  background: rgba(217, 196, 255, 0.1);
}

.timeline-line span {
  display: block;
  width: 100%;
  height: calc(var(--timeline-progress, 0) * 100%);
  background: linear-gradient(180deg, var(--lilac), var(--violet), transparent);
  box-shadow: 0 0 20px rgba(169, 114, 255, 0.88);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 390px);
  gap: 20px;
  width: calc(50% - 54px);
  padding: 24px;
  border: 1px solid rgba(217, 196, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.timeline-item:nth-child(odd) {
  justify-self: end;
}

.timeline-item:nth-child(even) {
  justify-self: start;
  margin-left: calc(50% + 54px);
}

.timeline-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(217, 196, 255, 0.22);
  border-radius: 8px;
  background: rgba(124, 45, 255, 0.12);
  color: var(--lilac);
  font-size: 0.8rem;
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.timeline-item p {
  margin: 0;
  color: rgba(247, 244, 255, 0.66);
}

.showcase {
  padding-bottom: clamp(78px, 10vw, 140px);
  background:
    radial-gradient(circle at 22% 12%, rgba(124, 45, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #080710, #030306);
}

.case-rail {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 18px;
  transform: translate3d(var(--rail-x, 0px), 0, 0);
  transition: transform 120ms linear;
}

.case-card {
  position: relative;
  flex: 0 0 min(72vw, 510px);
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 196, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(13, 11, 22, 0.82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transition: transform 500ms var(--ease), border-color 300ms ease, box-shadow 300ms ease;
}

.case-card:hover {
  z-index: 3;
  border-color: rgba(217, 196, 255, 0.42);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.5), 0 0 42px rgba(124, 45, 255, 0.18);
  transform: translateY(-12px) scale(1.018);
}

.case-visual {
  position: relative;
  height: 330px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.36), transparent 16%),
    linear-gradient(135deg, rgba(124, 45, 255, 0.78), rgba(10, 8, 18, 0.86));
}

.case-visual::before {
  position: absolute;
  inset: 28px 34px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 46%, transparent 46%),
    linear-gradient(180deg, transparent 0 22%, rgba(255, 255, 255, 0.12) 22% 23%, transparent 23% 48%, rgba(255, 255, 255, 0.1) 48% 49%, transparent 49%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.24);
  transform: rotate(-4deg);
}

.case-visual::after {
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: 156px;
  height: 118px;
  content: "";
  border: 1px solid rgba(217, 196, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(217, 196, 255, 0.72) 0 20%, transparent 20%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 10px, transparent 10px 22px),
    rgba(5, 5, 10, 0.64);
  transform: rotate(6deg);
}

.case-visual.clinic {
  background:
    radial-gradient(circle at 66% 30%, rgba(217, 196, 255, 0.4), transparent 18%),
    linear-gradient(135deg, rgba(159, 115, 255, 0.68), rgba(13, 11, 22, 0.9));
}

.case-visual.fashion {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 34% 64%, rgba(124, 45, 255, 0.6), transparent 28%),
    #08070f;
}

.case-visual.realty {
  background:
    linear-gradient(135deg, rgba(217, 196, 255, 0.26), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    #090812;
}

.case-visual.gym {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 15%),
    linear-gradient(150deg, rgba(124, 45, 255, 0.86), #05050a 65%);
}

.case-card span {
  color: var(--lilac);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 12px 0 10px;
  font-size: 2.4rem;
  line-height: 0.98;
}

.case-card p {
  width: min(360px, 100%);
  margin: 0;
}

.results {
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 45, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #030306, #080710);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 196, 255, 0.14);
  border-radius: 8px;
  background: rgba(217, 196, 255, 0.11);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.metric {
  min-height: 250px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 196, 255, 0.12), transparent 58%),
    rgba(8, 7, 14, 0.88);
}

.metric strong {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 4.8rem;
  line-height: 0.88;
  text-shadow: 0 0 30px rgba(169, 114, 255, 0.2);
}

.metric span {
  color: rgba(247, 244, 255, 0.66);
  font-size: 0.93rem;
  font-weight: 700;
}

.differentials {
  background:
    radial-gradient(circle at 100% 34%, rgba(217, 196, 255, 0.1), transparent 32rem),
    linear-gradient(180deg, #080710, #030306);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.editorial-copy {
  position: sticky;
  top: 120px;
}

.diff-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(217, 196, 255, 0.16);
}

.diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid rgba(217, 196, 255, 0.16);
}

.diff-item span {
  color: var(--lilac);
  font-size: 0.76rem;
  font-weight: 900;
}

.diff-item h3 {
  margin: 0;
  color: rgba(247, 244, 255, 0.86);
  font-size: 1.75rem;
  line-height: 1.05;
}

.testimonials {
  background:
    radial-gradient(circle at 18% 24%, rgba(124, 45, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, #030306, #080710);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial {
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(217, 196, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(12, 10, 20, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.avatar {
  width: 74px;
  height: 74px;
  margin-bottom: 56px;
  border: 1px solid rgba(217, 196, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(124, 45, 255, 0.2);
}

.avatar-one {
  background:
    radial-gradient(circle at 48% 34%, #f4d2c7 0 16%, transparent 17%),
    radial-gradient(circle at 52% 46%, #2c1a24 0 30%, transparent 31%),
    linear-gradient(145deg, #ad8dff, #2c123f);
}

.avatar-two {
  background:
    radial-gradient(circle at 48% 34%, #c68f73 0 16%, transparent 17%),
    radial-gradient(circle at 51% 49%, #171016 0 31%, transparent 32%),
    linear-gradient(145deg, #d9c4ff, #351472);
}

.avatar-three {
  background:
    radial-gradient(circle at 48% 34%, #e2b7a4 0 16%, transparent 17%),
    radial-gradient(circle at 50% 48%, #2b172d 0 32%, transparent 33%),
    linear-gradient(145deg, #8a46ff, #f7f4ff);
}

.testimonial p {
  min-height: 102px;
  color: rgba(247, 244, 255, 0.82);
  font-size: 1.06rem;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: #fff;
}

.testimonial span {
  margin-top: 4px;
  color: var(--muted-2);
}

.final-cta {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 45, 255, 0.24), transparent 36rem),
    linear-gradient(180deg, #080710, #020204);
}

.cta-aura {
  position: absolute;
  inset: 8% 4%;
  border: 1px solid rgba(217, 196, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(217, 196, 255, 0.06), transparent),
    radial-gradient(circle at 50% 50%, rgba(124, 45, 255, 0.24), transparent 44%);
  filter: blur(0.2px);
  animation: auraPulse 6s ease-in-out infinite;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.cta-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 3.05rem;
  line-height: 0.94;
}

.cta-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(247, 244, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.62;
}

.cta-copy .button {
  margin-top: 14px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(217, 196, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(7, 6, 12, 0.74);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.lead-form .form-head,
.lead-form label:nth-of-type(5),
.lead-form label:nth-of-type(6),
.lead-form button,
.lead-form .form-status {
  grid-column: 1 / -1;
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 196, 255, 0.14);
}

.form-head span {
  color: var(--lilac);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-head strong {
  color: #fff;
  font-size: 1.8rem;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247, 244, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(217, 196, 255, 0.14);
  border-radius: 8px;
  background: rgba(3, 3, 6, 0.48);
  color: #fff;
  outline: none;
  padding: 14px 14px;
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 196, 255, 0.58);
  background: rgba(5, 5, 10, 0.72);
  box-shadow: 0 0 0 4px rgba(124, 45, 255, 0.12), 0 0 28px rgba(169, 114, 255, 0.1);
}

label.is-invalid input,
label.is-invalid select,
label.is-invalid textarea {
  border-color: rgba(255, 119, 174, 0.68);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--lilac);
  font-size: 0.9rem;
}

.site-footer {
  padding: 46px 20px 28px;
  border-top: 1px solid rgba(217, 196, 255, 0.12);
  background: #020204;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 30px;
  width: min(100%, var(--max));
  margin: 0 auto 38px;
}

.footer-inner p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-links,
address {
  display: grid;
  gap: 12px;
  color: rgba(247, 244, 255, 0.66);
  font-style: normal;
}

.footer-links a,
address a {
  transition: color 200ms ease;
}

.footer-links a:hover,
address a:hover {
  color: #fff;
}

.site-footer small {
  display: block;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: rgba(247, 244, 255, 0.42);
}

.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.blur-in {
  filter: blur(18px);
  transform: translateY(24px);
}

.rise-in {
  filter: blur(10px);
  transform: translateY(44px) scale(0.98);
}

.scale-in {
  filter: blur(12px);
  transform: scale(0.94);
}

.from-left {
  filter: blur(12px);
  transform: translateX(-42px);
}

.from-right {
  filter: blur(12px);
  transform: translateX(42px);
}

.mask-reveal {
  clip-path: inset(0 0 0 0);
  filter: blur(14px);
  transform: translateY(32px);
}

.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0);
  transition:
    opacity 900ms var(--ease),
    filter 900ms var(--ease),
    transform 900ms var(--ease),
    clip-path 1100ms var(--ease);
}

@keyframes titleReveal {
  to {
    filter: blur(0);
    transform: translateY(0) rotateX(0);
  }
}

@keyframes floatDrift {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -16px;
  }
}

@keyframes lightPass {
  0%,
  54% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(72%);
  }
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.99);
  }
  50% {
    opacity: 0.76;
    transform: scale(1.01);
  }
}

@media (min-width: 1440px) {
  h2 {
    font-size: 5.8rem;
  }

  .hero-title {
    font-size: 6rem;
  }

  .statement {
    font-size: 7.6rem;
  }
}

@media (max-width: 1040px) {
  h2 {
    font-size: 4.2rem;
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .statement {
    font-size: 5rem;
  }

  .metric strong {
    font-size: 4rem;
  }

  .case-card h3 {
    font-size: 2.1rem;
  }

  .diff-item h3 {
    font-size: 1.5rem;
  }

  .cta-copy h2 {
    font-size: 3rem;
  }

  .site-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(217, 196, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 19px;
    height: 1px;
    background: #fff;
    transition: transform 240ms ease;
  }

  .nav-toggle span + span {
    margin-top: -18px;
  }

  .site-nav.is-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-nav.is-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

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

  .site-nav.is-open .nav-links,
  .site-nav.is-open .nav-cta {
    display: flex;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-nav.is-open .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 4px 8px;
  }

  .site-nav.is-open .nav-cta {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .float-mockup {
    opacity: 0.58;
  }

  .mockup-growth {
    display: none;
  }

  .service-constellation {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card,
  .service-card.large,
  .service-card.tall,
  .service-card.wide {
    grid-column: span 3;
    grid-row: span 1;
  }

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

  .metric:last-child {
    grid-column: span 2;
  }

  .testimonial-grid,
  .cta-grid,
  .editorial-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 12px;
    width: min(calc(100% - 24px), 1180px);
  }

  .hero {
    min-height: 96svh;
    padding: 118px 16px 82px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .float-mockup {
    transform: none !important;
  }

  .mockup-ad {
    top: 16%;
    left: -38px;
    width: 150px;
  }

  .mockup-page {
    top: 15%;
    right: -42px;
    width: 160px;
  }

  .mockup-dashboard,
  .mockup-feed {
    display: none;
  }

  .section-band {
    padding: 86px 0;
  }

  h2,
  .statement {
    font-size: 3rem;
  }

  .cta-copy h2 {
    font-size: 3rem;
  }

  .service-constellation {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-card,
  .service-card.large,
  .service-card.tall,
  .service-card.wide {
    grid-column: 1;
    min-height: 240px;
  }

  .timeline-line {
    left: 28px;
  }

  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: 100%;
    grid-template-columns: 56px 1fr;
    justify-self: stretch;
    margin-left: 0;
    padding: 18px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
  }

  .case-rail {
    width: auto;
    overflow-x: auto;
    padding-inline: 20px;
    scroll-snap-type: x proximity;
    transform: none !important;
  }

  .case-card {
    flex-basis: 86vw;
    min-height: 492px;
    scroll-snap-align: center;
  }

  .case-visual {
    height: 268px;
  }

  .metric-grid,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric:last-child {
    grid-column: auto;
  }

  .metric {
    min-height: 190px;
  }

  .diff-item {
    grid-template-columns: 52px 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cursor-glow {
    display: none;
  }
}

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

  .reveal,
  .mask-reveal,
  .blur-in,
  .rise-in,
  .scale-in,
  .from-left,
  .from-right {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
  }
}
