:root {
  color-scheme: light dark;
  --font-display: "Songti SC", STSong, "Noto Serif CJK SC", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --night: #070b12;
  --night-2: #101721;
  --graphite: #15191f;
  --ink: #12151c;
  --text: #3d4856;
  --muted: #687584;
  --paper: #f4efe5;
  --paper-2: #ebe1d1;
  --white: #ffffff;
  --line: rgba(18, 21, 28, 0.14);
  --line-strong: rgba(18, 21, 28, 0.22);
  --line-dark: rgba(232, 239, 249, 0.16);
  --blue: #245dff;
  --blue-deep: #173eb4;
  --aqua: #00b8a0;
  --gold: #c8923d;
  --copper: #9f5d35;
  --mist: #eef4ff;
  --shadow: 0 34px 88px rgba(7, 11, 18, 0.18);
  --shadow-tight: 0 18px 42px rgba(7, 11, 18, 0.14);
}

html[lang="en"] {
  --font-display: "Hoefler Text", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

html.has-js {
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--night) 0, var(--night) 720px, var(--paper) 720px, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(36, 93, 255, 0.08), transparent 34%);
  background-size: 72px 72px, 72px 72px, 100% 780px;
  background-position: center top;
}

body.nav-open {
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  width: min(1220px, calc(100% - 44px));
  margin: 18px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 11, 18, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(8, 12, 18, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(36, 93, 255, 0.28));
}

.brand span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

:focus-visible {
  outline: 3px solid rgba(0, 184, 160, 0.72);
  outline-offset: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(245, 249, 255, 0.72);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 39px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 249, 255, 0.72);
  border-radius: 8px;
  cursor: pointer;
}

.language-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 31px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.language-toggle span.is-active {
  background: var(--white);
  color: var(--night);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(36, 93, 255, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-cta,
.button,
.language-toggle,
.menu-button {
  user-select: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: linear-gradient(135deg, #3871ff, #245dff);
  box-shadow: 0 22px 42px rgba(36, 93, 255, 0.34);
}

.button.secondary:hover {
  border-color: rgba(0, 184, 160, 0.58);
  color: var(--aqua);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 86px;
  left: 22px;
  right: 22px;
  z-index: 49;
  display: none;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 18, 0.96);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 10px;
  color: rgba(245, 249, 255, 0.88);
  font-weight: 800;
}

.section-band {
  width: 100%;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  min-height: 84svh;
  padding-top: 132px;
  padding-bottom: 56px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(7, 11, 18, 0.96) 0%, rgba(9, 17, 31, 0.98) 54%, rgba(21, 25, 31, 0.96) 100%),
    var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px),
    linear-gradient(118deg, transparent 0 49%, rgba(36, 93, 255, 0.24) 49% 50%, transparent 50%),
    linear-gradient(118deg, transparent 0 57%, rgba(0, 184, 160, 0.18) 57% 57.5%, transparent 57.5%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--aqua), var(--blue), var(--gold));
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hero .eyebrow,
.definition .eyebrow,
.audience .eyebrow,
.contact .eyebrow {
  color: var(--aqua);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 72px;
  line-height: 1.04;
  max-width: none;
  white-space: pre-line;
  text-wrap: balance;
}

html[lang="en"] h1 {
  font-size: 58px;
  line-height: 1.03;
  max-width: none;
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.12;
  max-width: 16ch;
}

html[lang="en"] h2 {
  max-width: 19ch;
}

h3 {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 850;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(245, 249, 255, 0.76);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(245, 249, 255, 0.76);
  font-size: 14px;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: 24px;
}

.hero-proof-grid article {
  position: relative;
  min-height: 104px;
  padding: 18px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.hero-proof-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}

.hero-proof-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.hero-proof-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.hero-proof-grid article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.hero-proof-grid span {
  color: rgba(245, 249, 255, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 586px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 48px 20px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.18) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.18) 50%, transparent 50.2%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 48px);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 98px 70px;
  z-index: -1;
  border: 1px solid rgba(0, 184, 160, 0.24);
  border-radius: 50%;
  transform: rotate(18deg) scaleX(1.25);
}

#gravity-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 214px;
  transform: translate(-50%, -50%);
  opacity: 0.98;
  filter:
    drop-shadow(0 28px 46px rgba(36, 93, 255, 0.3))
    drop-shadow(0 0 24px rgba(0, 184, 160, 0.14));
}

.section-heading {
  max-width: 800px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading p:not(.eyebrow),
.definition-copy p,
.about p,
.contact-copy p {
  color: var(--text);
  font-size: 18px;
}

.shift {
  background:
    linear-gradient(180deg, #fbf8f1, var(--paper));
  padding-top: 82px;
}

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

.timeline article,
.solution-steps article,
.capability-grid article {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 11, 18, 0.07);
}

.timeline article::before,
.solution-steps article::before,
.capability-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  border-radius: 8px 8px 0 0;
}

.timeline article {
  min-height: 220px;
  padding: 32px;
}

.timeline article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.timeline article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.timeline span,
.solution-steps span,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 93, 255, 0.18);
  background: rgba(36, 93, 255, 0.08);
  color: var(--blue);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.timeline p,
.solution-steps p,
.capability-grid p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.definition {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 11, 18, 0.96), rgba(16, 23, 33, 0.98)),
    var(--night);
  color: var(--white);
}

.definition::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 84px),
    linear-gradient(120deg, transparent 0 58%, rgba(200, 146, 61, 0.18) 58% 58.6%, transparent 58.6%);
}

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

.definition h2,
.definition-copy p,
.definition blockquote {
  color: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}

blockquote {
  margin: 36px 0 0;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--aqua);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.42;
  font-weight: 700;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border-radius: 0 8px 8px 0;
}

.diagnosis {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #101721, #15191f);
  color: var(--white);
}

.diagnosis::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.048) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 70px),
    linear-gradient(125deg, transparent 0 47%, rgba(0, 184, 160, 0.18) 47% 47.6%, transparent 47.6%);
}

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

.diagnosis h2,
.diagnosis h3 {
  color: var(--white);
}

.diagnosis .section-heading p:not(.eyebrow),
.diagnosis-grid p {
  color: rgba(245, 249, 255, 0.68);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.diagnosis-grid article {
  min-height: 244px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.diagnosis-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 184, 160, 0.26);
  background: rgba(0, 184, 160, 0.1);
  color: var(--aqua);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.solution {
  background:
    linear-gradient(180deg, var(--paper), #fbf8f1);
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-steps article {
  min-height: 280px;
  padding: 30px 28px;
}

.solution-steps article:nth-child(2)::before,
.capability-grid article:nth-child(2n)::before {
  background: linear-gradient(90deg, var(--aqua), var(--blue));
}

.solution-steps article:nth-child(3)::before,
.capability-grid article:nth-child(3n)::before {
  background: linear-gradient(90deg, var(--gold), var(--copper));
}

.solution-steps article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.solution-steps article:nth-child(2) span,
.process-list li:nth-child(2) span {
  border-color: rgba(0, 184, 160, 0.24);
  background: rgba(0, 184, 160, 0.1);
  color: #008f7f;
}

.solution-steps article:nth-child(3) span,
.process-list li:nth-child(3) span {
  border-color: rgba(200, 146, 61, 0.28);
  background: rgba(200, 146, 61, 0.12);
  color: #925f1c;
}

.solution-steps article:nth-child(4) span,
.process-list li:nth-child(4) span {
  border-color: rgba(36, 93, 255, 0.24);
  background: rgba(36, 93, 255, 0.1);
  color: var(--blue);
}

.capabilities {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #15191f, #0f141d);
  color: var(--white);
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 68px),
    linear-gradient(135deg, rgba(0, 184, 160, 0.1), transparent 42%);
}

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

.capabilities h2,
.capabilities h3 {
  color: var(--white);
}

.capabilities .section-heading p:not(.eyebrow),
.capabilities .capability-grid p {
  color: rgba(245, 249, 255, 0.66);
}

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

.capability-grid article {
  min-height: 184px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 160, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.icon-line {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  border-radius: 8px;
}

.capability-grid article:nth-child(2n) .icon-line {
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.capability-grid article:nth-child(3n) .icon-line {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.audience {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, #07130f 0%, #13211c 54%, #151510 100%);
  color: var(--white);
}

.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.052) 0 1px, transparent 1px 76px),
    linear-gradient(118deg, transparent 0 43%, rgba(0, 184, 160, 0.2) 43% 43.6%, transparent 43.6%);
}

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

.audience h2,
.audience .eyebrow {
  color: var(--white);
}

.audience .eyebrow {
  opacity: 0.82;
}

.audience-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #e7f4ee;
  font-size: 19px;
  border-radius: 8px;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--aqua);
  border-radius: 50%;
}

.process {
  background:
    linear-gradient(180deg, #fbf8f1, var(--paper-2));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(7, 11, 18, 0.08);
}

.process-list li {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.42));
}

.process-list li:last-child {
  border-right: 0;
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
}

.about {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 78px;
  align-items: center;
  background:
    linear-gradient(180deg, #fffdf8, #f8f2e8);
}

.about img {
  width: 292px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.6));
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: start;
  background:
    linear-gradient(118deg, rgba(7, 11, 18, 0.96), rgba(17, 23, 32, 0.98)),
    var(--night);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-copy {
  max-width: 600px;
}

.contact-copy p {
  color: rgba(245, 249, 255, 0.72);
}

.contact-outcomes {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-outcomes li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 249, 255, 0.84);
  border-radius: 8px;
}

.contact-outcomes li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 23px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 184, 160, 0.34);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 249, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(0, 184, 160, 0.14);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(245, 249, 255, 0.62);
  font-size: 13px;
}

.site-footer {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #fffdf8;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-legal {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px 16px;
}

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

.site-footer p {
  margin: 0;
}

.icp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(36, 93, 255, 0.2);
  background: rgba(36, 93, 255, 0.07);
  color: var(--ink);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(7, 11, 18, 0.06);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.icp-link:hover {
  border-color: rgba(36, 93, 255, 0.36);
  background: rgba(36, 93, 255, 0.1);
  color: var(--blue);
  transform: translateY(-1px);
}

html.has-js .reveal {
  transform: translateY(0);
  transition:
    transform 620ms ease;
}

html.has-js .reveal.is-visible {
  transform: translateY(0);
}

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

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

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: block;
  }

  body.nav-open .mobile-nav {
    display: block;
  }

  .hero,
  .split-layout,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-visual {
    min-height: 420px;
  }

  h1 {
    font-size: 52px;
  }

  html[lang="en"] h1 {
    font-size: 48px;
    max-width: none;
  }

  h2 {
    font-size: 36px;
    max-width: 18ch;
  }

  .timeline,
  .solution-steps,
  .diagnosis-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  body::before {
    background-size: 52px 52px, 52px 52px, 100% 680px;
  }

  .site-header {
    width: calc(100% - 28px);
    margin-top: 12px;
    gap: 10px;
    padding: 9px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .language-toggle span {
    min-width: 31px;
    padding: 0 6px;
  }

  .mobile-nav {
    top: 76px;
    left: 14px;
    right: 14px;
  }

  .section-band {
    padding: 78px 20px;
  }

  .hero {
    display: block;
    min-height: 78svh;
    padding-top: 100px;
    padding-bottom: 26px;
  }

  html[lang="en"] .hero {
    padding-top: 92px;
    padding-bottom: 14px;
  }

  .hero-copy::before {
    margin-bottom: 24px;
  }

  h1 {
    font-size: 40px;
  }

  html[lang="en"] h1 {
    font-size: 36px;
    max-width: none;
  }

  h2 {
    font-size: 31px;
    max-width: none;
  }

  html[lang="en"] h2 {
    max-width: none;
  }

  h3 {
    font-size: 18px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .definition-copy p,
  .about p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .trust-line,
  .hero-proof-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-proof-grid article {
    min-height: auto;
  }

  .hero-visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -132px;
    z-index: 0;
    min-height: 360px;
    opacity: 0.48;
  }

  html.has-js .hero-visual.reveal.is-visible {
    opacity: 0.48;
  }

  .hero-proof-grid article {
    background: rgba(7, 11, 18, 0.72);
    backdrop-filter: blur(10px);
  }

  .hero-visual::before {
    inset: 36px 4px;
  }

  .hero-visual::after {
    inset: 74px 28px;
  }

  .hero-mark {
    width: 126px;
  }

  .timeline,
  .solution-steps,
  .diagnosis-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .solution-steps article,
  .diagnosis-grid article {
    min-height: auto;
  }

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

  .section-heading h2 {
    max-width: none;
  }

  .shift {
    padding-top: 54px;
  }

  .split-layout {
    gap: 34px;
  }

  blockquote {
    padding: 22px;
    font-size: 21px;
  }

  .audience-list li {
    font-size: 17px;
  }

  .about {
    gap: 40px;
  }

  .about img {
    width: 220px;
    padding: 20px;
  }

  .contact {
    gap: 38px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    margin-top: 0;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  h1 {
    font-size: 36px;
  }

  html[lang="en"] .hero {
    padding-top: 84px;
    padding-bottom: 0;
  }

  html[lang="en"] h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .shift {
    padding-top: 40px;
  }
}
