@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin-400-normal.ttf") format("truetype");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin-400-italic.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}

:root {
  --ink: #000000;
  --ink-soft: #070707;
  --paper: #ffffff;
  --paper-pure: #ffffff;
  --silver: #0a4dff;
  --silver-light: #4f7cff;
  --muted-dark: #9b9b9b;
  --muted-light: #a7a7a7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 5, 5, 0.14);
  --glass-dark: rgba(13, 13, 13, 0.66);
  --glass-light: rgba(255, 255, 255, 0.7);
  --accent: #0a4dff;
  --accent-bright: #4f7cff;
  --accent-soft: rgba(10, 77, 255, 0.14);
  --accent-line: rgba(10, 77, 255, 0.38);
  --accent-glow: rgba(10, 77, 255, 0.32);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(1280px, calc(100vw - 64px));
  --section-space: clamp(116px, 13vw, 220px);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --z-base: 0;
  --z-content: 10;
  --z-nav: 100;
  --z-modal: 1000;
  --blue: #0a4dff;
  --blue-glow: #7da0ff;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.cookie-open {
  overflow: hidden;
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

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

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

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

button,
a,
summary {
  touch-action: manipulation;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-modal) + 5);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease-out;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0.025;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, transparent 0, rgba(255, 255, 255, 0.75) 0.5px, transparent 1px, transparent 4px),
    repeating-radial-gradient(circle at 80% 60%, transparent 0, rgba(255, 255, 255, 0.45) 0.5px, transparent 1px, transparent 5px);
  background-size: 11px 13px, 17px 19px;
  mix-blend-mode: overlay;
}

.cursor-orbit {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 950;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0);
  transition: width 220ms var(--ease), height 220ms var(--ease), opacity 180ms ease, background 220ms ease;
  mix-blend-mode: difference;
}

.cursor-orbit::before,
.cursor-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor-orbit::before {
  width: 4px;
  height: 1px;
}

.cursor-orbit::after {
  width: 1px;
  height: 4px;
}

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

.cursor-orbit.is-active {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.12);
}

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

.section {
  position: relative;
  isolation: isolate;
  padding: var(--section-space) 0;
  overflow: clip;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.h-display {
  max-width: 1100px;
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.h-display .accent,
.accent {
  color: var(--silver);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.lead {
  max-width: 690px;
  margin: 38px 0 0;
  color: inherit;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
  opacity: 0.72;
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding: 0.02em 0 0.08em;
}

.reveal-line > span {
  display: block;
  transform: translateY(116%);
  will-change: transform;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.42) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 600ms var(--ease);
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:active {
  transform: scale(0.97);
}

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

.btn--primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--silver-light);
  border-color: var(--silver-light);
}

.btn--ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.btn--ghost:hover {
  background: currentColor;
  color: var(--ink);
}

.btn--sm {
  min-height: 44px;
  padding: 12px 19px;
}

.btn__arrow {
  font-size: 18px;
  transition: transform 220ms ease;
}

.btn__label {
  white-space: nowrap;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-content: center;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 600ms var(--ease), visibility 600ms;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 48px 48px;
  mask-image: radial-gradient(circle, #000 0, transparent 70%);
}

.preloader.done {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader__logo {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.04em;
}

.preloader__bar {
  width: min(360px, 70vw);
  height: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.preloader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
}

.preloader__hint {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Header */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: var(--z-nav);
  display: flex;
  width: min(1360px, calc(100vw - 36px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px 7px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.nav.scrolled,
.page .nav {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.nav__logo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding-inline: 4px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.nav__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2) brightness(1.35);
}

.nav__logo em {
  color: var(--silver);
  font-style: italic;
}

.nav__links {
  display: none;
}

/* Floating bottom navigation */
.dock {
  position: fixed;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: var(--z-nav);
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.dock__link {
  display: grid;
  min-width: 88px;
  min-height: 48px;
  place-items: center;
  padding: 10px 15px;
  border-radius: 14px;
  color: #b4b4b4;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.dock__link:hover {
  color: var(--paper);
}

.dock__link.active,
.dock__link[aria-current="location"] {
  background: var(--paper);
  color: var(--ink);
}

.dock__link:active {
  transform: scale(0.96);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg,
.hero__gradient,
.hero__glow,
.hero canvas {
  position: absolute;
  inset: 0;
}

.hero__bg {
  z-index: -1;
  overflow: hidden;
}

.hero__gradient {
  background:
    radial-gradient(ellipse at var(--rx, 35%) var(--ry, 30%), rgba(255, 255, 255, 0.1), transparent 38%),
    radial-gradient(ellipse at 80% 68%, rgba(184, 189, 196, 0.09), transparent 32%),
    linear-gradient(180deg, #050505 0%, #090909 58%, #030303 100%);
}

.hero__gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero__brandmark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(54vw, 680px);
  opacity: 0.16;
  filter: grayscale(1) brightness(1.7) contrast(1.1);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.hero__glow {
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(190, 194, 200, 0.06) 30%, transparent 70%);
  transform: translate3d(28vw, 30vh, 0);
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hero.glow-on .hero__glow {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100vw - 64px));
  padding: 126px 0 96px;
  text-align: center;
}

.hero__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.hero__badge-pre {
  margin-bottom: 8px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__badge {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d2d2d2;
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.hero__badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-light);
  box-shadow: 0 0 16px var(--silver);
}

.hero__badge em {
  font-style: normal;
}

.bd-short {
  display: none;
}

.hero__title {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(64px, 9.6vw, 152px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.hero__title .reveal-line > span {
  white-space: nowrap;
}

.hero__title .reveal-line:nth-child(2) {
  overflow: clip;
  overflow-clip-margin: 0.2em;
}

.hero__title .accent {
  color: var(--silver-light);
  text-shadow: 0 0 42px rgba(255, 255, 255, 0.12);
}

.hero__sub {
  max-width: 650px;
  margin: 36px auto 0;
  color: #b8b8b8;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.hero__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 220px;
  flex-direction: column;
  gap: 4px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(18, 18, 18, 0.52);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero__chip span {
  color: #898989;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__chip strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
}

.hero__chip--1 {
  top: 28%;
  left: 5%;
}

.hero__chip--2 {
  top: 62%;
  right: 5%;
}

.hero__chip--3 {
  top: 22%;
  right: 9%;
}

.hero__scrollhint {
  position: absolute;
  bottom: 26px;
  left: 26px;
  color: #777;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scrollhint::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(var(--paper), transparent);
}

/* Trust strip */
.trust-marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  background: #080808;
}

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

.trust-marquee__group {
  display: flex;
  flex-shrink: 0;
}

.trust-pill {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
  color: #c7c7c7;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-pill svg {
  width: 18px;
  fill: none;
  stroke: var(--silver);
  stroke-width: 1.5;
}

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

/* Problem */
.problem {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.06), transparent 30%),
    var(--ink);
}

.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.problem__bullets {
  display: grid;
  max-width: 670px;
  gap: 0;
  padding: 0;
  margin: 46px 0 0;
  list-style: none;
}

.problem__bullets li {
  position: relative;
  padding: 18px 16px 18px 38px;
  border-top: 1px solid var(--line-dark);
  color: #c0c0c0;
}

.problem__bullets li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 4px;
  width: 13px;
  height: 1px;
  background: var(--silver);
}

.mock-old {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #161616, #0a0a0a);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
}

.mock-old__bar {
  display: flex;
  gap: 6px;
  padding: 5px 4px 14px;
}

.mock-old__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4d4d4d;
}

.mock-old__body {
  min-height: 360px;
  padding: 34px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0c0c0c;
  background-size: 28px 28px;
}

.mock-old .row {
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #333;
}

.mock-old .w40 {
  width: 40%;
}

.mock-old .w60 {
  width: 60%;
}

.mock-old .w80 {
  width: 80%;
}

.mock-old .box {
  height: 82px;
  margin: 22px 0;
  border: 1px solid #2e2e2e;
  background: #161616;
}

.mock-old__stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 8px 14px;
  border: 1px solid #8e8e8e;
  border-radius: 999px;
  color: #b5b5b5;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

/* Scrolling manifesto */
.manifesto {
  position: relative;
  height: 280svh;
  margin: 0;
  background: var(--paper-pure);
  color: var(--ink);
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 220px;
  pointer-events: none;
}

.manifesto::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), rgba(5, 5, 5, 0.88) 20%, rgba(255, 255, 255, 0.75) 82%, var(--paper-pure));
}

.manifesto::after {
  bottom: 0;
  background: linear-gradient(to bottom, var(--paper-pure), rgba(255, 255, 255, 0.72) 16%, rgba(5, 5, 5, 0.88) 82%, var(--ink));
}

.manifesto__sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: var(--paper-pure);
}

.manifesto__grid,
.spatial-grid {
  --mx: 50%;
  --my: 50%;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 380px at var(--mx) var(--my), rgba(5, 5, 5, 0.07), transparent 68%),
    linear-gradient(rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 84%);
}

.manifesto__content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 40px));
  text-align: center;
}

.manifesto__kicker {
  margin-bottom: 22px;
  opacity: calc(0.3 + var(--manifest-progress, 0) * 0.7);
}

.manifesto__pre {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #646464;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.manifesto__title {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 116px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.manifesto__title span {
  display: inline-block;
  color: rgba(5, 5, 5, 0.13);
  filter: blur(6px);
  transition: color 160ms linear, filter 160ms linear, transform 160ms linear;
}

.manifesto__title span.is-current {
  color: var(--ink);
  filter: blur(0);
  transform: scale(1.015);
}

.manifesto__title span.is-past {
  color: rgba(5, 5, 5, 0.55);
  filter: blur(0);
}

.manifesto__copy {
  max-width: 650px;
  margin: 34px auto 0;
  color: #525252;
  font-size: 15px;
}

.manifesto__meter {
  width: min(380px, 65vw);
  height: 1px;
  margin: 34px auto 0;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.13);
}

.manifesto__meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(var(--manifest-progress, 0));
  transform-origin: left;
}

.manifesto__float {
  position: absolute;
  z-index: 1;
  display: flex;
  min-width: 174px;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.07);
  opacity: calc(0.08 + var(--manifest-progress, 0) * 0.4);
  backdrop-filter: blur(18px);
}

.manifesto__float span {
  color: #8c8c8c;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.manifesto__float strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.manifesto__float--one {
  top: 19%;
  left: 4%;
  transform: translateY(calc((var(--manifest-progress, 0) - 0.5) * -90px)) rotate(-3deg);
}

.manifesto__float--two {
  right: 3%;
  bottom: 20%;
  transform: translateY(calc((var(--manifest-progress, 0) - 0.5) * 120px)) rotate(3deg);
}

.manifesto__float--three {
  bottom: 8%;
  left: 18%;
  transform: translateX(calc((var(--manifest-progress, 0) - 0.5) * 100px));
}

/* Experience */
.experience {
  min-height: 100svh;
  padding-top: clamp(210px, 18vw, 310px);
  background: var(--ink);
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 440px at var(--mx, 68%) var(--my, 35%), rgba(255, 255, 255, 0.12), transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse at 65% 38%, #000, transparent 78%);
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
  margin-top: 72px;
}

.experience__story {
  max-width: 650px;
}

.experience__story > p {
  margin: 0 0 24px;
  color: #b9b9b9;
  font-size: 17px;
}

.experience__quote,
.lead-quote {
  margin: 44px 0;
  padding: 10px 0 10px 28px;
  border-left: 1px solid var(--silver);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 43px);
  font-style: italic;
  line-height: 1.08;
}

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

.stat {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.stat--wide {
  grid-column: 1 / -1;
  min-height: 150px;
}

.stat__num {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.stat__num .count {
  font-variant-numeric: tabular-nums lining-nums;
}

.stat__num .suffix {
  display: inline-flex;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.2em;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-0.12em);
}

.stat__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat__topics span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d2d2d2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.stat__label {
  max-width: 430px;
  margin-top: 24px;
  color: #919191;
  font-size: 12px;
}

/* Services */
.services {
  padding-top: clamp(260px, 21vw, 360px);
  background: linear-gradient(180deg, var(--ink) 0, var(--paper) 250px, var(--paper) 100%);
  color: var(--ink);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: 72px;
}

.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle 220px at var(--mx) var(--my), rgba(5, 5, 5, 0.09), transparent 70%),
    rgba(255, 255, 255, 0.55);
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.06);
  transform-style: preserve-3d;
}

.card:nth-child(4),
.card:nth-child(5) {
  grid-column: span 6;
}

.card__num {
  color: #777;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 78px 0 30px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.card__icon svg {
  width: 24px;
  stroke: currentColor;
}

.card h3 {
  max-width: 370px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.card p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted-light);
  font-size: 14px;
}

/* AI */
.ai-agent {
  padding-top: clamp(240px, 20vw, 330px);
  background: linear-gradient(180deg, var(--paper) 0, var(--ink) 240px, var(--ink) 100%);
}

.ai-agent__grid-bg {
  position: absolute;
  inset: 190px 0 0;
  z-index: -1;
  background:
    radial-gradient(circle 420px at var(--mx, 72%) var(--my, 45%), rgba(255, 255, 255, 0.13), transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse, #000, transparent 80%);
}

.ai-agent__orb {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(80px);
}

.ai-agent__orb--one {
  top: 28%;
  left: -100px;
  background: #fff;
}

.ai-agent__orb--two {
  right: -80px;
  bottom: 5%;
  background: #9ca3af;
}

.ai-agent__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}

.ai-agent__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0;
}

.ai-agent__benefits span {
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #b5b5b5;
  font-size: 11px;
}

.ai-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 15, 0.72);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.ai-console__top {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-dark);
}

.ai-console__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7c7c7;
  font-size: 12px;
}

.ai-console__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--silver-light);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.ai-console__spark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--silver);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.ai-console__body {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  gap: 18px;
  padding: 34px 28px;
  background:
    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: 32px 32px;
}

.ai-message {
  max-width: 82%;
  padding: 15px 17px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.ai-message--visitor {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: var(--paper);
  color: var(--ink);
}

.ai-message--bot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  color: #c6c6c6;
}

.ai-message--bot img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: grayscale(1) brightness(1.4);
}

.ai-message--bot p {
  margin: 0;
}

.ai-console__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-console__options span {
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #aaa;
  font-size: 10px;
}

.ai-console__metric {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-top: 1px solid var(--line-dark);
}

.ai-console__metric strong {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
}

.ai-console__metric span {
  max-width: 160px;
  color: #818181;
  font-size: 10px;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

/* Process */
.process {
  padding-top: clamp(250px, 20vw, 350px);
  background: linear-gradient(180deg, var(--ink) 0, var(--paper-pure) 240px, var(--paper-pure) 100%);
  color: var(--ink);
}

.process__rail {
  position: relative;
  display: grid;
  margin-top: 88px;
  padding-left: 90px;
}

.process__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 1px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.12);
}

.process__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
}

.step {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 90px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line-light);
}

.step__badge {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--paper-pure);
  font-family: var(--font-display);
  font-size: 20px;
  transition: background 300ms ease, color 300ms ease;
}

.step.active .step__badge {
  background: var(--ink);
  color: var(--paper);
}

.step__body {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 60px;
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.step p {
  max-width: 520px;
  margin: 7px 0 0;
  color: var(--muted-light);
}

/* Transformation */
.transform-section {
  padding-top: clamp(250px, 20vw, 350px);
  background: linear-gradient(180deg, var(--paper-pure) 0, var(--ink) 240px, var(--ink) 100%);
}

.transform-title__desktop,
.final-title__desktop,
.testimonials-title__desktop {
  display: block;
}

.transform-title__mobile,
.final-title__mobile,
.testimonials-title__mobile {
  display: none;
}

.chart-wrap {
  margin-top: 72px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.chart-kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.chart-kpi span {
  color: #888;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #999;
  font-size: 10px;
}

.lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lg::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.lg--blue {
  color: #fff;
}

.lg--dashed::before {
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px);
}

#growthChart {
  width: 100%;
  overflow: visible;
}

#growthChart .chart-grid line {
  stroke: rgba(255, 255, 255, 0.07);
}

#growthChart .chart-axis line {
  stroke: rgba(255, 255, 255, 0.2);
}

#growthChart .chart-ticks text,
#growthChart text {
  fill: #888;
  font-family: var(--font-body);
  font-size: 11px;
}

#lineBlue {
  stroke: #fff;
  stroke-width: 3;
}

#lineRevenue {
  stroke: #b8bdc4;
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

#lineGrey {
  stroke: #5f5f5f;
  stroke-width: 2;
}

#dotBlue {
  fill: #fff;
}

#dotGrey {
  fill: #6b6b6b;
}

#lblBlue {
  fill: #fff !important;
}

.chart-caption {
  margin-top: 18px;
  color: #777;
  font-size: 10px;
}

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.compare__col {
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.compare__col h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.compare__col ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: #9a9a9a;
  list-style: none;
}

.compare__col li::before {
  content: "—";
  margin-right: 10px;
  color: var(--silver);
}

.compare--after {
  background: var(--paper);
  color: var(--ink);
}

.compare--after ul {
  color: #4f4f4f;
}

/* Portfolio */
.portfolio {
  min-height: 100svh;
  padding: clamp(260px, 20vw, 350px) 0 var(--section-space);
  background: linear-gradient(180deg, var(--ink) 0, #ececea 240px, #ececea 100%);
  color: var(--ink);
}

.portfolio__head {
  width: var(--container);
  margin: 0 auto 74px;
}

.portfolio__timeline {
  display: grid;
  width: var(--container);
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: -36px auto 28px;
}

.portfolio__timeline-label {
  color: #6e6e6e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio__timeline-rail {
  position: relative;
  display: block;
  height: 1px;
  overflow: visible;
  background: rgba(5, 5, 5, 0.16);
}

.portfolio__timeline-rail i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms linear;
}

.portfolio__timeline-rail i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #ececea;
  box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.06);
  transform: translateY(-50%);
}

.portfolio__timeline-count {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #777;
}

.portfolio__timeline-count strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.portfolio__timeline-count em {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.portfolio__track-wrap {
  position: relative;
  min-height: 620px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.portfolio__track-wrap::-webkit-scrollbar {
  display: none;
}

.portfolio__track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2));
}

.work {
  width: min(72vw, 720px);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--paper-pure);
  box-shadow: 0 30px 80px rgba(5, 5, 5, 0.1);
  scroll-snap-align: center;
}

.work__browser {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-light);
}

.work__browser i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b6b6b6;
}

.work__url {
  margin-left: 8px;
  color: #777;
  font-size: 10px;
}

.work__screen {
  min-height: 350px;
  padding: 42px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    #f2f2ef;
  background-size: 34px 34px;
}

.ws-hero {
  padding: 35px;
  border: 1px solid rgba(5, 5, 5, 0.11);
  background: rgba(255, 255, 255, 0.74);
}

.ws-row {
  height: 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #1a1a1a;
}

.ws-btn {
  display: inline-block;
  width: 76px;
  height: 25px;
  margin-top: 8px;
  border-radius: 999px;
  background: #1a1a1a;
}

.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ws-box {
  min-height: 82px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.work__meta {
  padding: 28px;
  border-top: 1px solid var(--line-light);
}

.work__meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
}

.work__meta p {
  margin: 10px 0 0;
  color: #666;
}

.work__tag {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #666;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  padding-top: clamp(250px, 20vw, 350px);
  background: linear-gradient(180deg, #ececea 0, var(--ink) 240px, var(--ink) 100%);
}

.testimonials__bg {
  position: absolute;
  inset: 180px 0 0;
  z-index: -1;
  background:
    radial-gradient(circle 430px at var(--mx, 30%) var(--my, 50%), rgba(255, 255, 255, 0.09), transparent 70%),
    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: auto, 60px 60px, 60px 60px;
}

.testimonials__head {
  width: var(--container);
  margin-inline: auto;
}

.marquee {
  margin-top: 72px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}

.tcard {
  width: min(460px, calc(100vw - 48px));
  min-height: 410px;
  flex: 0 0 auto;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.tcard__stars {
  display: flex;
  gap: 4px;
}

.tcard__stars svg {
  width: 13px;
  fill: var(--silver);
}

.tcard__quote {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.tcard__story {
  display: grid;
  grid-template-rows: 0fr;
  color: #a3a3a3;
  font-size: 13px;
  transition: grid-template-rows 400ms var(--ease);
}

.tcard__story > p {
  overflow: hidden;
}

.tcard.expanded .tcard__story {
  grid-template-rows: 1fr;
}

.tcard__more {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: #bdbdbd;
  cursor: pointer;
  font-size: 11px;
}

.tcard__who {
  margin-top: 28px;
  color: #777;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Final */
.final {
  padding-top: clamp(250px, 20vw, 350px);
  background: linear-gradient(180deg, var(--ink) 0, var(--paper-pure) 240px, var(--paper-pure) 100%);
  color: var(--ink);
  text-align: center;
}

.final__bg {
  position: absolute;
  inset: 220px 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 24%, rgba(5, 5, 5, 0.08), transparent 30%),
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(#000, transparent 70%);
}

.final .h-display {
  margin-inline: auto;
}

.final__sub {
  max-width: 620px;
  margin: 34px auto;
  color: #555;
  font-size: 18px;
}

.final .btn--primary,
.page__cta .btn--primary,
.ai-page .btn--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.final__micro {
  margin-top: 18px;
  color: #737373;
  font-size: 11px;
}

.contact {
  max-width: 820px;
  margin: 90px auto 0;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 40px 100px rgba(5, 5, 5, 0.08);
  text-align: left;
  backdrop-filter: blur(20px);
  scroll-margin-top: 110px;
}

.contact h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
}

.contact > p {
  margin: 8px 0 32px;
  color: #606060;
}

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

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin: 0 0 8px 4px;
  color: #505050;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 17px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.contact__note {
  margin-top: 18px;
  color: #777;
  font-size: 10px;
}

/* FAQ */
.faq {
  padding-top: clamp(250px, 20vw, 350px);
  padding-bottom: calc(var(--section-space) + 70px);
  background: linear-gradient(180deg, var(--paper-pure) 0, var(--ink) 240px, var(--ink) 100%);
}

.faq__list {
  margin-top: 74px;
}

.faq__item {
  border-top: 1px solid var(--line-dark);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq__item summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 60px 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  transition: transform 280ms var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-width: 780px;
  padding: 0 0 30px;
  color: #9c9c9c;
}

/* Footer */
.footer-mega {
  position: relative;
  padding: 90px max(32px, calc((100vw - 1280px) / 2)) 110px;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  background: #030303;
  color: var(--paper);
}

.footer-mega__grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: clamp(36px, 7vw, 100px);
}

.footer-mega__about strong {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.footer-mega__about strong img {
  filter: grayscale(1) brightness(1.4);
}

.footer-mega__about em,
.footer-slogan em {
  color: var(--silver);
  font-style: italic;
}

.footer-mega__about p {
  max-width: 470px;
  margin: 24px 0 0;
  color: #828282;
  font-size: 13px;
}

.footer-mega__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-mega__col h4 {
  margin: 0 0 12px;
  color: #6f6f6f;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-mega__col a,
.footer-link {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #bcbcbc;
  cursor: pointer;
  font-size: 13px;
  line-height: 44px;
  text-align: left;
  transition: color 180ms ease;
}

.footer-mega__col a:hover,
.footer-link:hover {
  color: #fff;
}

.footer-slogan {
  margin: 90px calc(-1 * max(32px, calc((100vw - 1280px) / 2))) 0;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
}

.footer-slogan__track {
  display: flex;
  width: max-content;
  animation: footerFlow 30s linear infinite;
}

.footer-slogan__group {
  display: flex;
  flex-shrink: 0;
}

.footer-slogan__group span {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: clamp(70px, 12vw, 190px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
}

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

.footer-mega__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  color: #666;
  font-size: 10px;
}

/* Content pages */
.page {
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
}

.page__hero {
  position: relative;
  display: flex;
  min-height: 70svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 170px max(32px, calc((100vw - 1100px) / 2)) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 31%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.page__hero .h-display {
  max-width: 1050px;
  font-size: clamp(58px, 8vw, 120px);
}

.legal-page .page__hero .h-display {
  overflow-wrap: break-word;
  hyphens: auto;
}

.page__body {
  width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 110px 0 180px;
}

.page__body > p {
  margin: 0 0 30px;
  color: #b3b3b3;
  font-size: 18px;
  line-height: 1.78;
}

.page__body > p em {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.12em;
}

.page__body > h2 {
  margin: 100px 0 32px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.page__cta {
  margin-top: 70px;
}

.legal-body {
  width: min(930px, calc(100vw - 40px));
}

.legal-body h1,
.legal-body h2,
.legal-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.legal-body h2 {
  margin-top: 72px;
  font-size: clamp(32px, 4vw, 54px);
}

.legal-body h3 {
  margin-top: 38px;
  font-size: 26px;
}

.legal-body p,
.legal-body li {
  color: #b0b0b0;
}

.legal-body a {
  border-bottom: 1px solid #757575;
}

.legal-updated {
  margin-top: 70px !important;
  color: #666 !important;
  font-size: 12px !important;
}

/* AI detail page */
.ai-page main {
  overflow: hidden;
}

.ai-page-hero {
  min-height: 100svh;
  padding-top: 180px;
  background:
    radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.11), transparent 33%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.ai-page-hero__mark {
  position: absolute;
  top: 18%;
  right: -6%;
  width: min(44vw, 600px);
  opacity: 0.12;
  filter: grayscale(1) brightness(1.6);
}

.ai-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.ai-page-benefits {
  background: var(--paper);
  color: var(--ink);
}

.ai-page-process {
  background: var(--ink);
}

.ai-page-process__intro {
  max-width: 930px;
}

.ai-page-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 74px 0 0;
  list-style: none;
}

.ai-page-steps li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.ai-page-steps > li > span {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.ai-page-steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
}

.ai-page-steps p {
  max-width: 640px;
  margin: 10px 0 0;
  color: #999;
}

.ai-page-cta {
  background: var(--paper-pure);
  color: var(--ink);
}

/* Cookie controls */
.cookie-layer {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms;
}

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

.cookie-layer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.cookie-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(620px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(12, 12, 12, 0.95);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  color: var(--paper);
  transform: translateY(22px);
  transition: transform 300ms var(--ease);
}

.cookie-layer.is-open .cookie-panel {
  transform: translateY(0);
}

.cookie-panel__head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.cookie-panel__head img {
  filter: grayscale(1) brightness(1.5);
}

.cookie-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.cookie-panel p {
  margin: 8px 0 0;
  color: #999;
  font-size: 12px;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.cookie-option {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
}

.cookie-option input {
  accent-color: #fff;
}

.cookie-option--required {
  color: #777;
  cursor: default;
}

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

.cookie-btn {
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.cookie-btn--primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.cookie-btn--save {
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --container: min(100% - 40px, 960px);
  }

  .hero__chip--1 {
    left: 2%;
  }

  .hero__chip--2 {
    right: 2%;
  }

  .hero__chip--3 {
    display: none;
  }

  .problem__grid,
  .experience__grid,
  .ai-agent__grid {
    grid-template-columns: 1fr;
  }

  .problem__visual {
    max-width: 670px;
  }

  .card {
    grid-column: span 6;
  }

  .card:last-child {
    grid-column: span 12;
  }

  .manifesto__float--three {
    display: none;
  }

  .footer-mega__grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
    --section-space: 108px;
  }

  body {
    font-size: 16px;
  }

  .nav {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 54px;
    padding-left: 10px;
  }

  .nav__logo span {
    font-size: 21px;
  }

  .nav__logo img {
    width: 31px;
    height: 31px;
  }

  .nav__cta {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 11px;
  }

  .dock {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    justify-content: space-between;
    gap: 2px;
    padding: 5px;
    border-radius: 17px;
  }

  .dock__link {
    min-width: 0;
    min-height: 46px;
    flex: 1;
    padding: 8px 5px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
  }

  .hero {
    min-height: auto;
    place-items: start center;
  }

  .hero__content {
    width: calc(100vw - 32px);
    padding: 228px 0 52px;
  }

  .hero__brandmark {
    top: 78px;
    z-index: 1;
    width: 128px;
    opacity: 0.32;
    filter: grayscale(1) brightness(2.15) contrast(1.2) drop-shadow(0 18px 32px rgba(255, 255, 255, 0.08));
    transform: translate(-50%, 0);
  }

  .hero__title {
    font-size: clamp(47px, 13.8vw, 66px);
    line-height: 0.92;
  }

  .hero__title .reveal-line:first-child > span {
    white-space: normal;
  }

  .hero__sub {
    width: min(100%, 500px);
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero__ctas {
    align-items: stretch;
    gap: 8px;
    margin-top: 26px;
  }

  .hero__ctas .btn {
    min-width: 0;
    flex: 1;
    gap: 8px;
    padding-inline: 10px;
    font-size: 11.5px;
  }

  .hero__badge {
    max-width: 94%;
    justify-content: center;
    text-align: left;
  }

  .bd-full {
    display: none;
  }

  .bd-short {
    display: inline;
  }

  .hero__badge em {
    display: none;
  }

  .hero__chip {
    display: none;
  }

  .hero__scrollhint {
    display: none;
  }

  .h-display {
    font-size: clamp(42px, 11.4vw, 58px);
    line-height: 0.98;
  }

  .problem__grid {
    gap: 65px;
  }

  .problem__bullets li {
    padding-right: 0;
  }

  .mock-old {
    transform: none;
  }

  .mock-old__body {
    min-height: 280px;
    padding: 24px;
  }

  .manifesto {
    height: 235svh;
  }

  .manifesto::before,
  .manifesto::after {
    height: 75px;
  }

  .manifesto__title {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1;
  }

  .manifesto__pre {
    max-width: 88%;
    font-size: 9px;
  }

  .manifesto__copy {
    max-width: 90%;
    font-size: 13px;
  }

  .manifesto__float {
    display: none;
  }

  .experience {
    padding-top: 90px;
  }

  .experience__grid {
    margin-top: 52px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat,
  .stat--wide {
    grid-column: auto;
    min-height: 0;
    padding: 22px 24px;
  }

  .stat__num {
    font-size: 48px;
  }

  .stat__num .suffix {
    font-size: 12px;
  }

  .stat__topics {
    gap: 7px;
  }

  .stat__label {
    margin-top: 18px;
  }

  .transform-title__desktop,
  .final-title__desktop,
  .testimonials-title__desktop {
    display: none;
  }

  .transform-title__mobile,
  .final-title__mobile,
  .testimonials-title__mobile {
    display: block;
  }

  .transform-title__mobile .reveal-line > span,
  .final-title__mobile .reveal-line > span,
  .testimonials-title__mobile .reveal-line > span {
    white-space: nowrap;
  }

  .services,
  .ai-agent,
  .process,
  .transform-section,
  .portfolio,
  .testimonials,
  .final,
  .faq {
    padding-top: 105px;
    background-position: top;
  }

  .services {
    background: linear-gradient(180deg, var(--ink) 0, var(--paper) 125px, var(--paper) 100%);
  }

  .ai-agent {
    background: linear-gradient(180deg, var(--paper) 0, var(--ink) 120px, var(--ink) 100%);
  }

  .ai-agent__grid-bg {
    inset: 95px 0 0;
  }

  .process {
    background: linear-gradient(180deg, var(--ink) 0, var(--paper-pure) 120px, var(--paper-pure) 100%);
  }

  .transform-section {
    background: linear-gradient(180deg, var(--paper-pure) 0, var(--ink) 120px, var(--ink) 100%);
  }

  .portfolio {
    background: linear-gradient(180deg, var(--ink) 0, #ececea 120px, #ececea 100%);
  }

  .testimonials {
    background: linear-gradient(180deg, #ececea 0, var(--ink) 120px, var(--ink) 100%);
  }

  .testimonials__bg {
    inset: 90px 0 0;
  }

  .final {
    background: linear-gradient(180deg, var(--ink) 0, var(--paper-pure) 120px, var(--paper-pure) 100%);
  }

  .final__bg {
    inset: 110px 0 0;
  }

  .faq {
    background: linear-gradient(180deg, var(--paper-pure) 0, var(--ink) 120px, var(--ink) 100%);
  }

  .services__grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .card,
  .card:nth-child(4),
  .card:nth-child(5),
  .card:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .card__icon {
    margin-top: 54px;
  }

  .ai-agent__grid {
    gap: 56px;
  }

  .ai-console__body {
    min-height: 330px;
    padding-inline: 18px;
  }

  .process__rail {
    padding-left: 54px;
  }

  .process__line {
    left: 20px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step__badge {
    width: 42px;
    height: 42px;
  }

  .step__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step h3 {
    font-size: 42px;
  }

  .chart-head,
  .footer-mega__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-legend {
    flex-direction: column;
  }

  .compare,
  .contact__row {
    grid-template-columns: 1fr;
  }

  .chart-wrap {
    overflow: hidden;
  }

  #growthChart {
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .work {
    width: calc(100vw - 32px);
    box-shadow: none;
  }

  .work__screen {
    min-height: 280px;
    padding: 24px;
  }

  .portfolio__track-wrap {
    min-height: 540px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .portfolio__timeline {
    grid-template-columns: auto minmax(70px, 1fr) auto;
    gap: 12px;
    margin: -38px auto 22px;
  }

  .work {
    scroll-snap-align: center;
  }

  .marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .tcard {
    min-height: 0;
    padding: 26px 24px 24px;
    scroll-snap-align: center;
  }

  .tcard__quote {
    margin-top: 24px;
  }

  .tcard__who {
    margin-top: 20px;
  }

  .contact {
    margin-top: 64px;
  }

  .faq__item summary {
    min-height: 78px;
    padding-right: 44px;
    font-size: 24px;
  }

  .footer-mega {
    padding: 76px 20px 120px;
  }

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

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

  .footer-slogan {
    margin-inline: -20px;
  }

  .page__hero {
    min-height: 72svh;
    padding: 150px 20px 72px;
  }

  .page__hero .h-display {
    font-size: clamp(42px, 11.4vw, 58px);
  }

  .legal-page .page__hero .h-display {
    font-size: clamp(40px, 10.8vw, 54px);
  }

  .page__body {
    padding-top: 78px;
  }

  .page__body > p {
    font-size: 17px;
  }

  .ai-page-hero {
    padding-top: 150px;
  }

  .ai-page-steps li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .cookie-panel {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    padding: 20px;
  }

  .cookie-panel__head {
    grid-template-columns: 36px 1fr;
  }

  .cookie-panel__head img {
    width: 36px;
    height: 36px;
  }

  .cookie-actions .cookie-btn {
    flex: 1 1 130px;
  }
}

@media (max-width: 430px) {
  .nav__cta {
    padding-inline: 13px;
  }

  .nav__logo span {
    display: none;
  }

  .hero__title {
    font-size: clamp(47px, 13.8vw, 59px);
  }

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

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

@media (max-height: 520px) and (min-width: 600px) and (orientation: landscape) {
  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding: 92px 24px 145px;
  }

  .hero__badge-wrap,
  .hero__chip,
  .hero__scrollhint {
    display: none;
  }

  .hero__title {
    font-size: clamp(58px, 8.4vw, 76px);
    line-height: 0.88;
  }

  .hero__sub,
  .hero__ctas {
    display: none;
  }

  .dock {
    bottom: 6px;
    padding: 4px;
  }

  .dock__link {
    min-height: 44px;
    padding-block: 8px;
  }
}

@media (pointer: coarse) {
  .cursor-orbit {
    display: none;
  }
}

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

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

  .reveal-line > span {
    transform: none;
  }

  .manifesto {
    height: auto;
  }

  .manifesto__sticky {
    position: relative;
    padding: 180px 0;
  }

  .manifesto__title span,
  .manifesto__title span.is-current,
  .manifesto__title span.is-past {
    color: var(--ink);
    filter: none;
    transform: none;
  }

  .cursor-orbit {
    display: none;
  }
}

/* ============================================================
   WEBTITAN BLUE REBRAND
   Black canvas, white typography, #0a4dff brand accents.
   Layout and motion behavior intentionally remain unchanged.
============================================================ */
html,
body,
.page {
  background: #000;
  color: #fff;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline-color: var(--accent-bright);
}

.skip-link {
  background: var(--accent);
  color: #fff;
}

.accent,
.h-display .accent,
.nav__logo em,
.footer-mega__about em,
.footer-slogan em {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(10, 77, 255, 0.16);
}

.kicker::before {
  background: var(--accent);
  opacity: 1;
}

.btn--primary,
.final .btn--primary,
.page__cta .btn--primary,
.ai-page .btn--primary,
.cookie-btn--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 42px rgba(10, 77, 255, 0.22);
}

.btn--primary:hover,
.final .btn--primary:hover,
.page__cta .btn--primary:hover,
.ai-page .btn--primary:hover,
.cookie-btn--primary:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.48);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.preloader__bar span {
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.cursor-orbit {
  border-color: rgba(79, 124, 255, 0.82);
  mix-blend-mode: normal;
}

.cursor-orbit::before,
.cursor-orbit::after {
  background: var(--accent-bright);
}

.cursor-orbit.is-active {
  background: rgba(10, 77, 255, 0.16);
  box-shadow: 0 0 34px rgba(10, 77, 255, 0.2);
}

.nav.scrolled,
.page .nav {
  border-color: rgba(10, 77, 255, 0.28);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.48), 0 0 36px rgba(10, 77, 255, 0.06);
}

.nav__logo img,
.footer-mega__about strong img,
.cookie-panel__head img,
.ai-message--bot img {
  filter: none;
}

.dock {
  border-color: rgba(10, 77, 255, 0.26);
  background: rgba(3, 3, 5, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.5), inset 0 1px rgba(79, 124, 255, 0.12);
}

.dock__link:hover {
  color: var(--accent-bright);
}

.dock__link.active,
.dock__link[aria-current="location"] {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 77, 255, 0.3);
}

.hero {
  background: #000;
}

.hero__gradient {
  background:
    radial-gradient(ellipse at var(--rx, 35%) var(--ry, 30%), rgba(10, 77, 255, 0.22), transparent 40%),
    radial-gradient(ellipse at 80% 68%, rgba(10, 77, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #000 0%, #03050b 58%, #000 100%);
}

.hero__brandmark {
  opacity: 0.25;
  filter: saturate(1.08) contrast(1.05) drop-shadow(0 0 70px rgba(10, 77, 255, 0.32));
  mix-blend-mode: screen;
}

.hero__glow {
  background: radial-gradient(circle, rgba(10, 77, 255, 0.3), rgba(10, 77, 255, 0.1) 30%, transparent 70%);
}

.hero__badge-pre,
.hero__chip span {
  color: var(--accent-bright);
}

.hero__badge {
  border-color: rgba(10, 77, 255, 0.32);
  background: rgba(10, 77, 255, 0.07);
  color: #e5eaff;
}

.hero__badge i {
  background: var(--accent-bright);
  box-shadow: 0 0 18px var(--accent);
}

.hero__title .accent {
  color: var(--accent);
  text-shadow: 0 0 44px rgba(10, 77, 255, 0.28);
}

.hero__chip {
  border-color: rgba(10, 77, 255, 0.28);
  background: rgba(4, 7, 18, 0.64);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), inset 0 1px rgba(79, 124, 255, 0.12);
}

.hero__scrollhint::after {
  background: linear-gradient(var(--accent), transparent);
}

.trust-marquee {
  border-color: rgba(10, 77, 255, 0.2);
  background: #010207;
}

.trust-pill {
  color: #d6d6d6;
}

.trust-pill svg,
.problem__bullets li::before {
  stroke: var(--accent);
}

.problem {
  background:
    radial-gradient(circle at 80% 30%, rgba(10, 77, 255, 0.12), transparent 32%),
    #000;
}

.problem__bullets li::before {
  background: var(--accent);
}

.mock-old {
  border-color: rgba(10, 77, 255, 0.22);
  background: linear-gradient(145deg, #0b0c11, #030303);
}

.mock-old__stamp {
  border-color: rgba(79, 124, 255, 0.62);
  color: var(--accent-bright);
}

.manifesto,
.manifesto__sticky {
  background: #000;
  color: #fff;
}

.manifesto::before,
.manifesto::after {
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.9), #000);
}

.manifesto__grid {
  background:
    radial-gradient(circle 380px at var(--mx) var(--my), rgba(10, 77, 255, 0.18), transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.manifesto__pre,
.manifesto__copy {
  color: #9b9b9b;
}

.manifesto__title span {
  color: rgba(255, 255, 255, 0.14);
}

.manifesto__title span.is-current {
  color: var(--accent);
  text-shadow: 0 0 36px rgba(10, 77, 255, 0.24);
}

.manifesto__title span.is-past {
  color: rgba(255, 255, 255, 0.58);
}

.manifesto__meter {
  background: rgba(255, 255, 255, 0.14);
}

.manifesto__meter span {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(10, 77, 255, 0.45);
}

.manifesto__float {
  border-color: rgba(10, 77, 255, 0.24);
  background: rgba(4, 5, 10, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.manifesto__float span {
  color: var(--accent-bright);
}

.experience,
.services,
.ai-agent,
.process,
.transform-section,
.portfolio,
.testimonials,
.final,
.faq,
.ai-page-benefits,
.ai-page-process,
.ai-page-cta {
  background-color: #000;
  color: #fff;
}

.experience {
  background: #000;
}

.experience__bg {
  background:
    radial-gradient(circle 440px at var(--mx, 68%) var(--my, 35%), rgba(10, 77, 255, 0.2), transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.experience__quote,
.lead-quote {
  border-left-color: var(--accent);
}

.stat {
  border-color: rgba(10, 77, 255, 0.22);
  background: rgba(10, 77, 255, 0.045);
}

.stat__num .suffix,
.stat__topics span {
  color: var(--accent-bright);
}

.stat__topics span {
  border-color: rgba(10, 77, 255, 0.28);
  background: rgba(10, 77, 255, 0.07);
}

.services {
  background:
    radial-gradient(circle at 10% 10%, rgba(10, 77, 255, 0.11), transparent 28%),
    #000;
}

.card {
  border-color: rgba(10, 77, 255, 0.22);
  background:
    radial-gradient(circle 220px at var(--mx) var(--my), rgba(10, 77, 255, 0.16), transparent 70%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color: #fff;
}

.card__num {
  color: var(--accent-bright);
}

.card__icon {
  border-color: rgba(10, 77, 255, 0.4);
  color: var(--accent-bright);
  box-shadow: inset 0 0 28px rgba(10, 77, 255, 0.08);
}

.card p {
  color: #a7a7a7;
}

.ai-agent {
  background:
    radial-gradient(circle at 88% 14%, rgba(10, 77, 255, 0.12), transparent 25%),
    #000;
}

.ai-agent__grid-bg {
  background:
    radial-gradient(circle 420px at var(--mx, 72%) var(--my, 45%), rgba(10, 77, 255, 0.2), transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.ai-agent__orb--one,
.ai-agent__orb--two {
  background: var(--accent);
}

.ai-agent__benefits span,
.ai-console,
.ai-console__spark,
.ai-console__options span {
  border-color: rgba(10, 77, 255, 0.28);
}

.ai-console {
  background: rgba(3, 5, 12, 0.78);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.5), inset 0 1px rgba(79, 124, 255, 0.13);
}

.ai-console__status i {
  background: var(--accent-bright);
  box-shadow: 0 0 16px var(--accent);
}

.ai-console__spark {
  color: var(--accent-bright);
}

.ai-message--visitor {
  background: var(--accent);
  color: #fff;
}

.ai-message--bot {
  border-color: rgba(10, 77, 255, 0.22);
  background: rgba(10, 77, 255, 0.07);
}

.process {
  background:
    radial-gradient(circle at 8% 12%, rgba(10, 77, 255, 0.1), transparent 28%),
    #000;
}

.process__line {
  background: rgba(255, 255, 255, 0.15);
}

.process__line span {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(10, 77, 255, 0.5);
}

.step {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.step__badge {
  border-color: rgba(10, 77, 255, 0.36);
  background: #050505;
  color: var(--accent-bright);
}

.step.active .step__badge {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 28px rgba(10, 77, 255, 0.28);
}

.step p {
  color: #a7a7a7;
}

.transform-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(10, 77, 255, 0.1), transparent 25%),
    #000;
}

.chart-wrap {
  border-color: rgba(10, 77, 255, 0.24);
  background: rgba(10, 77, 255, 0.04);
}

.lg--blue,
#lblBlue {
  color: var(--accent-bright);
  fill: var(--accent-bright) !important;
}

#lineBlue {
  stroke: var(--accent);
}

#lineRevenue {
  stroke: var(--accent-bright);
}

#dotBlue {
  fill: var(--accent-bright);
}

.compare__col {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
}

.compare--after {
  border-color: rgba(10, 77, 255, 0.46);
  background: rgba(10, 77, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 60px rgba(10, 77, 255, 0.06);
}

.compare--after ul {
  color: #c2cfff;
}

.compare__col li::before {
  color: var(--accent-bright);
}

.portfolio {
  background:
    radial-gradient(circle at 10% 8%, rgba(10, 77, 255, 0.11), transparent 26%),
    #000;
}

.portfolio__timeline-label,
.portfolio__timeline-count {
  color: #929292;
}

.portfolio__timeline-rail {
  background: rgba(255, 255, 255, 0.16);
}

.portfolio__timeline-rail i {
  background: var(--accent);
}

.portfolio__timeline-rail i::after {
  border-color: var(--accent-bright);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(10, 77, 255, 0.16), 0 0 18px rgba(10, 77, 255, 0.44);
}

.portfolio__timeline-count strong {
  color: var(--accent-bright);
}

.work {
  border-color: rgba(10, 77, 255, 0.22);
  background: #070707;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

.work__browser,
.work__meta,
.work__tag {
  border-color: rgba(255, 255, 255, 0.13);
}

.work__screen {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #03040a;
  background-size: 34px 34px;
}

.ws-hero,
.ws-box {
  border-color: rgba(10, 77, 255, 0.24);
  background: rgba(10, 77, 255, 0.08);
}

.ws-row,
.ws-btn {
  background: var(--accent);
}

.work__meta p,
.work__tag,
.work__url {
  color: #989898;
}

.testimonials {
  background:
    radial-gradient(circle at 82% 8%, rgba(10, 77, 255, 0.1), transparent 25%),
    #000;
}

.testimonials__bg {
  background:
    radial-gradient(circle 430px at var(--mx, 30%) var(--my, 50%), rgba(10, 77, 255, 0.17), transparent 70%),
    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: auto, 60px 60px, 60px 60px;
}

.tcard {
  border-color: rgba(10, 77, 255, 0.2);
  background: rgba(10, 77, 255, 0.04);
}

.tcard__stars svg {
  fill: var(--accent);
}

.tcard__more {
  color: var(--accent-bright);
}

.final {
  background:
    radial-gradient(circle at 50% 18%, rgba(10, 77, 255, 0.13), transparent 27%),
    #000;
  color: #fff;
}

.final__bg {
  background:
    radial-gradient(circle at 50% 24%, rgba(10, 77, 255, 0.14), transparent 30%),
    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: auto, 64px 64px, 64px 64px;
}

.final__sub,
.contact > p,
.field label {
  color: #a7a7a7;
}

.contact {
  border-color: rgba(10, 77, 255, 0.26);
  background: rgba(5, 7, 14, 0.82);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46), inset 0 1px rgba(79, 124, 255, 0.1);
  color: #fff;
}

.field input,
.field textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 77, 255, 0.16);
}

.faq {
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 77, 255, 0.1), transparent 26%),
    #000;
}

.faq__item summary::after {
  color: var(--accent-bright);
}

.footer-mega {
  border-top-color: rgba(10, 77, 255, 0.22);
  background: #000;
}

.footer-mega__col a:hover,
.footer-link:hover,
.legal-body a {
  color: var(--accent-bright);
}

.footer-slogan {
  border-color: rgba(10, 77, 255, 0.2);
}

.page__hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(10, 77, 255, 0.2), transparent 33%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #000;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.page__body > h2,
.legal-body h1,
.legal-body h2,
.legal-body h3 {
  color: #fff;
}

.legal-body a {
  border-bottom-color: rgba(79, 124, 255, 0.62);
}

.ai-page-hero {
  background:
    radial-gradient(circle at 75% 45%, rgba(10, 77, 255, 0.22), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #000;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.ai-page-hero__mark {
  opacity: 0.2;
  filter: saturate(1.08) drop-shadow(0 0 60px rgba(10, 77, 255, 0.28));
}

.ai-page-benefits {
  background:
    radial-gradient(circle at 10% 12%, rgba(10, 77, 255, 0.1), transparent 26%),
    #000;
}

.ai-page-process {
  background: #000;
}

.ai-page-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(10, 77, 255, 0.12), transparent 30%),
    #000;
}

.cookie-panel {
  border-color: rgba(10, 77, 255, 0.34);
  background: rgba(2, 3, 8, 0.96);
}

.cookie-option input {
  accent-color: var(--accent);
}

.cookie-btn--save {
  border-color: rgba(10, 77, 255, 0.26);
  background: rgba(10, 77, 255, 0.11);
}

@media (max-width: 760px) {
  .hero__brandmark {
    opacity: 0.36;
    filter: saturate(1.08) contrast(1.06) drop-shadow(0 10px 34px rgba(10, 77, 255, 0.34));
  }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto__title span,
  .manifesto__title span.is-current,
  .manifesto__title span.is-past {
    color: #fff;
  }
}

/* ============================================================
   TYPOGRAPHY, RHYTHM & PREMIUM LOADING PASS
============================================================ */
.preloader {
  place-content: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(10, 77, 255, 0.14), transparent 30%),
    #000;
  transition: opacity 850ms var(--ease), visibility 850ms;
}

.preloader::before {
  background:
    linear-gradient(rgba(10, 77, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 77, 255, 0.075) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.preloader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 8%, rgba(10, 77, 255, 0.32) 50%, transparent 92%);
  opacity: 0.5;
  transform: translateX(-50%);
}

.preloader__aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(640px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 77, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(10, 77, 255, 0.018),
    0 0 0 160px rgba(10, 77, 255, 0.012),
    inset 0 0 120px rgba(10, 77, 255, 0.035);
  transform: translate(-50%, -50%);
  animation: preloaderAura 2.8s ease-in-out infinite;
}

.preloader__stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(420px, calc(100vw - 48px));
  place-self: center;
  justify-items: center;
  transition: opacity 600ms var(--ease), transform 700ms var(--ease);
}

.preloader__mark {
  position: relative;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
}

.preloader__mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 20px var(--accent), 0 0 44px rgba(10, 77, 255, 0.5);
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader__mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.08) drop-shadow(0 0 32px rgba(10, 77, 255, 0.34));
  opacity: 0;
  transform: scale(0.72) rotate(-5deg);
  animation: preloaderMarkIn 900ms var(--ease-spring) 120ms forwards;
}

.preloader__orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(10, 77, 255, 0.32);
  border-radius: 50%;
}

.preloader__orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(10, 77, 255, 0.72);
}

.preloader__orbit--outer {
  animation: preloaderOrbit 5.5s linear infinite;
}

.preloader__orbit--inner {
  inset: 16px;
  border-color: rgba(255, 255, 255, 0.12);
  animation: preloaderOrbit 3.8s linear infinite reverse;
}

.preloader__wordmark {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: -0.045em;
  line-height: 1;
  opacity: 0;
  transform: translateY(16px);
  animation: preloaderWordIn 700ms var(--ease) 360ms forwards;
}

.preloader__wordmark span {
  color: var(--accent);
  font-style: italic;
}

.preloader__bar {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 34px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.13);
}

.preloader__bar span {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(10, 77, 255, 0.72);
  transition: transform 180ms linear;
}

.preloader__bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: translateX(-100%);
  animation: preloaderShimmer 1.15s linear infinite;
}

.preloader__bar i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px var(--accent);
  transform: translate(-50%, -50%);
  animation: preloaderScan 1.8s ease-in-out infinite;
}

.preloader__meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  color: #777;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preloader__meta strong {
  color: var(--accent-bright);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.preloader.is-leaving .preloader__stage {
  opacity: 0;
  transform: scale(0.94);
}

.preloader.is-leaving .preloader__aura {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.16);
  transition: opacity 600ms ease, transform 700ms ease;
}

@keyframes preloaderMarkIn {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes preloaderWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.55);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
}

@keyframes preloaderAura {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes preloaderShimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes preloaderScan {
  0%,
  100% {
    left: 0;
    opacity: 0.2;
  }
  50% {
    left: 100%;
    opacity: 1;
  }
}

@media (min-width: 761px) {
  .hero__brandmark {
    display: none;
  }

  .hero__title {
    font-size: clamp(52px, 7.4vw, 118px);
    line-height: 0.9;
  }

  .h-display {
    font-size: clamp(40px, 5.4vw, 84px);
    line-height: 0.98;
  }

  .manifesto__title {
    font-size: clamp(42px, 5.8vw, 90px);
  }

  .card h3 {
    font-size: clamp(24px, 2vw, 32px);
  }

  .step h3 {
    font-size: clamp(30px, 3.4vw, 52px);
  }

  .chart-kpi strong {
    font-size: clamp(44px, 6.2vw, 86px);
  }

  .work__meta h3 {
    font-size: 28px;
  }

  .tcard__quote {
    font-size: clamp(24px, 2.3vw, 34px);
  }

  .contact h3 {
    font-size: 35px;
  }

  .faq__item summary {
    font-size: clamp(18px, 1.9vw, 27px);
  }

  .page__hero .h-display {
    font-size: clamp(46px, 6.2vw, 94px);
  }

  .page__body > h2 {
    font-size: clamp(34px, 4vw, 56px);
  }

  .legal-body h2 {
    font-size: clamp(26px, 3.1vw, 42px);
  }

  .legal-body h3 {
    font-size: 21px;
  }

  .ai-page-steps h3 {
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 58px;
  }

  .section {
    padding-block: var(--section-space);
  }

  .hero__brandmark {
    display: block;
  }

  .hero__content {
    padding-bottom: 46px;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.98;
    text-wrap: wrap;
  }

  .h-display {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1;
    text-wrap: wrap;
  }

  .problem .h-display {
    font-size: clamp(32px, 8.2vw, 40px);
  }

  .hero__title .reveal-line,
  .h-display .reveal-line {
    display: contents;
    overflow: visible;
    padding: 0;
  }

  .hero__title .reveal-line > span,
  .h-display .reveal-line > span,
  .transform-title__mobile .reveal-line > span,
  .final-title__mobile .reveal-line > span,
  .testimonials-title__mobile .reveal-line > span {
    display: inline;
    white-space: normal !important;
    transform: none !important;
    will-change: auto;
  }

  .h-display br {
    display: none;
  }

  .lead {
    margin-top: 26px;
  }

  .problem__grid {
    gap: 38px;
  }

  .experience,
  .services,
  .ai-agent,
  .process,
  .transform-section,
  .portfolio,
  .testimonials,
  .final,
  .faq {
    padding-top: 62px;
  }

  .experience__grid {
    gap: 38px;
    margin-top: 38px;
  }

  .services__grid {
    margin-top: 38px;
  }

  .ai-agent__grid {
    gap: 40px;
  }

  .process__rail {
    margin-top: 48px;
  }

  .chart-wrap {
    margin-top: 44px;
  }

  .portfolio__head {
    margin-bottom: 48px;
  }

  .marquee {
    margin-top: 44px;
  }

  .contact {
    margin-top: 44px;
  }

  .faq__list {
    margin-top: 44px;
  }

  .manifesto {
    height: 190svh;
  }

  .manifesto__sticky {
    min-height: 100svh;
    align-items: start;
    padding: 64px 0;
  }

  .manifesto__title {
    font-size: clamp(30px, 7.8vw, 40px);
    line-height: 1.04;
  }

  .manifesto__copy {
    margin-top: 24px;
  }

  .manifesto__meter {
    margin-top: 25px;
  }

  .card h3 {
    font-size: clamp(23px, 7.2vw, 32px);
  }

  .step h3 {
    font-size: 34px;
  }

  .chart-kpi strong {
    font-size: clamp(44px, 13vw, 62px);
  }

  .work__meta h3 {
    font-size: 27px;
  }

  .tcard__quote {
    font-size: clamp(23px, 7.4vw, 31px);
  }

  .contact h3 {
    font-size: 35px;
  }

  .faq__item summary {
    font-size: 20px;
  }

  .page__hero {
    min-height: auto;
    justify-content: flex-start;
    padding: 116px 20px 50px;
  }

  .page__hero .h-display {
    font-size: clamp(34px, 9.2vw, 46px);
  }

  .legal-page .page__hero .h-display {
    font-size: clamp(32px, 8.6vw, 43px);
  }

  .page__body {
    padding: 52px 0 108px;
  }

  .page__body > h2 {
    margin: 64px 0 24px;
    font-size: clamp(34px, 9.2vw, 46px);
  }

  .legal-body h2 {
    margin-top: 52px;
    font-size: 27px;
  }

  .legal-body h3 {
    margin-top: 30px;
    font-size: 21px;
  }

  .ai-page-hero {
    min-height: auto;
    padding: 116px 0 66px;
  }

  .ai-page-hero__actions {
    margin-top: 30px;
  }

  .ai-page-steps {
    margin-top: 48px;
  }

  .ai-page-steps h3 {
    font-size: 32px;
  }

  .preloader__stage {
    width: calc(100vw - 56px);
  }

  .preloader__mark {
    width: 120px;
  }

  .preloader__mark img {
    width: 70px;
    height: 70px;
  }

  .preloader__wordmark {
    margin-top: 20px;
    font-size: 36px;
  }

  .preloader__bar {
    margin-top: 28px;
  }
}

/* Keep the manifesto scroll reveal, but remove the oversized empty tail
   between its final line and the following experience section. */
.manifesto {
  height: 138svh;
}

/* Desktop rhythm: halve the oversized section gaps while preserving
   the deliberately tighter mobile spacing below. */
@media (min-width: 761px) {
  :root {
    --section-space: clamp(58px, 6.5vw, 110px);
  }

  .manifesto {
    height: 119svh;
  }

  .experience {
    padding-top: clamp(105px, 9vw, 155px);
  }
}

@media (max-width: 1080px) {
  .manifesto {
    height: 117svh;
  }
}

@media (max-width: 760px) {
  .skip-link {
    display: none !important;
  }

  .manifesto {
    height: 190svh;
  }

  .manifesto__sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    align-items: center;
    padding: 0;
  }

  .experience {
    z-index: 4;
    margin-top: -16svh;
    padding-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__aura,
  .preloader__mark img,
  .preloader__mark::after,
  .preloader__orbit,
  .preloader__wordmark,
  .preloader__bar span::after,
  .preloader__bar i {
    animation: none !important;
  }

  .preloader__mark img,
  .preloader__wordmark {
    opacity: 1;
    transform: none;
  }
}
