:root {
  --ink: #061019;
  --ink-soft: #0c1b29;
  --paper: #eef2f3;
  --paper-deep: #dfe7e8;
  --cyan: #61e5ff;
  --blue: #1688ff;
  --violet: #745cff;
  --muted: #67757e;
  --line: rgba(6, 16, 25, 0.14);
  --content-max: 1280px;
  --page-gutter: 48px;
  --section-space: 120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #03111a;
  background: var(--cyan);
}

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

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

.section-shell {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 94px;
  padding: 0 max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(97, 229, 255, 0.22);
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand-type strong {
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand-type small {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.22em;
  opacity: 0.58;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

nav > a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

nav > a:not(.nav-contact)::after {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: width 180ms ease;
}

nav > a:hover {
  opacity: 1;
}

nav > a:hover::after {
  width: 100%;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 14px 11px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  opacity: 1;
}

.nav-contact span {
  color: var(--blue);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 920px;
  height: 100svh;
  overflow: hidden;
  background: #030a12;
  color: white;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: hero-breathe 13s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1.08); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 15, 0.97) 0%, rgba(2, 8, 15, 0.84) 30%, rgba(2, 8, 15, 0.18) 68%, rgba(2, 8, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(2, 8, 15, 0.85) 0%, transparent 34%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(97, 229, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: -8vw;
  width: 44vw;
  aspect-ratio: 1;
  box-shadow: 0 0 90px rgba(22, 136, 255, 0.08) inset;
  animation: orbit-pulse 5s ease-in-out infinite;
}

.orbit-two {
  right: 3.5vw;
  width: 21vw;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-spin 32s linear infinite;
}

@keyframes orbit-pulse {
  50% { opacity: 0.35; transform: scale(1.04); }
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 44px auto 0;
}

.eyebrow,
.lead-label,
.section-kicker,
.stat-label,
.capability-card small,
.value-item small {
  font-family: "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(62px, 6.4vw, 104px);
  font-weight: 650;
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 8%, #8deaff 54%, #8e80ff 100%);
  background-clip: text;
  font-style: normal;
  font-weight: 360;
}

.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 156px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #02121c;
  background: var(--cyan);
  box-shadow: 0 10px 36px rgba(60, 219, 255, 0.18);
}

.button-primary:hover {
  background: #a3f1ff;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero-status {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 50% { opacity: 0.32; } }

.status-code {
  margin-left: 16px;
  opacity: 0.62;
}

.scroll-note {
  position: absolute;
  z-index: 2;
  right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  bottom: 33px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.scroll-note i {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-note i::after {
  position: absolute;
  inset: 0;
  width: 50%;
  background: var(--cyan);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateX(-120%); }
  to { transform: translateX(240%); }
}

.section-kicker {
  display: grid;
  grid-template-columns: 24px max-content minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #879196;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.section-kicker p {
  margin: 0;
}

.section-kicker span {
  color: var(--blue);
}

.section-kicker i {
  height: 1px;
  margin-left: 10px;
  background: var(--line);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.38);
}

.section-kicker.light span {
  color: var(--cyan);
}

.section-kicker.light i {
  background: rgba(255, 255, 255, 0.12);
}

.intro-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: clamp(72px, 9vw, 132px);
  margin-top: 76px;
}

.lead-label {
  margin: 0 0 23px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.intro-copy h2,
.capability-heading h2,
.culture-sticky h2,
.careers-content h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 580;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.intro-copy h2 span,
.culture-sticky h2 span {
  color: #6a7a83;
  font-weight: 340;
}

.intro-detail {
  padding-top: 38px;
  color: #485a64;
  font-size: 16px;
  line-height: 2;
}

.intro-detail p {
  margin: 0 0 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 304px;
  padding: 30px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.14);
}

.stat-card-featured {
  color: white;
  background: var(--ink-soft);
}

.stat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #879196;
  font-size: 9px;
  letter-spacing: 0.16em;
}

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

.stat-card-featured .stat-label {
  color: rgba(255, 255, 255, 0.36);
}

.stat-card-featured .stat-label i {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.stat-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: auto;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.065em;
}

.stat-card strong sup {
  position: relative;
  top: -20px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 400;
}

.stat-card p {
  position: relative;
  z-index: 2;
  margin: 13px 0 4px;
  color: #78868d;
  font-size: 13px;
}

.stat-card-featured p {
  color: rgba(255, 255, 255, 0.42);
}

.stat-radar {
  position: absolute;
  right: -84px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(97, 229, 255, 0.14);
  border-radius: 50%;
}

.stat-radar::before,
.stat-radar::after,
.stat-radar span {
  position: absolute;
  border: 1px solid rgba(97, 229, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.stat-radar::before { inset: 33px; }
.stat-radar::after { inset: 66px; }
.stat-radar span:nth-child(1) { inset: 99px; background: var(--cyan); box-shadow: 0 0 34px var(--cyan); }

.year-track {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.year-track i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--blue), rgba(22, 136, 255, 0.08));
}

.globe-lines {
  position: absolute;
  right: -26px;
  bottom: -58px;
  width: 190px;
  height: 150px;
  border: 1px solid rgba(22, 136, 255, 0.22);
  border-radius: 50%;
}

.globe-lines::before,
.globe-lines::after {
  position: absolute;
  inset: 0 50%;
  width: 1px;
  background: rgba(22, 136, 255, 0.18);
  content: "";
}

.globe-lines::after {
  inset: 50% 0;
  width: auto;
  height: 1px;
}

.capability-section {
  padding: var(--section-space) 0;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 136, 255, 0.17), transparent 28%),
    linear-gradient(135deg, #07111b, #0b1723 56%, #07131e);
}

.capability-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.54fr);
  gap: clamp(72px, 9vw, 132px);
  align-items: end;
  margin-top: 76px;
}

.capability-heading h2 {
  color: white;
}

.capability-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 15px;
  line-height: 1.9;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 506px;
  padding: 28px 34px 36px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.018);
  transition: background 260ms ease, transform 260ms ease;
}

.capability-card:hover {
  z-index: 2;
  background: rgba(22, 136, 255, 0.1);
  transform: translateY(-8px);
}

.card-number {
  color: rgba(255, 255, 255, 0.26);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.capability-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  margin: 40px auto 42px;
  border: 1px solid rgba(97, 229, 255, 0.28);
  border-radius: 50%;
}

.capability-icon::before,
.capability-icon::after {
  position: absolute;
  content: "";
}

.capability-icon::before {
  width: 50px;
  height: 50px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 26px rgba(97, 229, 255, 0.16);
}

.capability-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.capability-card:nth-child(2) .capability-icon::before {
  border-radius: 50%;
  transform: none;
}

.capability-card:nth-child(3) .capability-icon::before {
  width: 62px;
  height: 1px;
  border: 0;
  background: var(--cyan);
  transform: rotate(-28deg);
}

.capability-icon span,
.capability-icon i {
  position: absolute;
  width: 88%;
  height: 1px;
  background: rgba(97, 229, 255, 0.16);
  transform: rotate(28deg);
}

.capability-icon i {
  transform: rotate(-28deg);
}

.capability-copy small {
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.capability-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.capability-copy h3 {
  margin: 10px 0 16px;
  font-size: 28px;
  font-weight: 520;
}

.capability-copy > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.8;
}

.capability-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding-top: 28px;
  padding-left: 0;
  list-style: none;
}

.capability-copy li {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
}

.culture-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.culture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(72px, 9vw, 132px);
  margin-top: 76px;
}

.culture-sticky {
  align-self: start;
  position: sticky;
  top: 50px;
}

.culture-note {
  max-width: 420px;
  margin: 40px 0 0;
  color: #687981;
  font-size: 14px;
  line-height: 1.9;
}

.value-list {
  border-top: 1px solid var(--line);
}

.value-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: start;
  padding: 32px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 180ms ease, background 180ms ease;
}

.value-item:hover {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.value-index {
  padding-top: 9px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.value-item small {
  color: #879196;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.value-item h3 {
  margin: 6px 0 8px;
  font-size: 25px;
  font-weight: 530;
}

.value-item p {
  max-width: 520px;
  margin: 0;
  color: #6a7a82;
  font-size: 13px;
  line-height: 1.7;
}

.value-item > i {
  color: var(--blue);
  font-style: normal;
  font-size: 16px;
  transition: transform 180ms ease;
}

.value-item:hover > i {
  transform: translate(4px, -4px);
}

.careers-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: #07121e;
}

.careers-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(97, 229, 255, 0.27) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 229, 255, 0.27) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: radial-gradient(circle at 80% 50%, black, transparent 64%);
}

.careers-glow {
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 67vw;
  height: 67vw;
  border: 1px solid rgba(97, 229, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(22, 136, 255, 0.025),
    0 0 0 16vw rgba(22, 136, 255, 0.018),
    inset 0 0 160px rgba(22, 136, 255, 0.15);
}

.careers-glow::before {
  position: absolute;
  inset: 28%;
  border: 1px dashed rgba(97, 229, 255, 0.32);
  border-radius: 50%;
  content: "";
  animation: orbit-spin 38s linear infinite;
}

.careers-inner {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 0;
}

.careers-content {
  max-width: 800px;
  padding: 104px 0 116px;
}

.careers-content h2 {
  font-size: clamp(54px, 6.4vw, 90px);
}

.careers-content > p:not(.lead-label) {
  max-width: 480px;
  margin: 34px 0 38px;
  color: rgba(255, 255, 255, 0.51);
  font-size: 15px;
  line-height: 1.9;
}

.role-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.role-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.contact-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(64px, 8vw, 116px);
  align-items: end;
  padding: clamp(48px, 5vw, 72px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.contact-panel h2 {
  font-size: clamp(48px, 5.5vw, 76px);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-actions p {
  margin: 0 0 20px;
  color: #718087;
  font-size: 13px;
}

.contact-actions a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 16px;
  color: var(--blue);
  border-bottom: 1px solid rgba(22, 136, 255, 0.34);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
}

.contact-actions small {
  margin-top: 14px;
  color: #89949a;
  font-size: 10px;
}

footer {
  color: white;
  background: #030b13;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 65px;
  padding-bottom: 70px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand strong {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.34);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.footer-main > p {
  max-width: 300px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  justify-self: end;
  width: 100%;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.26);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.legal-page {
  min-height: 100vh;
  padding: 56px 0 100px;
  background: var(--paper);
}

.legal-header,
.legal-content {
  width: min(900px, calc(100% - 64px));
  margin-inline: auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header .brand {
  color: var(--ink);
}

.legal-back {
  color: var(--blue);
  font-size: 12px;
}

.legal-content {
  margin-top: 90px;
}

.legal-content h1 {
  margin: 0 0 12px;
  font-size: clamp(44px, 7vw, 78px);
  letter-spacing: -0.06em;
}

.legal-updated {
  margin-bottom: 64px;
  color: #849097;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 15px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #53646d;
  font-size: 14px;
  line-height: 1.9;
}

.legal-content ul {
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .section-shell,
  .hero-content {
    width: min(100% - 56px, 920px);
  }

  .site-header {
    padding-inline: 28px;
  }

  nav {
    gap: 22px;
  }

  .hero {
    min-height: 780px;
  }

  .intro-grid,
  .capability-heading,
  .culture-layout,
  .contact-panel {
    gap: 7vw;
  }

  .capability-card {
    min-height: 520px;
    padding-inline: 24px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .hero-content {
    width: calc(100% - 40px);
  }

  .site-header {
    position: absolute;
    height: 76px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-type strong {
    font-size: 16px;
  }

  .menu-button {
    position: relative;
    z-index: 42;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    width: 42px;
    padding: 12px 0;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 26px;
    height: 1px;
    background: white;
    transition: transform 180ms ease, width 180ms ease;
  }

  .menu-button span:last-child {
    width: 17px;
  }

  .menu-button.is-open span:first-child {
    width: 24px;
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    width: 24px;
    transform: translateY(-3.5px) rotate(-45deg);
  }

  nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 76px 30px 40px;
    background: rgba(3, 11, 19, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav > a {
    font-size: 24px;
    opacity: 0.8;
  }

  .nav-contact {
    width: 100%;
    margin-top: 18px;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    align-items: flex-end;
  }

  .hero-art {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 8, 15, 0.99) 0%, rgba(2, 8, 15, 0.72) 54%, rgba(2, 8, 15, 0.18) 100%),
      linear-gradient(90deg, rgba(2, 8, 15, 0.7), transparent);
  }

  .hero-grid {
    background-size: 56px 56px;
    mask-image: linear-gradient(0deg, black, transparent 75%);
  }

  .hero-content {
    margin-bottom: 102px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    line-height: 1.11;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-intro br {
    display: none;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-width: 138px;
  }

  .hero-status {
    bottom: 22px;
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .status-code,
  .scroll-note {
    display: none;
  }

  .orbit-one {
    top: 18%;
    right: -36vw;
    width: 94vw;
  }

  .orbit-two {
    top: 26%;
    right: -10vw;
    width: 52vw;
  }

  .intro-section,
  .capability-section,
  .culture-section {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .section-kicker {
    grid-template-columns: 22px max-content 1fr;
    gap: 10px;
  }

  .intro-grid,
  .capability-heading,
  .culture-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .capability-heading,
  .culture-layout {
    gap: 34px;
    margin-top: 54px;
  }

  .intro-copy h2,
  .capability-heading h2,
  .culture-sticky h2,
  .careers-content h2,
  .contact-panel h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .intro-detail {
    padding-top: 0;
    font-size: 14px;
  }

  .stat-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    margin-top: 54px;
  }

  .stat-card {
    min-height: 250px;
  }

  .stat-card strong {
    margin-top: 45px;
  }

  .capability-heading > p {
    max-width: 480px;
  }

  .capability-list {
    margin-top: 52px;
  }

  .capability-card {
    min-height: 440px;
    padding: 26px;
  }

  .capability-icon {
    margin-top: 30px;
    margin-bottom: 34px;
  }

  .culture-sticky {
    position: static;
  }

  .culture-note {
    margin-top: 24px;
  }

  .value-list {
    margin-top: 20px;
  }

  .value-item {
    grid-template-columns: 30px 1fr 20px;
    gap: 13px;
  }

  .careers-inner {
    padding-top: 76px;
  }

  .careers-content {
    padding: 78px 0 90px;
  }

  .careers-content h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .careers-glow {
    right: -70vw;
    bottom: -20vw;
    width: 145vw;
    height: 145vw;
  }

  .role-strip {
    gap: 18px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .role-strip span {
    flex: 0 0 auto;
  }

  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-panel {
    gap: 54px;
    padding: 38px 24px;
  }

  .contact-actions a {
    font-size: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-links {
    grid-column: auto;
    min-width: 0;
  }

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

  .legal-header,
  .legal-content {
    width: calc(100% - 40px);
  }

  .legal-header {
    margin-top: -20px;
  }

  .legal-content {
    margin-top: 72px;
  }
}

@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
