:root {
  --paper: #f6f4ef;
  --paper-deep: #efebe3;
  --surface: #fffefa;
  --ink: #1e2a35;
  --ink-soft: #43536a;
  --muted: #667080;
  --line: #ded9ce;
  --line-soft: #e9e4da;
  --navy: #142843;
  --navy-deep: #071426;
  --blue: #456a9b;
  --blue-light: #7e9ec8;
  --blue-soft: #e4eaf1;
  --green: #4f725d;
  --white: #fffefa;
  --font-sans: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue',
    'Noto Sans SC', sans-serif;
  --font-mono: 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --shadow-sm: 0 16px 44px rgb(30 42 53 / 7%);
  --shadow-lg: 0 36px 90px rgb(5 16 31 / 24%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid #6f91c0;
  outline-offset: 4px;
}

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

.section-pad {
  padding-block: 124px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(197 192 181 / 72%);
  background: rgb(246 244 239 / 88%);
  backdrop-filter: blur(18px) saturate(120%);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgb(7 20 38 / 15%);
}

.brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-cn {
  margin-left: 1px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #526172;
  font-size: 14px;
  font-weight: 560;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.header-download {
  justify-self: end;
  padding: 9px 18px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-download:hover {
  background: #203a5d;
  box-shadow: 0 9px 24px rgb(20 40 67 / 20%);
  transform: translateY(-1px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 105px;
  padding-bottom: 116px;
  background:
    linear-gradient(180deg, rgb(255 254 250 / 48%) 0%, transparent 74%),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.38;
  background-image: radial-gradient(rgb(69 79 93 / 35%) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to right, #000, transparent 42%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  right: 7%;
  top: 4%;
  background: radial-gradient(circle, rgb(108 135 176 / 18%), transparent 68%);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  right: 31%;
  bottom: -18%;
  background: radial-gradient(circle, rgb(75 111 94 / 11%), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(520px, 1.13fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.eyebrow span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  padding: 0 20px 0 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgb(20 40 67 / 18%);
}

.button-primary:hover {
  background: #203b5f;
  box-shadow: 0 18px 36px rgb(20 40 67 / 25%);
}

.button-primary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-quiet {
  padding: 0 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgb(255 254 250 / 70%);
}

.button-quiet:hover {
  border-color: #aeb7c2;
  background: var(--surface);
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgb(126 158 200 / 14%);
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  perspective: 1600px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(103 125 156 / 15%);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 520px;
  height: 520px;
  left: 3%;
  top: 0;
}

.orbit-two {
  width: 390px;
  height: 390px;
  left: 15%;
  top: 13%;
}

.command-window {
  position: relative;
  z-index: 2;
  width: 660px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(196 203 211 / 82%);
  border-radius: 20px;
  background: #fcfbf8;
  box-shadow:
    0 36px 90px rgb(19 39 63 / 18%),
    0 3px 10px rgb(19 39 63 / 8%);
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center center;
}

.window-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  color: #627080;
  border-bottom: 1px solid #e3e0d9;
  background: #eeece6;
  font-size: 10px;
  font-weight: 580;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border: 1px solid #b6b2aa;
  border-radius: 50%;
  background: #d8d4cc;
}

.live-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4d6958;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #57906e;
  box-shadow: 0 0 0 3px rgb(87 144 110 / 13%);
}

.command-body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 145px 1fr;
}

.command-sidebar {
  padding: 18px 12px;
  border-right: 1px solid #e8e4dc;
  background: #f5f3ee;
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334357;
  font-size: 10px;
  font-weight: 700;
}

.side-brand img {
  border-radius: 7px;
}

.command-sidebar > p {
  margin: 22px 6px 9px;
  color: #9299a2;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.employee {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.employee.active {
  border-color: #dce2e9;
  background: #fffefa;
  box-shadow: 0 3px 9px rgb(30 42 53 / 4%);
}

.avatar {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 8px;
}

.avatar-blue {
  background: #5879a4;
}

.avatar-violet {
  background: #75648d;
}

.avatar-green {
  background: #607c69;
}

.employee div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.employee strong {
  color: #39495b;
  font-size: 8px;
  line-height: 1.4;
}

.employee small {
  color: #9199a2;
  font-size: 6.5px;
}

.command-main {
  min-width: 0;
  padding: 25px 24px 20px;
}

.task-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.task-kicker {
  color: #8290a0;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.09em;
}

.task-heading h2 {
  margin: 4px 0 0;
  color: #233346;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.task-status {
  margin-top: 2px;
  padding: 4px 8px;
  color: #536d59;
  border: 1px solid #cadace;
  border-radius: 999px;
  background: #edf4ef;
  font-size: 7px;
  font-weight: 670;
}

.context-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #ece9e2;
}

.context-row span {
  padding: 8px 9px;
  color: #8b949e;
  font-size: 7px;
  border-right: 1px solid #ece9e2;
}

.context-row span:last-child {
  border: 0;
}

.context-row strong {
  display: block;
  margin-top: 2px;
  color: #48596b;
  font-size: 7px;
}

.task-flow {
  margin-top: 18px;
  display: grid;
  gap: 7px;
}

.flow-item {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid #e9e5de;
  border-radius: 8px;
  background: #fbfaf7;
}

.flow-item > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #8c96a1;
  border: 1px solid #d8dce1;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 7px;
}

.flow-item.done > span {
  color: #587360;
  border-color: #aec5b4;
  background: #edf4ef;
}

.flow-item.running {
  border-color: #bfcada;
  background: #f3f6fa;
  box-shadow: inset 2px 0 #6d8cb5;
}

.flow-item.running > span {
  color: #4d6f9b;
  border-color: #8da6c6;
  background: #e5ebf3;
}

.flow-item div {
  display: grid;
  gap: 1px;
}

.flow-item strong {
  color: #405063;
  font-size: 8px;
}

.flow-item small {
  color: #8d959e;
  font-size: 6.5px;
}

.flow-item b {
  color: #87919c;
  font-size: 6.5px;
  font-weight: 560;
}

.flow-item.done b {
  color: #587360;
}

.flow-item.running b {
  color: #4d6f9b;
}

.activity-line {
  margin-top: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: #84909c;
  font-size: 6.5px;
}

.activity-line p {
  margin: 0;
}

.activity-line strong {
  color: #56687b;
}

.activity-line time {
  font-family: var(--font-mono);
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b8aae;
  box-shadow: 0 0 0 4px rgb(107 138 174 / 12%);
}

.stage-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  color: #8b949d;
  font-size: 9px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgb(207 211 213 / 92%);
  border-radius: 12px;
  background: rgb(255 254 250 / 94%);
  box-shadow: 0 16px 32px rgb(20 40 67 / 13%);
  backdrop-filter: blur(10px);
}

.floating-card-top {
  top: 21px;
  right: -22px;
}

.floating-card-bottom {
  left: -30px;
  bottom: 19px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.floating-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.shield-icon {
  color: #4c6f9d;
  background: #e7edf4;
}

.device-icon {
  color: #537762;
  background: #e9f0eb;
}

.floating-card div {
  display: grid;
  gap: 1px;
}

.floating-card strong {
  color: #3d4d5e;
  font-size: 9px;
}

.floating-card small {
  color: #87919a;
  font-size: 7px;
}

.statement-strip {
  border-block: 1px solid var(--line);
  background: #efece5;
}

.statement-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.statement-inner p {
  margin: 0;
  color: #607080;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.statement-inner span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8da0b7;
}

.why {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

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

.principle-card {
  position: relative;
  min-height: 380px;
  padding: 36px 32px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(255 254 250 / 58%);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.principle-card:hover {
  border-color: #c1cbd5;
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.principle-card.featured {
  border-color: #c7d0db;
  background: linear-gradient(145deg, #fffefa, #f0f3f6);
  box-shadow: 0 20px 48px rgb(31 49 69 / 8%);
}

.principle-number {
  color: #a3abb2;
  font-family: var(--font-mono);
  font-size: 11px;
}

.principle-icon {
  width: 56px;
  height: 56px;
  margin-top: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #d5dce4;
  border-radius: 15px;
  background: #edf1f5;
}

.principle-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin: 25px 0 0;
  color: #263646;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.principle-card > p {
  margin: 14px 0 0;
  color: #596878;
  font-size: 14px;
  line-height: 1.85;
}

.principle-meta {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8a949f;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.principle-meta i {
  width: 16px;
  height: 1px;
  background: #aab6c3;
}

.capabilities {
  position: relative;
  overflow: hidden;
  color: #e6ebf0;
  background:
    linear-gradient(180deg, #09172a 0%, #071426 56%, #09182b 100%);
}

.capabilities::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: 0.2;
  background-image:
    linear-gradient(rgb(139 167 207 / 13%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(139 167 207 / 13%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}

.capability-aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.capability-aura-one {
  width: 700px;
  height: 700px;
  top: -300px;
  right: -170px;
  background: radial-gradient(circle, rgb(68 103 153 / 22%), transparent 70%);
}

.capability-aura-two {
  width: 600px;
  height: 600px;
  bottom: -320px;
  left: -120px;
  background: radial-gradient(circle, rgb(72 112 95 / 13%), transparent 70%);
}

.capabilities .shell {
  position: relative;
}

.light-heading h2 {
  color: #edf0ef;
}

.light-heading .eyebrow {
  color: #91abd0;
}

.light-heading > p:last-child {
  margin-left: 0;
  color: #aeb9c7;
}

.capability-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.capability-card {
  position: relative;
  min-height: 390px;
  padding: 27px 28px;
  overflow: hidden;
  border: 1px solid rgb(132 157 189 / 18%);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(26 45 70 / 78%), rgb(10 26 45 / 90%));
  box-shadow: inset 0 1px rgb(255 255 255 / 3%);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

.capability-card:hover {
  border-color: rgb(126 158 200 / 38%);
  background: linear-gradient(145deg, rgb(30 52 80 / 92%), rgb(10 27 47 / 96%));
  transform: translateY(-5px);
}

.governance-card,
.desktop-card,
.engines-card,
.ecosystem-card {
  grid-column: span 6;
}

.mobile-card,
.memory-card {
  grid-column: span 6;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #72849a;
  font-family: var(--font-mono);
  font-size: 10px;
}

.cap-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #9cb6d9;
  border: 1px solid rgb(142 171 207 / 25%);
  border-radius: 11px;
  background: rgb(73 105 147 / 17%);
}

.cap-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3 {
  margin: 24px 0 0;
  color: #eef1f1;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.capability-card > p {
  max-width: 500px;
  margin: 12px 0 0;
  color: #aab6c4;
  font-size: 14px;
  line-height: 1.8;
}

.governance-stack {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.governance-stack div {
  min-height: 84px;
  padding: 13px 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(137 163 195 / 18%);
  border-radius: 10px;
  background: rgb(7 20 38 / 48%);
}

.governance-stack span {
  color: #d4dce6;
  font-size: 11px;
  font-weight: 650;
}

.governance-stack i {
  width: 20px;
  height: 1px;
  margin-block: 10px;
  background: #607fa8;
}

.governance-stack small {
  color: #75889d;
  font-size: 8px;
}

.desktop-mini {
  position: absolute;
  right: -15px;
  bottom: -25px;
  width: 390px;
  height: 175px;
  display: grid;
  grid-template-columns: 75px 1fr;
  overflow: hidden;
  border: 1px solid rgb(137 163 195 / 20%);
  border-radius: 15px 0 0 0;
  background: #101f32;
  box-shadow: -20px -20px 60px rgb(5 13 25 / 28%);
}

.mini-sidebar {
  padding: 22px 14px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid rgb(137 163 195 / 14%);
  background: #0c1a2c;
}

.mini-sidebar i {
  width: 42px;
  height: 6px;
  border-radius: 3px;
  background: #314762;
}

.mini-sidebar i:first-child {
  background: #7898bf;
}

.mini-main {
  padding: 24px;
}

.mini-main > span {
  width: 110px;
  height: 11px;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #9eb1c8;
}

.mini-main > b {
  width: 75%;
  height: 6px;
  display: block;
  margin-bottom: 8px;
  border-radius: 3px;
  background: #334b68;
}

.mini-main > b:nth-child(3) {
  width: 55%;
}

.mini-main div {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-main i {
  height: 46px;
  border: 1px solid #29415e;
  border-radius: 7px;
  background: #132843;
}

.phone-mini {
  position: absolute;
  right: 38px;
  bottom: -45px;
  width: 170px;
  height: 250px;
  padding: 26px 15px 16px;
  border: 4px solid #2c415a;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: #0c1c30;
  box-shadow: 0 0 0 1px #0a1421, -24px -20px 60px rgb(5 13 25 / 38%);
}

.phone-mini > span {
  position: absolute;
  width: 48px;
  height: 5px;
  top: 10px;
  left: 50%;
  border-radius: 3px;
  background: #2d435e;
  transform: translateX(-50%);
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-head i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, #75c9ec, #6950ed);
}

.phone-head b {
  width: 54px;
  height: 7px;
  border-radius: 4px;
  background: #7188a5;
}

.phone-message {
  width: 94%;
  height: 41px;
  margin-top: 16px;
  border: 1px solid #273e5b;
  border-radius: 10px 10px 10px 3px;
  background: #142b48;
}

.phone-message.short {
  width: 70%;
  height: 30px;
  margin-left: auto;
  border-radius: 10px 10px 3px;
  background: #274a70;
}

.phone-action {
  height: 33px;
  margin-top: 22px;
  border-radius: 8px;
  background: #557da9;
}

.engine-map {
  position: absolute;
  right: 28px;
  bottom: 18px;
  left: 28px;
  height: 125px;
}

.engine-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #334f71;
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.engine-center,
.engine-node {
  position: absolute;
  z-index: 2;
}

.engine-center {
  width: 46px;
  height: 46px;
  left: 50%;
  top: 39px;
  display: grid;
  place-items: center;
  border: 1px solid #56769d;
  border-radius: 14px;
  background: #183352;
  box-shadow: 0 0 0 8px rgb(71 105 147 / 8%);
  transform: translateX(-50%);
}

.engine-center i {
  width: 14px;
  height: 14px;
  border: 2px solid #8ca8ca;
  border-radius: 5px;
}

.engine-node {
  display: grid;
  place-items: center;
  gap: 4px;
}

.engine-node i {
  width: 24px;
  height: 24px;
  border: 1px solid #415d7f;
  border-radius: 8px;
  background: #10243b;
}

.engine-node b {
  color: #71849b;
  font-size: 8px;
  font-weight: 560;
}

.engine-a {
  left: 10%;
  top: 0;
}

.engine-b {
  right: 10%;
  top: 0;
}

.engine-c {
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
}

.memory-lines {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
}

.memory-lines span {
  min-height: 45px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgb(137 163 195 / 17%);
  border-radius: 9px;
  background: rgb(7 20 38 / 42%);
}

.memory-lines i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7696bd;
  box-shadow: 0 0 0 4px rgb(118 150 189 / 10%);
}

.memory-lines b {
  color: #cad4df;
  font-size: 10px;
  font-weight: 600;
}

.memory-lines small {
  color: #687e96;
  font-size: 8px;
}

.ecosystem-chips {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ecosystem-chips span {
  padding: 8px 12px;
  color: #aabbd0;
  border: 1px solid rgb(137 163 195 / 22%);
  border-radius: 999px;
  background: rgb(15 35 58 / 72%);
  font-size: 9px;
}

.workflow {
  background:
    linear-gradient(180deg, rgb(255 254 250 / 45%), transparent),
    var(--paper);
}

.workflow-heading {
  margin-inline: auto;
  text-align: center;
}

.workflow-heading .eyebrow {
  justify-content: center;
}

.workflow-track {
  position: relative;
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.workflow-line {
  position: absolute;
  height: 1px;
  top: 78px;
  right: 9%;
  left: 9%;
  background: linear-gradient(90deg, transparent, #aebdce 7%, #aebdce 93%, transparent);
}

.workflow-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.step-number {
  color: #99a3ad;
  font-family: var(--font-mono);
  font-size: 10px;
}

.step-symbol {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 29px auto 22px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #c9d2dc;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 12px var(--paper);
}

.step-symbol svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step h3 {
  margin: 0;
  color: #304254;
  font-size: 17px;
  font-weight: 650;
}

.workflow-step p {
  max-width: 170px;
  margin: 9px auto 0;
  color: #6c7885;
  font-size: 12px;
  line-height: 1.75;
}

.workflow-quote {
  max-width: 820px;
  margin: 85px auto 0;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 23px;
  border-block: 1px solid var(--line);
}

.workflow-quote img {
  border-radius: 12px;
}

.workflow-quote p {
  margin: 0;
  color: #435467;
  font-size: 16px;
  line-height: 1.8;
}

.download {
  position: relative;
  overflow: hidden;
  color: #e6ebf0;
  background:
    radial-gradient(circle at 50% -20%, rgb(86 126 177 / 24%), transparent 45%),
    #08172a;
}

.download-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgb(139 167 207 / 12%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(139 167 207 / 12%) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.download .shell {
  position: relative;
}

.download-heading {
  max-width: 820px;
}

.download-heading > p:last-child {
  margin-left: auto;
  color: #aab7c6;
}

.platform-hint {
  margin: 42px 0 0;
  color: #8292a5;
  font-size: 12px;
  text-align: center;
}

.download-grid {
  max-width: 960px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.download-card {
  min-height: 530px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(133 157 187 / 19%);
  border-radius: 26px;
  background: linear-gradient(150deg, rgb(22 42 66 / 90%), rgb(10 26 46 / 94%));
  box-shadow: 0 28px 65px rgb(2 9 19 / 24%);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease;
}

.download-card:hover {
  border-color: rgb(126 158 200 / 40%);
  transform: translateY(-5px);
}

.primary-download {
  border-color: rgb(113 151 199 / 40%);
  background: linear-gradient(150deg, rgb(29 55 86 / 96%), rgb(11 29 50 / 98%));
}

.download-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(145 171 205 / 25%);
  border-radius: 16px;
  background: rgb(95 127 167 / 12%);
}

.platform-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.apple-icon {
  color: #e5eaf0;
}

.windows-icon {
  color: #8fb4dd;
}

.android-icon {
  color: #93bca2;
}

.android-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recommended,
.mobile-badge {
  padding: 6px 10px;
  color: #9eb7d6;
  border: 1px solid rgb(126 158 200 / 24%);
  border-radius: 999px;
  background: rgb(66 101 145 / 16%);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.mobile-badge {
  color: #9bbba6;
  border-color: rgb(115 157 129 / 21%);
  background: rgb(71 111 84 / 14%);
}

.download-title {
  margin-top: 28px;
}

.download-title p {
  margin: 0;
  color: #7f91a5;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.download-title h3 {
  margin: 7px 0 0;
  color: #f0f2f1;
  font-size: 28px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.download-facts {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid rgb(132 157 189 / 15%);
}

.download-facts li {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgb(132 157 189 / 12%);
  font-size: 11px;
}

.download-facts li:last-child {
  border: 0;
}

.download-facts span {
  color: #75879b;
}

.download-facts strong {
  color: #bdc8d4;
  font-weight: 550;
}

.download-button {
  min-height: 60px;
  margin-top: auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #0b192a;
  border-radius: 13px;
  background: #e9edf1;
  font-size: 14px;
  font-weight: 680;
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    box-shadow 180ms ease;
}

.download-button:hover {
  background: #fff;
  box-shadow: 0 14px 28px rgb(0 0 0 / 18%);
  transform: translateY(-2px);
}

.download-button.secondary {
  color: #e1e8ee;
  border: 1px solid #536b85;
  background: #213c5a;
}

.download-button.secondary:hover {
  background: #2b4b6e;
}

.download-button span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.download-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-button small {
  opacity: 0.65;
  font-size: 9px;
  font-weight: 600;
}

.engine-download {
  grid-column: 1 / -1;
  min-height: 0;
}

.engine-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engine-downloads {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.engine-install-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.install-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgb(133 157 187 / 22%);
  border-radius: 12px;
  background: rgb(8 20 36 / 72%);
}

.install-line .install-os {
  flex: 0 0 130px;
  color: #9fb2c8;
  font-size: 11px;
  font-weight: 600;
}

.install-line code {
  flex: 1;
  overflow-x: auto;
  color: #d7e3f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  white-space: nowrap;
}

.copy-button {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fb2c8;
  border: 1px solid rgb(133 157 187 / 26%);
  border-radius: 9px;
  background: rgb(23 42 66 / 60%);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.copy-button:hover {
  color: #fff;
  border-color: rgb(126 158 200 / 45%);
}

.copy-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-button.copied {
  color: #7fd6a4;
  border-color: rgb(127 214 164 / 50%);
}

.download-button.engine-platform {
  min-height: 48px;
  margin-top: 0;
  padding: 0 16px;
  justify-content: center;
  flex: 1 1 160px;
}

.download-button.engine-platform.unavailable {
  color: #718297;
  background: #16283e;
  border: 1px dashed #3c5573;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.activate-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #0a1626;
}

.activate-shell {
  width: min(480px, calc(100vw - 40px));
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.activate-shell .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e1e8ee;
  text-decoration: none;
}

.activate-shell .brand span {
  display: flex;
  flex-direction: column;
}

.activate-shell .brand small {
  color: #718297;
  font-size: 11px;
}

.activate-card {
  padding: 34px;
  border: 1px solid rgb(133 157 187 / 19%);
  border-radius: 22px;
  background: linear-gradient(150deg, rgb(22 42 66 / 90%), rgb(10 26 46 / 94%));
}

.activate-card h1 {
  color: #eef3f8;
  font-size: 24px;
}

.activate-sub {
  margin: 10px 0 22px;
  color: #93a5ba;
  font-size: 12.5px;
  line-height: 1.7;
}

.activate-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activate-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #9fb2c8;
  font-size: 12px;
}

.activate-card input,
.activate-card select {
  padding: 11px 13px;
  color: #eef3f8;
  border: 1px solid rgb(133 157 187 / 26%);
  border-radius: 11px;
  background: rgb(8 20 36 / 72%);
  font-size: 14px;
}

.activate-card input:focus,
.activate-card select:focus {
  outline: 2px solid rgb(113 151 199 / 55%);
}

.activate-card .download-button {
  margin-top: 6px;
  justify-content: center;
}

.activate-msg {
  min-height: 18px;
  color: #7fd6a4;
  font-size: 12.5px;
}

.activate-msg.error {
  color: #e8a1a1;
}

.download-note {
  min-height: 42px;
  margin: 16px 2px 0;
  color: #788a9e;
  font-size: 10px;
  line-height: 1.7;
}

.other-platforms {
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #718297;
  font-size: 10px;
}

.other-platforms i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #60748b;
}

.site-footer {
  color: #546273;
  border-top: 1px solid #d9d5cc;
  background: #edeae3;
}

.footer-top {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand span {
  display: grid;
  gap: 1px;
}

.footer-brand strong {
  color: #2e3d4e;
  font-size: 17px;
  line-height: 1.4;
}

.footer-brand small {
  color: #7a8490;
  font-size: 9px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  font-weight: 560;
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9d5cc;
  color: #858d96;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 160ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .floating-card-top {
    right: -5px;
  }

  .floating-card-bottom {
    left: -15px;
  }
}

@media (max-width: 960px) {
  .section-pad {
    padding-block: 96px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-stage {
    max-width: 700px;
    min-height: 500px;
    margin-inline: auto;
    justify-content: center;
  }

  .command-window {
    transform: none;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 330px;
  }

  .principle-icon {
    margin-top: 35px;
  }

  .capability-card {
    grid-column: span 12;
  }

  .workflow-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 0;
  }

  .workflow-line {
    display: none;
  }

  .download-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-pad {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
  }

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

  .brand-cn,
  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgb(255 254 250 / 70%);
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded='true'] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded='true'] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    padding: 12px 16px 20px;
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line-soft);
    background: rgb(246 244 239 / 97%);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 11px 8px;
    color: var(--ink-soft);
    border-radius: 8px;
    font-size: 14px;
  }

  .mobile-nav a:last-child {
    margin-top: 5px;
    color: var(--white);
    background: var(--navy);
    text-align: center;
  }

  .hero {
    padding-top: 67px;
    padding-bottom: 80px;
  }

  .hero::before {
    mask-image: linear-gradient(to bottom, #000, transparent 48%);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.16;
  }

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

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 16px;
  }

  .hero-stage {
    min-height: 355px;
    margin-inline: -4px;
  }

  .command-window {
    border-radius: 14px;
  }

  .window-bar {
    height: 34px;
  }

  .command-body {
    min-height: 300px;
    grid-template-columns: 90px 1fr;
  }

  .command-sidebar {
    padding: 12px 7px;
  }

  .side-brand span,
  .command-sidebar > p {
    display: none;
  }

  .side-brand {
    justify-content: center;
  }

  .employee {
    justify-content: center;
    padding: 6px;
  }

  .employee div {
    display: none;
  }

  .command-main {
    padding: 17px 13px;
  }

  .task-heading h2 {
    font-size: 12px;
  }

  .task-status {
    padding: 3px 6px;
  }

  .context-row span {
    padding: 6px 4px;
  }

  .context-row span:nth-child(3) {
    display: none;
  }

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

  .flow-item {
    grid-template-columns: 22px 1fr;
    padding: 7px;
  }

  .flow-item b {
    display: none;
  }

  .flow-item > span {
    width: 21px;
    height: 21px;
  }

  .activity-line,
  .stage-note,
  .floating-card {
    display: none;
  }

  .statement-inner {
    min-height: 68px;
    gap: 10px;
    justify-content: space-between;
  }

  .statement-inner p {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .section-heading h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 15px;
  }

  .principle-grid,
  .capability-grid {
    margin-top: 50px;
  }

  .principle-card {
    min-height: 355px;
    padding: 28px 24px;
  }

  .principle-meta {
    right: 24px;
    left: 24px;
  }

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

  .governance-stack {
    right: 24px;
    left: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .governance-stack div {
    min-height: 68px;
  }

  .desktop-mini {
    width: calc(100% - 30px);
  }

  .phone-mini {
    right: 28px;
  }

  .workflow-track {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-step {
    min-height: 105px;
    padding: 0 0 28px 80px;
    text-align: left;
  }

  .workflow-step::before {
    position: absolute;
    width: 1px;
    top: 54px;
    bottom: 0;
    left: 29px;
    content: '';
    background: #b8c3cf;
  }

  .workflow-step:last-child::before {
    display: none;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 10px;
  }

  .step-symbol {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    left: 30px;
    margin: 0;
    border-radius: 14px;
    box-shadow: 0 0 0 7px var(--paper);
    transform: translateX(-50%);
  }

  .step-symbol svg {
    width: 20px;
    height: 20px;
  }

  .workflow-step h3 {
    padding-top: 3px;
  }

  .workflow-step p {
    max-width: none;
    margin: 5px 0 0;
  }

  .workflow-quote {
    margin-top: 42px;
    padding: 22px 4px;
    align-items: flex-start;
    gap: 16px;
  }

  .workflow-quote img {
    width: 40px;
    height: 40px;
  }

  .workflow-quote p {
    font-size: 14px;
  }

  .download-card {
    min-height: 520px;
    padding: 26px 22px;
  }

  .download-title h3 {
    font-size: 24px;
  }

  .other-platforms {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .other-platforms i {
    display: none;
  }

  .footer-top {
    padding-block: 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-proof span:last-child {
    display: none;
  }

  .command-body {
    grid-template-columns: 72px 1fr;
  }

  .context-row,
  .task-status {
    display: none;
  }

  .task-flow {
    margin-top: 14px;
  }

  .flow-item small {
    display: none;
  }

  .statement-inner p {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  .principle-card,
  .capability-card,
  .download-card {
    border-width: 2px;
  }

  .hero-lead,
  .section-heading > p:last-child,
  .principle-card > p {
    color: var(--ink);
  }
}
