:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #151714;
  --muted: #686d64;
  --line: #dfd9cc;
  --line-strong: #cfc5b4;
  --green: #0d8f6f;
  --green-soft: #dff4eb;
  --blue: #3067c8;
  --blue-soft: #e4edff;
  --coral: #d45d43;
  --coral-soft: #ffe5dd;
  --gold: #b98522;
  --gold-soft: #fff1c8;
  --shadow: 0 24px 70px rgba(37, 34, 26, 0.12);
  --small-shadow: 0 12px 34px rgba(37, 34, 26, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(255, 229, 221, 0.62) 0%, rgba(255, 229, 221, 0) 34%, rgba(223, 244, 235, 0.66) 68%, rgba(223, 244, 235, 0) 100%),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(21, 23, 20, 0.025), rgba(21, 23, 20, 0.025) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
  opacity: 0.55;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  margin: 12px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(207, 197, 180, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(37, 34, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--ink), #33362f 52%, var(--green));
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(223, 217, 204, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--paper-strong);
}

.main-nav a.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(21, 23, 20, 0.18);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-button,
.solid-button,
.text-link,
.tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ghost-button,
.tab-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 14px;
}

.solid-button {
  border: 1px solid #0f110e;
  color: #fff;
  background: #151714;
  padding: 0 16px;
  box-shadow: 0 9px 22px rgba(21, 23, 20, 0.16);
}

.solid-button.big,
.ghost-button.big {
  min-height: 48px;
  padding: 0 20px;
}

.ghost-button.full,
.solid-button.full {
  width: 100%;
}

.ghost-button:hover,
.solid-button:hover,
.tab-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.solid-button:hover {
  background: #2b2f27;
}

.text-link {
  position: relative;
  min-height: 40px;
  color: var(--ink);
  padding: 0 3px;
  gap: 8px;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-strong);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 20px 0 26px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 3.05rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.52rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lede,
.page-hero p {
  max-width: 680px;
  font-size: 1.04rem;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-signals.signal-row {
  margin: 0 0 18px;
}

.signal-row div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.signal-row strong,
.signal-row span {
  display: block;
}

.signal-row strong {
  margin-bottom: 7px;
}

.signal-row span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(207, 197, 180, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(228, 237, 255, 0.36)),
    var(--paper);
  box-shadow: var(--shadow);
}

.traffic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 20, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.console-card {
  position: absolute;
  border: 1px solid rgba(207, 197, 180, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--small-shadow);
}

.console-main {
  left: 58px;
  right: 38px;
  top: 48px;
  min-height: 266px;
  padding: 18px;
}

.route-card {
  left: 28px;
  bottom: 24px;
  width: 250px;
  padding: 16px;
}

.access-card {
  right: 42px;
  bottom: 42px;
  width: 240px;
  padding: 16px;
}

.card-topline,
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(13, 143, 111, 0.13);
}

.video-strip {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.95fr;
  gap: 10px;
  height: 132px;
  margin-top: 18px;
}

.video-strip span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 20, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(48, 103, 200, 0.2), rgba(13, 143, 111, 0.22)),
    linear-gradient(45deg, rgba(21, 23, 20, 0.12), transparent 52%);
}

.video-strip span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-130%);
  animation: shine 3.8s infinite;
  animation-delay: var(--delay);
}

.timeline {
  position: relative;
  height: 42px;
  margin: 22px 0 10px;
}

.timeline-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
}

.timeline i {
  position: absolute;
  top: 12px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--paper-strong);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 4px 16px rgba(21, 23, 20, 0.2);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-grid div,
.dash-panel {
  position: relative;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(223, 217, 204, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
  overflow: hidden;
}

.dash-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.55) 42%, transparent 68%);
  transform: translateX(-130%);
  animation: panelSweep 8s ease-in-out infinite;
}

.metric-grid span,
.dash-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-grid strong,
.dash-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 7px;
  font-size: 1.28rem;
}

.route-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(223, 244, 235, 0.62);
}

.route-list span {
  font-weight: 900;
}

.route-list b {
  color: var(--green);
  font-size: 0.8rem;
}

.lock-icon {
  position: relative;
  width: 18px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -10px;
  width: 8px;
  height: 9px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.access-lines {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.access-lines span {
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.access-lines span:nth-child(2) {
  width: 72%;
}

.access-lines span:nth-child(3) {
  width: 54%;
}

.access-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.48;
}

.ticker-band {
  overflow: hidden;
  margin: 10px 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content-section {
  padding: 74px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(390px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-section > * {
  min-width: 0;
}

.split-section h2 {
  max-width: 520px;
}

.story-copy p {
  margin-bottom: 18px;
}

.traffic-profile-section {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.traffic-profile-section h2 {
  max-width: 760px;
}

.traffic-profile-section .story-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: none;
}

.traffic-profile-section .story-copy p {
  margin-bottom: 0;
}

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

.feature-grid,
.route-grid,
.pricing-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.route-tile,
.price-card,
.doc-card,
.feature-row-section article,
.compare-grid div,
.timeline-list article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.route-tile:hover,
.price-card:hover,
.doc-card:hover,
.feature-row-section article:hover,
.compare-grid div:hover,
.timeline-list article:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--small-shadow);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  margin-bottom: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-index,
.route-tile:nth-child(2) .feature-index {
  color: var(--blue);
  background: var(--blue-soft);
}

.feature-card:nth-child(3) .feature-index,
.route-tile:nth-child(3) .feature-index {
  color: var(--coral);
  background: var(--coral-soft);
}

.feature-card:nth-child(4) .feature-index {
  color: var(--gold);
  background: var(--gold-soft);
}

.feature-card p,
.route-tile p,
.doc-card p,
.feature-row-section p,
.compare-grid p,
.timeline-list p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.product-demo,
.status-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.demo-copy p,
.status-copy p {
  max-width: 540px;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(223, 244, 235, 0.46));
  box-shadow: var(--small-shadow);
}

.flow-board::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
}

.flow-node {
  position: relative;
  z-index: 1;
  min-height: 146px;
  padding: 16px;
  border: 1px solid rgba(207, 197, 180, 0.92);
  border-radius: 7px;
  background: var(--paper-strong);
}

.flow-node span,
.flow-node small,
.plan-label,
.doc-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-node strong {
  display: block;
  margin: 28px 0 5px;
}

.flow-node.active {
  border-color: rgba(13, 143, 111, 0.4);
  box-shadow: 0 0 0 4px rgba(13, 143, 111, 0.08);
}

.cta-section {
  margin-bottom: 72px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.cta-section h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.cta-section .solid-button {
  justify-self: end;
}

.page-hero {
  max-width: 880px;
  padding: 58px 0 44px;
}

.page-hero h1 {
  font-size: 2.95rem;
}

.platform-stage {
  padding-top: 24px;
}

.dashboard-frame {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #181a16;
}

.dash-sidebar span {
  height: 44px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.dash-sidebar span:first-child {
  background: var(--green);
}

.dash-main {
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px),
    #fffdf8;
  background-size: 38px 38px;
}

.dash-header {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
}

.dash-header b {
  color: var(--green);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

.dash-panel.large {
  min-height: 292px;
  grid-row: span 2;
}

.dash-panel.wide {
  grid-column: span 2;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 230px;
  padding: 16px;
}

.waveform i {
  position: relative;
  flex: 1;
  min-width: 8px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, rgba(48, 103, 200, 0.94), rgba(13, 143, 111, 0.94));
  overflow: hidden;
  contain: paint;
  transform: translateZ(0);
}

.waveform i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 42%, rgba(255, 255, 255, 0.2));
  opacity: 0.38;
  animation: waveGlow 3.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n)::after {
  animation-delay: 0.25s;
}

.waveform i:nth-child(3n)::after {
  animation-delay: 0.45s;
}

.mini-routes {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.mini-routes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
}

.mini-routes span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid var(--paper-strong);
  border-radius: 50%;
  background: var(--ink);
}

.mini-routes span::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(13, 143, 111, 0.28);
  opacity: 0;
  animation: routePing 3.6s ease-out infinite;
}

.mini-routes span:nth-child(2)::after {
  animation-delay: 0.5s;
}

.mini-routes span:nth-child(3)::after {
  animation-delay: 1s;
}

.mini-routes span:nth-child(4)::after {
  animation-delay: 1.5s;
}

.mini-routes span:nth-child(5)::after {
  animation-delay: 2s;
}

.dash-sparks {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.dash-sparks i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(13, 143, 111, 0.9), rgba(48, 103, 200, 0.25), transparent);
  transform-origin: left center;
  animation: sparkLine 3.8s ease-in-out infinite alternate;
}

.dash-sparks i:nth-child(2) {
  width: 76%;
  animation-delay: 0.4s;
}

.dash-sparks i:nth-child(3) {
  width: 54%;
  animation-delay: 0.8s;
}

.dash-mini-trend {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 44px;
  margin-top: 16px;
}

.dash-mini-trend i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(48, 103, 200, 0.78), rgba(13, 143, 111, 0.78));
  opacity: 0.82;
}

.worker-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.worker-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid rgba(223, 217, 204, 0.9);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.feature-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.tab-buttons {
  display: grid;
  gap: 8px;
  align-content: start;
}

.tab-button {
  justify-content: flex-start;
  min-height: 54px;
  width: 100%;
}

.tab-button.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.tab-panels {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  overflow: hidden;
}

.tab-panel {
  display: none;
  min-height: 320px;
  padding: 34px;
}

.tab-panel.is-active {
  display: block;
  animation: panelIn 260ms ease both;
}

.tab-panel h3 {
  max-width: 720px;
  font-size: 1.8rem;
}

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

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.feature-row-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.network-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding-top: 22px;
}

.network-map {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 20, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(228, 237, 255, 0.8), rgba(223, 244, 235, 0.22) 56%, rgba(255, 229, 221, 0.34)),
    var(--paper-strong);
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: var(--shadow);
}

.map-topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(223, 217, 204, 0.82);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(14px);
}

.map-topline span,
.map-topline strong {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-topline span {
  color: var(--muted);
}

.map-topline strong {
  color: var(--green);
}

.edge-console {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edge-console::after {
  content: "";
  position: absolute;
  inset: 74px 18px 18px;
  pointer-events: none;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 20, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.edge-console-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(360px, 1.15fr);
  gap: 16px;
  flex: 1;
  min-height: 420px;
}

.edge-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.edge-node-card {
  position: relative;
  min-height: 106px;
  padding: 14px;
  border: 1px solid rgba(223, 217, 204, 0.92);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  overflow: hidden;
}

.edge-node-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(13, 143, 111, 0.1);
}

.edge-node-card.primary {
  grid-column: 1 / -1;
  min-height: 118px;
  color: #fff;
  border-color: rgba(21, 23, 20, 0.92);
  background:
    linear-gradient(135deg, rgba(21, 23, 20, 0.98), rgba(45, 49, 40, 0.96) 58%, rgba(13, 143, 111, 0.92));
}

.edge-node-card span,
.flow-panel-head span,
.edge-readouts span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edge-node-card.primary span,
.edge-node-card.primary small {
  color: rgba(255, 255, 255, 0.72);
}

.edge-node-card strong {
  display: block;
  margin: 18px 0 4px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}

.edge-node-card.primary strong {
  font-size: 2rem;
}

.edge-node-card small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.edge-flow-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(223, 217, 204, 0.92);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 248, 0.74)),
    var(--paper-strong);
}

.flow-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  margin-bottom: 18px;
}

.flow-panel-head b {
  font-size: 0.82rem;
}

.route-lanes {
  display: grid;
  gap: 14px;
  margin: auto 0;
}

.route-lane {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(223, 217, 204, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
  overflow: hidden;
}

.route-lane span,
.route-lane strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.route-lane span {
  color: var(--blue);
  background: var(--blue-soft);
}

.route-lane strong {
  color: var(--green);
  background: var(--green-soft);
}

.route-lane i {
  position: relative;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(48, 103, 200, 0.18), rgba(13, 143, 111, 0.78), rgba(212, 93, 67, 0.2));
  overflow: hidden;
}

.route-lane i::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -26px;
  width: 18px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(13, 143, 111, 0.54);
  animation: lanePacket var(--speed) linear infinite;
  animation-delay: var(--delay);
}

.edge-readouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.edge-readouts div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(223, 217, 204, 0.9);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.86);
}

.edge-readouts strong {
  display: block;
  margin-top: 10px;
  font-size: 1.25rem;
}

.world-map {
  position: absolute;
  inset: 54px 18px 8px;
  width: calc(100% - 36px);
  height: calc(100% - 62px);
}

.map-grid-lines path {
  fill: none;
  stroke: rgba(21, 23, 20, 0.05);
  stroke-width: 1;
}

.world-land path {
  fill: rgba(21, 23, 20, 0.06);
  stroke: rgba(21, 23, 20, 0.08);
  stroke-width: 1.2;
}

.map-route {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  filter: drop-shadow(0 5px 12px rgba(48, 103, 200, 0.22));
  animation: routePulse 4.8s linear infinite;
}

.route-two,
.route-five {
  animation-delay: -1s;
}

.route-three,
.route-six {
  animation-delay: -1.8s;
}

.route-four,
.route-seven {
  animation-delay: -2.6s;
}

.packet {
  fill: var(--green);
  filter: url("#nodeGlow");
  opacity: 0.95;
}

.packet-two {
  fill: var(--blue);
}

.packet-three {
  fill: var(--coral);
}

.packet-four {
  fill: var(--gold);
}

.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 7px;
  min-width: 68px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(21, 23, 20, 0.84);
  border-radius: 7px;
  color: #fff;
  background: rgba(21, 23, 20, 0.92);
  box-shadow: 0 14px 30px rgba(21, 23, 20, 0.16);
  transform: translate(-50%, -50%);
}

.map-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(13, 143, 111, 0.2);
  transform: translate(-50%, -50%);
  animation: nodePing 2.8s ease-out infinite;
}

.map-node b {
  font-size: 0.78rem;
}

.map-node span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 20px;
  border-radius: 5px;
  color: var(--green);
  background: rgba(223, 244, 235, 0.96);
  font-size: 0.72rem;
  font-weight: 900;
}

.ams {
  transform: translate(-88%, -74%);
}

.ber {
  transform: translate(2%, -108%);
}

.waw {
  transform: translate(4%, -6%);
}

.par {
  transform: translate(-98%, 22%);
}

.zrh {
  transform: translate(10%, 36%);
}

.msk {
  transform: translate(-24%, -78%);
}

.nyc span {
  color: var(--blue);
  background: var(--blue-soft);
}

.par span,
.zrh span {
  color: var(--coral);
  background: var(--coral-soft);
}

.msk span {
  color: var(--gold);
  background: var(--gold-soft);
}

.network-stats {
  display: grid;
  gap: 14px;
}

.network-stats article {
  min-height: 158px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.network-stats span {
  display: block;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-stats strong {
  font-size: 1.25rem;
}

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

.status-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
}

.status-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

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

.status-row span {
  font-weight: 900;
}

.status-row b {
  color: var(--muted);
}

.status-row i {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.status-row i.ok {
  color: var(--green);
  background: var(--green-soft);
}

.status-row i.warn {
  color: var(--gold);
  background: var(--gold-soft);
}

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

.pricing-section {
  padding-top: 18px;
}

.price-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 24px 78px 142px 56px 1fr;
  align-items: start;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(223, 244, 235, 0.78), rgba(255, 253, 248, 0.95));
  border-color: rgba(13, 143, 111, 0.35);
}

.price-card h2,
.doc-card h2 {
  font-size: 1.5rem;
}

.price-card h2,
.price-card p {
  margin-bottom: 0;
}

.price-card p {
  min-height: 0;
}

.price {
  display: block;
  align-self: center;
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.58rem;
}

.price-card .clean-list {
  margin-top: 0;
}

.pricing-cta {
  width: min(100%, 420px);
  margin: 22px auto 0;
  display: flex;
}

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

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

.compare-grid div {
  min-height: 190px;
}

.compare-grid span,
.timeline-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.docs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 18px;
}

.doc-card {
  min-height: 270px;
}

.trust-timeline {
  border-top: 1px solid var(--line);
}

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

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 23, 20, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.auth-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-dialog {
  position: relative;
  width: min(100%, 440px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 1)),
    var(--paper-strong);
  box-shadow: 0 30px 90px rgba(21, 23, 20, 0.24);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.auth-overlay.is-open .auth-dialog {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-strong);
  font-size: 1.1rem;
}

.auth-dialog h2 {
  margin: 22px 42px 8px 0;
  font-size: 1.55rem;
}

.auth-dialog > p {
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.auth-tab {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.auth-tab.is-active {
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 4px 18px rgba(21, 23, 20, 0.08);
}

.auth-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--paper-strong);
  padding: 0 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus {
  border-color: rgba(13, 143, 111, 0.58);
  box-shadow: 0 0 0 4px rgba(13, 143, 111, 0.12);
}

.auth-error {
  display: none;
  padding: 12px;
  border: 1px solid rgba(212, 93, 67, 0.36);
  border-radius: 7px;
  color: #913c2b;
  background: var(--coral-soft);
  font-size: 0.9rem;
  line-height: 1.48;
}

.auth-error.is-visible {
  display: block;
  animation: panelIn 180ms ease both;
}

.auth-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.auth-contact-card {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(13, 143, 111, 0.3);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(223, 244, 235, 0.92), rgba(228, 237, 255, 0.55)),
    var(--green-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.auth-contact-card:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 143, 111, 0.48);
  box-shadow: 0 10px 24px rgba(13, 143, 111, 0.12);
}

.auth-contact-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-contact-card strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.38;
}

.contact-dialog .eyebrow {
  margin: 12px 42px 12px 0;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin: 20px 0 14px;
  padding: 0 16px;
  border: 1px solid rgba(13, 143, 111, 0.34);
  border-radius: 7px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-email::after {
  content: "->";
  color: var(--ink);
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  margin-top: 26px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes shine {
  to {
    transform: translateX(130%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes waveGlow {
  0% {
    opacity: 0.24;
  }
  100% {
    opacity: 0.62;
  }
}

@keyframes panelSweep {
  0%,
  58% {
    transform: translateX(-130%);
  }
  78%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes routePing {
  0% {
    opacity: 0.62;
    transform: scale(0.65);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes sparkLine {
  0% {
    transform: scaleX(0.58);
    opacity: 0.55;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes routePulse {
  to {
    stroke-dashoffset: -84;
  }
}

@keyframes nodePing {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.7);
  }
  80%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
  }
}

@keyframes lanePacket {
  to {
    transform: translateX(520px);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes floatMid {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(8px, -9px, 0) rotate(1deg);
  }
}

@keyframes floatFast {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-9px, 8px, 0) rotate(-1deg);
  }
}

.float-slow {
  animation: floatSlow 7.8s ease-in-out infinite;
}

.float-mid {
  animation: floatMid 8.8s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 6.8s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

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

  .nav-open .header-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section,
  .product-demo,
  .status-section,
  .network-map-section {
    grid-template-columns: 1fr;
  }

  .edge-console-grid {
    grid-template-columns: 1fr;
  }

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

  .edge-node-card.primary {
    grid-column: span 2;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .pricing-grid,
  .route-grid,
  .feature-row-section,
  .compare-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

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

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

  .flow-board::before {
    top: 28px;
    bottom: 28px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }
}

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

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .brand-name {
    max-width: 190px;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 24px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lede,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-row,
  .split-section,
  .traffic-profile-section .story-copy,
  .feature-grid,
  .docs-grid,
  .metric-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .console-main {
    left: 14px;
    right: 14px;
    top: 42px;
  }

  .route-card {
    left: 14px;
    bottom: 26px;
    width: 220px;
  }

  .access-card {
    right: 14px;
    bottom: 142px;
    width: 210px;
  }

  .content-section {
    padding: 50px 0;
  }

  .dashboard-frame {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cta-section .solid-button {
    justify-self: stretch;
  }

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

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

@media (max-width: 520px) {
  .brand-name {
    max-width: 146px;
  }

  h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 620px;
  }

  .video-strip {
    grid-template-columns: 1fr;
    height: 186px;
  }

  .access-card {
    left: 14px;
    right: auto;
    bottom: 126px;
  }

  .route-card {
    width: calc(100% - 28px);
  }

  .network-map {
    min-height: 420px;
  }

  .edge-locations,
  .edge-readouts {
    grid-template-columns: 1fr;
  }

  .edge-node-card.primary {
    grid-column: auto;
  }

  .route-lane {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 8px;
    padding: 0 8px;
  }

  .map-node {
    min-width: 58px;
    min-height: 30px;
    padding: 0 7px;
    gap: 5px;
  }

  .map-node b {
    font-size: 0.72rem;
  }

  .map-node span {
    min-width: 21px;
    min-height: 18px;
    font-size: 0.64rem;
  }
}

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