@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ink: #061427;
  --ink-deep: #030b17;
  --ink-soft: #0b1d34;
  --blue: #1672ff;
  --blue-bright: #2f8cff;
  --paper: #f7f4ed;
  --white: #ffffff;
  --muted: #93a6bc;
  --line: rgba(155, 182, 215, 0.18);
  --line-strong: rgba(155, 182, 215, 0.34);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -5%, rgba(26, 112, 255, 0.18), transparent 32rem),
    var(--ink-deep);
  color: var(--white);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.admin-bar .site-header {
  top: 32px;
}

.ad-card img,
.work-image img,
.study-image img,
.comparison-after img,
.comparison-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(48, 111, 191, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 111, 191, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--blue);
  color: white;
}

.shell {
  width: min(1380px, calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
}

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

.pointer-light {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--pointer-x) var(--pointer-y),
    rgba(39, 121, 255, 0.09),
    transparent 55%
  );
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(160, 186, 219, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: 0.2em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 26px;
  height: 26px;
  transform: skewY(-16deg);
}

.brand-mark i {
  position: absolute;
  right: 0;
  width: 21px;
  height: 5px;
  border-radius: 1px;
  background: linear-gradient(90deg, #25a4ff, #1469ff);
  box-shadow: 0 0 16px rgba(35, 137, 255, 0.28);
}

.brand-mark i:nth-child(1) { top: 2px; right: 5px; }
.brand-mark i:nth-child(2) { top: 10px; }
.brand-mark i:nth-child(3) { top: 18px; right: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > li {
  margin: 0;
  list-style: none;
}

.nav-links > a:not(.button),
.nav-links > li > a {
  position: relative;
  color: #dce7f4;
  font-size: 15px;
}

.nav-links > a:not(.button)::after,
.nav-links > li > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-links > li > a:hover::after,
.nav-links > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.custom-brand-logo {
  display: inline-flex;
  max-width: 160px;
  max-height: 38px;
}

.custom-brand-logo img {
  width: auto;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  margin: 0;
  background: white;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.menu-toggle span:first-child { transform: translate(-50%, -4px); }
.menu-toggle span:last-child { transform: translate(-50%, 4px); }
.menu-toggle.is-active { border-color: rgba(47, 140, 255, .7); background: rgba(22, 114, 255, .1); }
.menu-toggle.is-active span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.menu-toggle.is-active span:last-child { transform: translate(-50%, 0) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: linear-gradient(135deg, #1672ff, #0f5fe3);
  box-shadow: 0 14px 38px rgba(5, 87, 220, 0.22);
  color: white;
  font-size: 15px;
  font-weight: 620;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.button span {
  transition: transform 0.25s var(--ease);
}

.button > span,
.text-link > span,
.work-arrow,
.capability-grid i {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  overflow: visible;
  background-color: currentColor !important;
  font-size: 0 !important;
  line-height: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13L13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13L13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button > span::before,
.text-link > span::before,
.work-arrow::before,
.capability-grid i::before {
  display: none;
}

.button > span::after,
.text-link > span::after,
.work-arrow::after,
.capability-grid i::after {
  display: none;
}

.service-card li > span,
.plan-card li > span {
  position: relative;
  width: 12px;
  min-width: 12px;
  height: 12px;
  margin-top: 2px;
  font-size: 0;
}

.service-card li > span::before,
.plan-card li > span::before {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(42deg);
}

.button:hover {
  box-shadow: 0 18px 42px rgba(11, 100, 245, 0.33);
  transform: translateY(-2px);
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
}

.button-ghost {
  border-color: rgba(64, 139, 255, 0.78);
  background: rgba(4, 17, 35, 0.6);
  box-shadow: none;
}

.button-light {
  border-color: white;
  background: white;
  box-shadow: none;
  color: var(--ink);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 54px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(22, 114, 255, 0.65);
}

.section-grid {
  position: relative;
}

.hero {
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero::before,
.page-hero::before {
  position: absolute;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(56, 129, 232, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 100, 230, 0.13), transparent 62%);
  content: "";
  right: -320px;
  top: -240px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(440px, 0.9fr) minmax(580px, 1.1fr);
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1,
.page-hero h1,
.contact-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fbfbfa;
  font-size: clamp(66px, 6.2vw, 100px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.hero h1 {
  text-shadow: 0 0 70px rgba(42, 120, 239, 0.08);
}

.hero-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: #aec0d4;
  font-size: 20px;
  line-height: 1.55;
}

.hero-method {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 43px;
  color: #8fa6bf;
  font-size: 14px;
}

.hero-method i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.method-cube {
  width: 22px;
  height: 22px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  box-shadow: inset 0 0 12px rgba(22, 114, 255, 0.28);
  transform: rotate(30deg);
}

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

.hero-deck {
  position: relative;
  width: 100%;
  min-height: 650px;
  perspective: 1300px;
}

.ad-card {
  position: absolute;
  overflow: hidden;
  width: 40%;
  height: 505px;
  padding: 0;
  border: 1px solid rgba(120, 169, 236, 0.55);
  border-radius: 20px;
  background: #07162b;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  transform-origin: 50% 85%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.55s var(--ease), filter 0.4s, border-color 0.4s;
}

.ad-card img {
  object-fit: contain;
  background: #030d1c;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.ad-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 12, 26, 0.05), transparent 70%, rgba(2, 8, 18, 0.22));
}

.ad-card .ad-copy,
.ad-card .ad-progress {
  display: none;
}

.ad-card-1 {
  z-index: 1;
  top: 102px;
  left: 2%;
  transform: rotate(-8deg) translateZ(-30px);
}

.ad-card-2 {
  z-index: 3;
  top: 35px;
  left: 31%;
  width: 44%;
  height: 570px;
  transform: rotate(0);
}

.ad-card-3 {
  z-index: 2;
  top: 104px;
  right: -3%;
  transform: rotate(7deg) translateZ(-35px);
}

.ad-card:hover,
.ad-card:focus-visible {
  border-color: var(--blue-bright);
  filter: brightness(1.08);
}

.ad-card-1:hover,
.ad-card-1.is-active { transform: rotate(-5deg) translateY(-14px) translateZ(20px); z-index: 4; }
.ad-card-2:hover,
.ad-card-2.is-active { transform: rotate(0) translateY(-14px) translateZ(30px); z-index: 5; }
.ad-card-3:hover,
.ad-card-3.is-active { transform: rotate(4deg) translateY(-14px) translateZ(20px); z-index: 4; }

.ad-version {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(22, 114, 255, 0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 700;
}

.ad-copy {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 44px;
  left: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ad-copy strong {
  max-width: 230px;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-copy small {
  margin-top: 10px;
  color: #adbed1;
  font-size: 12px;
}

.ad-progress {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 20px;
  left: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.ad-progress i {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue);
}

.deck-signal {
  position: absolute;
  z-index: 7;
  right: 14%;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7e9ab8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck-signal i {
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(7, 22, 43, 0.72);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  color: #b3c2d2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

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

.section {
  padding-block: 140px;
}

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

.section-heading h2,
.upgrade-copy h2,
.truth-panel blockquote,
.final-cta h2,
.inline-cta h2,
.principle-banner h2,
.founding-story h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading h2 em,
.final-cta h2 em,
.page-hero h1 em,
.contact-copy h1 em {
  color: var(--blue-bright);
  font-style: normal;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
}

.split-heading > p,
.work-heading > p,
.page-hero-copy {
  max-width: 500px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.value-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 20%, rgba(26, 115, 255, 0.13), transparent 36%),
    rgba(8, 25, 48, 0.56);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.value-card:hover {
  border-color: rgba(58, 135, 255, 0.6);
  transform: translateY(-7px);
}

.value-index,
.service-number {
  color: #6e88a5;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.value-card h3 {
  margin: 200px 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mini-stack {
  position: absolute;
  top: 82px;
  right: 36px;
  left: 36px;
  height: 120px;
}

.mini-stack i {
  position: absolute;
  width: 110px;
  height: 78px;
  border: 1px solid rgba(77, 148, 255, 0.65);
  border-radius: 11px;
  background: rgba(19, 81, 176, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.mini-stack i:nth-child(1) { left: calc(50% - 75px); transform: rotate(-12deg); }
.mini-stack i:nth-child(2) { left: calc(50% - 55px); top: 10px; background: #1168ed; }
.mini-stack i:nth-child(3) { left: calc(50% - 35px); top: 22px; transform: rotate(12deg); }

.signal-lines {
  position: absolute;
  top: 95px;
  right: 36px;
  left: 36px;
  display: flex;
  height: 95px;
  align-items: end;
  gap: 12px;
}

.signal-lines i {
  flex: 1;
  height: 25%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#2885ff, #0c50ad);
  box-shadow: 0 0 18px rgba(25, 120, 255, 0.2);
}

.signal-lines i:nth-child(2) { height: 48%; }
.signal-lines i:nth-child(3) { height: 37%; }
.signal-lines i:nth-child(4) { height: 72%; }
.signal-lines i:nth-child(5) { height: 100%; }

.cycle-mark {
  position: absolute;
  top: 58px;
  right: 0;
  left: 0;
  color: var(--blue);
  font-size: 134px;
  font-weight: 180;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 42px rgba(20, 113, 255, 0.32);
}

.work-section {
  background: var(--paper);
  color: var(--ink);
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 620;
}

.text-link span {
  color: var(--blue);
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

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

.work-card {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(5, 21, 41, 0.2);
}

.work-image {
  position: relative;
  height: auto;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  margin-bottom: 24px;
  background: #061427;
}

.work-image img {
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}

.work-card:hover .work-image img {
  transform: scale(1.035);
}

.concept-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(5, 21, 41, 0.25);
  border-radius: 5px;
  background: transparent;
  color: #33445a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.work-card > p {
  margin: 0 0 10px;
  color: #677385;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 330px;
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.work-arrow {
  position: absolute;
  right: 3px;
  bottom: 30px;
  color: var(--blue);
  font-size: 25px;
  transition: transform 0.25s var(--ease);
}

.work-card:hover .work-arrow {
  transform: translate(5px, -5px);
}

.free-upgrade {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 70px;
  border: 1px solid rgba(79, 149, 255, 0.34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 50%, rgba(26, 115, 255, 0.3), transparent 35%),
    linear-gradient(135deg, #0d3470, #0b1b34 58%, #071326);
}

.free-upgrade::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(73, 139, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 139, 234, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 55%);
  pointer-events: none;
}

.upgrade-copy {
  position: relative;
  z-index: 2;
}

.upgrade-copy h2 {
  font-size: clamp(44px, 4.3vw, 68px);
}

.upgrade-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 25px 0 32px;
  color: #adbed1;
  font-size: 17px;
  line-height: 1.7;
}

.upgrade-orbit {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(78, 155, 255, 0.4);
  border-radius: 50%;
}

.upgrade-orbit::before,
.upgrade-orbit::after {
  position: absolute;
  border: 1px solid rgba(78, 155, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.upgrade-orbit::before { inset: 28px; }
.upgrade-orbit::after { inset: 70px; background: rgba(8, 27, 56, 0.7); box-shadow: inset 0 0 40px rgba(22, 114, 255, 0.22); }

.upgrade-orbit span {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  color: #dcecff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.upgrade-orbit i {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 16px var(--blue);
}

.upgrade-orbit i:nth-child(1) { top: 8px; left: 48%; }
.upgrade-orbit i:nth-child(2) { top: 52%; right: -5px; }
.upgrade-orbit i:nth-child(3) { bottom: 28px; left: 38px; }

.process-line {
  display: grid;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.process-line article {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.process-line article:last-child {
  border-right: 0;
}

.process-line span {
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.process-line h3 {
  margin: 84px 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.truth-panel {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 50px;
  padding: 65px 0;
  border-block: 1px solid var(--line);
}

.truth-panel .eyebrow {
  align-self: start;
}

.truth-panel blockquote {
  font-size: clamp(42px, 4vw, 64px);
}

.truth-panel > div p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  overflow: hidden;
  padding-block: 150px;
  background:
    radial-gradient(circle at 80% 50%, rgba(37, 128, 255, 0.22), transparent 30%),
    #071b35;
}

.final-cta::before {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(58, 143, 255, 0.24);
  border-radius: 50%;
  content: "";
  right: -100px;
  top: -170px;
  box-shadow: 0 0 0 80px rgba(39, 120, 255, 0.05), 0 0 0 160px rgba(39, 120, 255, 0.025);
}

.final-cta .shell {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin-bottom: 38px;
  font-size: clamp(60px, 7vw, 106px);
}

.page-hero {
  overflow: hidden;
  padding: 200px 0 115px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
}

.page-hero h1,
.contact-copy h1 {
  font-size: clamp(60px, 6.5vw, 100px);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.privacy-hero .page-hero-copy {
  align-self: end;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: clamp(55px, 8vw, 130px);
}

.privacy-summary {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(22, 114, 255, .12), rgba(3, 18, 37, .65));
}

.privacy-summary > p:not(.eyebrow) {
  margin: 25px 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-summary > a,
.privacy-content a {
  color: #74b9ff;
  text-decoration: underline;
  text-decoration-color: rgba(116, 185, 255, .4);
  text-underline-offset: 4px;
}

.privacy-content {
  min-width: 0;
}

.privacy-section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-section h2 {
  margin: 0 0 18px;
  color: #fbfbfa;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.035em;
}

.privacy-section p {
  max-width: 790px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.privacy-updated {
  color: var(--blue-bright) !important;
  font-family: var(--mono);
  font-size: 12px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.honesty-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #b3c6dc;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.honesty-chip i {
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(22, 114, 255, .8);
}

.comparison {
  width: min(100%, 680px);
  margin-top: 56px;
  margin-right: auto;
  margin-left: auto;
}

.comparison-stage {
  position: relative;
  height: auto;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #071426;
}

.comparison-after,
.comparison-before {
  position: absolute;
  inset: 0;
}

.comparison-after img,
.comparison-before img {
  object-fit: contain;
  background: #030d1c;
}

.comparison-before {
  z-index: 2;
  background: #7d8792;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-before img {
  filter: grayscale(1) brightness(0.55) contrast(0.75);
}

.comparison-before::after {
  position: absolute;
  inset: 0;
  background: rgba(52, 58, 65, 0.48);
  content: "";
}

.comparison-copy {
  display: none;
}

.comparison-after .comparison-copy {
  right: 48px;
  left: auto;
  align-items: end;
  text-align: right;
}

.comparison-copy span {
  margin-bottom: 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-copy strong {
  display: none;
}

.before-clutter {
  position: absolute;
  z-index: 4;
  right: 12%;
  bottom: 13%;
  left: 12%;
}

.before-clutter i {
  display: block;
  width: 72%;
  height: 11px;
  margin-top: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
}

.before-clutter i:nth-child(2) { width: 52%; }
.before-clutter i:nth-child(3) { width: 84%; }
.before-clutter i:nth-child(4) { width: 36%; }

.comparison-handle {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: white;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  border: 1px solid white;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.comparison input {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-note {
  margin: 16px 0 0;
  color: #748ba6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  line-height: 1.6;
}

.studies {
  padding-top: 50px;
}

.study {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  padding-block: 75px;
  border-top: 1px solid var(--line);
}

.study-reverse .study-media {
  order: 2;
}

.study-media {
  min-width: 0;
}

.study-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.study-image {
  position: relative;
  height: auto;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: #071427;
}

.study-image img {
  object-fit: var(--concept-fit, contain);
  object-position: var(--concept-x, 50%) var(--concept-y, 50%);
  transform: scale(var(--concept-zoom, 1));
  transition: transform .5s ease;
}

.test-stack {
  padding-top: 65px;
  border-top: 1px solid var(--line);
}

.test-stack-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  margin-bottom: 45px;
}

.test-stack-intro h2 {
  margin: 16px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.test-stack-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.test-stack-card {
  min-width: 0;
}

.test-stack-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #061427;
}

.test-stack-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.test-stack-card > span {
  display: block;
  margin-top: 20px;
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.test-stack-card h3 {
  margin: 9px 0 8px;
  font-size: 26px;
  letter-spacing: -.035em;
}

.test-stack-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.test-stack-note {
  margin: 28px 0 0;
  color: #7f94aa;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  line-height: 1.6;
}

.concept-title {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
}

.concept-notes {
  margin: 12px 0 24px;
  color: var(--muted);
}

.study {
  scroll-margin-top: 110px;
}

.study-point {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.study-point > span {
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.study-point p {
  margin: 10px 0 0;
  color: #c3d0de;
  font-size: 20px;
  line-height: 1.45;
}

.study-copy small {
  display: block;
  color: #6f87a1;
  font-size: 11px;
  line-height: 1.5;
}

.inline-cta {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(52, 132, 255, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 50%, rgba(34, 120, 255, 0.18), transparent 28%),
    rgba(9, 31, 60, 0.66);
}

.inline-cta h2 {
  max-width: 800px;
  font-size: clamp(42px, 4vw, 64px);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(7, 25, 48, 0.58);
}

.service-card.is-featured {
  border-color: rgba(54, 139, 255, 0.62);
  background: linear-gradient(160deg, rgba(16, 71, 150, 0.58), rgba(7, 25, 48, 0.7));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.service-choice {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.service-card > p:not(.service-copy) {
  margin: 95px 0 12px;
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h2 {
  margin: 0;
  font-size: 37px;
  letter-spacing: -0.05em;
}

.service-copy {
  min-height: 84px;
  margin: 18px 0 32px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #c8d5e3;
  font-size: 14px;
}

.service-card li span {
  color: var(--blue);
}

.service-card .button {
  width: 100%;
  margin-top: auto;
}

.partnership-section {
  border-block: 1px solid var(--line);
  background: radial-gradient(circle at 50% 25%, rgba(26, 115, 255, 0.16), transparent 34rem), rgba(5, 18, 37, 0.72);
}
.plan-grid { display: grid; max-width: 1120px; margin-inline: auto; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plan-card {
  position: relative; display: flex; min-height: 720px; flex-direction: column; overflow: hidden; padding: 45px;
  border: 1px solid var(--line-strong); border-radius: 30px;
  background: linear-gradient(150deg, rgba(13, 43, 80, 0.72), rgba(4, 15, 31, 0.88));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.plan-card.is-featured {
  border-color: rgba(67, 148, 255, 0.76);
  background: radial-gradient(circle at 85% 10%, rgba(43, 129, 255, 0.28), transparent 23rem), linear-gradient(150deg, rgba(14, 56, 120, 0.84), rgba(4, 16, 34, 0.92));
  box-shadow: 0 35px 90px rgba(0, 63, 165, 0.22);
}
.plan-ribbon { position: absolute; top: 25px; right: 25px; padding: 9px 12px; border-radius: 6px; background: var(--blue); font-family: var(--font-geist-mono), monospace; font-size: 10px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.plan-term { margin: 0 0 80px; color: var(--blue-bright); font-family: var(--font-geist-mono), monospace; font-size: 11px; font-weight: 650; letter-spacing: .065em; text-transform: uppercase; }
.plan-card h3 { max-width: 420px; margin: 0; font-size: clamp(38px, 4vw, 55px); letter-spacing: -.055em; line-height: 1; }
.plan-price { display: block; margin-top: 20px; color: #d8e7f7; font-size: 17px; font-weight: 600; }
.plan-note { margin: 10px 0 0; color: var(--blue-bright); font-size: 13px; }
.plan-copy { max-width: 470px; margin: 28px 0 30px; color: var(--muted); line-height: 1.65; }
.plan-card ul { display: flex; flex-direction: column; margin: 0 0 35px; padding: 0; list-style: none; }
.plan-card li { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); color: #c9d7e6; font-size: 14px; }
.plan-card li span { color: var(--blue-bright); }
.plan-card .button { width: 100%; margin-top: auto; }
.relationship-panel { display: grid; max-width: 1120px; align-items: center; margin: 24px auto 0; grid-template-columns: 130px 1fr .9fr; gap: 35px; padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: rgba(7, 24, 47, .62); }
.relationship-mark { color: var(--blue-bright); font-size: 94px; font-weight: 250; line-height: .7; text-shadow: 0 0 35px rgba(24, 113, 255, .36); }
.relationship-panel .eyebrow { margin-bottom: 14px; }
.relationship-panel h3 { max-width: 500px; margin: 0; font-size: 32px; letter-spacing: -.045em; line-height: 1.08; }
.relationship-panel > p { margin: 0; color: var(--muted); line-height: 1.65; }
.pricing-note { max-width: 850px; margin: 28px auto 0; padding: 14px 18px; border: 1px solid var(--line); border-radius: 10px; color: #9fb3c9; font-size: 13px; line-height: 1.6; text-align: center; }
.partnership-preview { display: grid; min-height: 500px; align-items: center; grid-template-columns: 1.1fr .9fr; gap: 80px; padding: 70px; border: 1px solid rgba(68, 144, 255, .38); border-radius: 32px; background: radial-gradient(circle at 12% 18%, rgba(28, 115, 255, .25), transparent 25rem), linear-gradient(135deg, rgba(10, 42, 83, .78), rgba(5, 18, 37, .86)); }
.partnership-preview h2 { margin: 0; font-size: clamp(47px, 4.8vw, 72px); font-weight: 610; letter-spacing: -.06em; line-height: 1.02; }
.partnership-preview h2 em { color: var(--blue-bright); font-style: normal; }
.partnership-preview > div:last-child > p { margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.partnership-options { display: grid; margin-bottom: 30px; border-top: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); }
.partnership-options span { display: flex; align-items: center; gap: 12px; padding: 18px 10px 18px 0; border-bottom: 1px solid var(--line); color: #c5d4e4; font-size: 13px; }
.partnership-options span:first-child { border-right: 1px solid var(--line); }
.partnership-options strong { color: var(--blue-bright); font-family: var(--font-geist-mono), monospace; }
.partnership-options strong { min-width: 58px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.capability-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.capability-grid > div {
  position: relative;
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 60px 1fr auto;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid > div:nth-child(even) {
  border-right: 0;
}

.capability-grid span {
  color: #647e9a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.capability-grid h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.capability-grid i {
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
}

.process-detail {
  padding-top: 70px;
}

.process-detail article {
  display: grid;
  align-items: start;
  grid-template-columns: 100px 1fr 1fr 240px;
  gap: 40px;
  padding: 55px 10px;
  border-top: 1px solid var(--line);
}

.process-number {
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.process-detail h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.process-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.process-output {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(9, 31, 59, .52);
}

.process-output b {
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-output em {
  color: #a9bfd6;
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.principle-banner {
  padding: 80px;
  border-radius: 30px;
  background: var(--blue);
}

.principle-banner > p {
  margin: 0 0 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-banner h2 {
  max-width: 1050px;
  font-size: clamp(48px, 5.7vw, 86px);
}

.principle-banner > span {
  display: block;
  margin-top: 35px;
  color: rgba(255,255,255,.78);
}

.manifesto {
  padding: 25px 0 80px 13%;
  border-bottom: 1px solid var(--line);
}

.manifesto > span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto p {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

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

.principles-grid article {
  min-height: 280px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles-grid article:nth-child(even) { border-right: 0; }
.principles-grid article:nth-last-child(-n+2) { border-bottom: 0; }

.principles-grid span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.principles-grid h3 {
  margin: 90px 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.principles-grid p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.founding-story {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.founding-story .eyebrow {
  justify-content: center;
}

.founding-story > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 36px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-page {
  min-height: 100vh;
  padding: 175px 0 100px;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 50px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-points {
  border-top: 1px solid var(--line);
}

.contact-points > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-points span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.contact-points p {
  margin: 0;
  color: #c4d1df;
}

.brief-form {
  padding: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(8, 27, 52, 0.68);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brief-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  color: #d7e3ef;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(2, 12, 25, 0.52);
  color: white;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-transform: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: #8094aa;
  opacity: 1;
}

.brief-form input[type="file"] {
  height: auto;
  min-height: 68px;
  padding: 16px;
  color: #c2d1df;
  font-size: 15px;
}

.brief-form input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 11px 15px;
  border: 1px solid rgba(70, 143, 248, .5);
  border-radius: 7px;
  background: rgba(22, 114, 255, .16);
  color: #eaf3ff;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.field-help {
  color: #91a6bb;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.brief-form input {
  height: 60px;
  padding: 0 17px;
}

.brief-form textarea {
  min-height: 170px;
  padding: 16px 17px;
  resize: vertical;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 114, 255, 0.13);
}

.brief-form .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: #91a6bb;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  padding: 80px 0 25px;
  border-top: 1px solid var(--line);
  background: #020914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-note {
  max-width: 350px;
  margin: 22px 0 0;
  color: #778da5;
  line-height: 1.6;
}

.footer-trust {
  max-width: 460px;
  margin: 14px 0 0;
  color: #7890a9;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  margin: 0 0 10px;
  color: #5f7792;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #bdcbd9;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #546b84;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .shell { width: min(100% - 56px, 1180px); }
  .hero { min-height: 840px; }
  .hero-grid { grid-template-columns: minmax(390px, .9fr) minmax(480px, 1.1fr); }
  .hero h1 { font-size: clamp(62px, 7vw, 84px); }
  .hero-deck { min-height: 560px; transform: scale(.92); transform-origin: center; }
  .value-card { min-height: 390px; }
  .work-image { height: 470px; }
  .study { gap: 50px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 940px) {
  .shell { width: min(100% - 42px, 880px); }
  .site-header { position: absolute; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    z-index: 50;
    top: 82px;
    right: 21px;
    left: 21px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100dvh - 105px);
    overflow-y: auto;
    padding: 18px 22px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(3, 13, 28, 0.96);
    box-shadow: 0 30px 80px rgba(0,0,0,.62);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }
  .nav-links.is-open { display: flex; animation: menu-in .3s var(--ease) both; }
  .nav-links > a:not(.button),
  .nav-links > li > a { display: block; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav-links .button { width: 100%; margin-top: 18px; }
  html.menu-open,
  html.menu-open body { overflow: hidden; }
  .hero { padding: 155px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { margin-top: 35px; }
  .hero-deck { min-height: 590px; transform: none; }
  .split-heading,
  .page-hero-grid,
  .privacy-layout,
  .truth-panel,
  .contact-grid { grid-template-columns: 1fr; }

  .privacy-summary {
    position: static;
  }
  .value-grid,
  .service-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 360px; }
  .value-card h3 { margin-top: 170px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; }
  .work-card:last-child .work-image { height: auto; }
  .free-upgrade { grid-template-columns: .65fr 1.35fr; padding: 48px; }
  .upgrade-orbit { width: 220px; height: 220px; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line article:nth-child(2) { border-right: 0; }
  .process-line article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .truth-panel { gap: 35px; }
  .page-hero { padding-top: 165px; }
  .study,
  .study.study-reverse { grid-template-columns: 1fr; }
  .study-reverse .study-media { order: 0; }
  .study-image { height: auto; }
  .test-stack-intro { grid-template-columns: 1fr; gap: 24px; }
  .process-detail article { grid-template-columns: 70px 1fr; }
  .process-detail p,
  .process-output { grid-column: 2; }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px, 620px); }
  .header-inner { min-height: 76px; }
  .brand { font-size: 15px; gap: 8px; }
  .brand-mark { transform: scale(.82) skewY(-16deg); }
  .hero { min-height: auto; padding: 132px 0 62px; }
  .hero h1,
  .page-hero h1,
  .contact-copy h1 { font-size: clamp(51px, 15vw, 68px); letter-spacing: -0.065em; }
  .hero-lede { font-size: 17px; }
  .button-row .button { width: 100%; }
  .button-row { gap: 12px; }
  .hero-method { flex-wrap: wrap; font-size: 12px; }
  .hero-deck { min-height: 470px; margin-top: 10px; }
  .ad-card { width: 55%; height: 370px; border-radius: 15px; }
  .ad-card-1 { top: 65px; left: -2%; }
  .ad-card-2 { top: 25px; left: 22%; width: 58%; height: 420px; }
  .ad-card-3 { top: 67px; right: -3%; }
  .ad-copy { right: 12px; bottom: 33px; left: 12px; }
  .ad-copy strong { font-size: 18px; }
  .ad-copy small { display: none; }
  .ad-version { top: 12px; left: 12px; }
  .ad-progress { right: 12px; bottom: 14px; left: 12px; }
  .deck-signal { display: none; }
  .section { padding-block: 90px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2,
  .upgrade-copy h2,
  .truth-panel blockquote,
  .inline-cta h2 { font-size: clamp(40px, 12vw, 56px); }
  .split-heading { gap: 30px; }
  .value-grid { gap: 12px; }
  .work-heading { align-items: start; flex-direction: column; gap: 30px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; }
  .work-image,
  .work-card:last-child .work-image { height: auto; }
  .free-upgrade { grid-template-columns: 1fr; padding: 35px 24px; }
  .upgrade-orbit { width: 190px; height: 190px; margin: 0 auto 18px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-line article:last-child { border-bottom: 0; }
  .process-line h3 { margin-top: 55px; }
  .final-cta { padding-block: 100px; }
  .final-cta h2 { font-size: clamp(52px, 15vw, 74px); }
  .page-hero { padding: 140px 0 80px; }
  .page-hero-grid { gap: 35px; }
  .comparison-stage { height: auto; border-radius: 20px; }
  .comparison-copy { top: 22px; left: 16px; max-width: 42%; }
  .comparison-after .comparison-copy { right: 16px; left: auto; }
  .comparison-copy strong { display: none; }
  .comparison-copy span { margin: 0; font-size: 10px; line-height: 1.35; }
  .honesty-chip { align-items: flex-start; font-size: 10px; line-height: 1.45; }
  .study { gap: 30px; padding-block: 50px; }
  .study-image { height: auto; border-radius: 18px; }
  .test-stack-grid { grid-template-columns: 1fr; gap: 42px; }
  .inline-cta { min-height: 0; align-items: flex-start; flex-direction: column; padding: 36px 24px; }
  .service-card { min-height: 600px; padding: 28px 24px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid > div { border-right: 0; grid-template-columns: 45px 1fr auto; padding: 22px 12px; }
  .capability-grid h3 { font-size: 20px; }
  .process-detail article { grid-template-columns: 44px 1fr; gap: 18px; padding: 38px 0; }
  .process-detail h2 { font-size: 30px; }
  .principle-banner { padding: 50px 24px; }
  .principle-banner h2 { font-size: 42px; }
  .manifesto { padding: 0 0 55px; }
  .manifesto p { font-size: 38px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line) !important; padding: 28px 8px; }
  .principles-grid h3 { margin-top: 65px; }
  .contact-page { padding: 135px 0 75px; }
  .contact-grid { gap: 50px; }
  .partnership-preview { grid-template-columns: 1fr; gap: 40px; padding: 38px 24px; }
  .partnership-options { grid-template-columns: 1fr; }
  .partnership-options span:first-child { border-right: 0; }
  .plan-card { min-height: 670px; padding: 34px 24px; }
  .plan-term { margin-bottom: 65px; }
  .relationship-panel { grid-template-columns: 1fr; padding: 32px 24px; }
  .relationship-mark { font-size: 70px; }
  .brief-form { padding: 28px 18px; border-radius: 20px; }
  .brief-form label { font-size: 14px; }
  .brief-form input,
  .brief-form textarea { font-size: 16px; }
  .brief-form input { height: 58px; }
  .brief-form textarea { min-height: 165px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 390px) {
  .shell { width: min(100% - 24px, 360px); }
  .hero h1,
  .page-hero h1,
  .contact-copy h1 { font-size: clamp(46px, 14.5vw, 58px); }
  .hero-lede { font-size: 16px; }
  .hero-method { gap: 9px; }
  .ad-card { width: 59%; }
  .ad-card-2 { left: 20%; width: 61%; }
  .ad-card-3 { right: -7%; }
  .nav-links { right: 12px; left: 12px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .pointer-light { display: none; }
}
