
:root {
  --bg: #0b1220;
  --bg-soft: #101827;
  --panel: rgba(19, 28, 43, 0.9);
  --panel-soft: rgba(17, 24, 38, 0.78);
  --panel-alt: rgba(255, 255, 255, 0.035);
  --text: #f5f7fb;
  --muted: #9ca6ba;
  --muted-strong: #cdd5e5;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #ff8a24;
  --accent-soft: rgba(255, 138, 36, 0.18);
  --accent-2: #ffb24d;
  --success: #78d6a4;
  --warning: #ffd166;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 64px rgba(1, 7, 16, 0.38);
  --shadow-soft: 0 10px 30px rgba(5, 10, 18, 0.25);
  --container: 1180px;
  --header-height: 86px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 138, 36, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(86, 113, 190, 0.16), transparent 30%),
    linear-gradient(180deg, #09101b 0%, #0b1220 38%, #0b1019 100%);
  opacity: 1;
  transform: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

body.is-ready {
  opacity: 1;
  transform: none;
}

body.is-leaving {
  opacity: 0;
  transform: translateY(6px);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 72%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.06), transparent 32%),
    radial-gradient(circle at 18% 74%, rgba(255, 138, 36, 0.08), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 13, 0.1) 100%);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: rgba(255, 138, 36, 0.32);
  color: var(--text);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea {
  appearance: none;
}

:focus-visible {
  outline: 3px solid rgba(255, 178, 77, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #111827;
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.4rem, 6.4vw, 7rem) 0;
}

.section-no-bottom {
  padding-bottom: 0;
}

.section-no-top {
  padding-top: 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.007)),
    radial-gradient(circle at 12% 28%, rgba(255, 138, 36, 0.08), transparent 28%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head h2,
.cta-strip h2,
.form-card h2 {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-head p,
.story-copy p,
.hero-copy .lead,
.usecase-header p,
.footer-brand p,
.card p {
  color: var(--muted);
  line-height: 1.8;
}

.section-chip,
.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 77, 0.18);
  background: rgba(255, 138, 36, 0.08);
  color: var(--accent-2);
  padding: 0.48rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 0.5rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.mini-label {
  font-size: 0.72rem;
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.07rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 13, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 138, 36, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 178, 77, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark::before {
  width: 44px;
  height: 2px;
  transform: rotate(45deg);
}

.brand-mark::after {
  width: 44px;
  height: 2px;
  transform: rotate(-45deg);
}

.brand-mark-core {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 7px rgba(255, 138, 36, 0.12);
  position: relative;
  z-index: 1;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 0.08rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a.is-active {
  color: var(--text);
  border-color: rgba(255, 178, 77, 0.26);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 138, 36, 0.08);
}

.nav-mobile-cta {
  display: none;
}

.nav-desktop-cta {
  margin-left: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 178, 77, 0.24);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  transition: transform 500ms ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(120%);
}

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

.btn-primary {
  color: #1b1309;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 38px rgba(255, 138, 36, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 138, 36, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(255, 178, 77, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  padding: clamp(5.4rem, 8vw, 8.5rem) 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
}

.hero-grid-tight {
  align-items: start;
}

.hero-copy h1 {
  margin: 0.7rem 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.0rem, 3vw, 4.0rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2rem;
}

.trust-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem 1.05rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.98rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.visual-shell {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.card {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(21, 31, 48, 0.95), rgba(12, 18, 30, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(255, 138, 36, 0.12), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 138, 36, 0.14), transparent 68%);
  pointer-events: none;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
}

.visual-card {
  min-height: 100%;
}

.visual-map {
  grid-column: 1 / -1;
  min-height: 366px;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 138, 36, 0.14);
}

.map-svg {
  width: 100%;
  height: clamp(220px, 30vw, 280px);
}

.map-panel {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}

.map-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
}

.map-route.secondary {
  stroke: rgba(255, 138, 36, 0.52);
}

.map-route.tertiary {
  stroke: rgba(255, 255, 255, 0.11);
  stroke-dasharray: 5 8;
}

.map-node {
  fill: rgba(255, 255, 255, 0.5);
}

.map-node.active {
  fill: var(--accent);
}

.map-node.alert {
  fill: var(--warning);
}

.map-pin {
  fill: rgba(255, 138, 36, 0.16);
  stroke: rgba(255, 178, 77, 0.82);
  stroke-width: 2;
}

.map-pin-core {
  fill: var(--accent-2);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.legend-dot {
  display: inline-block;
  margin-right: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.legend-dot.active {
  background: var(--accent);
}

.legend-dot.alert {
  background: var(--warning);
}

.legend-dot.neutral {
  background: #7ea2f7;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.metric-label {
  margin: 0 0 0.28rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.metric-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.progress-stack {
  display: grid;
  gap: 0.9rem;
}

.meter {
  display: grid;
  gap: 0.35rem;
}

.meter > span,
.meter > strong {
  font-size: 0.95rem;
}

.meter > strong {
  color: var(--accent-2);
}

.meter-track {
  overflow: hidden;
  border-radius: 999px;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.meter-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .meter-fill {
  width: var(--fill);
}

.status-list,
.priority-list,
.stack-list,
.contact-list,
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-list {
  display: grid;
  gap: 0.85rem;
}

.status-list li,
.priority-list li,
.contact-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-list li:last-child,
.priority-list li:last-child,
.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-strong);
}

.tag-live {
  background: rgba(255, 138, 36, 0.16);
  border: 1px solid rgba(255, 178, 77, 0.18);
  color: var(--accent-2);
}

.mini-chart {
  position: relative;
}

.mini-chart.bars {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  min-height: 118px;
  padding-top: 0.75rem;
}

.bar {
  flex: 1;
  height: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--accent-2), rgba(255, 138, 36, 0.34));
  transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .bar {
  height: var(--height);
}

.dashboard-foot {
  display: grid;
  gap: 0.32rem;
  margin-top: 1rem;
}

.dashboard-foot strong {
  font-size: 1.05rem;
}

.dashboard-foot span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
}

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

.card-grid.quarters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.linked-card,
.benefit-card,
.outcome-card,
.capability-card,
.ops-card,
.channel-card {
  min-height: 100%;
}

.feature-card,
.linked-card,
.module-detail,
.solution-card {
  display: grid;
  gap: 1rem;
}

.icon-badge {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 138, 36, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 178, 77, 0.24);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.linked-card {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.linked-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 178, 77, 0.24);
  background:
    linear-gradient(180deg, rgba(24, 35, 54, 0.98), rgba(12, 18, 30, 0.95)),
    radial-gradient(circle at 100% 0%, rgba(255, 138, 36, 0.16), transparent 34%);
}

.link-arrow {
  margin-top: auto;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.95rem;
}

.story-grid,
.overview-grid,
.governance-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.story-copy h2,
.usecase-header h2 {
  margin: 0.7rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.12;
}

.timeline-card {
  display: grid;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  margin-top: 0.32rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 18%, var(--accent) 20% 100%);
  box-shadow: 0 0 0 6px rgba(255, 138, 36, 0.12);
  flex-shrink: 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.network-wrap {
  position: relative;
  min-height: 460px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 138, 36, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.network-core,
.network-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 22, 35, 0.95);
  box-shadow: var(--shadow-soft);
}

.network-core {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  min-width: 190px;
  min-height: 72px;
  font-weight: 800;
  color: var(--text);
  border-color: rgba(255, 178, 77, 0.28);
  background: linear-gradient(160deg, rgba(255, 138, 36, 0.18), rgba(19, 28, 43, 0.96));
}

.network-node {
  min-width: 150px;
  color: var(--muted-strong);
}

.node-citizen {
  top: 12%;
  left: 7%;
}

.node-dept {
  top: 12%;
  right: 8%;
}

.node-field {
  top: 49%;
  left: 4%;
  transform: translateY(-50%);
}

.node-exec {
  top: 49%;
  right: 4%;
  transform: translateY(-50%);
}

.node-partner {
  bottom: 12%;
  left: 11%;
}

.node-external {
  bottom: 12%;
  right: 9%;
}

.network-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(255, 178, 77, 0.55), transparent);
}

.line-1 {
  width: 235px;
  left: calc(50% - 30px);
  top: 35%;
  transform: rotate(-150deg);
}

.line-2 {
  width: 235px;
  left: calc(50% + 28px);
  top: 35%;
  transform: rotate(-30deg);
}

.line-3 {
  width: 220px;
  left: 16%;
  top: 50%;
}

.line-4 {
  width: 220px;
  right: 16%;
  top: 50%;
  transform: rotate(180deg);
}

.line-5 {
  width: 230px;
  left: calc(50% - 30px);
  bottom: 34%;
  transform: rotate(150deg);
}

.line-6 {
  width: 230px;
  left: calc(50% + 28px);
  bottom: 34%;
  transform: rotate(30deg);
}

.dashboard-preview {
  padding: 1.3rem;
}

.dashboard-top {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.dashboard-kpi,
.dashboard-panel {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-kpi {
  padding: 1rem;
}

.dashboard-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 0.42rem;
}

.dashboard-kpi strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.2;
}

.dashboard-bottom {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.dashboard-panel {
  padding: 1.2rem;
}

.mini-chart.lines {
  margin-top: 1rem;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 20% 100%;
}

.line-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.line-svg polyline {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.35s ease;
}

.is-visible .line-svg polyline {
  stroke-dashoffset: 0;
}

.line-point {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 7px rgba(255, 138, 36, 0.12);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 420ms ease 300ms;
}

.is-visible .line-point {
  transform: translate(-50%, -50%) scale(1);
}

.priority-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.priority-list strong {
  color: var(--accent-2);
  white-space: nowrap;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(135deg, rgba(255, 138, 36, 0.24), rgba(17, 24, 38, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 178, 77, 0.2);
}

.cta-strip p {
  color: #eadfd5;
}

.cta-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-actions.centered {
  justify-content: center;
  margin-top: 2rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.75;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 138, 36, 0.1);
}

.platform-ring {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.platform-ring::before,
.platform-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.platform-ring::before {
  width: 320px;
  height: 320px;
}

.platform-ring::after {
  width: 420px;
  height: 420px;
  opacity: 0.28;
}

.platform-center,
.ring-node {
  position: absolute;
  border-radius: 999px;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  background: rgba(15, 22, 35, 0.95);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.platform-center {
  z-index: 1;
  min-width: 190px;
  min-height: 74px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border-color: rgba(255, 178, 77, 0.22);
  background: linear-gradient(145deg, rgba(255, 138, 36, 0.18), rgba(15, 22, 35, 0.95));
}

.ring-node {
  white-space: nowrap;
  color: var(--muted-strong);
}

.ring-1 {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.ring-2 {
  top: 28%;
  right: 2%;
}

.ring-3 {
  bottom: 18%;
  right: 6%;
}

.ring-4 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.ring-5 {
  bottom: 18%;
  left: 4%;
}

.ring-6 {
  top: 28%;
  left: 4%;
}

.module-detail-grid,
.solution-stack,
.usecase-stack,
.architecture-diagram,
.faq-list,
.contact-sidebar,
.solutions-stat-grid {
  display: grid;
  gap: 1rem;
}

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

.module-header,
.solution-title {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.module-header h3 {
  margin-bottom: 0.35rem;
}

.tag-list {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 0 0.1rem;
  padding: 0;
}

.tag-list li,
.layer-grid span {
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(11, auto);
  gap: 0.85rem;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.flow-step {
  min-width: 210px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.flow-step strong {
  display: block;
  margin-bottom: 0.5rem;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-size: 1.45rem;
  line-height: 1;
}

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

.solution-columns h4 {
  margin: 0 0 0.35rem;
  color: var(--accent-2);
  font-size: 1rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.comparison-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-align: left;
  padding: 1rem;
  font-weight: 700;
}

.comparison-table tbody th,
.comparison-table tbody td {
  padding: 1rem;
  border-top: 1px solid var(--line);
  text-align: left;
  color: var(--muted);
  vertical-align: top;
}

.comparison-table tbody th {
  color: var(--text);
  min-width: 220px;
}

.comparison-table tbody tr:last-child td,
.comparison-table tbody tr:last-child th {
  background: rgba(255, 138, 36, 0.08);
}

.usecase-block {
  display: grid;
  gap: 1rem;
}

.usecase-header {
  max-width: 840px;
}

.usecase-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
}

.usecase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usecase-grid .card {
  min-height: 100%;
}

.usecase-grid ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.timeline-line {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline-stage {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.timeline-stage::before {
  content: "";
  position: absolute;
  left: 0.88rem;
  top: 1.35rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 138, 36, 0.1);
}

.timeline-stage strong {
  display: block;
  margin-bottom: 0.45rem;
}

.architecture-hero-card,
.contact-hero-card,
.usecase-hero-panel {
  padding: 1.6rem;
}

.stack-list {
  display: grid;
  gap: 0.8rem;
}

.stack-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
}

.architecture-diagram {
  gap: 1.1rem;
}

.architecture-layer {
  position: relative;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.architecture-layer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 178, 77, 0.5), transparent);
}

.architecture-layer:last-child::after {
  display: none;
}

.layer-title {
  margin-bottom: 0.9rem;
  font-weight: 700;
  font-size: 1rem;
}

.layer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.form-card h2 {
  margin-top: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
}

.form-grid label span {
  font-weight: 600;
  color: var(--muted-strong);
}

.full-width {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

textarea {
  resize: vertical;
  min-height: 160px;
}

input::placeholder,
textarea::placeholder {
  color: #7a859b;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 178, 77, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 5px rgba(255, 138, 36, 0.12);
  outline: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-note,
.form-status,
.footer-bottom-row,
.footer-col a,
.footer-col p {
  color: var(--muted);
}

.form-note {
  max-width: 430px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.contact-list li {
  display: grid;
  justify-content: start;
  gap: 0.28rem;
}

.contact-list span,
.footer-contact-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1rem;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 2.3fr) repeat(4, minmax(0, 1fr));
  padding: 4rem 0 2.4rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 35rem;
}

.footer-col h2 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.7rem;
}

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

.footer-contact-info ul li {
  display: grid;
  gap: 0.28rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.92rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body,
  .reveal,
  .meter-fill,
  .bar,
  .line-svg polyline,
  .line-point,
  .btn,
  .linked-card,
  .nav-toggle span {
    transition: none !important;
    animation: none !important;
  }

  body {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .card-grid.quarters,
  .dashboard-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .overview-grid,
  .governance-grid,
  .contact-grid,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

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

  .hero-trust,
  .solution-columns,
  .module-detail-grid,
  .timeline-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.75rem) 0 auto 0;
    margin-left: 0;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(9, 14, 23, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

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

  .site-nav a {
    justify-content: flex-start;
    border-radius: 16px;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 0.55rem;
  }

  .nav-desktop-cta {
    display: none;
  }

  .network-wrap {
    min-height: 0;
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-core,
  .network-node {
    position: static;
    transform: none;
    min-width: 0;
  }

  .network-core {
    grid-column: 1 / -1;
  }

  .network-line {
    display: none;
  }

  .platform-ring {
    min-height: auto;
    display: grid;
    gap: 0.8rem;
    justify-items: stretch;
  }

  .platform-ring::before,
  .platform-ring::after {
    display: none;
  }

  .platform-center,
  .ring-node {
    position: static;
    transform: none;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .hero-trust,
  .card-grid.thirds,
  .card-grid.quarters,
  .dashboard-top,
  .card-grid,
  .form-grid,
  .module-detail-grid,
  .solution-columns,
  .usecase-grid,
  .timeline-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-shell,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .dashboard-bottom,
  .story-grid,
  .overview-grid,
  .governance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-kpi strong {
    font-size: 1.15rem;
  }

  .cta-strip,
  .cta-actions,
  .hero-actions,
  .form-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    min-width: 0;
  }

  .comparison-table {
    min-width: 720px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 78px;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .section-head h2,
  .cta-strip h2,
  .story-copy h2,
  .usecase-header h2 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .network-wrap {
    grid-template-columns: 1fr;
  }

  .card,
  .cta-strip {
    padding: 1.2rem;
  }

  .visual-map {
    min-height: 320px;
  }

  .comparison-table {
    min-width: 640px;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 138, 36, 0.18), rgba(255, 255, 255, 0.05));
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-mark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.footer-logo {
  width: min(100%, 292px);
  border-radius: 22px;
  border: 1px solid rgba(255, 178, 77, 0.18);
  background: rgba(6, 10, 16, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  width: min(100%, 290px);
  margin-bottom: 1rem;
  padding: 0.45rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 178, 77, 0.18);
  background: rgba(7, 11, 18, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.hero-logo-img {
  width: 100%;
  border-radius: 18px;
}

.platform-hero-title {
  max-width: 11.5ch;
  font-size: clamp(2.35rem, 4.15vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

body[data-page="platform"] .hero-copy .lead {
  max-width: 42rem;
}

@media (max-width: 980px) {
  .brand {
    min-width: 0;
    max-width: calc(100% - 70px);
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.7rem;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .footer-logo {
    width: min(100%, 240px);
  }

  .hero-logo-badge {
    width: min(100%, 240px);
    border-radius: 20px;
  }

  .platform-hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    max-width: 10.2ch;
  }
}
