:root {
  color-scheme: dark;
  --bg: #080b0e;
  --surface: #101419;
  --surface-2: #151a20;
  --surface-3: #1b2128;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f5f6;
  --muted: #9ba4ad;
  --soft: #c7cdd2;
  --accent: #ff8b2c;
  --accent-2: #ffb15c;
  --mint: #78d7b5;
  --blue: #79a7ff;
  --danger: #ff6d73;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% -5%, rgba(255, 139, 44, 0.09), transparent 27rem),
    radial-gradient(circle at -10% 28%, rgba(121, 167, 255, 0.055), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #160b02;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.signal-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.88);
  color: #7f8993;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.signal-links,
.signal-stats {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.signal-stats span {
  white-space: nowrap;
}

.signal-stats strong {
  margin-left: 5px;
  color: var(--soft);
  font-weight: 800;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(120, 215, 181, 0.7);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 14, 0.82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 139, 44, 0.45);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 139, 44, 0.2), rgba(255, 139, 44, 0.03));
  place-items: center;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.brand-mark::before {
  left: 7px;
}

.brand-mark::after {
  right: 7px;
  border-color: var(--accent-2);
}

.brand span:last-child {
  color: var(--muted);
  font-weight: 650;
}

.brand b {
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.nav-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #1c0e03;
  box-shadow: 0 12px 35px rgba(255, 139, 44, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--accent-2);
  background: var(--accent-2);
}

.button-arrow::after {
  content: "↗";
  font-size: 16px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: var(--text);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

main {
  min-height: 65vh;
}

.hero {
  position: relative;
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.07;
}

h1 {
  max-width: 740px;
  margin-bottom: 25px;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.065em;
}

h1 .accent,
h2 .accent {
  color: var(--accent);
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

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

.micro-note {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 10px;
  color: #7e8790;
  font-size: 12px;
}

.micro-note svg {
  width: 15px;
  color: var(--mint);
}

.console-wrap {
  position: relative;
}

.console-wrap::before {
  position: absolute;
  z-index: -1;
  inset: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 139, 44, 0.16), transparent 66%);
  content: "";
  filter: blur(18px);
}

.console-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(15, 19, 24, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(1.25deg);
}

.console-top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.console-badge {
  padding: 5px 8px;
  border: 1px solid rgba(120, 215, 181, 0.2);
  border-radius: 20px;
  background: rgba(120, 215, 181, 0.08);
  color: var(--mint);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.console-body {
  padding: 20px;
}

.flow-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 139, 44, 0.08), rgba(255, 255, 255, 0.02));
}

.flow-head,
.activity-row,
.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flow-head strong {
  font-size: 14px;
}

.flow-head span {
  color: var(--muted);
  font-size: 11px;
}

.flow-map {
  display: grid;
  margin-top: 22px;
  align-items: center;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.flow-node {
  display: grid;
  min-height: 70px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--soft);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  place-items: center;
}

.flow-node i {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 139, 44, 0.14);
  color: var(--accent-2);
  font-style: normal;
  place-items: center;
}

.flow-arrow {
  color: #56606a;
}

.activity {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.activity-header {
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-row {
  padding: 11px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 11px;
}

.activity-row:last-child {
  border-bottom: 0;
}

.activity-row span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: var(--surface-3);
  color: var(--accent-2);
  place-items: center;
}

.activity-row time {
  color: #6f7982;
}

.trust-strip {
  margin-top: 48px;
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 96px;
  padding: 21px 25px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 68px 0;
}

.section-header {
  display: flex;
  margin-bottom: 38px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-header h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
}

.section-header p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(12, 1fr);
}

.feature-card,
.info-card,
.system-card,
.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.feature-card:hover,
.info-card:hover,
.value-card:hover {
  border-color: rgba(255, 139, 44, 0.28);
  transform: translateY(-3px);
}

.feature-card {
  min-height: 300px;
  padding: 29px;
  grid-column: span 4;
}

.feature-card.wide {
  grid-column: span 8;
}

.feature-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 139, 44, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 25px rgba(255, 139, 44, 0.025), 0 0 0 55px rgba(255, 139, 44, 0.018);
}

.card-index {
  display: flex;
  margin-bottom: 70px;
  align-items: center;
  justify-content: space-between;
  color: #68727b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 139, 44, 0.17);
  border-radius: 12px;
  background: rgba(255, 139, 44, 0.08);
  color: var(--accent-2);
  font-size: 18px;
  place-items: center;
}

.feature-card h3,
.info-card h3,
.value-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.feature-card p,
.info-card p,
.value-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  margin-top: 23px;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.link-arrow::after {
  color: var(--accent);
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.workflow-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0d1115;
  grid-template-columns: 0.92fr 1.08fr;
}

.workflow-copy {
  padding: 52px;
}

.workflow-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.05em;
}

.workflow-copy > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 14px;
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(120, 215, 181, 0.25);
  border-radius: 50%;
  background: rgba(120, 215, 181, 0.07);
  color: var(--mint);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.workflow-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 45px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 139, 44, 0.13), transparent 45%),
    var(--surface);
  place-items: center;
}

.orbit {
  position: relative;
  display: grid;
  width: min(360px, 92%);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  place-items: center;
}

.orbit::before {
  position: absolute;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 139, 44, 0.16);
  border-radius: inherit;
  content: "";
}

.orbit-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 139, 44, 0.3);
  border-radius: 28px;
  background: linear-gradient(145deg, #2a1b11, #151719);
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  place-items: center;
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #171c21;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  place-items: center;
}

.orbit-node:nth-of-type(2) {
  top: -13px;
  left: calc(50% - 36px);
}

.orbit-node:nth-of-type(3) {
  top: calc(50% - 36px);
  right: -13px;
}

.orbit-node:nth-of-type(4) {
  bottom: -13px;
  left: calc(50% - 36px);
}

.orbit-node:nth-of-type(5) {
  top: calc(50% - 36px);
  left: -13px;
}

.cta-panel {
  position: relative;
  display: flex;
  padding: 50px 54px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255, 139, 44, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 139, 44, 0.14), rgba(255, 255, 255, 0.02) 48%, rgba(121, 167, 255, 0.06));
}

.cta-panel::after {
  position: absolute;
  top: -140px;
  right: 12%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.015), 0 0 0 90px rgba(255, 255, 255, 0.01);
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.page-hero {
  padding: 78px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: 1.18fr 0.82fr;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-aside {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.page-hero-aside span {
  display: block;
  color: #717b84;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-hero-aside strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.page-hero-aside p {
  margin-top: 8px;
  font-size: 13px;
}

.info-grid,
.value-grid,
.system-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.value-card {
  min-height: 250px;
  padding: 28px;
}

.info-card .card-icon,
.value-card .card-icon {
  margin-bottom: 48px;
}

.architecture {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  grid-template-columns: 0.7fr 1.3fr;
}

.architecture-copy {
  padding: 46px;
  border-right: 1px solid var(--line);
}

.architecture-copy h2 {
  margin-bottom: 18px;
  font-size: 38px;
  letter-spacing: -0.045em;
}

.architecture-copy p {
  color: var(--muted);
}

.architecture-stack {
  display: grid;
  padding: 38px;
  gap: 12px;
}

.stack-row {
  display: grid;
  padding: 18px 20px;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 34px 1fr auto;
}

.stack-row i {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 139, 44, 0.1);
  color: var(--accent-2);
  font-style: normal;
  font-weight: 850;
  place-items: center;
}

.stack-row strong {
  font-size: 14px;
}

.stack-row span {
  color: var(--muted);
  font-size: 11px;
}

.docs-layout {
  display: grid;
  padding: 62px 0 90px;
  align-items: start;
  gap: 65px;
  grid-template-columns: 230px minmax(0, 760px);
}

.docs-sidebar {
  position: sticky;
  top: 108px;
}

.docs-sidebar strong {
  display: block;
  margin-bottom: 12px;
  color: #6e7780;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docs-sidebar nav {
  display: grid;
  gap: 4px;
}

.docs-sidebar a {
  padding: 8px 11px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}

.docs-sidebar a:hover,
.docs-sidebar a:focus-visible {
  border-color: var(--accent);
  color: var(--text);
}

.docs-content h2 {
  margin: 62px 0 18px;
  font-size: 32px;
  letter-spacing: -0.04em;
  scroll-margin-top: 120px;
}

.docs-content h2:first-child {
  margin-top: 0;
}

.docs-content h3 {
  margin: 32px 0 12px;
  font-size: 19px;
}

.docs-content p,
.docs-content li {
  color: var(--muted);
}

.docs-content ul,
.docs-content ol {
  padding-left: 22px;
}

.docs-content code:not(pre code) {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--accent-2);
  font-size: 0.9em;
}

.code-block {
  position: relative;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #06080a;
}

.code-label {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  color: #6e7881;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

pre {
  margin: 0;
  padding: 22px;
  color: #cbd2d8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
}

.notice {
  margin: 25px 0;
  padding: 18px 20px;
  border: 1px solid rgba(121, 167, 255, 0.18);
  border-radius: 14px;
  background: rgba(121, 167, 255, 0.055);
  color: var(--soft);
  font-size: 13px;
}

.notice strong {
  color: var(--blue);
}

.status-summary {
  display: flex;
  margin-bottom: 26px;
  padding: 25px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid rgba(120, 215, 181, 0.22);
  border-radius: var(--radius);
  background: rgba(120, 215, 181, 0.055);
}

.status-summary strong {
  font-size: 22px;
  letter-spacing: -0.025em;
}

.status-summary span {
  color: var(--muted);
  font-size: 12px;
}

.status-pulse {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--mint);
}

.status-pulse::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(120, 215, 181, 0.35);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1); }
}

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

.system-card {
  padding: 22px;
}

.system-card h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.system-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.status-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.status-ok::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

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

.uptime-bar i {
  height: 20px;
  border-radius: 3px;
  background: rgba(120, 215, 181, 0.75);
}

.incident-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.incident-row {
  display: grid;
  padding: 22px 25px;
  align-items: start;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
}

.incident-row:last-child {
  border-bottom: 0;
}

.incident-row time {
  color: #707a83;
  font-size: 12px;
}

.incident-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.incident-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.prose {
  width: min(100%, 760px);
}

.prose h2 {
  margin: 56px 0 17px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 177, 92, 0.35);
  text-underline-offset: 3px;
}

.meta-line {
  margin-bottom: 32px;
  color: #727c84;
  font-size: 12px;
}

.not-found {
  display: grid;
  min-height: 68vh;
  padding: 70px 0;
  text-align: center;
  place-items: center;
}

.not-found-code {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
  opacity: 0.92;
}

.not-found h1 {
  margin-bottom: 12px;
  font-size: 38px;
}

.not-found p {
  max-width: 520px;
  margin: 0 auto 27px;
  color: var(--muted);
}

.site-footer {
  margin-top: 85px;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.55);
}

.footer-main {
  display: grid;
  padding: 55px 0;
  gap: 48px;
  grid-template-columns: 1.25fr repeat(3, 0.6fr);
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-col strong {
  display: block;
  margin-bottom: 14px;
  color: #727c85;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col nav {
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: var(--muted);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #68727b;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .signal-links {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .workflow-panel,
  .architecture {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .console-card {
    max-width: 670px;
    margin-inline: auto;
    transform: none;
  }

  .feature-card,
  .feature-card.wide {
    grid-column: span 6;
  }

  .workflow-visual {
    min-height: 430px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .architecture-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }
}

@media (max-width: 790px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(12, 15, 19, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 18px;
  }

  .info-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .docs-layout {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }

  .docs-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .docs-sidebar a {
    flex: 0 0 auto;
    border-bottom: 1px solid var(--line-strong);
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .signal-inner {
    justify-content: center;
  }

  .signal-stats span:nth-child(n+3) {
    display: none;
  }

  .nav-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .flow-map {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .feature-card,
  .feature-card.wide {
    min-height: 275px;
    grid-column: 1 / -1;
  }

  .section {
    padding: 72px 0;
  }

  .workflow-copy,
  .architecture-copy,
  .architecture-stack {
    padding: 30px 24px;
  }

  .workflow-visual {
    min-height: 380px;
    padding: 35px 25px;
  }

  .orbit-node {
    width: 62px;
    height: 62px;
  }

  .orbit-node:nth-of-type(2) {
    left: calc(50% - 31px);
  }

  .orbit-node:nth-of-type(3) {
    top: calc(50% - 31px);
  }

  .orbit-node:nth-of-type(4) {
    left: calc(50% - 31px);
  }

  .orbit-node:nth-of-type(5) {
    top: calc(50% - 31px);
  }

  .cta-panel {
    display: block;
    padding: 36px 28px;
  }

  .cta-panel .button {
    width: 100%;
    margin-top: 25px;
  }

  .page-hero-grid {
    gap: 30px;
  }

  .status-summary {
    align-items: flex-start;
  }

  .incident-row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

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

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    padding: 20px 0;
  }

  .footer-bottom div {
    margin-top: 8px;
  }
}
