:root {
  --bg: #f7faff;
  --bg-soft: #eef5ff;
  --navy: #061936;
  --navy-2: #0b2448;
  --text: #10203f;
  --muted: #64728a;
  --primary: #325cff;
  --primary-2: #6b4dff;
  --cyan: #16c7e8;
  --purple: #8b5cf6;
  --border: #dce5f3;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(15, 35, 75, 0.12);
  --success: #20b26b;
  --warning: #f5a524;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(22, 199, 232, 0.72);
  outline-offset: 3px;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}

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

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

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

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}

.section-lead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading .link-arrow {
  flex: 0 0 auto;
}

.gradient-text {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 18, 40, 0.86);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.site-header.compact {
  background: rgba(5, 18, 40, 0.92);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1.25rem;
}

.compact .nav-wrap {
  min-height: 68px;
}

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

.compact .brand-logo-img {
  width: 32px;
  height: 32px;
}

.compact .site-nav {
  font-size: 0.84rem;
  gap: clamp(0.8rem, 2vw, 1.55rem);
}

.compact .btn {
  min-height: 38px;
  padding: 0.65rem 0.95rem;
  font-size: 0.82rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  color: #ffffff;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(50, 92, 255, 0.14), 0 10px 26px rgba(22, 199, 232, 0.16);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(22, 199, 232, 0.7);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(50, 92, 255, 0.9), rgba(139, 92, 246, 0.9));
  box-shadow: 0 0 0 5px rgba(50, 92, 255, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.brand-mark::before {
  width: 20px;
  height: 8px;
  transform: rotate(38deg);
}

.brand-mark::after {
  width: 8px;
  height: 20px;
  transform: rotate(38deg);
}

.brand span:last-child {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.1rem);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.menu-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.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);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.12rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 26px rgba(50, 92, 255, 0.3);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  color: var(--primary);
  border-color: var(--border);
  background: #ffffff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(50, 92, 255, 0.5);
  box-shadow: 0 10px 24px rgba(50, 92, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.icon-play {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-play::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(6, 25, 54, 0.98), rgba(7, 22, 48, 0.95) 50%, rgba(8, 32, 70, 0.94)),
    linear-gradient(90deg, rgba(22, 199, 232, 0.16), rgba(139, 92, 246, 0.2));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -8%;
  width: min(45vw, 580px);
  height: min(45vw, 580px);
  border: 1px solid rgba(22, 199, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(50, 92, 255, 0.1), transparent 52%),
    repeating-linear-gradient(35deg, transparent 0 20px, rgba(22, 199, 232, 0.08) 21px 22px);
  transform: rotate(-12deg);
  opacity: 0.85;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-floater {
  position: absolute;
  width: 44px;
  height: 44px;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  opacity: 0.9;
  backdrop-filter: blur(12px);
}

.floater-1 {
  top: 10%;
  left: 43%;
}

.floater-2 {
  right: 3%;
  top: 8%;
}

.floater-3 {
  left: 37%;
  bottom: 14%;
}

.floater-4 {
  right: 9%;
  bottom: 9%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 199, 232, 0.15);
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.55rem, 5.5vw, 5.2rem);
  line-height: 0.98;
}

.hero p {
  margin: 1.25rem 0 0;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.85rem;
}

.signal-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.signal-palette span,
.signal-strip span,
.section-icon-row span,
.micro-stack span {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 850;
}

.signal-palette span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  padding: 0.46rem 0.68rem 0.46rem 0.48rem;
}

.signal-palette img,
.signal-strip img,
.section-icon-row img,
.micro-stack img,
.plan-icon,
.contact-point img,
.roadmap-stage > img,
.feature-icon img {
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
}

.check-dot {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(22, 199, 232, 0.55);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.72rem;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 14, 32, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 20, 0.7);
}

.window-dots {
  display: flex;
  gap: 0.4rem;
}

.window-dots span,
.topbar-tools span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.window-dots span:nth-child(1) {
  background: var(--purple);
}

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

.window-dots span:nth-child(3) {
  background: var(--primary);
}

.topbar-tools {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 460px;
}

.dashboard-rail {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.rail-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--primary-2));
}

.rail-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.dashboard-content {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-heading h2 {
  margin: 0;
  font-size: 1.05rem;
}

.privacy-pill {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(22, 199, 232, 0.1);
  color: #9df1ff;
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  gap: 0.85rem;
}

.dash-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.dash-card h3 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 0.82rem;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.metric {
  min-width: 0;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.25;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding-top: 0.7rem;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 1.13rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--purple));
}

.timeline-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  text-align: center;
}

.timeline-node::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--primary);
}

.insights-card p {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.dash-action {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 850;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  padding: 0.38rem 0.52rem;
  border-radius: 999px;
  background: rgba(22, 199, 232, 0.12);
  color: #bff5ff;
  font-size: 0.69rem;
  font-weight: 850;
}

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

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.summary-list li::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.28rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #37d279;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: 1.35rem 0;
}

.trust-caption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  white-space: normal;
}

.trust-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(50, 92, 255, 0.18);
  border-radius: 7px;
  color: var(--primary);
  background: #f3f7ff;
  font-size: 0.92rem;
}

.logo-aws {
  font-size: 1.42rem;
  font-weight: 900;
}

.logo-nvidia {
  font-size: 1.05rem;
  font-weight: 950;
}

.split-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.section-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.1rem 0 1rem;
}

.section-icon-row span {
  border: 1px solid rgba(50, 92, 255, 0.13);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(15, 35, 75, 0.07);
  padding: 0.55rem 0.82rem 0.55rem 0.55rem;
}

.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 32px rgba(15, 35, 75, 0.06);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.info-card.soft-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), #ffffff 72%);
}

.info-card.soft-blue {
  background: linear-gradient(135deg, rgba(22, 199, 232, 0.09), #ffffff 72%);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

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

.list-check li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text);
  font-size: 0.98rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.micro-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.micro-stack span {
  border: 1px solid rgba(50, 92, 255, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(15, 35, 75, 0.07);
  padding: 0.48rem 0.72rem 0.48rem 0.48rem;
}

.network-card {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(50, 92, 255, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.network-card::before {
  content: "";
  position: absolute;
  inset: 2rem;
  background-image:
    linear-gradient(rgba(50, 92, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 92, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.network-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(50, 92, 255, 0.18);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(50, 92, 255, 0.16);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 950;
}

.network-center span {
  display: block;
  color: var(--primary);
  font-size: 0.8rem;
}

.network-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 138px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(15, 35, 75, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
}

.network-node::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(50, 92, 255, 0.22);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(22, 199, 232, 0.2), rgba(139, 92, 246, 0.2));
}

.node-1 { left: 7%; top: 18%; }
.node-2 { right: 6%; top: 20%; }
.node-3 { left: 3%; bottom: 24%; }
.node-4 { right: 5%; bottom: 25%; }
.node-5 { left: 36%; top: 6%; }
.node-6 { left: 38%; bottom: 7%; }

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

.feature-card,
.pricing-card,
.faq-item,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
}

.feature-card {
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(50, 92, 255, 0.28);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 950;
}

.feature-icon img {
  width: 28px;
  height: 28px;
}

.feature-card h3,
.pricing-card h2,
.pricing-card h3,
.faq-item h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.25;
}

.feature-card p,
.pricing-card p,
.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.roadmap {
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
}

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

.roadmap-stage {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
}

.roadmap-stage > img {
  width: 36px;
  height: 36px;
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 22px rgba(50, 92, 255, 0.12);
}

.roadmap-stage::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--primary-2));
}

.roadmap-stage span {
  display: block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-stage h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.5rem;
}

.plan-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  box-shadow: 0 12px 24px rgba(50, 92, 255, 0.13);
}

.pricing-card.featured {
  border-color: rgba(50, 92, 255, 0.58);
  box-shadow: 0 22px 48px rgba(50, 92, 255, 0.14);
}

.plan-badge {
  position: absolute;
  top: -0.8rem;
  right: 1.1rem;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.plan-for {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.price strong {
  font-size: 2.1rem;
  line-height: 1;
}

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

.pricing-card .list-check {
  margin-bottom: 1.25rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.about-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #edf7ff);
  box-shadow: var(--shadow);
}

.about-visual {
  display: grid;
  align-content: center;
  min-height: 300px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 199, 232, 0.12), rgba(139, 92, 246, 0.12)),
    #ffffff;
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.clinical-panel {
  display: grid;
  gap: 0.8rem;
}

.clinical-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 850;
}

.clinical-row img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(50, 92, 255, 0.12);
}

.clinical-row span {
  color: var(--primary);
  font-size: 0.82rem;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.82rem;
  border: 1px solid rgba(50, 92, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(15, 35, 75, 0.055);
}

.contact-point img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(50, 92, 255, 0.12);
}

.contact-point strong {
  display: block;
}

.contact-point span {
  color: var(--muted);
}

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(50, 92, 255, 0.12);
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 171, 99, 0.28);
  border-radius: var(--radius);
  background: rgba(31, 171, 99, 0.08);
  color: #11633a;
  font-weight: 850;
}

.form-success.is-visible {
  display: block;
}

.cookie-consent {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.4rem);
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  z-index: 80;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  width: min(520px, calc(100vw - 1.8rem));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 18, 40, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  padding: 0.85rem 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent::before {
  content: "";
  width: 8px;
  height: 100%;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--primary-2));
}

.cookie-consent p {
  grid-column: 2;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-consent-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-consent a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
}

.cookie-consent a:hover,
.cookie-consent a:focus-visible {
  color: #ffffff;
}

.cookie-consent button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent button:hover,
.cookie-consent button:focus-visible {
  box-shadow: 0 12px 26px rgba(50, 92, 255, 0.28);
  transform: translateY(-1px);
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(135deg, #04142d, #061936);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 0.7fr)) 1.55fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 3.2rem 0 2.1rem;
}

.footer-brand p {
  max-width: 270px;
  margin: 0.95rem 0;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffffff;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 0.78rem 0.9rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.newsletter button {
  width: 46px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font-weight: 950;
}

.newsletter .form-success {
  flex-basis: 100%;
  margin-top: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: #ffffff;
}

.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-legal-info strong {
  color: #ffffff;
  line-height: 1.35;
}

.footer-legal-info a {
  color: #ffffff;
  font-weight: 900;
}

.footer-legal-info a:hover,
.footer-legal-info a:focus-visible {
  color: var(--cyan);
}

.page-hero {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 25, 54, 0.98), rgba(9, 35, 75, 0.96)),
    linear-gradient(90deg, rgba(22, 199, 232, 0.14), rgba(139, 92, 246, 0.14));
}

.page-hero-inner {
  padding: clamp(3rem, 6vw, 5.25rem) 0;
  max-width: var(--container);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1.04;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.page-hero .section-eyebrow {
  color: #9df1ff;
}

.page-hero .page-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
}

.hero-signal-board {
  width: min(100%, 520px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 23, 50, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 1rem;
}

.signal-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.signal-board-top span {
  color: #9df1ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-board-top strong {
  color: #ffffff;
  font-size: 0.98rem;
}

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

.signal-board-grid span {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 850;
}

.signal-board-grid img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison-table th {
  color: var(--text);
  background: #f4f8ff;
  font-size: 0.9rem;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-check {
  color: var(--primary);
  font-weight: 950;
}

.table-muted {
  color: #a5afc1;
}

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

.faq-item {
  padding: 1.35rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 900px;
}

.legal-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

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

.legal-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(50, 92, 255, 0.94), rgba(139, 92, 246, 0.92)),
    var(--primary);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.3rem) 0;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.cta-inner p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-inner .btn {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--primary);
}

@media (max-width: 1100px) {
  .nav-actions {
    display: none;
  }

  .hero-grid,
  .solution-layout,
  .about-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-floaters {
    display: none;
  }

  .dashboard-shell {
    max-width: 780px;
    margin-inline: auto;
  }

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

  .trust-caption {
    grid-column: 1 / -1;
    text-align: center;
  }

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

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

}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 18, 40, 0.98);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
  }

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

  .site-nav a {
    padding: 0.9rem 0.8rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-grid {
    padding-top: 3rem;
  }

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

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

  .dashboard-rail {
    display: none;
  }

  .dashboard-grid,
  .dash-row,
  .split-cards,
  .feature-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 440px;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .section-icon-row,
  .signal-strip,
  .signal-palette,
  .micro-stack {
    align-items: stretch;
  }

  .section-icon-row span,
  .signal-strip span {
    flex: 1 1 210px;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .site-nav {
    inset: 66px 0.625rem auto;
  }

  .brand span:last-child {
    font-size: 0.98rem;
  }

  .trust-inner,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    white-space: normal;
  }

  .section-heading {
    display: block;
  }

  .section-heading .link-arrow {
    display: inline-flex;
    margin-top: 1rem;
  }

  .cookie-consent {
    grid-template-columns: 6px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.8rem;
  }

  .cookie-consent p,
  .cookie-consent-actions {
    grid-column: 2;
  }

  .cookie-consent-actions {
    justify-content: space-between;
  }

  .network-node {
    position: relative;
    inset: auto;
    margin: 0.55rem;
    min-width: 0;
  }

  .network-card {
    display: grid;
    align-content: end;
    min-height: auto;
    padding-top: 170px;
  }

  .network-center {
    top: 86px;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
    min-height: 42px;
  }
}

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

.trust-logo-img {
  width: auto;
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
}

.logo-card {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 75, 0.06);
  padding: 0.85rem 1rem;
}

.logo-card strong {
  color: var(--text);
  font-size: 0.92rem;
}

.metric-grid,
.module-grid,
.responsible-grid,
.blog-grid,
.solution-card-grid,
.roadmap-detail-grid,
.product-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.signal-strip span {
  border: 1px solid rgba(50, 92, 255, 0.14);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(15, 35, 75, 0.07);
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
}

.metric-card,
.module-card,
.responsible-card,
.blog-card,
.solution-card,
.roadmap-detail-card,
.product-module-card,
.toc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
}

.metric-card,
.module-card,
.responsible-card,
.solution-card,
.roadmap-detail-card,
.product-module-card {
  padding: 1.35rem;
}

.metric-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 800;
}

.module-card,
.product-module-card {
  position: relative;
  overflow: hidden;
}

.module-card::after,
.product-module-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 199, 232, 0.22), transparent 66%);
}

.module-card h3,
.responsible-card h3,
.solution-card h3,
.roadmap-detail-card h3,
.product-module-card h3,
.blog-card h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.22;
}

.module-card p,
.responsible-card p,
.solution-card p,
.roadmap-detail-card p,
.product-module-card p,
.blog-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.workflow-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.workflow-step {
  position: relative;
  min-height: 128px;
  border: 1px solid rgba(50, 92, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 199, 232, 0.08), rgba(139, 92, 246, 0.08)),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  padding: 1.15rem;
}

.workflow-step::after {
  content: "→";
  position: absolute;
  right: -0.86rem;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font-weight: 950;
  transform: translateY(-50%);
}

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

.workflow-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 950;
}

.workflow-step h3 {
  margin: 0;
  font-size: 1rem;
}

.technology-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(6, 25, 54, 0.78);
  box-shadow: 0 22px 52px rgba(2, 10, 28, 0.24);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.dark-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 199, 232, 0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(139, 92, 246, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.dark-band .section-title,
.dark-band .card-title,
.dark-band h2,
.dark-band h3 {
  color: #ffffff;
}

.dark-band .section-lead,
.dark-band p,
.dark-band li {
  color: rgba(255, 255, 255, 0.76);
}

.dark-band .section-eyebrow {
  color: #9df1ff;
}

.blog-card {
  overflow: hidden;
}

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

.blog-card img,
.article-hero-image img,
.article-figure img,
.featured-blog img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.blog-card > img {
  height: clamp(170px, 14vw, 220px);
  object-position: center;
}

.blog-card-body {
  padding: 1.25rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
}

.category-pill,
.article-meta span,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(50, 92, 255, 0.16);
  border-radius: 999px;
  background: #eef5ff;
  color: var(--primary);
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 850;
}

.featured-blog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.featured-blog-content {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.coming-soon {
  opacity: 0.88;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.toc-card {
  position: sticky;
  top: 96px;
  padding: 1.2rem;
}

.toc-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.toc-card ol {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-body {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 4vw, 3rem);
}

.article-body h2 {
  margin: 2.2rem 0 0.8rem;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.article-body p {
  margin: 0 0 1.1rem;
  color: #34425a;
  font-size: 1.03rem;
}

.article-body ul {
  color: #34425a;
}

.article-figure {
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fbff;
}

.article-figure figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer-box {
  margin: 2rem 0;
  border: 1px solid rgba(50, 92, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 199, 232, 0.09), rgba(139, 92, 246, 0.08));
  padding: 1.25rem;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-aside {
  display: grid;
  gap: 1rem;
}

.contact-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  padding: 1.25rem;
}

.office-card {
  background:
    linear-gradient(135deg, rgba(22, 199, 232, 0.1), rgba(139, 92, 246, 0.08)),
    #ffffff;
}

.office-card h2 {
  margin-bottom: 0.7rem;
}

.office-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.office-card a {
  color: var(--primary);
  font-weight: 900;
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.08);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 250px;
  border: 0;
}

.map-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(50, 92, 255, 0.06), rgba(22, 199, 232, 0.06));
}

.link-arrow {
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .metric-grid,
  .module-grid,
  .responsible-grid,
  .solution-card-grid,
  .roadmap-detail-grid,
  .product-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-chain,
  .technology-panel,
  .page-grid,
  .article-shell,
  .featured-blog {
    grid-template-columns: 1fr;
  }

  .toc-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .metric-grid,
  .module-grid,
  .responsible-grid,
  .blog-grid,
  .solution-card-grid,
  .roadmap-detail-grid,
  .product-module-grid,
  .technology-logos {
    grid-template-columns: 1fr;
  }

  .workflow-chain {
    gap: 0.85rem;
  }

  .workflow-step::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1.25rem;
    transform: translateX(-50%) rotate(90deg);
  }
}

.blog-hero-rich {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 28%, rgba(139, 92, 246, 0.34), transparent 30%),
    radial-gradient(circle at 42% 86%, rgba(22, 199, 232, 0.18), transparent 28%),
    linear-gradient(135deg, #04142d 0%, #061936 56%, #0b2448 100%);
}

.blog-hero-rich::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 255, 255, 0.18) 0 8px, transparent 9px),
    radial-gradient(circle at 83% 24%, rgba(139, 92, 246, 0.38) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 58%, rgba(22, 199, 232, 0.18) 0 12px, transparent 13px),
    linear-gradient(115deg, transparent 0 48%, rgba(22, 199, 232, 0.08) 49%, transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.blog-hero-inner h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.65rem);
  line-height: 1.02;
}

.blog-hero-inner p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-subscribe {
  display: flex;
  max-width: 520px;
  margin-top: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem;
}

.hero-subscribe input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0 0.85rem;
  outline: none;
}

.hero-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.hero-subscribe button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
}

.light-diagram-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(22, 199, 232, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
}

.diagram-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(50, 92, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 92, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, rgba(22, 199, 232, 0.12), transparent 34%),
    #ffffff;
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow);
}

.diagram-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(50, 92, 255, 0.25);
  border-radius: 50%;
}

.diagram-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(50, 92, 255, 0.2);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(50, 92, 255, 0.18);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 950;
}

.diagram-center small {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.diagram-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 158px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(15, 35, 75, 0.1);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
}

.diagram-node img,
.card-icon-img,
.article-card img.thumb {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(22, 199, 232, 0.16), rgba(139, 92, 246, 0.16));
  box-shadow: 0 10px 22px rgba(50, 92, 255, 0.13);
}

.diagram-node:nth-of-type(1) { left: 7%; top: 14%; }
.diagram-node:nth-of-type(2) { right: 6%; top: 18%; }
.diagram-node:nth-of-type(3) { left: 4%; bottom: 24%; }
.diagram-node:nth-of-type(4) { right: 4%; bottom: 24%; }
.diagram-node:nth-of-type(5) { left: 34%; top: 5%; }
.diagram-node:nth-of-type(6) { left: 36%; bottom: 6%; }

.blog-featured-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.blog-featured-wide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.blog-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.9rem 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(170px, 14vw, 210px);
  object-fit: cover;
  object-position: center;
}

.article-card-body {
  padding: 1.15rem;
}

.article-card-body h3 {
  margin: 0.75rem 0 0;
  font-size: 1.03rem;
  line-height: 1.28;
}

.article-card-body p {
  color: var(--muted);
}

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

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

.rich-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 199, 232, 0.055), rgba(139, 92, 246, 0.04) 42%, rgba(255, 255, 255, 0) 72%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  padding: 1.25rem;
}

.rich-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--primary), var(--purple));
  opacity: 0.86;
}

.rich-card:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(50, 92, 255, 0.06), rgba(22, 199, 232, 0.035) 52%, rgba(255, 255, 255, 0) 78%),
    #ffffff;
}

.rich-card:nth-child(3n + 3) {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.07), rgba(31, 171, 99, 0.035) 52%, rgba(255, 255, 255, 0) 78%),
    #ffffff;
}

.rich-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.card-title-link {
  color: inherit;
  transition: color 0.2s ease;
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--primary);
}

.claim-track-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0.85rem 0 0.35rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.09);
  color: var(--primary-2);
  padding: 0.36rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-track-callout {
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(22, 199, 232, 0.08)),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.claim-track-callout strong {
  display: block;
  color: var(--primary-2);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.claim-track-callout p {
  margin: 0.45rem 0 0;
  color: #34425a;
}

.brief-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.brief-hero-icon {
  width: clamp(86px, 12vw, 128px);
  height: clamp(86px, 12vw, 128px);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.brief-layout {
  max-width: 980px;
}

.diagnosis-boundary-card,
.brief-section-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 199, 232, 0.07), rgba(139, 92, 246, 0.055) 48%, rgba(255, 255, 255, 0) 78%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.06);
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.diagnosis-boundary-card h3,
.brief-section-card h2 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.diagnosis-boundary-card p,
.brief-section-card p {
  margin: 0;
  color: #34425a;
}

.brief-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
}

.article-layout-modern {
  display: grid;
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 0.74fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

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

.article-related a {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 35, 75, 0.05);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

img[loading="lazy"] {
  background: #eef5ff;
}

@media (max-width: 1100px) {
  .blog-hero-inner,
  .reference-layout,
  .blog-featured-wide,
  .brief-hero,
  .page-hero .page-grid,
  .article-layout-modern {
    grid-template-columns: 1fr;
  }

  .hero-signal-board {
    justify-self: start;
    width: 100%;
    max-width: 560px;
  }

  .rich-card-grid,
  .research-grid,
  .article-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-subscribe,
  .blog-hero-inner {
    display: block;
  }

  .hero-subscribe input,
  .hero-subscribe button {
    width: 100%;
    min-height: 44px;
  }

  .diagram-card {
    min-height: auto;
    padding: 170px 0.7rem 1rem;
  }

  .diagram-center {
    top: 92px;
  }

  .diagram-node {
    position: relative;
    inset: auto !important;
    width: 100%;
    margin: 0.5rem 0;
  }

  .rich-card-grid,
  .research-grid,
  .brief-detail-grid,
  .article-related {
    grid-template-columns: 1fr;
  }
}
