:root {
  --navy: #0c102f;
  --navy-2: #151a43;
  --ink: #14162a;
  --muted: #686b7c;
  --paper: #f7f5f1;
  --white: #ffffff;
  --gold: #e4bb67;
  --gold-2: #f3d690;
  --purple: #832e7d;
  --purple-2: #b054a8;
  --cyan: #6ec1e4;
  --line: rgba(12, 16, 47, 0.12);
  --shadow: 0 24px 70px rgba(12, 16, 47, 0.13);
  --radius-sm: 10px;
  --radius: 22px;
  --radius-lg: 38px;
  --container: min(1200px, calc(100vw - 48px));
  --header-h: 82px;
  --font-display: clamp(2.85rem, 5.4vw, 5.5rem);
  --font-page-title: clamp(2.55rem, 4.6vw, 4.6rem);
  --font-section-title: clamp(1.85rem, 3vw, 3.15rem);
  --font-card-title: clamp(1.15rem, 1.55vw, 1.55rem);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--navy);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid #5e1f59;
  outline-offset: 4px;
}

.site-header :focus-visible,
.mobile-nav :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.section--dark :focus-visible,
.newsletter :focus-visible,
.site-footer :focus-visible,
.cookie-panel :focus-visible,
.lightbox :focus-visible {
  outline-color: var(--gold-2);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  max-width: 100%;
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(68px, 8vw, 112px) 0;
}

.section--tight {
  padding: clamp(58px, 7vw, 92px) 0;
}

.section--dark {
  color: var(--white);
  background: var(--navy);
}

.section--white {
  background: var(--white);
}

.section--gold {
  background: var(--gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3,
h4 {
  font-family: Montserrat, "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  font-size: var(--font-page-title);
}

h2 {
  margin-bottom: 26px;
  font-size: var(--font-section-title);
}

h3 {
  font-size: var(--font-card-title);
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.section--dark .lede {
  color: rgba(255, 255, 255, 0.68);
}

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

.text-purple {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "\2197";
  font-size: 1.1em;
  transition: transform 180ms ease;
}

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

.btn:hover::after {
  transform: translate(2px, -2px);
}

.btn--gold {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 13px 32px rgba(228, 187, 103, 0.2);
}

.btn--gold::before {
  position: absolute;
  inset: -45% auto -45% -48%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn--gold:hover::before {
  animation: button-shine 760ms ease;
}

.btn--gold:hover {
  background: var(--gold-2);
  box-shadow: 0 16px 38px rgba(228, 187, 103, 0.32);
}

.btn--purple {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 13px 32px rgba(131, 46, 125, 0.2);
}

.btn--purple:hover {
  background: var(--purple-2);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(228, 187, 103, 0.08);
}

.btn--ink {
  color: var(--white);
  background: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(12, 16, 47, 0.93);
  box-shadow: 0 10px 40px rgba(4, 6, 23, 0.17);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: var(--container);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand img {
  width: 205px;
  height: auto;
}

.mobile-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 43px;
  padding: 11px 18px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
}

/* Hero */
.hero {
  --hero-aura-x: 0px;
  --hero-aura-y: 0px;
  --scene-rx: 0deg;
  --scene-ry: 0deg;
  --scene-x: 0px;
  --scene-y: 0px;
  position: relative;
  display: grid;
  min-height: min(960px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 70px) 0 122px;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  width: 720px;
  height: 720px;
  top: -290px;
  right: -180px;
  content: "";
  border: 1px solid rgba(228, 187, 103, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(228, 187, 103, 0.025), 0 0 0 180px rgba(131, 46, 125, 0.025);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: grid-drift 18s linear infinite;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  right: -7vw;
  bottom: -16vw;
  border-radius: 50%;
  opacity: 0.7;
  background: radial-gradient(circle at 35% 35%, rgba(176, 84, 168, 0.85), rgba(131, 46, 125, 0.12) 55%, transparent 70%);
  filter: blur(18px);
  animation: orb-drift 9s ease-in-out infinite alternate;
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: min(780px, 62vw);
  height: min(780px, 62vw);
  top: 3%;
  right: -12%;
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, transparent 0 25%, rgba(228, 187, 103, 0.19), rgba(131, 46, 125, 0.35), rgba(110, 193, 228, 0.18), transparent 72%),
    radial-gradient(circle, rgba(131, 46, 125, 0.16), transparent 66%);
  filter: blur(34px);
  transform: translate3d(var(--hero-aura-x), var(--hero-aura-y), 0);
  scale: 1;
  opacity: 0.78;
  animation: aurora-breathe 6.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-data-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-data-lines span {
  position: absolute;
  width: 42vw;
  height: 1px;
  right: -18vw;
  top: 22%;
  background: linear-gradient(90deg, transparent, rgba(110, 193, 228, 0.72), var(--gold), transparent);
  opacity: 0;
  transform: rotate(-22deg) translateX(-120%);
  animation: data-packet 5.8s ease-in-out infinite;
}

.hero-data-lines span:nth-child(2) { top: 42%; right: -10vw; animation-delay: -1.7s; animation-duration: 7.2s; }
.hero-data-lines span:nth-child(3) { top: 66%; right: -24vw; animation-delay: -3.8s; animation-duration: 6.4s; }
.hero-data-lines span:nth-child(4) { top: 82%; right: 2vw; animation-delay: -4.9s; animation-duration: 8.1s; }

.hero-particles {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  bottom: -20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(228, 187, 103, 0.65);
  opacity: 0;
  animation: particle-rise 13s linear infinite;
}

.hero-particles i:nth-child(1) { left: 8%; animation-delay: -3s; }
.hero-particles i:nth-child(2) { left: 19%; width: 2px; height: 2px; animation-delay: -8s; animation-duration: 16s; }
.hero-particles i:nth-child(3) { left: 34%; animation-delay: -11s; animation-duration: 18s; }
.hero-particles i:nth-child(4) { left: 49%; width: 3px; height: 3px; animation-delay: -6s; }
.hero-particles i:nth-child(5) { left: 63%; animation-delay: -1s; animation-duration: 17s; }
.hero-particles i:nth-child(6) { left: 74%; width: 2px; height: 2px; animation-delay: -9s; }
.hero-particles i:nth-child(7) { left: 86%; animation-delay: -12s; animation-duration: 19s; }
.hero-particles i:nth-child(8) { left: 94%; width: 3px; height: 3px; animation-delay: -5s; animation-duration: 15s; }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
}

.hero-content {
  position: relative;
}

.hero-engine-signal {
  position: absolute;
  top: 42px;
  right: 0;
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-enter 720ms 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-engine-signal > span {
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-radius: 50%;
  background: #33d17a;
  box-shadow: 0 0 0 5px rgba(51, 209, 122, 0.08);
  animation: live-pulse 1.6s ease-out infinite;
}

.hero-engine-signal b {
  margin-right: 5px;
  color: var(--gold);
  font-weight: 800;
}

.hero-engine-signal i {
  width: 2px;
  height: 6px;
  border-radius: 99px;
  background: var(--cyan);
  animation: engine-level 1s ease-in-out infinite alternate;
}

.hero-engine-signal i:nth-of-type(2) { animation-delay: -0.25s; }
.hero-engine-signal i:nth-of-type(3) { animation-delay: -0.5s; }
.hero-engine-signal i:nth-of-type(4) { animation-delay: -0.75s; }

.hero-content .eyebrow {
  animation: hero-enter 720ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kicker {
  animation: hero-enter 720ms 170ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 30px;
  font-size: var(--font-display);
}

.hero-title-line {
  display: block;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: title-unmask 920ms 230ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title-line:nth-child(2) {
  animation-delay: 360ms;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--gold);
  background: linear-gradient(100deg, var(--gold) 8%, #fff0bd 38%, var(--gold) 62%, #c98bd0 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-shimmer 4.5s linear infinite;
}

.hero-title-accent::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 5px;
  content: "";
  background: var(--purple);
  transform: scaleX(0.3);
  transform-origin: left;
  animation: underline-pulse 4s ease-in-out infinite;
}

.hero-copy {
  max-width: 730px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  animation: hero-enter 760ms 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content .btn-row {
  animation: hero-enter 760ms 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kicker {
  min-height: 30px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rotating-word {
  color: var(--gold);
  transition: opacity 180ms ease, transform 180ms ease;
}

.rotating-word.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-showcase {
  position: relative;
  min-height: 540px;
  perspective: 1100px;
  transform: perspective(1200px) rotateX(var(--scene-rx)) rotateY(var(--scene-ry)) translate3d(var(--scene-x), var(--scene-y), 0);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  animation: scene-enter 1100ms 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.showcase-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(228, 187, 103, 0.22);
  border-radius: 50%;
  animation: showcase-orbit-spin 18s linear infinite;
  pointer-events: none;
}

.showcase-orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 12%;
  left: 17%;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(228, 187, 103, 0.09), 0 0 22px rgba(228, 187, 103, 0.68);
}

.showcase-orbit--outer {
  inset: -2% -12% 1% -8%;
}

.showcase-orbit--inner {
  inset: 16% 4% 14% 5%;
  border-color: rgba(110, 193, 228, 0.2);
  animation-direction: reverse;
  animation-duration: 11s;
}

.showcase-orbit--inner::after {
  top: auto;
  right: 7%;
  bottom: 21%;
  left: auto;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(110, 193, 228, 0.08), 0 0 22px rgba(110, 193, 228, 0.65);
}

.orbit-node {
  position: absolute;
  display: block;
}

.orbit-node b {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 11, 37, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  animation: showcase-orbit-counter 18s linear infinite;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.showcase-orbit--inner .orbit-node b {
  animation-direction: reverse;
  animation-duration: 11s;
}

.orbit-node--one { top: 3%; left: 48%; }
.orbit-node--two { top: 47%; right: -7%; }
.orbit-node--three { bottom: 3%; left: 28%; }
.orbit-node--four { top: 44%; left: -8%; }
.orbit-node--five { right: 8%; bottom: 8%; }

.showcase-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-browser-bar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(8, 11, 37, 0.88);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.showcase-browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-2);
}

.showcase-browser-bar i:nth-child(2) { background: var(--gold); }
.showcase-browser-bar i:nth-child(3) { background: var(--cyan); }

.showcase-browser-bar b {
  margin-left: auto;
  font-weight: 750;
}

.showcase-scan {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), #fff, var(--gold), transparent);
  box-shadow: 0 0 20px rgba(110, 193, 228, 0.75);
  opacity: 0;
  animation: showcase-scan-pass 3.8s ease-in-out infinite;
  pointer-events: none;
}

.showcase-card--main {
  z-index: 2;
  width: 86%;
  height: 368px;
  right: 0;
  top: 76px;
  transform: rotateY(-8deg) rotateZ(2deg);
  animation: card-float-main 6.2s ease-in-out infinite;
}

.showcase-card--small {
  z-index: 3;
  width: 48%;
  height: 168px;
  left: -6%;
  bottom: 27px;
  transform: rotateY(10deg) rotateZ(-4deg);
  animation: card-float-small 4.8s ease-in-out infinite reverse;
}

.showcase-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: -26px;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 20px 50px rgba(228, 187, 103, 0.28);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  animation: badge-float 5s ease-in-out infinite;
}

.showcase-code-card {
  position: absolute;
  z-index: 4;
  width: 47%;
  height: 148px;
  right: -4%;
  bottom: 4px;
  padding: 16px 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  background: rgba(8, 11, 37, 0.9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
  transform: rotateY(-7deg) rotateZ(2.5deg);
  animation: code-card-float 5.4s ease-in-out infinite;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.code-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  font-size: 0.52rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.code-card-head > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33d17a;
  box-shadow: 0 0 0 5px rgba(51, 209, 122, 0.1), 0 0 18px rgba(51, 209, 122, 0.55);
  animation: live-pulse 1.6s ease-out infinite;
}

.code-card-head b {
  color: var(--gold);
}

.code-card-head small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.46rem;
}

.code-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
}

.code-line i,
.code-line em {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(131, 46, 125, 0.65);
}

.code-line i { width: 22%; }
.code-line em { width: 56%; background: rgba(110, 193, 228, 0.4); }
.code-line--two i { width: 35%; background: rgba(228, 187, 103, 0.72); }
.code-line--two em { width: 42%; }
.code-line--three i { width: 16%; }
.code-line--three em { width: 67%; }

.code-line--one { animation: code-line-pulse 2.7s ease-in-out infinite; }
.code-line--two { animation: code-line-pulse 2.7s -0.9s ease-in-out infinite; }
.code-line--three { animation: code-line-pulse 2.7s -1.8s ease-in-out infinite; }

.code-progress {
  height: 2px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.code-progress span {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  animation: build-progress 3.6s ease-in-out infinite;
}

.showcase-status {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 144px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 11, 37, 0.84);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.showcase-status > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #33d17a;
  box-shadow: 0 0 0 5px rgba(51, 209, 122, 0.09), 0 0 16px rgba(51, 209, 122, 0.55);
  animation: live-pulse 1.6s ease-out infinite;
}

.showcase-status span,
.showcase-status small,
.showcase-status strong {
  display: block;
}

.showcase-status small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
}

.showcase-status strong {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.showcase-status--security {
  top: 25px;
  right: -5%;
  animation: status-float 4.4s ease-in-out infinite;
}

.showcase-status--commerce {
  top: 235px;
  left: -8%;
  animation: status-float 5.6s -2.1s ease-in-out infinite reverse;
}

.showcase-cursor {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(228, 187, 103, 0.09), 0 12px 30px rgba(0, 0, 0, 0.22);
  font-size: 0.88rem;
  animation: cursor-tour 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 59px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::before {
  width: 1px;
  height: 34px;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-line 2s ease-in-out infinite;
}

.hero-live-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 43px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 11, 37, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-live-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: hero-live-marquee 22s linear infinite;
}

.hero-live-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-live-track span::after {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(228, 187, 103, 0.7);
}

.hero.is-motion-paused *,
.hero.is-motion-paused *::before,
.hero.is-motion-paused *::after {
  animation-play-state: paused !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 78px;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: -0.08em;
  width: max-content;
  color: rgba(255, 255, 255, 0.035);
  content: "OZIT · DESIGN · CODE · COMMERCE · SECURITY · GROWTH · OZIT · DESIGN · CODE ·";
  font-family: Montserrat, sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.72;
  white-space: nowrap;
  animation: page-word-run 30s linear infinite;
  pointer-events: none;
}

.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -26vw;
  width: 55vw;
  height: 55vw;
  content: "";
  border: 1px solid rgba(228, 187, 103, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(131, 46, 125, 0.07), 0 0 0 170px rgba(228, 187, 103, 0.025);
  animation: page-orbit 14s ease-in-out infinite alternate;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: var(--font-page-title);
}

.page-hero .lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Layouts */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
}

.split--center {
  align-items: center;
}

.split > *,
.service-detail > *,
.contact-grid > *,
.form-grid > *,
.price-category > *,
.legal-layout > *,
.article-layout > * {
  min-width: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading > :first-child {
  max-width: 800px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.note-line {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metric {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  letter-spacing: -0.04em;
}

.metric span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 325px;
  padding: clamp(30px, 3.5vw, 48px);
  overflow: hidden;
  background: var(--white);
  transition: color 240ms ease, transform 240ms ease;
  isolation: isolate;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--navy);
  transform: translateY(101%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  left: calc(var(--pointer-x) - 140px);
  top: calc(var(--pointer-y) - 140px);
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 187, 103, 0.17), transparent 68%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover,
.service-card.is-auto-active {
  color: var(--white);
}

.service-card:hover::before,
.service-card.is-auto-active::before {
  transform: translateY(0);
}

.service-card:hover::after,
.service-card.is-auto-active::after {
  opacity: 1;
}

.service-card-number {
  display: block;
  margin-bottom: 66px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.service-card:hover .service-card-number,
.service-card.is-auto-active .service-card-number {
  color: var(--gold);
}

.service-card h3 {
  max-width: 300px;
  margin-bottom: 15px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 240ms ease;
}

.service-card:hover p,
.service-card.is-auto-active p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card-arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 260ms ease, color 220ms ease, border-color 220ms ease;
}

.service-card:hover .service-card-arrow,
.service-card.is-auto-active .service-card-arrow {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--gold);
  transform: translate(3px, -3px) rotate(12deg);
}

.service-card.is-auto-active {
  box-shadow: inset 0 0 0 1px rgba(228, 187, 103, 0.34), 0 18px 45px rgba(12, 16, 47, 0.12);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(58px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail-index {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-detail h2 {
  font-size: var(--font-section-title);
}

.service-intro {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 650;
  line-height: 1.45;
}

.service-detail--security {
  position: relative;
}

.service-detail--security::before {
  position: absolute;
  z-index: -1;
  inset: 5% -5%;
  content: "";
  border-radius: 34px;
  background: radial-gradient(circle at 70% 45%, rgba(110, 193, 228, 0.1), transparent 46%);
  pointer-events: none;
}

.security-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 4px;
  padding: 10px 15px;
  overflow: hidden;
  border: 1px solid rgba(25, 117, 73, 0.2);
  border-radius: 999px;
  color: #17643f;
  background: rgba(25, 117, 73, 0.07);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-pulse::after {
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(110, 193, 228, 0.22), transparent);
  animation: security-scan 4.6s ease-in-out infinite;
}

.security-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a564;
  box-shadow: 0 0 0 0 rgba(34, 165, 100, 0.3);
  animation: security-ping 2.2s ease-out infinite;
}

.security-radar {
  position: relative;
  height: 290px;
  margin: 30px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(12, 16, 47, 0.1);
  border-radius: 24px;
  color: var(--white);
  background:
    repeating-radial-gradient(circle at 34% 50%, transparent 0 42px, rgba(110, 193, 228, 0.12) 43px 44px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: 0 24px 60px rgba(12, 16, 47, 0.14);
}

.radar-sweep {
  position: absolute;
  width: 270px;
  height: 270px;
  top: 10px;
  left: calc(34% - 135px);
  border-radius: 50%;
  background: conic-gradient(from 10deg, transparent 0 318deg, rgba(110, 193, 228, 0.06) 334deg, rgba(228, 187, 103, 0.5) 358deg, transparent 360deg);
  animation: radar-turn 5.6s linear infinite;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 34%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(228, 187, 103, 0.46);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8, 11, 37, 0.92);
  box-shadow: 0 0 0 10px rgba(228, 187, 103, 0.05), 0 0 28px rgba(228, 187, 103, 0.22);
  font-family: Montserrat, sans-serif;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.radar-blip {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(110, 193, 228, 0.42);
  animation: radar-blip 2.4s ease-out infinite;
}

.radar-blip--one { top: 24%; left: 21%; }
.radar-blip--two { top: 67%; left: 44%; animation-delay: -0.8s; }
.radar-blip--three { top: 38%; left: 48%; animation-delay: -1.6s; background: var(--gold); }

.radar-status {
  position: absolute;
  right: 5%;
  display: grid;
  width: 36%;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.68rem;
  animation: radar-status-glow 4.8s ease-in-out infinite;
}

.radar-status b { font-weight: 750; }
.radar-status small { color: var(--gold); font-size: 0.56rem; letter-spacing: 0.1em; }
.radar-status--one { top: 16%; }
.radar-status--two { top: 41%; animation-delay: -1.6s; }
.radar-status--three { top: 66%; animation-delay: -3.2s; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 38px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px 0 18px 28px;
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  display: inline-block;
  width: 18px;
  margin-left: -28px;
  color: var(--purple);
  content: "+";
  font-weight: 900;
}

/* Reference gallery */
.gallery-grid {
  columns: 3 320px;
  column-gap: 22px;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 70px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
}

.reference-list li {
  min-height: 116px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  font-family: Montserrat, sans-serif;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.reference-list li:nth-child(4n) {
  border-right: 0;
}

.reference-list li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.reference-list li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--purple);
  content: "↗";
  font-size: 0.88rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: 16px;
  background: var(--navy);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.gallery-item::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  content: "+";
  background: var(--gold);
  font-size: 1.35rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-item:hover img {
  opacity: 0.8;
  transform: scale(1.025);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Technology / expertise showcase */
.expertise-stage {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 42%, rgba(131, 46, 125, 0.28), transparent 34%),
    radial-gradient(circle at 22% 92%, rgba(110, 193, 228, 0.12), transparent 30%),
    var(--navy);
  isolation: isolate;
}

.expertise-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  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: 68px 68px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000 12%, transparent 68%);
  mask-image: radial-gradient(circle at 70% 50%, #000 12%, transparent 68%);
  animation: grid-drift 22s linear infinite reverse;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  gap: clamp(46px, 7vw, 108px);
}

.expertise-copy {
  position: relative;
  z-index: 4;
}

.expertise-copy .lede {
  color: rgba(255, 255, 255, 0.68);
}

.expertise-signals {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.expertise-signal {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(228, 187, 103, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.045);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.expertise-signal::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(228, 187, 103, 0.13), transparent);
  transform: skewX(-15deg);
  transition: left 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-signal:hover {
  border-color: rgba(228, 187, 103, 0.34);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(6px);
}

.expertise-signal:hover::after {
  left: 115%;
}

.expertise-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(228, 187, 103, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
}

.expertise-signal strong,
.expertise-signal small {
  display: block;
}

.expertise-signal strong {
  font-family: Montserrat, sans-serif;
  font-size: 0.96rem;
}

.expertise-signal small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.tech-canvas {
  position: relative;
  min-height: 690px;
  margin: 0;
  perspective: 1200px;
}

.tech-canvas::before,
.tech-canvas::after {
  position: absolute;
  inset: 7% 5%;
  content: "";
  border: 1px solid rgba(228, 187, 103, 0.16);
  border-radius: 50%;
  animation: tech-orbit 26s linear infinite;
}

.tech-canvas::after {
  inset: 18% 16%;
  border-color: rgba(110, 193, 228, 0.16);
  animation-direction: reverse;
  animation-duration: 19s;
}

.tech-collage {
  position: absolute;
  z-index: 2;
  inset: 2% 0 0 0;
  display: grid;
  place-items: center;
  transform: rotateY(-5deg) rotateZ(1.5deg);
  transform-style: preserve-3d;
}

.tech-collage::after {
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 18%;
  bottom: 4%;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(35px);
}

.tech-collage img {
  width: min(690px, 105%);
  max-width: none;
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.42));
  animation: tech-drift 8s ease-in-out infinite;
}

.tech-scan {
  position: absolute;
  z-index: 3;
  right: 9%;
  left: 9%;
  top: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  box-shadow: 0 0 18px rgba(110, 193, 228, 0.55);
  opacity: 0.7;
  animation: tech-scan 6.5s ease-in-out infinite;
  pointer-events: none;
}

.tech-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(12, 16, 47, 0.74);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: chip-float 5s ease-in-out infinite;
}

.tech-chip::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(228, 187, 103, 0.11);
}

.tech-chip--one { top: 10%; left: 1%; }
.tech-chip--two { top: 33%; right: -1%; animation-delay: -1.8s; }
.tech-chip--three { bottom: 18%; left: 0; animation-delay: -3.1s; }
.tech-chip--four { right: 3%; bottom: 6%; animation-delay: -4.2s; }

.tech-rail {
  margin-top: clamp(52px, 7vw, 82px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tech-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: tech-marquee 34s linear infinite;
}

.tech-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 25px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Montserrat, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-track span::after {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

/* Logos */
.logo-marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 78px;
  animation: marquee 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  width: 135px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.kinetic-band {
  position: relative;
  overflow: hidden;
  padding: 25px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(131, 46, 125, 0.28), transparent 32%),
    #080b25;
}

.kinetic-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #080b25 0, transparent 12%, transparent 88%, #080b25 100%);
  pointer-events: none;
}

.kinetic-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
  animation: kinetic-forward 24s linear infinite;
}

.kinetic-row span:nth-of-type(3n + 2) {
  color: var(--gold);
}

.kinetic-row i {
  color: var(--purple-2);
  font-size: 0.24em;
  font-style: normal;
}

.kinetic-row--reverse {
  margin-top: 16px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 187, 103, 0.56);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
  animation: kinetic-reverse 30s linear infinite;
}

.kinetic-row--reverse i {
  color: var(--cyan);
  -webkit-text-stroke: 0;
}

/* Process / testimonials */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.process-grid::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -35%;
  width: 30%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: process-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  background: var(--navy);
}

.process-step::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.process-step.is-visible::after {
  animation: process-route 5.4s ease-in-out infinite;
}

.process-step:nth-child(2).is-visible::after { animation-delay: 1.2s; }
.process-step:nth-child(3).is-visible::after { animation-delay: 2.4s; }

.process-step .step-number {
  display: block;
  margin-bottom: 74px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.process-step.is-visible .step-number {
  animation: step-number-pulse 5.4s ease-in-out infinite;
}

.process-step:nth-child(2).is-visible .step-number { animation-delay: 1.2s; }
.process-step:nth-child(3).is-visible .step-number { animation-delay: 2.4s; }

.process-step p {
  color: rgba(255, 255, 255, 0.64);
}

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

.quote-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-card blockquote {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.quote-card blockquote::before {
  display: block;
  margin-bottom: 25px;
  color: var(--purple);
  content: "“";
  font-size: 4rem;
  line-height: 0.6;
}

.quote-card footer {
  color: var(--muted);
  font-size: 0.86rem;
}

.quote-card footer strong {
  color: var(--ink);
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--navy);
  background: var(--gold);
  isolation: isolate;
}

.cta-band::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: max-content;
  color: rgba(12, 16, 47, 0.08);
  content: "LET'S BUILD · POJĎME TVOŘIT · LET'S BUILD · POJĎME TVOŘIT ·";
  font-family: Montserrat, sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: cta-type-run 22s linear infinite;
  pointer-events: none;
}

.cta-band::after {
  position: absolute;
  right: -80px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  content: "";
  border: 75px solid rgba(131, 46, 125, 0.13);
  border-radius: 50%;
  animation: cta-orbit 12s ease-in-out infinite alternate;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

/* Pricing */
.price-nav {
  position: sticky;
  z-index: 5;
  top: 70px;
  display: flex;
  gap: 10px;
  margin: 0 0 54px;
  padding: 12px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(247, 245, 241, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.price-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-nav a:hover {
  color: var(--white);
  background: var(--purple);
}

.price-category {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 90px);
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.price-category:first-of-type {
  border-top: 0;
}

.price-category h2 {
  font-size: var(--font-section-title);
  position: sticky;
  top: 150px;
}

.price-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  margin: 0;
}

.price-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.price-item:nth-child(-n + 2) {
  padding-top: 0;
}

.price-list > dt {
  font-family: Montserrat, sans-serif;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.price-list > dt small {
  display: block;
  max-width: 650px;
  margin-top: 7px;
  color: var(--muted);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.price-list > dd {
  margin: 0;
  color: var(--purple);
  font-family: Montserrat, sans-serif;
  font-size: 1.02rem;
  font-weight: 850;
  white-space: nowrap;
}

.recommended {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hour-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 70px;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.hour-rate h2 {
  font-size: var(--font-section-title);
  margin: 0;
}

.hour-rate strong {
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  white-space: nowrap;
}

/* Contact / forms */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 110px);
}

.contact-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-list small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a {
  font-family: Montserrat, sans-serif;
  font-size: 1.16rem;
  font-weight: 750;
}

.contact-list a:hover {
  color: var(--purple);
}

.form-shell {
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(12, 16, 47, 0.2);
  border-radius: 0;
  padding: 13px 0;
  color: var(--ink);
  outline: none;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 1px 0 var(--purple);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid #5e1f59;
  outline-offset: 3px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #686b7c;
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--purple);
}

.check-field a {
  color: var(--purple);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.form-status.is-success {
  color: #197549;
}

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

.turnstile-wrap {
  margin: 24px 0 18px;
  padding: 16px;
  border: 1px solid rgba(12, 16, 47, 0.11);
  border-radius: 14px;
  background: rgba(247, 245, 241, 0.72);
}

.turnstile-wrap::before {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  content: "Cloudflare ochrana formuláře";
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.turnstile-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.turnstile-status.is-error {
  color: #b62e40;
}

.turnstile-status.is-ready {
  color: #197549;
}

.turnstile-wrap noscript {
  color: #b62e40;
  font-size: 0.78rem;
}

.turnstile-wrap noscript a {
  text-decoration: underline;
}

.company-box {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
}

.company-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
}

/* Blog / empty state */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(44px, 8vw, 100px);
}

.empty-state {
  display: grid;
  min-height: 400px;
  place-items: center;
  padding: 50px;
  border: 1px dashed rgba(12, 16, 47, 0.25);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state-mark {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-family: Montserrat, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.article-list {
  display: grid;
  gap: 20px;
}

.article-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(12, 16, 47, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.article-card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -90px;
  bottom: -100px;
  content: "";
  border: 28px solid rgba(131, 46, 125, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.article-card:hover {
  border-color: rgba(131, 46, 125, 0.32);
  box-shadow: 0 22px 52px rgba(12, 16, 47, 0.1);
  transform: translateY(-4px);
}

.article-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  max-width: 720px;
  margin-bottom: 15px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.article-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.article-card > p:not(.article-card-meta) {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--muted);
}

.article-link {
  position: relative;
  z-index: 1;
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 850;
}

.article-page {
  position: relative;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 64px 0 22px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h3 {
  margin: 38px 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
}

.article-body p,
.article-body li {
  color: #4f5260;
}

.article-body a:not(.btn) {
  color: #5e1f59;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-checklist {
  margin: 28px 0;
  padding: 28px 28px 28px 52px;
  border: 1px solid rgba(131, 46, 125, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(131, 46, 125, 0.045);
}

.article-checklist li + li {
  margin-top: 9px;
}

.article-aside {
  position: sticky;
  top: 105px;
  align-self: start;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.article-aside h2,
.article-aside h3 {
  color: var(--gold);
  font-size: 1.35rem;
}

.article-aside p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.newsletter {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.newsletter h3 {
  color: var(--gold);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.newsletter input[type="email"] {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  outline: 0;
  background: transparent;
}

.newsletter input[type="email"]:focus-visible {
  border-bottom-color: var(--gold);
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

.newsletter .check-field {
  color: rgba(255, 255, 255, 0.56);
}

.newsletter .check-field a {
  color: var(--gold);
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: space-between;
  gap: 75px;
}

.legal-toc {
  position: sticky;
  top: 105px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-toc a:hover {
  color: var(--purple);
}

.legal-content h2 {
  font-size: var(--font-section-title);
  margin: 70px 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 42px 0 16px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: #4f5260;
}

.legal-content a {
  color: #5e1f59;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--navy);
  text-decoration-thickness: 2px;
}

.legal-content table {
  display: block;
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.legal-content th,
.legal-content td {
  min-width: 140px;
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--navy);
  background: rgba(228, 187, 103, 0.24);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 84px 0 30px;
  color: var(--white);
  background: #080b25;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: clamp(44px, 8vw, 120px);
  padding-bottom: 66px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  aspect-ratio: 300 / 67;
  object-fit: contain;
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
}

.footer-specialties span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-heading {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin: 9px 0;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* Cookie consent */
.cookie-panel {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  width: min(520px, calc(100vw - 44px));
  max-height: calc(100dvh - 44px);
  padding: 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  background: rgba(12, 16, 47, 0.97);
  box-shadow: 0 24px 80px rgba(2, 3, 17, 0.4);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 40px));
  visibility: hidden;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 350ms;
}

.cookie-panel.is-visible {
  transform: translateY(0);
  visibility: visible;
}

.cookie-panel h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.cookie-panel p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 0.75rem;
}

.cookie-actions .btn::after {
  display: none;
}

.cookie-settings {
  display: none;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-settings.is-open {
  display: grid;
  gap: 13px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.82rem;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.cookie-trigger,
.motion-toggle {
  padding: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
}

.motion-toggle:disabled {
  cursor: default;
  opacity: 0.72;
}

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 50px;
  background: rgba(5, 7, 25, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1200px, 90vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  font-size: 1.7rem;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  transform: translateX(-35px);
}

[data-reveal="right"] {
  transform: translateX(35px);
}

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

[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }

/* Animations */
@keyframes orb-drift {
  to { transform: translate(-7vw, -3vw) scale(1.08); }
}

@keyframes underline-pulse {
  0%, 100% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
}

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

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

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

@keyframes grid-drift {
  to { background-position: 76px 76px; }
}

@keyframes particle-rise {
  0% { translate: 0 0; opacity: 0; }
  12% { opacity: 0.65; }
  82% { opacity: 0.28; }
  100% { translate: 46px -105vh; opacity: 0; }
}

@keyframes card-float-main {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px -19px; }
}

@keyframes card-float-small {
  0%, 100% { translate: 0 0; }
  50% { translate: 12px -21px; }
}

@keyframes button-shine {
  to { left: 125%; }
}

@keyframes page-orbit {
  to { transform: translate(-38px, -22px) rotate(14deg) scale(1.04); }
}

@keyframes process-sweep {
  60%, 100% { left: 110%; }
}

@keyframes cta-orbit {
  to { transform: translate(-45px, -25px) rotate(18deg) scale(1.05); }
}

@keyframes tech-orbit {
  to { transform: rotate(360deg); }
}

@keyframes tech-drift {
  0%, 100% { translate: 0 0; rotate: -0.4deg; }
  50% { translate: 0 -16px; rotate: 0.8deg; }
}

@keyframes tech-scan {
  0%, 12% { top: 15%; opacity: 0; }
  20% { opacity: 0.75; }
  72% { top: 82%; opacity: 0.75; }
  85%, 100% { top: 82%; opacity: 0; }
}

@keyframes chip-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

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

@keyframes security-scan {
  58%, 100% { left: 112%; }
}

@keyframes security-ping {
  70%, 100% { box-shadow: 0 0 0 10px rgba(34, 165, 100, 0); }
}

@keyframes aurora-breathe {
  0% { scale: 0.92; opacity: 0.58; rotate: -8deg; }
  100% { scale: 1.08; opacity: 0.9; rotate: 10deg; }
}

@keyframes data-packet {
  0%, 12% { opacity: 0; transform: rotate(-22deg) translateX(-125%); }
  24% { opacity: 0.7; }
  68% { opacity: 0.35; }
  82%, 100% { opacity: 0; transform: rotate(-22deg) translateX(170%); }
}

@keyframes hero-enter {
  from { opacity: 0; translate: 0 25px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes title-unmask {
  from { opacity: 0; clip-path: inset(0 100% 0 0); translate: 0 18px; }
  to { opacity: 1; clip-path: inset(0 0 0 0); translate: 0 0; }
}

@keyframes title-shimmer {
  to { background-position: -220% 0; }
}

@keyframes scene-enter {
  from { opacity: 0; translate: 55px 22px; scale: 0.94; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}

@keyframes showcase-orbit-spin {
  to { rotate: 360deg; }
}

@keyframes showcase-orbit-counter {
  to { rotate: -360deg; }
}

@keyframes showcase-scan-pass {
  0%, 12% { top: 30px; opacity: 0; }
  20% { opacity: 0.9; }
  72% { top: calc(100% - 3px); opacity: 0.72; }
  82%, 100% { top: calc(100% - 3px); opacity: 0; }
}

@keyframes code-card-float {
  0%, 100% { translate: 0 0; rotate: -0.5deg; }
  50% { translate: 7px -15px; rotate: 1.4deg; }
}

@keyframes live-pulse {
  70%, 100% { box-shadow: 0 0 0 10px rgba(51, 209, 122, 0), 0 0 18px rgba(51, 209, 122, 0.35); }
}

@keyframes engine-level {
  to { height: 16px; background: var(--gold); }
}

@keyframes code-line-pulse {
  0%, 100% { opacity: 0.45; translate: 0 0; }
  50% { opacity: 1; translate: 5px 0; }
}

@keyframes build-progress {
  0% { width: 8%; translate: 0 0; }
  55% { width: 72%; }
  100% { width: 18%; translate: 360% 0; }
}

@keyframes status-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 10px -11px; }
}

@keyframes cursor-tour {
  0%, 100% { top: 54%; left: 52%; translate: 0 0; rotate: -12deg; }
  28% { top: 22%; left: 75%; translate: 0 0; rotate: 8deg; }
  55% { top: 72%; left: 82%; translate: 0 0; rotate: 18deg; }
  78% { top: 78%; left: 28%; translate: 0 0; rotate: -8deg; }
}

@keyframes hero-live-marquee {
  to { transform: translateX(-50%); }
}

@keyframes kinetic-forward {
  to { transform: translateX(-50%); }
}

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

@keyframes process-route {
  0%, 12% { transform: scaleX(0); transform-origin: left; }
  42%, 64% { transform: scaleX(1); transform-origin: left; }
  86%, 100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes step-number-pulse {
  0%, 18%, 100% { text-shadow: none; scale: 1; }
  32%, 46% { text-shadow: 0 0 24px rgba(228, 187, 103, 0.75); scale: 1.08; }
}

@keyframes cta-type-run {
  from { transform: translate(0, -50%); }
  to { transform: translate(-35%, -50%); }
}

@keyframes page-word-run {
  to { transform: translateX(-42%); }
}

@keyframes radar-turn {
  to { rotate: 360deg; }
}

@keyframes radar-blip {
  70%, 100% { box-shadow: 0 0 0 14px rgba(110, 193, 228, 0); opacity: 0.55; }
}

@keyframes radar-status-glow {
  0%, 100% { border-color: rgba(255, 255, 255, 0.1); translate: 0 0; }
  50% { border-color: rgba(228, 187, 103, 0.36); translate: -5px 0; }
}

@keyframes mobile-grid-drift {
  to { background-position: 52px 52px; }
}

@keyframes mobile-glow {
  to { translate: -70px 90px; scale: 1.12; }
}

@keyframes mobile-ring {
  to { rotate: 360deg; }
}

/* Responsive */
@media (max-width: 1040px) {
  :root {
    --container: min(100% - 36px, 920px);
  }

  .header-cta {
    display: none;
  }

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

  .hero-showcase {
    width: min(620px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .expertise-layout {
    grid-template-columns: 1fr;
  }

  .expertise-copy {
    max-width: 760px;
  }

  .tech-canvas {
    width: min(760px, 100%);
    min-height: 620px;
    margin: -20px auto 0;
  }

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

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

  .quote-card {
    min-height: 240px;
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--white);
    background: #080b25;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    isolation: isolate;
    transition: opacity 260ms ease, clip-path 520ms cubic-bezier(0.22, 1, 0.36, 1), visibility 520ms;
  }

  .mobile-nav::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    content: "";
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(circle at 65% 35%, #000, transparent 72%);
    mask-image: radial-gradient(circle at 65% 35%, #000, transparent 72%);
    animation: mobile-grid-drift 14s linear infinite;
  }

  .mobile-nav::after {
    position: fixed;
    z-index: -3;
    width: 520px;
    height: 520px;
    top: -160px;
    right: -270px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 46, 125, 0.5), rgba(131, 46, 125, 0.08) 48%, transparent 70%);
    filter: blur(8px);
    animation: mobile-glow 7s ease-in-out infinite alternate;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
  }

  .mobile-nav-inner {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100% - 40px, 620px);
    min-height: 100%;
    align-content: center;
    gap: 30px;
    margin-inline: auto;
    padding: 118px 0 46px;
  }

  .mobile-nav-kicker {
    margin: 0;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
  }

  .mobile-nav.is-open .mobile-nav-kicker {
    opacity: 1;
    transform: none;
    transition: opacity 420ms 220ms ease, transform 420ms 220ms ease;
  }

  .mobile-nav-list {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav-list li {
    opacity: 0;
    transform: translateX(-26px);
  }

  .mobile-nav.is-open .mobile-nav-list li {
    opacity: 1;
    transform: none;
    transition: opacity 480ms cubic-bezier(0.22, 1, 0.36, 1), transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav.is-open .mobile-nav-list li:nth-child(1) { transition-delay: 240ms; }
  .mobile-nav.is-open .mobile-nav-list li:nth-child(2) { transition-delay: 300ms; }
  .mobile-nav.is-open .mobile-nav-list li:nth-child(3) { transition-delay: 360ms; }
  .mobile-nav.is-open .mobile-nav-list li:nth-child(4) { transition-delay: 420ms; }
  .mobile-nav.is-open .mobile-nav-list li:nth-child(5) { transition-delay: 480ms; }

  .mobile-nav .nav-link {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.45rem, 7vw, 2.4rem);
    letter-spacing: -0.03em;
  }

  .mobile-nav .nav-link span {
    color: var(--gold);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav .nav-link::after {
    position: static;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    transform: scale(0);
  }

  .mobile-nav .nav-link.is-active::after {
    transform: scale(1);
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    transform: translateY(16px);
  }

  .mobile-nav.is-open .mobile-nav-actions {
    opacity: 1;
    transform: none;
    transition: opacity 480ms 540ms ease, transform 480ms 540ms ease;
  }

  .mobile-nav-email {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    text-decoration: underline;
  }

  .mobile-nav-visual {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .mobile-nav-visual span {
    position: absolute;
    width: 360px;
    height: 360px;
    right: -170px;
    bottom: -120px;
    border: 1px solid rgba(228, 187, 103, 0.14);
    border-style: dashed;
    border-radius: 50%;
    animation: mobile-ring 14s linear infinite;
  }

  .mobile-nav-visual span:nth-child(2) {
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -55px;
    border-color: rgba(110, 193, 228, 0.12);
    animation-direction: reverse;
    animation-duration: 10s;
  }

  .mobile-nav-visual span:nth-child(3) {
    width: 110px;
    height: 110px;
    right: 25px;
    bottom: 15px;
    border: 22px solid rgba(131, 46, 125, 0.14);
    animation-duration: 7s;
  }

  .split,
  .service-detail,
  .contact-grid,
  .price-category,
  .legal-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(28px);
  }

  .service-detail--security::before {
    inset-inline: 0;
  }

  .article-aside {
    position: static;
  }

  .section-heading,
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tech-canvas {
    min-height: 540px;
  }

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

  .price-category h2,
  .legal-toc,
  .newsletter {
    position: static;
  }

  .legal-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
  }

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

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

  .reference-list li,
  .reference-list li:nth-child(4n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .reference-list li:nth-child(2n) {
    border-right: 0;
  }

  .reference-list li:last-child {
    border-bottom: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 30px);
  }

  body {
    font-size: 16px;
  }

  .brand img {
    width: 165px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .hero-engine-signal {
    position: static;
    width: max-content;
    margin: -5px 0 18px;
  }

  .hero-showcase {
    min-height: 430px;
    margin-top: 24px;
  }

  .showcase-card--main {
    width: 92%;
    height: 258px;
    top: 76px;
  }

  .showcase-card--small {
    width: 49%;
    height: 135px;
    left: -2%;
    bottom: 25px;
  }

  .showcase-badge {
    width: 92px;
    height: 92px;
    left: -6px;
    font-size: 0.58rem;
  }

  .showcase-orbit--outer {
    inset: 2% -5% 1%;
  }

  .showcase-orbit--inner {
    inset: 19% 7% 15%;
  }

  .orbit-node--two,
  .orbit-node--three,
  .orbit-node--five {
    display: none;
  }

  .showcase-code-card {
    width: 56%;
    height: 122px;
    right: -1%;
    bottom: 0;
    padding: 12px;
    border-radius: 14px;
  }

  .code-card-head {
    margin-bottom: 10px;
  }

  .code-line {
    margin: 6px 0;
  }

  .code-progress {
    margin-top: 9px;
  }

  .showcase-status--security {
    top: 38px;
    right: -1%;
  }

  .showcase-status--commerce,
  .showcase-cursor {
    display: none;
  }

  .showcase-status {
    min-width: 130px;
    padding: 8px 10px;
  }

  .hero-aurora {
    width: 125vw;
    height: 125vw;
    top: 22%;
    right: -62%;
    opacity: 0.64;
  }

  .hero-data-lines span {
    width: 95vw;
    right: -52vw;
  }

  .kinetic-band {
    padding-block: 20px;
  }

  .kinetic-row {
    gap: 16px;
  }

  .security-radar {
    height: 270px;
  }

  .radar-sweep {
    width: 230px;
    height: 230px;
    top: 20px;
    left: calc(31% - 115px);
  }

  .radar-center {
    left: 31%;
  }

  .radar-status {
    right: 3%;
    width: 43%;
    gap: 8px;
    padding: 11px 10px;
    font-size: 0.6rem;
  }

  .mobile-nav-inner {
    width: calc(100% - 30px);
    gap: 22px;
    padding-top: 96px;
  }

  .mobile-nav-actions {
    gap: 12px;
  }

  .mobile-nav-actions .btn {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.82rem;
  }

  .expertise-signals {
    margin-top: 28px;
  }

  .expertise-signal {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 14px;
  }

  .expertise-icon {
    width: 36px;
    height: 36px;
  }

  .tech-canvas {
    min-height: 390px;
    margin-top: 6px;
  }

  .tech-collage {
    inset: 5% -12% 0;
  }

  .tech-chip {
    padding: 8px 10px;
    font-size: 0.61rem;
  }

  .tech-chip--one { top: 5%; left: 0; }
  .tech-chip--two { top: 30%; right: -2%; }
  .tech-chip--three { bottom: 15%; left: -1%; }
  .tech-chip--four { right: 0; bottom: 2%; }

  .hero-scroll {
    display: none;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 22px;
  }

  .turnstile-wrap {
    padding: 12px;
  }

  .reference-list {
    grid-template-columns: 1fr;
  }

  .reference-list li,
  .reference-list li:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 285px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .hour-rate {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .price-list > dt.price-item {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .price-list > dd.price-item {
    padding-top: 8px;
    white-space: normal;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .cookie-panel {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 20px - env(safe-area-inset-bottom));
    padding: 22px;
  }

  .lightbox {
    padding: 16px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .cookie-panel,
  .cta-band,
  .price-nav,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .page-hero {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .page-hero .lede {
    color: #333;
  }

  .section {
    padding: 30px 0;
  }
}
