:root {
  --navy: #07071e;
  --navy-deep: #030313;
  --navy-mid: #0c1e42;
  --paper: #f7f5f2;
  --muted: #aaa9b5;
  --gold: #f6ae35;
  --gold-soft: #d8a85e;
  --violet: #8f5df7;
  --magenta: #d52e88;
  --line: rgba(247, 245, 242, 0.16);
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; background: var(--navy-deep); }
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.hero {
  isolation: isolate;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 45%, rgba(25, 64, 122, 0.5), transparent 34%),
    linear-gradient(135deg, #05051b 0%, #080824 45%, #081a39 100%);
}
#webgl-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 66% at 50% 43%, rgba(4, 4, 20, 0.86) 0%, rgba(4, 4, 20, 0.56) 48%, rgba(4, 4, 20, 0.14) 82%),
    linear-gradient(180deg, rgba(4, 4, 20, 0.22), transparent 28%, transparent 72%, rgba(4, 4, 20, 0.72));
}
.contour-field {
  position: absolute;
  pointer-events: none;
}
.contour-field::before,
.contour-field::after {
  content: "";
  position: absolute;
  inset: 0;
}
.contour-field::before {
  background:
    repeating-radial-gradient(ellipse at 58% 104%, transparent 0 30px, rgba(143, 93, 247, 0.68) 32px 35px, transparent 37px 65px);
  transform: rotate(-7deg) scale(1.12);
}
.contour-field::after {
  background:
    repeating-radial-gradient(ellipse at 100% 72%, transparent 0 34px, rgba(213, 46, 136, 0.66) 36px 39px, transparent 41px 74px);
  transform: rotate(10deg);
  mix-blend-mode: screen;
}
.section-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
[data-field-surface] {
  isolation: isolate;
}
[data-field-surface].field-ready > .contour-field {
  opacity: 0;
}
.hero--live::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -7vw;
  bottom: -23vh;
  width: min(71vw, 1180px);
  height: min(70vh, 760px);
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 58% 104%, transparent 0 30px, rgba(143, 93, 247, 0.68) 32px 35px, transparent 37px 65px),
    repeating-radial-gradient(ellipse at 100% 72%, transparent 0 34px, rgba(213, 46, 136, 0.66) 36px 39px, transparent 41px 74px);
  opacity: 0.45;
  mask-image: linear-gradient(90deg, transparent 0%, #000 23%, #000 100%);
  animation: hero-contour-drift 28s ease-in-out infinite alternate;
  transform-origin: 62% 68%;
  will-change: transform;
}
@keyframes hero-contour-drift {
  from { transform: translate3d(-1.2%, 0.6%, 0) scale(1.01); }
  to { transform: translate3d(1.2%, -0.8%, 0) scale(1.025); }
}

.site-header {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 50%;
  width: min(100% - 8vw, 1680px);
  height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(247, 245, 242, 0.17);
  transition:
    width 220ms ease,
    padding 220ms ease,
    background 220ms ease,
    backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  width: 100%;
  padding: 0 4vw;
  background: rgba(3, 3, 19, 0.82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; width: fit-content; align-items: center; }
.brand-logo { display: block; width: 160px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); }
.desktop-nav a {
  color: rgba(247, 245, 242, 0.84);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--paper); }
.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(246, 174, 53, 0.52);
  border-radius: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}
.header-cta:hover { background: var(--gold); color: var(--navy); }
.menu, .menu-panel { display: none; }

.hero-grid {
  position: relative;
  z-index: 8;
  width: min(100% - 8vw, 1680px);
  min-height: calc(100svh - 90px);
  margin: 0 auto;
  padding: clamp(86px, 11vh, 150px) 0 clamp(150px, 18vh, 190px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "heading"
    "benefits"
    "actions";
  align-content: center;
  justify-items: center;
  text-align: center;
}
h1 {
  grid-area: heading;
  justify-self: center;
  max-width: 1320px;
  margin: 0;
  text-align: center;
  font-size: clamp(66px, 6.4vw, 120px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
h1 .gold { color: var(--gold); }
h1 small {
  display: block;
  max-width: 820px;
  margin: 27px auto 0;
  color: rgba(247, 245, 242, 0.9);
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  white-space: normal;
}
.hero-actions {
  grid-area: actions;
  justify-self: center;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.hero-benefits {
  grid-area: benefits;
  width: fit-content;
  margin-top: 34px;
  justify-self: center;
}
.hero-benefits ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  color: rgba(247, 245, 242, 0.94);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 400;
}
.hero-benefits li:not(:last-child)::after {
  content: "•";
  margin: 0 15px;
  color: var(--gold);
  font-size: 10px;
}
.primary-cta {
  width: fit-content;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 208, 125, 0.35);
  border-radius: 5px;
  background: linear-gradient(135deg, #d89427, #f6b94f 53%, #cd821f);
  box-shadow: 0 18px 45px rgba(246, 174, 53, 0.16);
  color: #11101d;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(246, 174, 53, 0.25); }
.hero-actions .primary-cta { min-width: 200px; }
.primary-cta > span { flex: 0 0 auto; line-height: 1; }
.scroll-cue {
  position: absolute;
  z-index: 9;
  right: 4vw;
  bottom: 126px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 245, 242, 0.42);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue span { width: 28px; height: 1px; background: rgba(247, 245, 242, 0.3); }

@media (min-width: 1180px) {
  h1 {
    max-width: none;
    font-size: clamp(72px, 6vw, 112px);
    white-space: nowrap;
  }
}

.page-surface { position: relative; overflow: hidden; background: var(--navy-deep); }
.page-shell { width: min(100% - 8vw, 1520px); margin: 0 auto; }
.client-logo-strip {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 27, 0.68);
  backdrop-filter: blur(14px);
}
.client-logo-strip__label {
  margin-bottom: 10px;
  color: rgba(247, 245, 242, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.client-logo-strip__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.client-logo-strip__track {
  width: max-content;
  display: flex;
  backface-visibility: hidden;
  will-change: transform;
  animation: client-logo-marquee 72s linear infinite;
}
.client-logo-strip__set {
  display: flex;
  align-items: center;
  gap: clamp(60px, 5vw, 88px);
  padding-right: clamp(60px, 5vw, 88px);
}
.client-logo-strip figure {
  width: auto;
  height: 48px;
  flex: 0 0 auto;
  margin: 0;
  display: grid;
  place-items: center;
}
.client-logo-strip img {
  width: auto;
  height: 34px;
  max-width: none;
  max-height: 34px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.client-logo-strip img[src*="/normalized/"] { height: 46px; max-height: 46px; }
.client-logo-strip img.client-logo--amgen { height: 42px; max-height: 42px; }
.client-logo-strip img.client-logo--lumen { height: 37px; max-height: 37px; }
.client-logo-strip img.client-logo--monochrome {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.88;
}
.client-logo-strip img.client-logo--photo {
  filter: grayscale(1) invert(1) contrast(1.35);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.client-logo-strip img.client-logo--compact { height: 34px; max-height: 34px; }
.client-logo-strip figure.client-logo-lockup {
  display: flex;
  gap: 10px;
  align-items: center;
}
.client-logo-lockup img[src*="/normalized/"] { height: 38px; max-height: 38px; }
.client-logo-lockup > span {
  max-width: 128px;
  color: rgba(247, 245, 242, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}
.client-logo-lockup--long > span {
  max-width: 112px;
  white-space: normal;
}
.client-logo-lockup--wolf > span {
  max-width: 126px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: none;
  white-space: normal;
}
.client-logo-strip .client-logo-lockup--rockstar img {
  width: 157px;
  height: auto;
  max-height: none;
}
@keyframes client-logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.proof-bar { border-block: 1px solid var(--line); background: #090927; }
.proof-bar__inner {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.proof-bar__inner p {
  margin: 0;
  padding: 26px clamp(20px, 3vw, 48px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  text-align: left;
}
.proof-bar__inner p strong {
  color: var(--gold);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
}
.proof-bar__inner p span {
  max-width: 190px;
  color: rgba(247, 245, 242, 0.62);
  font-size: 11px;
  line-height: 1.35;
}
.proof-bar__inner > span { width: 1px; height: 42px; background: var(--line); }
.page-section {
  position: relative;
  padding: clamp(105px, 11vw, 175px) 0;
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
.section-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-heading { position: relative; z-index: 2; margin-bottom: clamp(58px, 7vw, 104px); }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: end;
}
.section-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(52px, 6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.92;
}
.section-heading > p:not(.section-kicker),
.section-heading--split > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.section-heading--split.section-heading--align-title { align-items: start; }
.section-heading--split.section-heading--align-title > p {
  /* Sit alongside the first title line when the heading wraps to two lines */
  padding-top: calc(36px + (clamp(52px, 6vw, 104px) * 0.92 - 25px) / 2);
}
.value-section { background: linear-gradient(180deg, #07071e, #090a2a); }
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.value-card {
  min-height: 310px;
  padding: clamp(30px, 3.5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.014);
}
.value-card:nth-child(2n) { border-right: 0; }
.value-card:nth-last-child(-n+2) { border-bottom: 0; }
.value-card > span, .agent-card__top span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.value-card h3 { margin: 0 0 18px; font-size: clamp(27px, 2.5vw, 42px); font-weight: 400; letter-spacing: -0.04em; }
.value-card p { max-width: 570px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.results-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(143, 93, 247, 0.11), transparent 30%),
    linear-gradient(145deg, #050518, #07142e);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.result-card {
  min-height: 430px;
  padding: clamp(28px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(247, 245, 242, 0.022);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 174, 53, 0.48);
  background: rgba(247, 245, 242, 0.04);
}
.result-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-meta strong { color: rgba(247, 245, 242, 0.92); font-size: 12px; font-weight: 600; }
.result-number {
  margin: auto 0 12px;
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--gold));
  background-clip: text;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}
.result-card h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}
.result-card > p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.results-note {
  margin: 22px 0 0;
  color: rgba(247, 245, 242, 0.4);
  font-size: 10px;
}
.section-cta {
  width: 100%;
  min-height: 72px;
  margin-top: 52px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block: 1px solid var(--line);
  color: var(--paper);
  font-size: clamp(17px, 1.5vw, 24px);
  letter-spacing: -0.02em;
  transition: padding 200ms ease, color 200ms ease, border-color 200ms ease;
}
.section-cta span { color: var(--gold); }
.section-cta:hover {
  padding-inline: 32px;
  border-color: rgba(246, 174, 53, 0.45);
  color: var(--gold);
}

.about-section { position: relative; overflow: hidden; background: #080823; }
.contour-field--section {
  top: 0;
  right: -18%;
  width: 78%;
  height: 100%;
  opacity: 0.36;
  mask-image: linear-gradient(90deg, transparent, #000 40%);
}
.about-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(247, 245, 242, 0.2);
  border-radius: 10px;
  background: rgba(7, 7, 30, 0.74);
  backdrop-filter: blur(14px);
}
.about-card h3 { margin: 0 0 20px; font-size: clamp(29px, 2.8vw, 44px); font-weight: 400; letter-spacing: -0.04em; }
.about-card > span { min-height: 118px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.agents-section { background: linear-gradient(145deg, #050518, #07142e); }
.agent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.agent-card {
  min-height: 310px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}
.agent-card__top { display: flex; justify-content: flex-end; align-items: center; }
.agent-card__top i { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--magenta)); }
.agent-card h3 { margin: 96px 0 18px; font-size: clamp(27px, 2.2vw, 38px); font-weight: 400; letter-spacing: -0.04em; }
.agent-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.difference-section { background: #080822; }
.difference-layout { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); gap: clamp(80px, 12vw, 190px); align-items: center; }
.difference-orbits { position: relative; width: min(100%, 520px); aspect-ratio: 1; display: grid; place-items: center; }
.difference-orbits::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 174, 53, 0.22), transparent 64%);
}
.difference-orbits span {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(143, 93, 247, 0.62);
  border-radius: 48% 52% 44% 56%;
  animation: orbit 18s linear infinite;
}
.difference-orbits span:nth-child(2) { inset: 17%; border-color: rgba(213, 46, 136, 0.62); animation-direction: reverse; animation-duration: 14s; }
.difference-orbits span:nth-child(3) { inset: 27%; border-color: rgba(246, 174, 53, 0.58); animation-duration: 11s; }
.difference-orbits span:nth-child(4) { inset: 37%; border-color: rgba(247, 245, 242, 0.4); animation-direction: reverse; animation-duration: 8s; }
.difference-orbits img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(18%, 88px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 28px rgba(246, 174, 53, 0.16));
}
@keyframes orbit { to { transform: rotate(360deg); } }
.difference-list { border-top: 1px solid var(--line); }
.difference-list article { padding: 29px 0; border-bottom: 1px solid var(--line); }
.difference-list h3 { margin: 0 0 9px; font-size: 25px; font-weight: 400; letter-spacing: -0.03em; }
.difference-list article:nth-child(1) h3 { color: #a77cf9; }
.difference-list article:nth-child(2) h3 { color: #ef5ca4; }
.difference-list article:nth-child(3) h3 { color: var(--gold); }
.difference-list article:nth-child(4) h3 { color: var(--paper); }
.difference-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.trust-grid {
  margin-top: clamp(72px, 9vw, 128px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-block: 1px solid var(--line);
}
.trust-card {
  min-height: 330px;
  padding: clamp(28px, 2.4vw, 42px);
  display: grid;
  grid-row: 1 / span 3;
  grid-template-rows: subgrid;
  border-right: 1px solid var(--line);
}
.trust-card:last-child { border-right: 0; }
.trust-card > span {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.trust-card h3 {
  margin: auto 0 24px;
  font-size: clamp(25px, 1.9vw, 34px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
}
.trust-card h3 .title-line { display: block; white-space: nowrap; }
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #090927, #071835); }
.contour-field--pricing {
  inset: auto -22% -20% 30%;
  width: 92%;
  height: 80%;
  opacity: 0.27;
  transform: rotate(8deg);
}
.pricing-section .page-shell { position: relative; z-index: 2; }
.pricing-intro { margin: -30px 0 55px; max-width: 900px; }
.pricing-intro h3 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 46px); font-weight: 400; letter-spacing: -0.04em; }
.pricing-intro p { margin: 0; color: var(--muted); line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.price-card {
  min-height: 600px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(246, 174, 53, 0.62);
  border-radius: 9px;
  background: rgba(7, 7, 30, 0.84);
  backdrop-filter: blur(14px);
}
.price-card__gear { display: flex; justify-content: space-between; color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.price-card__gear i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(246, 174, 53, 0.08); }
.price-card h3 { margin: 76px 0 18px; font-size: clamp(29px, 2.6vw, 42px); font-weight: 400; letter-spacing: -0.045em; }
.price { min-height: 60px; margin: 0 0 24px; display: flex; align-items: flex-end; gap: 6px; }
.price strong {
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--gold));
  background-clip: text;
  font-size: clamp(35px, 3.6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.055em;
}
.price span { margin-bottom: 8px; color: var(--muted); font-size: 12px; }
.price-card > p:not(.price) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.price-features {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.price-features li {
  min-height: 45px;
  padding: 11px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(247, 245, 242, 0.09);
  color: rgba(247, 245, 242, 0.8);
  font-size: 11px;
  line-height: 1.35;
}
.price-features i {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
}
.price-features .is-unavailable { color: rgba(247, 245, 242, 0.3); }
.price-features .is-unavailable i { color: rgba(247, 245, 242, 0.22); }
.price-card > a { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--gold); font-size: 12px; }

.process-section { background: #06061d; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-step {
  min-height: 190px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 11% 1fr;
  border-bottom: 1px solid var(--line);
}
.process-step > span { color: var(--gold); font-size: clamp(27px, 3vw, 48px); font-weight: 300; letter-spacing: -0.04em; }
.process-step > div { display: grid; grid-template-columns: 12% minmax(260px, 0.7fr) minmax(280px, 0.55fr); gap: 40px; align-items: start; }
.process-step p { margin: 8px 0 0; color: rgba(247, 245, 242, 0.38); font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }
.process-step h3 { margin: 0; font-size: clamp(29px, 3vw, 48px); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.process-step strong { color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.6; }

.why-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(246, 174, 53, 0.11), transparent 30%),
    linear-gradient(145deg, #080822, #06142c);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.why-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 3vw, 45px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border-right: 1px solid var(--line);
  background: rgba(247, 245, 242, 0.014);
}
.why-card:last-child { border-right: 0; }
.why-card > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.why-card > i {
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid rgba(246, 174, 53, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 174, 53, 0.35) 0 9%, transparent 11%),
    repeating-radial-gradient(circle, transparent 0 9px, rgba(143, 93, 247, 0.38) 10px 11px, transparent 12px 18px);
  box-shadow: 0 0 40px rgba(143, 93, 247, 0.11);
}
.why-card h3 {
  max-width: 240px;
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.faq-section { background: linear-gradient(135deg, #07071e, #08142c); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 92px;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: -0.03em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 25px; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 900px; margin: -5px 0 35px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.booking-section { padding: 40px 0; background: #050518; }
.booking-block {
  min-height: 620px;
  overflow: hidden;
  position: relative;
  padding: clamp(54px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 40%, rgba(143, 93, 247, 0.19), transparent 35%),
    linear-gradient(135deg, #090927, #071c3d);
}
.contour-field--booking { inset: 0 -12% -25% 24%; opacity: 0.48; }
.booking-block > *:not(.contour-field):not(.section-field) { position: relative; z-index: 2; }
.booking-block h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(52px, 6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}
.primary-cta--large { margin-top: 48px; min-height: 64px; padding: 0 28px; }

.site-footer { padding: 70px 0 38px; background: #030313; }
.footer-main { min-height: 120px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--line); }
.footer-main nav { display: flex; gap: 30px; color: rgba(247, 245, 242, 0.84); font-size: 14px; font-weight: 500; }
.footer-meta {
  min-height: 58px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: rgba(247, 245, 242, 0.82);
  font-size: 13px;
}
.footer-meta p { margin: 0; }
.footer-meta > p { justify-self: end; }
.footer-meta nav { display: flex; align-items: center; gap: 18px; }
.footer-meta a { transition: color 180ms ease; }
.footer-meta a:hover,
.footer-meta a:focus-visible { color: var(--paper); }
.cookie-settings {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
  transition: color 180ms ease;
}
.cookie-settings:hover,
.cookie-settings:focus-visible { color: var(--paper); }
.footer-social { align-items: center; }
.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 245, 242, 0.3);
  border-radius: 50%;
}
.social-mark { display: block; color: currentColor; font-family: Arial, sans-serif; line-height: 1; }
.social-mark--linkedin { font-size: 14px; font-weight: 700; letter-spacing: -0.04em; }
.social-mark--x { font-size: 14px; font-weight: 600; }
.social-mark--facebook { font-size: 19px; font-weight: 700; transform: translateY(1px); }

.cookie-consent {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 960px);
  margin-inline: auto;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(246, 174, 53, 0.86), rgba(143, 93, 247, 0.72), rgba(213, 46, 136, 0.78));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: cookie-consent-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 15px;
  background: rgba(5, 5, 27, 0.97);
  backdrop-filter: blur(18px);
}
.cookie-consent__inner > div:first-child { max-width: 610px; }
.cookie-consent__title { margin: 0 0 7px; color: var(--paper); font-size: 16px; font-weight: 600; }
.cookie-consent p:not(.cookie-consent__title) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-consent p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-consent__actions button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  font: inherit;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
}
.cookie-consent__actions .cookie-consent__accept { border-color: var(--gold); color: #090817; background: var(--gold); }
.cookie-consent__actions button:hover { border-color: rgba(246, 174, 53, 0.76); }
@keyframes cookie-consent-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* V3.1 motion system: entrance hierarchy, responsive depth, and section feedback. */
.has-motion .brand,
.has-motion .desktop-nav,
.has-motion .header-cta,
.has-motion h1,
.has-motion .hero-benefits,
.has-motion .hero-actions,
.has-motion .scroll-cue {
  opacity: 0;
  animation: hero-intro 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.has-motion .brand { animation-delay: 80ms; }
.has-motion .desktop-nav { animation-delay: 140ms; }
.has-motion .header-cta { animation-delay: 180ms; }
.has-motion h1 { animation-delay: 180ms; }
.has-motion .hero-benefits { animation-delay: 340ms; }
.has-motion .hero-actions { animation-delay: 430ms; }
.has-motion .scroll-cue { animation-delay: 620ms; }
@keyframes hero-intro {
  from { opacity: 0; transform: translateY(18px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0;
}
.section-kicker::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--gold);
  opacity: 0.7;
  transition: width 560ms cubic-bezier(0.22, 1, 0.36, 1), margin-right 560ms cubic-bezier(0.22, 1, 0.36, 1);
}
.motion-heading.is-visible .section-kicker::before {
  width: 28px;
  margin-right: 13px;
}
.js-reveal .motion-heading h2 {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) 70ms,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 70ms,
    filter 760ms ease 70ms;
}
.js-reveal .motion-heading.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.js-reveal .motion-heading > p:not(.section-kicker),
.js-reveal .motion-heading--split > p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease 210ms, transform 560ms ease 210ms;
}
.js-reveal .motion-heading.is-visible > p:not(.section-kicker),
.js-reveal .motion-heading--split.is-visible > p {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 700ms ease var(--reveal-delay, 0ms);
}
.js-reveal .reveal-item.is-visible { opacity: 1; transform: translateY(0); }

.motion-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) translateY(var(--card-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 320ms ease;
}
.motion-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(246, 174, 53, 0.09), transparent 58%);
  opacity: 0;
  transition: opacity 260ms ease;
}
.motion-card > * { position: relative; z-index: 1; }
.js-reveal .reveal-item.motion-card { --card-lift: 24px; transform: perspective(1000px) translateY(var(--card-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.js-reveal .reveal-item.is-visible.motion-card { --card-lift: 0px; }
.motion-card.is-tilting { will-change: transform; }

.proof-bar__inner p { position: relative; overflow: hidden; }
.proof-bar__inner p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.proof-bar__inner p.is-visible::after { transform: scaleX(1); }

.difference-list article {
  position: relative;
  transition: background 260ms ease, padding 260ms ease;
}
.difference-list article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.difference-list article.is-visible::after { transform: scaleX(1); }
.difference-list article h3 { transition: transform 260ms ease, filter 260ms ease; }

.agent-card__top i {
  animation: agent-pulse 4.8s ease-in-out infinite;
  animation-delay: var(--reveal-delay, 0ms);
}
@keyframes agent-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(143, 93, 247, 0); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(143, 93, 247, 0.08); }
}

.process-list {
  --process-progress: 0%;
  position: relative;
}
.process-list::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: auto;
  left: 0;
  width: 2px;
  height: var(--process-progress);
  background: linear-gradient(180deg, var(--gold), var(--magenta));
  box-shadow: 0 0 18px rgba(246, 174, 53, 0.2);
}
.process-step {
  transition: background 420ms ease, padding-inline 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step > span,
.process-step h3 { transition: color 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
.process-step.is-active {
  padding-inline: 18px;
  background: linear-gradient(90deg, rgba(246, 174, 53, 0.055), transparent 62%);
}
.process-step.is-active > span { color: #ffd382; transform: translateX(4px); }
.process-step.is-active h3 { transform: translateX(4px); }

.why-card.is-visible > i { animation: why-pulse 6.5s ease-in-out infinite; }
@keyframes why-pulse {
  0%, 100% { transform: scale(0.97); filter: brightness(0.92); }
  50% { transform: scale(1.05); filter: brightness(1.2); }
}

.faq-list summary {
  transition: color 240ms ease, padding-inline 320ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms ease;
}
.faq-list details[open] summary { color: var(--gold); }
.faq-list details[open] > p { animation: faq-answer 420ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes faq-answer {
  from { opacity: 0; transform: translateY(-8px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.booking-block.is-visible {
  box-shadow: 0 34px 110px rgba(28, 19, 80, 0.26);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1200ms ease;
}
.primary-cta { position: relative; overflow: hidden; }
.primary-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 26%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg) translateX(-180%);
  transition: transform 650ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .motion-card.is-visible:hover,
  .motion-card.is-visible:focus-within {
    --card-lift: -5px;
    border-color: rgba(246, 174, 53, 0.4);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
  }
  .motion-card:hover::after,
  .motion-card:focus-within::after { opacity: 1; }
  .difference-list article:hover { padding-inline: 12px; background: rgba(247, 245, 242, 0.018); }
  .difference-list article:hover h3 { transform: translateX(5px); filter: brightness(1.18); }
  .faq-list summary:hover { padding-inline: 14px; background: rgba(247, 245, 242, 0.025); color: var(--paper); }
  .primary-cta:hover::before { transform: skewX(-18deg) translateX(650%); }
  .section-cta:hover span { transform: translate(4px, -2px); }
}

.section-cta span { transition: transform 240ms ease; }

@media (max-width: 1360px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
  .trust-card {
    min-height: 310px;
    grid-row: auto;
    grid-template-rows: auto auto auto;
    align-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-card h3 { margin: 0 0 24px; }
  .trust-card:nth-child(2n) { border-right: 0; }
  .trust-card:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(6, 6, 25, 0.7);
  }
  .menu span { height: 1px; background: var(--gold); }
  .menu-panel {
    position: absolute;
    top: 75px;
    right: 0;
    width: min(310px, 90vw);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(6, 6, 25, 0.96);
    backdrop-filter: blur(16px);
  }
  .menu-panel.is-open { display: grid; }
  .menu-panel a { padding: 15px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .menu-panel a:last-child { border-bottom: 0; color: var(--gold); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .about-card > span { min-height: 136px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 30px; }
  .section-heading--split > p { max-width: 620px; }
  .section-heading--split.section-heading--align-title > p { padding-top: 0; }
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 520px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step > div { grid-template-columns: 1fr 1fr; }
  .process-step > div > p { display: none; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 88px; }
  .site-header, .hero-grid, .page-shell { width: min(100% - 40px, 100%); }
  .site-header { height: 74px; }
  .site-header.is-scrolled { padding: 0 20px; }
  .brand-logo { width: 132px; }
  .hero-grid {
    min-height: calc(100svh - 74px);
    padding: 78px 0 134px;
    display: block;
  }
  #webgl-field {
    right: auto;
    left: -105vw;
    width: 240vw;
    max-width: none;
  }
  h1 {
    font-size: clamp(46px, 14.8vw, 66px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }
  h1 .gold { display: block; }
  h1 small {
    max-width: 520px;
    margin-top: 22px;
    font-size: clamp(20px, 5.6vw, 25px);
    line-height: 1.2;
  }
  .hero-actions {
    margin-top: 22px;
    align-items: stretch;
    flex-direction: column;
  }
  .hero-benefits { width: 100%; margin-top: 30px; }
  .hero-benefits ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }
  .hero-benefits li {
    min-height: 44px;
    padding: 0 7px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: rgba(247, 245, 242, 0.94);
    font-size: clamp(14px, 3.8vw, 16px);
    font-weight: 400;
    line-height: 1.25;
  }
  .hero-benefits li:not(:last-child)::after { content: none; }
  .hero-benefits li + li { border-left: 1px solid rgba(247, 245, 242, 0.16); }
  .primary-cta { width: 100%; justify-content: center; gap: 12px; }
  .primary-cta > span { display: none; }
  .hero--live::after {
    right: -72vw;
    bottom: -15vh;
    width: 220vw;
    height: 76vh;
    background:
      repeating-radial-gradient(ellipse at 58% 104%, transparent 0 30px, rgba(118, 91, 220, 0.56) 32px 35px, transparent 37px 65px),
      repeating-radial-gradient(ellipse at 100% 72%, transparent 0 34px, rgba(74, 92, 190, 0.48) 36px 39px, transparent 41px 74px);
    opacity: 0.28;
  }
  .scroll-cue { display: none; }
  .proof-bar__inner { grid-template-columns: 1fr; padding: 20px 0; gap: 0; }
  .proof-bar__inner > span { width: 100%; height: 1px; margin: 0; }
  .proof-bar__inner p { padding: 22px 0; }
  .client-logo-strip { padding-block: 14px 16px; }
  .client-logo-strip__label { margin-bottom: 8px; }
  .client-logo-strip__set { gap: 44px; padding-right: 44px; }
  .client-logo-strip figure { width: auto; height: 42px; }
  .client-logo-strip img { height: 30px; max-width: none; max-height: 30px; }
  .client-logo-strip img[src*="/normalized/"] { height: 41px; max-height: 41px; }
  .client-logo-strip img.client-logo--amgen { height: 37px; max-height: 37px; }
  .client-logo-strip img.client-logo--lumen { height: 33px; max-height: 33px; }
  .client-logo-strip img.client-logo--compact { height: 30px; max-height: 30px; }
  .client-logo-strip figure.client-logo-lockup { gap: 7px; }
  .client-logo-lockup img[src*="/normalized/"] { height: 31px; max-height: 31px; }
  .client-logo-lockup > span { max-width: 104px; font-size: 9px; }
  .client-logo-lockup--long > span { max-width: 92px; }
  .client-logo-lockup--wolf > span { max-width: 108px; font-size: 9px; }
  .client-logo-strip .client-logo-lockup--rockstar img { width: 137px; height: auto; max-height: none; }
  .about-section { background: linear-gradient(145deg, #0b1232, #111943 58%, #10284a); }
  .about-section .section-field { opacity: 0.46; }
  .about-section .contour-field { filter: saturate(0.55) brightness(0.76); }
  .page-section { padding: 96px 0; }
  .section-heading { margin-bottom: 56px; }
  .section-heading h2 { font-size: clamp(46px, 13.5vw, 70px); }
  .value-grid, .result-grid, .about-grid, .agent-grid, .difference-layout { grid-template-columns: 1fr; }
  .result-card { min-height: 360px; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .value-card:last-child { border-bottom: 0 !important; }
  .about-card { min-height: 330px; }
  .about-card > span { min-height: 0; }
  .agent-card { min-height: 280px; }
  .agent-card h3 { margin-top: 74px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card,
  .trust-card:nth-child(2n),
  .trust-card:nth-last-child(-n+2) {
    min-height: 0;
    padding-block: 48px;
    align-content: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-card:last-child { border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .why-card:last-child { border-bottom: 0; }
  .difference-layout { gap: 58px; }
  .difference-orbits { width: 82%; margin: auto; }
  .price-card { min-height: 560px; }
  .process-step { grid-template-columns: 52px 1fr; }
  .process-step > div { grid-template-columns: 1fr; gap: 18px; }
  .booking-section { padding: 20px 0; }
  .booking-block { min-height: 540px; padding: 40px 28px; }
  .booking-block h2 { font-size: clamp(36px, 10.5vw, 58px); }
  .footer-main {
    align-items: center;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .footer-meta {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }
  .footer-meta > p { justify-self: center; }
  .footer-main nav,
  .footer-meta nav { justify-content: center; flex-wrap: wrap; }
  .cookie-consent__inner { align-items: stretch; flex-direction: column; gap: 18px; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__actions button { flex: 1 1 0; }
}

@media (max-width: 360px) {
  h1 { font-size: clamp(44px, 14.4vw, 52px); }
  .hero-benefits li { min-height: 48px; padding-inline: 4px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .client-logo-strip__track { animation: none !important; transform: none; }
  .cookie-consent { animation: none; }
}
