:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-2: #09090d;
  --surface: rgba(18, 18, 25, 0.74);
  --surface-strong: rgba(27, 25, 38, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(202, 184, 255, 0.14);
  --line-strong: rgba(190, 160, 255, 0.28);
  --text: #f5f2ff;
  --muted: #a9a3b8;
  --dim: #777184;
  --purple: #8b5cf6;
  --purple-2: #5b21b6;
  --purple-3: #c4b5fd;
  --violet-glow: rgba(139, 92, 246, 0.44);
  --green: #65d6a4;
  --amber: #d7b874;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 70% 10%, rgba(91, 33, 182, 0.3), transparent 32rem),
    radial-gradient(circle at 5% 32%, rgba(139, 92, 246, 0.16), transparent 28rem),
    linear-gradient(180deg, #040405 0%, #08070b 38%, #050507 100%);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 78%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02));
  z-index: -1;
}

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

img,
svg {
  display: block;
}

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

.page-shell {
  overflow: clip;
}

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.96), rgba(22, 17, 35, 0.94), rgba(8, 8, 12, 0.96));
  color: #d8d2eb;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: calc(100% - 40px);
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 7, 0.86);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 181, 253, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.32), rgba(255, 255, 255, 0.03)),
    #0b0a10;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.28), inset 0 0 18px rgba(139, 92, 246, 0.14);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.brand-mark::before {
  width: 18px;
  height: 18px;
  transform: translate(-4px, -4px);
}

.brand-mark::after {
  width: 18px;
  height: 18px;
  transform: translate(4px, 4px);
  border-color: rgba(139, 92, 246, 0.86);
}

.brand-mark span {
  width: 5px;
  height: 5px;
  border: 0;
  background: var(--green);
  box-shadow: 0 0 14px rgba(101, 214, 164, 0.72);
}

.logo-mark {
  overflow: hidden;
  padding: 4px;
}

.logo-mark::before,
.logo-mark::after,
.logo-mark span {
  display: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(196, 181, 253, 0.44));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 800;
}

.brand-copy em {
  color: #b6add0;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  color: #c8c1d7;
  font-size: 13px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding: 26px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-3), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.portal-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.portal-button {
  padding: 0 18px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: #f3efff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.portal-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.section-band {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  min-height: 622px;
  padding: clamp(34px, 4.8vw, 58px) 0 clamp(36px, 5vw, 58px);
}

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

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(220px, 45vw);
  height: 2px;
  margin: 26px 0 0;
  background: linear-gradient(90deg, var(--purple-3), rgba(139, 92, 246, 0.15), transparent);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.6);
}

.hero-intro {
  max-width: 520px;
  margin: 0 0 24px;
  color: #bdb5d1;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.55;
}

.hero-copy > p:not(.hero-intro) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d6d0e5;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 650;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-width: 158px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button svg,
.floating-node svg,
.card-icon svg,
.process-icon svg,
.stack-mark svg,
.stack-mark i {
  overflow: visible;
}

.button svg path,
.floating-node svg path,
.card-icon svg path,
.process-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(196, 181, 253, 0.2), rgba(139, 92, 246, 0.82)),
    #6d28d9;
  color: white;
  box-shadow: 0 0 38px rgba(139, 92, 246, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-ghost {
  border-color: rgba(196, 181, 253, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #ded8ef;
}

.hero-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin-top: 30px;
  border: 1px solid rgba(196, 181, 253, 0.13);
  background: rgba(196, 181, 253, 0.08);
}

.hero-status article {
  min-height: 68px;
  padding: 13px 15px;
  background: rgba(6, 6, 9, 0.78);
}

.hero-status span,
.metric-tile span,
.panel-head span,
.section-heading span,
.systems-copy > span,
.labs-head > span {
  display: block;
  color: #9f96b8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  margin-top: 8px;
  color: #f5f1ff;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -9% 10% 5%;
  border: 1px solid rgba(196, 181, 253, 0.1);
  background:
    radial-gradient(circle at 54% 46%, rgba(139, 92, 246, 0.28), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  transform: perspective(900px) rotateY(-8deg) rotateX(5deg);
  filter: blur(0.1px);
  z-index: -1;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 26px 80px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 42px rgba(139, 92, 246, 0.22));
  mix-blend-mode: screen;
}

.network-field {
  position: absolute;
  inset: 12% -2% 3% 0;
  z-index: 0;
  background:
    linear-gradient(rgba(196, 181, 253, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(700px) rotateX(64deg) translateY(120px);
  transform-origin: 50% 100%;
  opacity: 0.42;
  mask-image: radial-gradient(circle at 55% 62%, #000, transparent 72%);
}

.floating-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(11, 10, 17, 0.78);
  color: #d8ccff;
  box-shadow: 0 0 38px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  animation: floatNode 5s ease-in-out infinite;
}

.floating-node svg {
  width: 27px;
  height: 27px;
}

.floating-node i {
  display: grid;
  place-items: center;
}

.node-cloud {
  top: 16%;
  left: 11%;
}

.node-data {
  right: 8%;
  top: 33%;
  animation-delay: -1.4s;
}

.node-api {
  left: 20%;
  bottom: 17%;
  animation-delay: -2.7s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: -10px auto 56px;
  border: 1px solid rgba(196, 181, 253, 0.13);
  background: rgba(196, 181, 253, 0.09);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: rgba(8, 8, 12, 0.84);
  color: rgba(245, 242, 255, 0.74);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 800;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.systems-copy h2,
.labs-head h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 880;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p,
.systems-copy p,
.labs-head p,
.final-cta p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.what-we-do {
  padding: 20px 0 42px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.what-we-do .section-heading {
  max-width: 760px;
}

.what-we-do .section-heading h2 {
  max-width: 680px;
  font-size: clamp(30px, 3.6vw, 46px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
  box-shadow: var(--shadow);
}

.solution-card {
  position: relative;
  min-height: 286px;
  padding: 24px 24px 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(11, 11, 16, 0.92);
  overflow: hidden;
}

.solution-card + .solution-card {
  border-left: 1px solid rgba(196, 181, 253, 0.12);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.72), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.solution-card:hover::after {
  opacity: 1;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  color: #ccbfff;
  background:
    radial-gradient(circle at 50% 28%, rgba(196, 181, 253, 0.22), transparent 52%),
    rgba(139, 92, 246, 0.09);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-icon svg {
  width: 29px;
  height: 29px;
}

.card-icon i {
  display: grid;
  place-items: center;
}

.solution-card h3,
.process-flow h3,
.lab-card h3 {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.18;
}

.solution-card p,
.process-flow p,
.lab-card p {
  margin: 13px 0 0;
  color: #aaa3b9;
  font-size: 14px;
  line-height: 1.65;
}

.solution-card p {
  max-width: 22ch;
}

.solution-card a,
.lab-card a {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #d8ccff;
  font-size: 13px;
  font-weight: 800;
}

.solution-card a::after,
.lab-card a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
}

.systems {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(650px, 1.26fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

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

.system-list li {
  position: relative;
  padding: 12px 16px 12px 42px;
  border: 1px solid rgba(196, 181, 253, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #e7e1f7;
  font-size: 15px;
  font-weight: 700;
}

.system-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(196, 181, 253, 0.78);
  background: rgba(139, 92, 246, 0.42);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.65);
}

.system-list a {
  display: block;
}

.dashboard-preview {
  position: relative;
  border: 1px solid rgba(196, 181, 253, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 24%),
    rgba(8, 8, 13, 0.92);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62), 0 0 70px rgba(91, 33, 182, 0.2);
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(130deg, rgba(196, 181, 253, 0.48), transparent 30%, rgba(139, 92, 246, 0.28) 70%, transparent);
  opacity: 0.55;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.12);
  color: #d9d2eb;
  font-size: 13px;
  font-weight: 800;
}

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

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
  padding: 18px 14px;
  border-right: 1px solid rgba(196, 181, 253, 0.12);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent),
    rgba(4, 4, 8, 0.62);
}

.dashboard-sidebar span {
  display: block;
  padding: 9px 10px;
  border: 1px solid rgba(196, 181, 253, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #928aa5;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-sidebar span:first-child {
  border-color: rgba(196, 181, 253, 0.2);
  background: rgba(139, 92, 246, 0.14);
  color: #f0ebff;
}

.dashboard-topbar strong {
  position: relative;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.dashboard-topbar strong::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(196, 181, 253, 0.1);
}

.dashboard-grid > article {
  min-height: 116px;
  padding: 18px;
  background: rgba(10, 10, 15, 0.96);
}

.metric-tile {
  grid-column: span 2;
}

.metric-tile strong {
  display: block;
  margin-top: 11px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.metric-tile em {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.wide-panel {
  grid-column: span 4;
}

.admin-panel,
.radar-panel {
  grid-column: span 3;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.panel-head strong {
  color: #d5caff;
  font-size: 12px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 146px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(196, 181, 253, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 100% 25%;
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-height: 24px;
  background: linear-gradient(180deg, #c4b5fd, #7c3aed 72%, rgba(124, 58, 237, 0.35));
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.28);
}

.admin-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.admin-panel li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: #d9d2eb;
  font-size: 13px;
}

.admin-panel li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(101, 214, 164, 0.7);
}

.admin-panel em {
  color: var(--dim);
  font-style: normal;
}

.radar {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 26px auto 0;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 24%, rgba(196, 181, 253, 0.08) 25%, transparent 26%, transparent 48%, rgba(196, 181, 253, 0.08) 49%, transparent 50%),
    conic-gradient(from 0deg, rgba(139, 92, 246, 0.62), transparent 26%, transparent);
}

.radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5f1ff;
  box-shadow: 0 0 20px rgba(196, 181, 253, 0.85);
  transform: translate(-50%, -50%);
}

.technology {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.technology .section-heading.narrow {
  max-width: none;
  margin: 0;
  text-align: left;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.stack-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  background: rgba(9, 9, 14, 0.94);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.stack-grid article:hover {
  background: rgba(15, 14, 22, 0.98);
}

.stack-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.035);
  color: #eee9ff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stack-mark svg {
  width: 30px;
  height: 30px;
}

.stack-mark i {
  display: grid;
  place-items: center;
  font-size: 31px;
  line-height: 1;
}

.stack-grid article:hover .stack-mark {
  transform: translateY(-1px);
  border-color: rgba(196, 181, 253, 0.34);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.react {
  border-radius: 50%;
  color: #8de7ff;
  box-shadow: 0 0 25px rgba(76, 201, 240, 0.18), inset 0 0 0 8px rgba(76, 201, 240, 0.05);
}

.next {
  border-radius: 50%;
  color: #f5f2ff;
}

.node {
  border-radius: 12px;
  color: #8fe3a4;
}

.ts,
.tail,
.docker,
.aws,
.cf,
.supa,
.pg {
  border-radius: 8px;
}

.ts {
  color: #8fc7ff;
}

.supa {
  color: #65d6a4;
}

.pg {
  color: #9cc8ff;
}

.tail {
  color: #74d8ff;
}

.docker {
  color: #80bfff;
}

.aws {
  color: #ffd27a;
}

.cf {
  color: #ffc266;
}

.stack-grid strong {
  color: #d8d1e9;
  font-size: 12px;
  font-weight: 850;
  text-align: left;
}

.process {
  display: grid;
  grid-template-columns: minmax(240px, 0.27fr) minmax(0, 0.73fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.process .section-heading {
  margin-bottom: 0;
}

.process .section-heading h2 {
  font-size: clamp(30px, 3.3vw, 44px);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
  list-style: none;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.55), transparent);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
  pointer-events: none;
}

.process-flow li {
  position: relative;
  min-height: 214px;
  padding: 20px 16px;
  background: rgba(9, 9, 14, 0.94);
}

.process-flow > li > span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: rgba(139, 92, 246, 0.09);
  color: #d9ccff;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.12);
}

.process-icon svg {
  width: 23px;
  height: 23px;
}

.labs {
  padding: 42px 0 46px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.labs-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.08);
}

.labs-visual-panel,
.labs-head {
  min-height: 220px;
  background: rgba(9, 9, 14, 0.92);
}

.labs-visual-panel {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(245, 242, 255, 0.82);
  font-size: clamp(22px, 3vw, 40px);
  overflow: hidden;
}

.labs-visual-panel::before,
.labs-visual-panel::after {
  content: "";
  position: absolute;
  inset: 22% 18%;
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 45px rgba(139, 92, 246, 0.18);
  transform: rotate(45deg) skew(-12deg, -12deg);
}

.labs-visual-panel::after {
  inset: 34% 32%;
  border-color: rgba(101, 214, 164, 0.22);
  transform: rotate(0deg);
}

.labs-visual-panel strong {
  position: relative;
  z-index: 2;
}

.labs-head {
  display: block;
  padding: 30px;
  margin-bottom: 0;
}

.labs-head p {
  margin-top: 16px;
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.lab-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 354px;
  padding: 24px;
  border: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.18), transparent 42%),
    rgba(10, 10, 15, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.lab-card h3,
.lab-card p,
.lab-card a {
  position: relative;
  z-index: 2;
}

.lab-card a {
  left: auto;
  bottom: auto;
  margin-top: auto;
  padding-top: 20px;
}

.lab-visual {
  position: relative;
  height: 146px;
  margin: -2px 0 22px;
  border: 1px solid rgba(196, 181, 253, 0.13);
  background:
    radial-gradient(circle at 50% 48%, rgba(139, 92, 246, 0.34), transparent 34%),
    rgba(4, 4, 7, 0.72);
  overflow: hidden;
}

.lab-visual span {
  position: absolute;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.24);
}

.lab-visual span:nth-child(1) {
  width: 110px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg) skew(-12deg, -12deg);
}

.lab-visual span:nth-child(2) {
  width: 70px;
  height: 70px;
  left: 17%;
  top: 28%;
}

.lab-visual span:nth-child(3) {
  width: 86px;
  height: 44px;
  right: 14%;
  bottom: 20%;
}

.lab-card-b .lab-visual span:nth-child(1) {
  border-radius: 50%;
}

.lab-card-c .lab-visual span:nth-child(1) {
  width: 124px;
  height: 38px;
  transform: translate(-50%, -50%);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  margin-bottom: 42px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.metrics article {
  min-height: 126px;
  padding: 24px;
  background: rgba(8, 8, 12, 0.92);
}

.metrics strong {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: #bdb5cd;
  font-size: 14px;
  font-weight: 800;
}

.final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 268px;
  margin-bottom: 42px;
  padding: 56px 24px;
  border: 1px solid rgba(196, 181, 253, 0.16);
  background:
    radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.3), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(8, 8, 12, 0.96);
  text-align: center;
  overflow: hidden;
}

.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 2;
}

.final-cta p {
  max-width: 650px;
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
}

.cta-grid span {
  position: absolute;
  border: 1px solid rgba(196, 181, 253, 0.14);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.16);
}

.cta-grid span:nth-child(1) {
  width: 260px;
  height: 260px;
  left: 7%;
  top: -80px;
  transform: rotate(45deg);
}

.cta-grid span:nth-child(2) {
  width: 360px;
  height: 160px;
  right: -60px;
  bottom: 24px;
}

.cta-grid span:nth-child(3) {
  width: 140px;
  height: 140px;
  left: 52%;
  bottom: -50px;
  transform: rotate(45deg);
}

.resources-preview {
  padding: 42px 0 10px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.page-hero {
  padding: clamp(58px, 7vw, 92px) 0 clamp(38px, 5vw, 60px);
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: #9f96b8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #d8ccff;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero p {
  max-width: 840px;
  margin: 22px 0 0;
  color: #d6d0e5;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.page-meta-grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.page-meta-grid article {
  min-height: 86px;
  padding: 18px;
  background: rgba(9, 9, 14, 0.94);
}

.page-meta-grid span,
.legal-nav strong,
.timeline-item > span {
  display: block;
  color: #9f96b8;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-meta-grid strong {
  display: block;
  margin-top: 9px;
  color: #f3efff;
  font-size: 17px;
}

.page-section {
  padding: 42px 0;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.page-section.compact-section {
  padding-top: 24px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-block,
.article-body {
  padding: 28px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(9, 9, 14, 0.92);
  box-shadow: var(--shadow);
}

.content-block h2,
.detail-aside h2,
.contact-panel h2,
.timeline-item h2,
.legal-section h2 {
  margin: 0;
  color: #f5f2ff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.content-block p,
.detail-aside p,
.contact-panel p,
.article-body p,
.legal-article p,
.timeline-item p {
  margin: 16px 0 0;
  color: #b9b2c9;
  font-size: 15px;
  line-height: 1.76;
}

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

.feature-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(196, 181, 253, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #e7e1f7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(196, 181, 253, 0.78);
  background: rgba(101, 214, 164, 0.45);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(101, 214, 164, 0.4);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: 22px;
  align-items: start;
}

.detail-aside,
.contact-panel,
.contact-form,
.legal-nav {
  padding: 24px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.16), transparent 40%),
    rgba(9, 9, 14, 0.94);
  box-shadow: var(--shadow);
}

.detail-aside {
  position: sticky;
  top: 96px;
}

.detail-aside .button {
  width: 100%;
  margin-top: 22px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.content-stack + .link-grid {
  margin-top: 22px;
}

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 302px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 15, 0.94);
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.72), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.link-card:hover::before {
  opacity: 1;
}

.link-card h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.link-card p {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #aaa3b9;
  font-size: 14px;
  line-height: 1.65;
}

.link-card a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 22px;
  color: #d8ccff;
  font-size: 13px;
  font-weight: 800;
}

.link-card a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
}

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

.timeline-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(196, 181, 253, 0.1);
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  background: rgba(9, 9, 14, 0.94);
}

.timeline-item h2 {
  font-size: 24px;
}

.timeline-item p {
  margin: 0;
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
}

.article-body .content-block {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-body .content-block + .content-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(196, 181, 253, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8d1e9;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 5, 7, 0.72);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(196, 181, 253, 0.52);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.16);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.23fr) minmax(0, 0.77fr);
  gap: 24px;
  align-items: start;
  padding: 42px 0;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.legal-nav a {
  color: #aaa3b9;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: #f5f2ff;
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-note,
.legal-section {
  padding: 26px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(9, 9, 14, 0.94);
}

.legal-note {
  margin: 0;
  color: #d6d0e5;
  font-weight: 650;
}

.reference-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #d8ccff;
}

.reference-list a {
  color: #d8ccff;
  text-decoration: underline;
  text-decoration-color: rgba(216, 204, 255, 0.35);
  text-underline-offset: 4px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(120px, 1fr));
  gap: 28px;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-column strong {
  color: #f3eefc;
  font-size: 13px;
}

.footer-column a {
  color: #9690a4;
  font-size: 13px;
  font-weight: 600;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #797384;
  font-size: 12px;
}

.footer-infra-icon {
  position: relative;
  width: 58px;
  height: 34px;
  border: 1px solid rgba(196, 181, 253, 0.16);
}

.footer-infra-icon::before,
.footer-infra-icon::after,
.footer-infra-icon span {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.72);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
}

.footer-infra-icon::before {
  left: 11px;
  top: 12px;
}

.footer-infra-icon::after {
  right: 11px;
  top: 12px;
}

.footer-infra-icon span {
  left: 24px;
  top: 12px;
}

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

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

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

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

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

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(196, 181, 253, 0.14);
    background: rgba(7, 7, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .primary-nav a::after {
    display: none;
  }

  .portal-button {
    order: 3;
  }

  .hero,
  .systems {
    grid-template-columns: 1fr;
  }

  .technology,
  .process {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .detail-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside,
  .legal-nav {
    position: static;
  }

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

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

  .solution-card + .solution-card {
    border-left: 0;
  }

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

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

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

  .timeline-item {
    grid-template-columns: 70px minmax(160px, 0.34fr) minmax(0, 1fr);
  }

  .process-flow::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .announcement {
    min-height: 48px;
    line-height: 1.35;
  }

  .announcement span {
    max-width: 300px;
  }

  .site-header,
  .section-band,
  .trust-strip,
  .site-footer {
    width: min(calc(100vw - 28px), var(--max));
    max-width: var(--max);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 126px;
    padding-top: 12px;
    position: sticky;
  }

  .site-header::after {
    content: none;
  }

  .portal-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    margin: 0 0 12px;
  }

  .menu-toggle {
    order: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-self: end;
    position: absolute;
    top: 12px;
    right: 68px;
    z-index: 5;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 60px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 13vw, 68px);
    line-height: 0.96;
  }

  .hero-intro {
    max-width: 320px;
    font-size: 14px;
  }

  .hero-copy > p:not(.hero-intro) {
    max-width: 330px;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
    width: 100%;
  }

  .button {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-status {
    max-width: 330px;
  }

  .hero-status,
  .trust-strip,
  .metrics,
  .labs-feature {
    grid-template-columns: 1fr;
  }

  .hero-status article {
    min-height: 74px;
  }

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

  .floating-node {
    width: 48px;
    height: 48px;
  }

  .trust-strip {
    margin-bottom: 60px;
  }

  .solution-grid,
  .labs-grid,
  .process-flow,
  .link-grid,
  .mini-grid,
  .resource-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .process-flow li {
    min-height: 260px;
  }

  .systems,
  .what-we-do,
  .technology,
  .process,
  .labs,
  .page-section,
  .legal-layout {
    padding: 42px 0;
  }

  .page-hero {
    padding: 48px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .page-hero p {
    font-size: 16px;
  }

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

  .dashboard-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(196, 181, 253, 0.12);
  }

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

  .metric-tile,
  .wide-panel,
  .admin-panel,
  .radar-panel {
    grid-column: auto;
  }

  .bar-chart {
    height: 140px;
    gap: 7px;
  }

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

  .labs-head p {
    margin-top: 18px;
  }

  .content-block,
  .article-body,
  .detail-aside,
  .contact-panel,
  .contact-form,
  .legal-nav,
  .legal-note,
  .legal-section {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-cta {
    min-height: auto;
    padding: 64px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy em {
    font-size: 10px;
  }

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

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy > p:not(.hero-intro) {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

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

  .hero-visual::before {
    inset: 11% -22% 16% -20%;
  }

  .node-cloud {
    left: 2%;
  }

  .node-data {
    right: 2%;
  }

  .section-heading h2,
  .systems-copy h2,
  .labs-head h2,
  .final-cta h2 {
    font-size: 38px;
  }
}
