@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap");

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("material-symbols-rounded-subset.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #000;
  --bg-soft: #070807;
  --panel: #101210;
  --panel-2: #151715;
  --panel-3: #1b1d1b;
  --ink: #f5f7f6;
  --muted: rgba(245, 247, 246, 0.64);
  --faint: rgba(245, 247, 246, 0.52);
  --line: rgba(245, 247, 246, 0.12);
  --line-strong: rgba(245, 247, 246, 0.2);
  --paper: #f3f4ef;
  --paper-2: #e9ebe7;
  --paper-ink: #101411;
  --paper-muted: rgba(16, 20, 17, 0.62);
  --green: #b4ff3f;
  --violet: #a98cff;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --header-height: 62px;
  --page-gutter: clamp(16px, 3vw, 48px);
  --content: 1320px;
  --font: "Satoshi", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  scrollbar-color: rgba(245, 247, 246, 0.26) #050505;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid #101411;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--green);
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  font-style: normal;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--paper-ink);
  transform: translateY(-160%);
  transition: transform 240ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#particle-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
}

.site-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), 1160px);
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px 0 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 9, 8, 0.74);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(-50%);
  transition: width 500ms var(--ease-out), background 350ms ease, border-color 350ms ease;
}

.site-header.is-scrolled {
  width: min(calc(100% - 48px), 1040px);
  border-color: var(--line-strong);
  background: rgba(5, 6, 5, 0.9);
}

.brand {
  display: inline-flex;
  min-width: 118px;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 100px;
  height: 23px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(5);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item,
.region-trigger,
.mobile-menu-trigger {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 260ms ease, background 260ms ease, transform 450ms var(--ease-out);
}

.nav-item:hover,
.nav-item[aria-current="page"] {
  background: rgba(245, 247, 246, 0.1);
  color: var(--ink);
}

.nav-item[aria-current="page"]::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(180, 255, 63, 0.7);
  content: "";
}

.header-actions {
  position: relative;
  display: flex;
  min-width: 154px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.region-trigger {
  min-width: 116px;
  border: 1px solid var(--line);
  background: rgba(245, 247, 246, 0.05);
  color: var(--ink);
}

.region-trigger[aria-expanded="true"] {
  background: var(--paper);
  color: var(--paper-ink);
}

.region-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 188px;
  gap: 4px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 13, 12, 0.96);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  transition: opacity 260ms ease, transform 500ms var(--ease-out);
}

.region-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.region-option {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.region-option:hover,
.region-option[aria-selected="true"] {
  background: rgba(245, 247, 246, 0.09);
  color: var(--ink);
}

.mobile-menu-trigger {
  display: none;
  width: 42px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
}

.mobile-drawer {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 96px 16px 24px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 300ms ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-inner {
  display: grid;
  height: 100%;
  align-content: start;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0b0c0b;
  transform: translateY(24px);
  transition: transform 520ms var(--ease-out);
}

.mobile-drawer.is-open .mobile-drawer-inner {
  transform: translateY(0);
}

.mobile-nav-link {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.page-main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - var(--page-gutter) * 2), var(--content));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  padding: clamp(126px, 14vh, 180px) var(--page-gutter) clamp(76px, 9vh, 118px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-inner {
  display: grid;
  width: min(100%, var(--content));
  min-height: calc(100svh - 240px);
  margin: 0 auto;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(180, 255, 63, 0.65);
  content: "";
}

.hero h1,
.display-title {
  margin: 0;
  font-size: clamp(58px, 7.3vw, 118px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 .muted-word,
.display-title .muted-word {
  color: rgba(245, 247, 246, 0.48);
}

.hero .display-cn {
  max-width: 860px;
  font-size: clamp(54px, 6.6vw, 106px);
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  text-wrap: pretty;
}

body[data-page="careers"] .careers-typewriter-grid {
  display: inline-grid;
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}

body[data-page="careers"] .careers-typewriter-visual,
body[data-page="careers"] .careers-typewriter-reserve {
  grid-area: 1 / 1;
}

body[data-page="careers"] .careers-typewriter-reserve {
  visibility: hidden;
}

body[data-page="careers"] .careers-typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.08em;
  margin-left: 4px;
  border-radius: 999px;
  background: #fff;
  vertical-align: -0.13em;
  animation: careers-typewriter-cursor-blink 720ms steps(1, end) infinite;
}

@keyframes careers-typewriter-cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(245, 247, 246, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 260ms ease, background 260ms ease, color 260ms ease, transform 620ms var(--ease-out);
}

.button:hover {
  border-color: rgba(245, 247, 246, 0.36);
  background: rgba(245, 247, 246, 0.11);
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--paper-ink);
}

.button-primary:hover {
  border-color: #fff;
  background: #fff;
}

.button-compact {
  min-height: 44px;
  border-radius: 14px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.64));
  content: "";
  pointer-events: none;
}

.hero-image-frame picture,
.team-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 1200ms var(--ease-out), filter 600ms ease;
}

.hero-image-frame:hover img {
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.025);
}

.hero-image-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.hero-image-caption p {
  max-width: 340px;
  margin: 0;
  color: rgba(245, 247, 246, 0.78);
  font-size: 13px;
}

.orbit-stage {
  position: relative;
  width: min(90vw, 920px);
  aspect-ratio: 1.8 / 1;
  margin: 36px auto 0;
}

.orbit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.company-hero .hero-inner {
  align-content: center;
  text-align: center;
}

.company-hero .hero-copy {
  max-width: 1040px;
  margin-inline: auto;
}

.company-hero .hero-lead,
.company-hero .hero-actions {
  margin-inline: auto;
  justify-content: center;
}

.company-hero .hero-lead {
  max-width: 680px;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 170px) 0;
}

.section-tight {
  padding-block: clamp(74px, 8vw, 118px);
}

.section-light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-light .eyebrow,
.section-light .section-copy,
.section-light .muted,
.section-light .feature-copy,
.section-light .metric-label {
  color: var(--paper-muted);
}

.section-light .eyebrow::before {
  background: #161a17;
  box-shadow: none;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(32px, 7vw, 116px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.section-title {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-title-small {
  font-size: clamp(38px, 4.4vw, 66px);
}

.section-copy {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid currentColor;
  border-color: rgba(16, 20, 17, 0.14);
}

.metric {
  padding: 28px 26px;
  border-right: 1px solid rgba(16, 20, 17, 0.14);
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 124px;
}

.story-stack {
  display: grid;
  gap: 16px;
}

.story-card {
  min-height: 280px;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 246, 0.045);
  transition: border-color 350ms ease, background 350ms ease, transform 700ms var(--ease-out);
}

.story-card:hover {
  border-color: var(--line-strong);
  background: rgba(245, 247, 246, 0.065);
  transform: translateY(-6px);
}

.story-index {
  display: block;
  margin-bottom: 52px;
  color: var(--faint);
  font-size: 14px;
}

.story-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.story-card p {
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--muted);
}

.path-grid,
.feature-grid,
.value-grid,
.job-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(16, 20, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 800ms var(--ease-out), box-shadow 400ms ease;
}

.path-card:hover {
  box-shadow: 0 36px 80px rgba(10, 12, 10, 0.12);
  transform: translateY(-8px);
}

.path-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.path-card p {
  max-width: 510px;
  color: var(--paper-muted);
}

.path-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 42px;
  padding: 0;
  list-style: none;
}

.path-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.path-list .material-symbols-rounded {
  color: #376c18;
}

.path-card .button {
  margin-top: auto;
  align-self: flex-start;
  border-color: rgba(16, 20, 17, 0.16);
  background: var(--paper-ink);
  color: var(--paper);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 330px;
  padding: clamp(26px, 3.4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 246, 0.04);
  transition: background 350ms ease, border-color 350ms ease, transform 750ms var(--ease-out);
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: rgba(245, 247, 246, 0.065);
  transform: translateY(-7px);
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(245, 247, 246, 0.05);
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feature-copy {
  margin: 16px 0 0;
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 22px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.console-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0c0e0c;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
}

.console-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 247, 246, 0.23);
}

.console-dot:first-child {
  background: var(--green);
}

.console-body {
  min-height: 470px;
  padding: clamp(24px, 4vw, 48px);
}

.conversation {
  display: grid;
  gap: 16px;
  max-width: 850px;
}

.message {
  width: fit-content;
  max-width: min(88%, 680px);
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 5px;
  background: rgba(245, 247, 246, 0.05);
  color: var(--muted);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 700ms var(--ease-out);
}

.message-user {
  justify-self: end;
  border-color: rgba(245, 247, 246, 0.24);
  border-radius: 16px 16px 5px 16px;
  background: var(--paper);
  color: var(--paper-ink);
}

.message.is-entering {
  opacity: 0;
  transform: translateY(16px);
}

.command-form {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 247, 246, 0.04);
}

.command-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(180, 255, 63, 0.2);
}

.command-input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
}

.command-input::placeholder {
  color: var(--faint);
}

.command-submit {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--paper-ink);
  cursor: pointer;
  transition: transform 500ms var(--ease-out);
}

.command-submit:hover {
  transform: scale(1.05) rotate(-4deg);
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-prompt {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  transition: background 220ms ease, color 220ms ease;
}

.quick-prompt:hover {
  background: rgba(245, 247, 246, 0.08);
  color: var(--ink);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.product-showcase-copy {
  position: sticky;
  top: 128px;
}

.feature-tabs {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.feature-tab {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: border-color 280ms ease, background 280ms ease, color 280ms ease, transform 550ms var(--ease-out);
}

.feature-tab:hover,
.feature-tab[aria-selected="true"] {
  border-color: var(--line-strong);
  background: rgba(245, 247, 246, 0.07);
  color: var(--ink);
  transform: translateX(6px);
}

.feature-tab-index {
  color: var(--faint);
  font-size: 12px;
}

.feature-stage {
  min-height: 690px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(245, 247, 246, 0.035);
}

.feature-panel {
  display: none;
  min-height: 660px;
  align-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 18px;
  background: var(--panel);
  animation: panel-in 700ms var(--ease-out) both;
}

.feature-panel.is-active {
  display: grid;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.feature-panel h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.feature-panel p {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.ui-preview {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090a09;
}

.ui-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(245, 247, 246, 0.035);
}

.avatar {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel-3);
  color: var(--muted);
  font-size: 12px;
}

.ui-row strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.ui-row small {
  color: var(--faint);
}

.score {
  color: var(--green);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 290px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .feature-number {
  margin-bottom: 70px;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-step p {
  color: var(--muted);
}

.team-hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.team-hero img {
  width: 100%;
  height: 76vh;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.team-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.84));
  content: "";
}

.team-hero-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 72px);
  left: clamp(24px, 5vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.team-hero-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 246, 0.04);
}

.value-card .story-index {
  margin-bottom: 128px;
}

.value-card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.value-card p {
  color: var(--muted);
}

.job-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}

.job-search {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(16, 20, 17, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.6);
}

.job-search:focus-within {
  border-color: rgba(16, 20, 17, 0.72);
  box-shadow: 0 0 0 3px rgba(180, 255, 63, 0.72);
}

.job-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper-ink);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(16, 20, 17, 0.14);
  border-radius: 14px;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  background: var(--paper-ink);
  color: var(--paper);
}

.no-results {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 36px;
  border: 1px dashed rgba(16, 20, 17, 0.24);
  border-radius: var(--radius);
  color: var(--paper-muted);
  text-align: center;
}

.no-results[hidden] { display: none; }

.no-results .material-symbols-rounded { font-size: 32px; }
.no-results h3,
.no-results p { margin: 0; }
.no-results h3 { color: var(--paper-ink); font-size: 24px; }

.job-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-card {
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(16, 20, 17, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 680ms var(--ease-out), box-shadow 300ms ease;
}

.job-card:hover {
  box-shadow: 0 26px 60px rgba(15, 17, 15, 0.1);
  transform: translateY(-6px);
}

.job-card[hidden] {
  display: none;
}

.job-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
  color: var(--paper-muted);
  font-size: 13px;
}

.job-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--paper-ink);
  color: var(--paper);
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 246, 0.04);
}

.benefit-card h3 {
  margin: 70px 0 0;
  font-size: 28px;
  font-weight: 500;
}

.benefit-card p {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 26px);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary .material-symbols-rounded {
  transition: transform 500ms var(--ease-out);
}

.accordion details[open] summary .material-symbols-rounded {
  transform: rotate(45deg);
}

.accordion-answer {
  max-width: 780px;
  padding: 0 0 28px;
  color: var(--muted);
}

.cta-stage {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  padding: 64px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #050605;
  text-align: center;
}

.cta-stage-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.cta-stage h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.cta-stage p {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
}

.site-footer {
  padding: clamp(88px, 11vw, 150px) var(--page-gutter) 34px;
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  margin: 0;
  font-size: clamp(68px, 14vw, 220px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.78;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 32px;
  margin-top: clamp(60px, 9vw, 120px);
}

.footer-intro {
  max-width: 360px;
  color: var(--muted);
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  transition: color 220ms ease, transform 420ms var(--ease-out);
}

.footer-links a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 800ms ease, transform 1100ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 900ms var(--ease-out);
}

.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

.js .hero .eyebrow,
.js .hero h1,
.js .hero .hero-lead,
.js .hero .hero-actions,
.js .hero .hero-media,
.js .hero .orbit-stage {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-fallback-reveal 1ms 1400ms both;
}

@keyframes hero-fallback-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.is-ready .hero .eyebrow,
.is-ready .hero h1,
.is-ready .hero .hero-lead,
.is-ready .hero .hero-actions,
.is-ready .hero .hero-media,
.is-ready .hero .orbit-stage {
  opacity: 1;
  transform: translateY(0);
  animation: none;
  transition: opacity 760ms ease, transform 1100ms var(--ease-out);
}

.is-ready .hero h1 { transition-delay: 80ms; }
.is-ready .hero .hero-lead { transition-delay: 160ms; }
.is-ready .hero .hero-actions { transition-delay: 240ms; }
.is-ready .hero .hero-media,
.is-ready .hero .orbit-stage { transition-delay: 180ms; }

@media (max-width: 1080px) {
  .primary-nav {
    gap: 0;
  }

  .nav-item {
    padding-inline: 10px;
  }

  .hero-grid,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-image-frame {
    aspect-ratio: 1.65 / 1;
  }

  .product-showcase-copy {
    position: relative;
    top: auto;
  }

  .feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 54px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 16px);
    height: var(--header-height);
    padding: 0 7px 0 14px;
    border-radius: 19px;
  }

  .site-header.is-scrolled {
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 91px;
    height: 21px;
  }

  .primary-nav,
  .region-trigger {
    display: none;
  }

  .header-actions {
    min-width: 0;
  }

  .mobile-menu-trigger,
  .mobile-drawer {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-inner {
    min-height: calc(100svh - 164px);
  }

  .section-header,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
  }

  .sticky-copy {
    position: relative;
    top: auto;
  }

  .path-card {
    min-height: 470px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 20, 17, 0.14);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 14px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1,
  .display-title {
    font-size: clamp(50px, 15.2vw, 68px);
    line-height: 0.96;
  }

  .hero .display-cn {
    font-size: clamp(46px, 13.6vw, 62px);
    letter-spacing: -0.065em;
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .section-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .hero-image-frame {
    aspect-ratio: 0.9 / 1;
    border-radius: var(--radius);
  }

  .hero-image-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .orbit-stage {
    width: 120%;
    margin-left: -10%;
    aspect-ratio: 1.08 / 1;
  }

  .section {
    padding-block: 88px;
  }

  .section-tight {
    padding-block: 68px;
  }

  .section-header {
    gap: 22px;
    margin-bottom: 44px;
  }

  .section-title {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 1;
  }

  .section-copy {
    font-size: 16px;
  }

  .story-stack,
  .path-grid,
  .feature-grid,
  .feature-tabs,
  .value-grid,
  .job-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 260px;
  }

  .story-index,
  .value-card .story-index {
    margin-bottom: 72px;
  }

  .path-card {
    min-height: 510px;
    padding: 26px;
  }

  .feature-card {
    min-height: 300px;
  }

  .feature-icon {
    margin-bottom: 48px;
  }

  .console-body {
    min-height: 520px;
    padding: 18px;
  }

  .message {
    max-width: 94%;
    font-size: 14px;
  }

  .command-form {
    position: relative;
  }

  .quick-prompts {
    display: grid;
  }

  .feature-stage {
    min-height: 620px;
  }

  .feature-panel {
    min-height: 590px;
    padding: 24px;
  }

  .feature-panel h3 {
    font-size: 44px;
  }

  .ui-row {
    grid-template-columns: 38px 1fr;
  }

  .ui-row .score {
    grid-column: 2;
  }

  .process-step,
  .process-step:nth-child(n) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step .feature-number {
    margin-bottom: 46px;
  }

  .team-hero,
  .team-hero img {
    min-height: 660px;
    height: 78vh;
  }

  .team-hero-copy {
    display: grid;
  }

  .team-hero-copy h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .job-toolbar {
    grid-template-columns: 1fr;
  }

  .filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .job-card {
    min-height: 210px;
    padding: 24px;
  }

  .cta-stage {
    min-height: 520px;
    border-radius: var(--radius);
  }

  .cta-stage h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .footer-wordmark {
    font-size: 20vw;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  #particle-canvas,
  .orbit-canvas {
    display: none;
  }

  body[data-page="careers"] .careers-typewriter-cursor {
    display: none;
  }

  .js .reveal,
  .js .reveal-stagger > *,
  .js .hero .eyebrow,
  .js .hero h1,
  .js .hero .hero-lead,
  .js .hero .hero-actions,
  .js .hero .hero-media,
  .js .hero .orbit-stage {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
