﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f2;
  --panel: #ffffff;
  --text: #111111;
  --muted: #5e5a54;
  --line: #d9d7d1;
  --line-strong: #111111;
  --accent: #111111;
  --accent-soft: #f2f1ed;
  --container: min(1280px, calc(100vw - 64px));
}

.page-company {
  --bg: #F5F1E8;
  --bg-soft: #EDE6DA;
}

.page-product {
  --bg: #F5F1E8;
  --bg-soft: #EDE6DA;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
  overflow-x: clip;
}

body::before {
  content: none;
}

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

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 64px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 32px;
  margin: 0 0 24px;
  padding: 22px 0 18px;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.topbar > *,
.hero > *,
.editorial-grid > *,
.figure-grid > *,
.pathway-grid > *,
.product-card-featured > *,
.spotlight-grid > *,
.network-grid > *,
.quickstart-grid > *,
.trio-grid > *,
.coordination-grid > *,
.roadmap-grid > *,
.compare-row > *,
.timeline-step > * {
  min-width: 0;
}

.page-company .topbar {
  background: var(--bg);
  backdrop-filter: none;
}

.page-product .topbar {
  background: var(--bg);
  backdrop-filter: none;
}

.page-product .subnav {
  background: #E9E1D4;
  border-top: 1px solid #C7B8A4;
  border-bottom: 1px solid #C7B8A4;
  border-radius: 12px;
  padding: 14px 16px;
}

.page-product .subnav a {
  color: #6F6050;
}

.topbar.is-scrolled,
.topbar-solid {
  border-bottom-color: var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 170px;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Source Serif 4", serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 180px;
  object-fit: contain;
}

.brand-mark {
  display: none;
}

.brand-type {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 0.9;
  transform: translateY(-1px);
}

.brand-type::after {
  content: ".";
  position: relative;
  left: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  color: var(--muted);
  position: relative;
  font-size: 0.96rem;
  line-height: 1.2;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lang-switch button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
}

.lang-switch button + button::before {
  content: "/";
  margin: 0 10px;
  color: var(--muted);
}

.lang-switch button.is-active {
  background: transparent;
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, opacity 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.section {
  padding: 96px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-soft,
.section-accent {
  position: static;
}

.section-soft::before,
.section-accent::before {
  content: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 72px;
  align-items: start;
  min-height: auto;
  padding-top: 40px;
}

.hero-home {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 84px;
  padding-top: 80px;
  padding-bottom: 116px;
}

.hero-home .hero-copy {
  max-width: none;
}

.hero h1 {
  margin: 14px 0 18px;
  max-width: 10ch;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero-home h1 {
  font-size: clamp(2.56rem, 4.96vw, 4.64rem);
  line-height: 1.06;
  max-width: 20ch;
  text-wrap: balance;
}

.hero-company h1 {
  max-width: 11ch;
}

.hero-product h1 {
  max-width: none;
}

.hero-tagline {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.product-card p,
.info-card p,
.spotlight-copy p,
.network-copy p,
.quickstart-copy p,
.summary-card p,
.footnote,
.footer p,
.benchmark-callout p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-badges {
  margin-top: 24px;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-weight: 650;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.chip-blue,
.chip-green,
.chip-amber,
.chip-slate {
  background: transparent;
  color: var(--muted);
}

.eyebrow,
.mini-label,
.card-kicker,
.timeline-index,
.status {
  display: inline-flex;
  align-items: center;
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-weight: 650;
}

.eyebrow,
.mini-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stage,
.product-stage {
  display: grid;
  gap: 22px;
  min-height: 0;
}

.floating-card,
.console-card,
.product-card,
.info-card,
.spot-panel,
.compare-card,
.benchmark-callout,
.coord-card,
.terminal-card,
.road-card,
.summary-card,
.network-visual,
.network-copy,
.product-card-muted {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.card-hero-main {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.card-hero-main h2,
.product-card h3,
.section-heading h2,
.info-card h3,
.spotlight-copy h2,
.network-copy h2,
.quickstart-copy h2,
.benchmark-callout strong {
  margin: 0;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metric-row strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.metric-row span {
  color: var(--muted);
  line-height: 1.6;
}

.card-hero-side,
.product-card-visual img,
.network-visual img,
.console-card img {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-soft);
  overflow: hidden;
}

.card-hero-side {
  padding: 0;
}

.card-hero-side img,
.product-card-visual img {
  width: 100%;
  filter: saturate(0.75) contrast(0.96);
}

.floating-chip,
.orbit-card {
  display: none;
}

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

.page-product #built-for-hard-engineering-work .section-heading,
.page-product #benchmark .section-heading {
  max-width: min(980px, 100%);
}

.page-product #benchmark .section-heading {
  max-width: none;
}

.section-heading h2 {
  margin: 12px 0 16px;
  max-width: 14ch;
}

.page-product #built-for-hard-engineering-work .section-heading p[data-i18n="overview.text"],
.page-product #benchmark .section-heading p[data-i18n="benchmark.text"] {
  max-width: none;
  width: 100%;
  display: block;
  white-space: normal;
  text-wrap: wrap !important;
  text-wrap-style: auto;
  text-wrap-mode: wrap;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.page-product #benchmark .benchmark-intro {
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  white-space: normal !important;
  text-wrap: wrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (max-width: 1080px) {
  .page-product #built-for-hard-engineering-work .section-heading,
  .page-product #benchmark .section-heading {
    max-width: 100%;
  }

  .page-product #built-for-hard-engineering-work .section-heading p[data-i18n="overview.text"],
  .page-product #benchmark .section-heading p[data-i18n="benchmark.text"] {
    max-width: none;
  }
}

.updates-section .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(1.25rem, 2.2vw, 2.35rem);
  line-height: 1.16;
}

.story-feature {
  padding-top: 112px;
}

.editorial-grid,
.figure-grid,
.pathway-grid {
  display: grid;
  align-items: start;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 64px;
}

.figure-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.pathway-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
}

.editorial-heading h2,
.figure-copy h2,
.manifesto-copy h2 {
  margin: 10px 0 16px;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.editorial-body p,
.figure-copy p,
.manifesto-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.figure-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-soft);
  filter: grayscale(1) contrast(1.02) brightness(1.02);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--text);
  font-weight: 650;
}

.text-link::after {
  content: "鈫?;
  font-size: 1rem;
}

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

.news-shell {
  max-width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.news-feature {
  padding: 22px 20px;
  background: #E9E1D4;
  border: 1px solid #C7B8A4;
  border-radius: 14px;
}

.news-feature-label {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-feature-title {
  display: block;
  margin: 8px 0 10px;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.34rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.news-feature-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.news-feature-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.news-list-head,
.news-row {
  display: grid;
  grid-template-columns: 132px 104px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.news-list-head {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 0;
}

.news-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: background 160ms ease;
}

.news-row time {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.news-category {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.news-title {
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.news-row:hover,
.news-row:focus-visible {
  background: rgba(17, 17, 17, 0.03);
}

.update-item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-company .updates-grid .update-item {
  background: #E9E1D4;
  border: 1px solid #C7B8A4;
  border-radius: 14px;
  padding: 20px 18px;
}

.page-company .updates-grid .update-item:hover,
.page-company .updates-grid .update-item:focus-within {
  background: #E1D5C4;
  border-color: #B9A88F;
}

.update-item h3 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: 1.52rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.update-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.86;
}

.page-company .story-feature [data-i18n="story.text"] {
  background: #E9E1D4;
  border: 1px solid #C7B8A4;
  border-radius: 14px;
  padding: 20px 18px;
}

.home-hero-side {
  display: grid;
  gap: 32px;
  padding-top: 36px;
}

.home-hero-text {
  max-width: none;
}

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

.home-link-row {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.home-link-label,
.program-index {
  display: inline-flex;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-index {
  margin-bottom: 18px;
}

.home-link-row strong {
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.manifesto-links {
  display: grid;
}

.manifesto-link {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.manifesto-link:last-child {
  border-bottom: 1px solid var(--line);
}

.manifesto-label,
.footer-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto-link strong {
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: 1.44rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.manifesto-link span:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.product-shelf {
  display: grid;
  gap: 0;
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 42px;
  padding: 22px 0;
}

.product-card-muted {
  display: none;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  line-height: 1.75;
}

.feature-list li::before {
  content: none;
}

.principle-grid,
.trio-grid,
.coordination-grid,
.roadmap-grid {
  display: grid;
  gap: 34px;
}

.principle-grid,
.trio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.spot-panel,
.coord-card,
.road-card {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-product .trio-grid .info-card {
  background: #E9E1D4;
  border: 1px solid #C7B8A4;
  border-radius: 14px;
  padding: 20px 18px;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.spotlight-grid,
.network-grid,
.quickstart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.spotlight-panels {
  display: grid;
  gap: 24px;
}

.subnav {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.subnav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.subnav a:hover,
.subnav a:focus-visible {
  color: var(--text);
}

.console-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.console-toolbar,
.terminal-head {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.console-toolbar span,
.terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3c0b8;
}

.compare-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.compare-header {
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.compare-header > *,
.compare-row > * {
  padding: 18px 0;
}

.compare-row > * {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.compare-row > *:first-child {
  color: var(--text);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline-index {
  width: 54px;
  height: 54px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text);
}

.timeline-step h3 {
  margin: 2px 0 8px;
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.compare-row span,
.road-card p,
.timeline-step p,
.section-heading h2,
.hero-text,
.footer a,
.footer p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.coordination-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.design-note,
.footnote {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.benchmark-callout {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benchmark-callout strong {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.benchmark-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benchmark-head,
.benchmark-row {
  display: grid;
  grid-template-columns: 1fr 120px;
}

.benchmark-head > *,
.benchmark-row > * {
  padding: 16px 0;
}

.benchmark-row > * {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.benchmark-head {
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-weight: 700;
}

.benchmark-row span:last-child,
.benchmark-head strong:last-child {
  text-align: right;
}

.benchmark-highlight span {
  color: var(--text);
  font-weight: 700;
}

.terminal-card pre {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #151210;
  color: #f5f0e8;
  overflow: auto;
}

.terminal-card code,
.orbit-card,
.footnote code {
  font-family: "SFMono-Regular", "Cascadia Mono", "Consolas", monospace;
}

.road-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.status {
  justify-self: start;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.status-done,
.status-next {
  background: transparent;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding: 32px 0 12px;
  border-top: 1px solid var(--line);
}

.footer strong {
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-size: 1rem;
}

.footer-brand {
  display: block;
  width: 270px;
  max-width: 100%;
  height: 38px;
  overflow: visible;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 102px;
  max-width: none;
  transform: translate(-24%, -33.1%) scale(1.08);
  transform-origin: top left;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.footer-home {
  display: block;
}

.page-company .footer.footer-home {
  background: transparent;
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.24);
  margin-top: 64px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 32px;
  padding-bottom: 18px;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  border-radius: 0;
  position: relative;
  isolation: isolate;
  z-index: 0;
  overflow: visible;
}

.page-company .site-shell {
  padding-bottom: 0;
}

.page-learn .site-shell,
.page-news .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.page-learn main,
.page-news main {
  flex: 1;
}

.page-learn .footer.footer-home,
.page-news .footer.footer-home {
  margin-top: auto;
}

.page-news .news-shell {
  padding-top: 64px;
}

.page-learn #roadmap .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(1.08rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-learn #roadmap .status {
  background: #2f2b26;
  border-color: #2f2b26;
  color: #ffffff;
}

.page-news .news-module-title {
  margin: 0 0 18px;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.7rem, 4.2vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.page-news .news-feature {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.page-news .news-feature-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-news .news-feature-title {
  margin: 0;
  font-family: "Iowan Old Style", "Source Serif 4", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.page-news .news-feature-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-news .news-feature-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

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

.page-news .news-list-head {
  display: grid;
  grid-template-columns: 132px 92px minmax(0, 1fr);
  column-gap: 18px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-news .news-row {
  display: grid;
  grid-template-columns: 132px 92px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: background-color 140ms ease;
}

.page-news .news-row:hover,
.page-news .news-row:focus-visible {
  background: rgba(0, 0, 0, 0.025);
}

.page-news .news-row time {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}

.page-news .news-category {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.page-news .news-title {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.page-news .news-summary {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.64;
}


.page-company .footer.footer-home .footer-label,
.page-company .footer.footer-home p,
.page-company .footer.footer-home a {
  color: rgba(255, 255, 255, 0.82);
}

.page-company .footer.footer-home .footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.page-company .footer.footer-home a:hover,
.page-company .footer.footer-home a:focus-visible {
  color: #fff;
}

.page-product .footer {
  background: transparent;
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.24);
  margin-top: 64px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 32px;
  padding-bottom: 18px;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  border-radius: 0;
  position: relative;
  isolation: isolate;
  z-index: 0;
  overflow: visible;
}

.page-company .footer.footer-home::before,
.page-product .footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #000;
  z-index: -1;
  pointer-events: none;
}

.page-product .site-shell {
  padding-bottom: 0;
}

.page-product .footer p,
.page-product .footer a {
  color: rgba(255, 255, 255, 0.82);
}

.page-product .footer a:hover,
.page-product .footer a:focus-visible {
  color: #fff;
}

.page-product [data-i18n="overview.title"],
.page-product [data-i18n="why.title"],
.page-product [data-i18n="architecture.title"],
.page-product [data-i18n="benchmark.title"],
.page-product [data-i18n="roadmap.title"] {
  max-width: none;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .page-learn #roadmap .section-heading h2 {
    font-size: clamp(0.9rem, 3.8vw, 1.24rem);
  }

  .page-news .news-shell {
    padding-top: 28px;
  }

  .page-news .news-module-title {
    margin-bottom: 12px;
    font-size: 1.52rem;
    line-height: 1.08;
  }

  .page-news .news-feature {
    margin-bottom: 18px;
    padding: 20px 16px;
    border-radius: 12px;
  }

  .page-news .news-feature-title {
    font-size: 1.36rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
  }

  .page-news .news-feature-summary {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .page-news .news-list-head {
    display: none;
  }

  .page-news .news-row {
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    row-gap: 8px;
    padding: 14px 0;
  }

  .page-news .news-row time {
    grid-column: 1;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .page-news .news-category {
    grid-column: 2;
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.75rem;
  }

  .page-news .news-title {
    grid-column: 1 / -1;
    font-size: 1rem;
    line-height: 1.5;
  }


  .page-company .footer.footer-home {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-product .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-logo {
    height: 86px;
    transform: translate(-22%, -33.1%) scale(1.06);
    transform-origin: top left;
  }

  .footer-brand {
    width: 214px;
    height: 31px;
    margin-bottom: 3px;
  }
}

.footer-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.55fr));
  gap: 52px;
  align-items: start;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.delay-1 {
  transition-delay: 70ms;
}

.delay-2 {
  transition-delay: 120ms;
}

.delay-3 {
  transition-delay: 170ms;
}

.delay-4 {
  transition-delay: 220ms;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: max-content 1fr max-content;
    gap: 24px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero,
  .editorial-grid,
  .figure-grid,
  .pathway-grid,
  .product-card-featured,
  .spotlight-grid,
  .network-grid,
  .quickstart-grid,
  .principle-grid,
  .trio-grid,
  .coordination-grid,
  .roadmap-grid,
  .updates-grid,
  .footer-home-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .product-card-featured {
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .topbar-tools {
    justify-self: end;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-cta {
    padding: 0 12px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 28px, 100%);
  }

  .news-shell {
    gap: 18px;
  }

  .news-feature {
    padding: 16px 14px;
  }

  .news-feature-title {
    font-size: clamp(1.12rem, 5vw, 1.4rem);
    line-height: 1.24;
  }

  .news-feature-meta,
  .news-feature-summary {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .news-list-head {
    display: none;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px 0;
  }

  .news-row time,
  .news-category {
    display: inline-flex;
    width: fit-content;
    font-size: 0.86rem;
  }

  .news-title {
    font-size: 1.04rem;
    line-height: 1.35;
  }

  .updates-section .section-heading {
    margin-bottom: 18px;
  }

  .updates-section .section-heading h2 {
    white-space: nowrap;
    text-wrap: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: clamp(1.02rem, 4.1vw, 1.28rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .updates-grid {
    gap: 18px;
    margin-top: 10px;
  }

  .page-company .updates-grid .update-item {
    padding: 16px 14px;
  }

  .update-item h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .update-item p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px 0 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-tools {
    width: 100%;
    grid-column: 1 / -1;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

   .brand {
    min-width: 0;
  }

  .brand-type {
    font-size: 2rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    gap: 28px;
  }

  .hero-home {
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .home-hero-side {
    gap: 22px;
    padding-top: 0;
  }

  .home-link-row strong {
    font-size: 1.24rem;
  }

  .subnav {
    top: 66px;
    gap: 14px;
    overflow-x: clip;
    flex-wrap: wrap;
  }

  .compare-header {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .compare-row > * {
    padding: 4px 0;
    border-top: 0;
  }

  .compare-row {
    border-top: 1px solid var(--line);
  }

  .timeline-step {
    grid-template-columns: 60px 1fr;
  }

  .metric-row,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer {
    gap: 14px;
  }
}

/* ICP record in footer brand column */
.icp-record {
  display: inline-flex;
  align-items: center;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.70rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-decoration: none;
  opacity: 0.9;
}

.icp-record:hover,
.icp-record:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.page-company .footer.footer-home .icp-record,
.page-product .footer .icp-record {
  display: block;
  color: #ffffff;
  opacity: 1;
}

.page-company .footer.footer-home .icp-record:hover,
.page-company .footer.footer-home .icp-record:focus-visible,
.page-product .footer .icp-record:hover,
.page-product .footer .icp-record:focus-visible {
  color: #ffffff;
}

@media (max-width: 760px) {
  .icp-record {
    margin-top: 1px;
    font-size: 0.66rem;
  }
}

