:root {
  color-scheme: dark;
  --tech-page-surface: #05050a;
  --tech-bg: #07060b;
  --tech-bg-soft: #0d0b14;
  --tech-surface: rgba(16, 14, 25, 0.84);
  --tech-surface-strong: rgba(11, 10, 18, 0.96);
  --tech-border: rgba(240, 228, 255, 0.12);
  --tech-text: rgba(255, 255, 255, 0.94);
  --tech-text-soft: rgba(255, 255, 255, 0.62);
  --tech-text-faint: rgba(255, 255, 255, 0.4);
  --tech-cyan: #59e1ff;
  --tech-violet: #8f5cff;
  --tech-emerald: #47d7ac;
  --tech-rose: #ff6b93;
  --tech-divider-padding-y: 0.6rem;
  --tech-divider-padding-y-access: 0.9rem;
  --tech-divider-badge-height: calc(0.68rem + (0.38rem * 2) + 2px);
  --tech-divider-space: calc(var(--tech-divider-badge-height) + (var(--tech-divider-padding-y) * 2));
  --tech-divider-space-access: calc(var(--tech-divider-badge-height) + (var(--tech-divider-padding-y-access) * 2));
  --tech-bridge-divider-padding-y: 1.6rem;
  --tech-bridge-divider-badge-height: calc(0.6rem + (0.42rem * 2) + 2px);
  --tech-bridge-divider-space: calc(var(--tech-bridge-divider-badge-height) + (var(--tech-bridge-divider-padding-y) * 2));
  --tech-scroll-divider-line-top: 2.8rem;
  --tech-scroll-divider-icon-size: 2.5rem;
  --tech-scroll-divider-line-bottom: 1.4rem;
  --tech-scroll-divider-space: calc(
    var(--tech-scroll-divider-line-top) +
    var(--tech-scroll-divider-icon-size) +
    var(--tech-scroll-divider-line-bottom)
  );
}

html,
body {
  min-height: 100%;
  background: var(--tech-bg);
}

#main-content {
  background: transparent;
}

body.tech-body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--tech-page-surface) 0%, var(--tech-bg) 18%, var(--tech-bg) 100%);
  color: var(--tech-text);
  -webkit-tap-highlight-color: rgba(89, 225, 255, 0.18);
  touch-action: manipulation;
}

.tech-skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #07060b;
  text-decoration: none;
  transition:
    top 0.2s ease,
    opacity 0.2s ease;
}

.tech-skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--tech-cyan);
  outline-offset: 2px;
}

.tech-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.tech-shell {
  position: relative;
  z-index: 2;
}

.tech-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
  animation: techGridPulse 7s ease-in-out infinite;
}

@keyframes techGridPulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.34; }
}

.tech-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
}

.tech-hero__orb--violet {
  top: 7%;
  right: 8%;
  width: 30rem;
  height: 30rem;
  background: rgba(143, 92, 255, 0.13);
  animation: techOrbDrift1 20s ease-in-out infinite;
}

.tech-hero__orb--cyan {
  left: -4%;
  bottom: 10%;
  width: 26rem;
  height: 26rem;
  background: rgba(89, 225, 255, 0.09);
  animation: techOrbDrift2 24s ease-in-out infinite;
}

.tech-hero__orb--emerald {
  right: 25%;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(71, 215, 172, 0.07);
  animation: techOrbDrift3 17s ease-in-out infinite;
}

@keyframes techOrbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-2.5rem, 3.5rem); }
  66%       { transform: translate(2rem, -1.5rem); }
}

@keyframes techOrbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(3rem, -2rem); }
  66%       { transform: translate(-1.5rem, 2.5rem); }
}

@keyframes techOrbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(2.5rem, -3rem); }
}

/* ── Particles ── */
.tech-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--p-color, var(--tech-cyan));
  box-shadow: 0 0 7px var(--p-color, var(--tech-cyan));
  opacity: 0;
  animation: techParticleRise 7s ease-out infinite;
}

@keyframes techParticleRise {
  0%   { transform: translateY(0) translateX(0);   opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(-72px) translateX(18px); opacity: 0; }
}

/* ── Scan beam ── */
.tech-hero__scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(89, 225, 255, 0.55) 25%,
    rgba(143, 92, 255, 0.75) 50%,
    rgba(89, 225, 255, 0.55) 75%,
    transparent 100%
  );
  top: 0;
  opacity: 0;
  animation: techScanLine 11s ease-in-out infinite;
  pointer-events: none;
}

@keyframes techScanLine {
  0%   { top: -1px; opacity: 0; }
  4%   { opacity: 0.65; }
  96%  { opacity: 0.28; }
  100% { top: 100%; opacity: 0; }
}

.tech-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.tech-hero__frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  min-height: 100vh;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.tech-hero__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.tech-kicker {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.tech-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.tech-hero__title {
  margin: 0;
  max-width: min(26ch, 100%);
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance;
  color: #ffffff;
  padding-bottom: 0.06em;
}

.tech-hero__title-plain {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.tech-hero__title-accent {
  background: linear-gradient(135deg,
    var(--tech-cyan)    0%,
    var(--tech-violet) 48%,
    var(--tech-emerald) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .tech-hero__title-accent {
    color: var(--tech-cyan);
    background: none;
    -webkit-text-fill-color: currentColor;
    padding-bottom: 0;
  }
}

.tech-hero__lead {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--tech-text-soft);
  line-height: 1.68 !important;
  text-wrap: pretty;
}

.tech-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.tech-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0 1.5rem 0 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(89, 225, 255, 0.2);
  background: linear-gradient(135deg, rgba(89, 225, 255, 0.18), rgba(143, 92, 255, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 40px rgba(5, 8, 17, 0.45);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.tech-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 225, 255, 0.35);
  background: linear-gradient(135deg, rgba(89, 225, 255, 0.24), rgba(143, 92, 255, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 50px rgba(5, 8, 17, 0.5);
}

.tech-cta:focus-visible {
  outline: 2px solid var(--tech-cyan);
  outline-offset: 4px;
}

.tech-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  line-height: 1;
}

/* Ghost (secondary) CTA button */
.tech-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background    0.25s ease,
    color         0.25s ease,
    transform     0.25s ease;
}

.tech-cta-ghost:hover {
  border-color: rgba(143, 92, 255, 0.38);
  background: rgba(143, 92, 255, 0.07);
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.tech-cta-ghost:focus-visible {
  outline: 2px solid var(--tech-violet);
  outline-offset: 4px;
}

.tech-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════
   ORBIT SYSTEM
   ════════════════════════════════ */
.tech-orbit {
  position: relative;
  width: 100%;
  max-width: 34rem;
  aspect-ratio: 1;
  margin: auto;
}

/* ── Orbit Tracks ── */
.tech-orbit__track {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
}

/* Track 1 — Quantum / violet */
.tech-orbit__track--one {
  width: 41%;
  height: 41%;
  margin-left: -20.5%;
  margin-top: -20.5%;
  border: 1px solid rgba(143, 92, 255, 0.30);
  box-shadow: inset 0 0 20px rgba(143, 92, 255, 0.06);
  animation: techOrbitCW 14s linear infinite;
}

/* Track 2 — AI / cyan */
.tech-orbit__track--two {
  width: 63%;
  height: 63%;
  margin-left: -31.5%;
  margin-top: -31.5%;
  border: 1px dashed rgba(89, 225, 255, 0.22);
  animation: techOrbitCCW 23s linear infinite;
}

/* Track 3 — Blockchain / emerald */
.tech-orbit__track--three {
  width: 86%;
  height: 86%;
  margin-left: -43%;
  margin-top: -43%;
  border: 1px dashed rgba(71, 215, 172, 0.16);
  animation: techOrbitCW 34s linear infinite;
}

@keyframes techOrbitCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes techOrbitCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* ── Node Wrappers (position at top of track + counter-rotate) ── */
.tech-orbit__node-wrap {
  position: absolute;
  top: 0;
  left: 50%;
}

.tech-orbit__track--one .tech-orbit__node-wrap {
  animation: techOrbitCounterCW 14s linear infinite;
}

.tech-orbit__track--two .tech-orbit__node-wrap {
  animation: techOrbitCounterCCW 23s linear infinite;
}

.tech-orbit__track--three .tech-orbit__node-wrap {
  animation: techOrbitCounterCW 34s linear infinite;
}

@keyframes techOrbitCounterCW {
  from { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) translateY(-50%) rotate(-360deg); }
}

@keyframes techOrbitCounterCCW {
  from { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

/* ── Orbit Nodes ── */
.tech-orbit__node {
  min-width: 7.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid;
  border-radius: 1rem;
  background: rgba(8, 8, 14, 0.92);
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.tech-orbit__node--quantum {
  border-color: rgba(143, 92, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(143, 92, 255, 0.18);
}

.tech-orbit__node--ai {
  border-color: rgba(89, 225, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(89, 225, 255, 0.16);
}

.tech-orbit__node--chain {
  border-color: rgba(71, 215, 172, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(71, 215, 172, 0.14);
}

.tech-orbit__node-tag {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.62rem;
  font-family: var(--font-brand-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tech-orbit__node--quantum .tech-orbit__node-tag { color: rgba(143, 92, 255, 0.9); }
.tech-orbit__node--ai      .tech-orbit__node-tag { color: rgba(89,  225, 255, 0.9); }
.tech-orbit__node--chain   .tech-orbit__node-tag { color: rgba(71,  215, 172, 0.9); }

.tech-orbit__node-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.tech-orbit__node-meta {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.46);
}

/* ── Central Core ── */
.tech-orbit__core {
  position: absolute;
  width: 22%;
  height: 22%;
  left: 50%;
  top: 50%;
  margin-left: -11%;
  margin-top: -11%;
  display: grid;
  place-items: center;
  z-index: 2;
}

.tech-orbit__core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.tech-orbit__core-ring--one {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.1);
  animation: techPulse 4s ease-in-out infinite;
}

.tech-orbit__core-ring--two {
  inset: 15%;
  border-color: rgba(89, 225, 255, 0.18);
  animation: techPulse 4s ease-in-out infinite 0.8s;
}

.tech-orbit__core-ring--three {
  inset: 28%;
  border-color: rgba(143, 92, 255, 0.22);
  animation: techPulse 4s ease-in-out infinite 1.6s;
}

.tech-orbit__core-inner {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 38% 32%,
    rgba(89, 225, 255, 0.26),
    rgba(143, 92, 255, 0.28) 55%,
    rgba(7, 7, 13, 0.97) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 40px rgba(89, 225, 255, 0.22),
    0 0 70px rgba(143, 92, 255, 0.12);
}

.tech-orbit__core-label {
  display: block;
  font-size: 0.52rem;
  font-family: var(--font-brand-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tech-orbit__core-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
  text-wrap: balance;
}

/* ── Floating Metrics ── */
.tech-orbit__metric {
  position: absolute;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.85rem;
  background: rgba(9, 9, 15, 0.86);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  z-index: 3;
}

.tech-orbit__metric--one {
  bottom: 7%;
  left: 4%;
  animation: techMetricFloat 5.5s ease-in-out infinite;
}

.tech-orbit__metric--two {
  top: 6%;
  right: 4%;
  animation: techMetricFloat 6.2s ease-in-out infinite 1.4s;
}

.tech-orbit__metric--three {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  animation: techMetricFloat 5s ease-in-out infinite 0.7s;
}

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

.tech-orbit__metric--three {
  animation-name: techMetricFloatCentered;
}

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

.tech-orbit__metric-label {
  font-size: 0.62rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
}

.tech-orbit__metric-value {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.tech-architecture {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(15, 13, 22, 0.96), rgba(8, 8, 12, 0.92)),
    rgba(11, 10, 18, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.tech-architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(89, 225, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(143, 92, 255, 0.16), transparent 28%);
  pointer-events: none;
}

.tech-architecture__header,
.tech-architecture__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tech-architecture__label,
.tech-architecture__status {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tech-architecture__label {
  color: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.tech-architecture__status {
  color: rgba(71, 215, 172, 0.9);
  border: 1px solid rgba(71, 215, 172, 0.15);
  background: rgba(71, 215, 172, 0.08);
}

.tech-architecture__stage {
  position: relative;
  min-height: 31rem;
  margin: 1.6rem 0;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, rgba(17, 17, 25, 0.72), rgba(8, 8, 12, 0.64));
  overflow: hidden;
}

.tech-node {
  position: absolute;
  z-index: 2;
  width: min(15rem, 42%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.35rem;
  background: rgba(12, 11, 18, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 32px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.tech-node--top {
  left: 50%;
  top: 1.4rem;
  transform: translateX(-50%);
}

.tech-node--left {
  left: 1.2rem;
  bottom: 1.8rem;
}

.tech-node--right {
  right: 1.2rem;
  bottom: 1.8rem;
}

.tech-node__tag {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-node__title {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.tech-node__meta {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.88rem;
  color: var(--tech-text-soft);
}

.tech-architecture__connector {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(89, 225, 255, 0.1), rgba(143, 92, 255, 0.45), rgba(71, 215, 172, 0.16));
  box-shadow: 0 0 20px rgba(143, 92, 255, 0.3);
}

.tech-architecture__connector--a {
  left: 50%;
  top: 7.6rem;
  width: 10rem;
  transform: rotate(125deg);
}

.tech-architecture__connector--b {
  left: 8rem;
  bottom: 9.6rem;
  width: 11rem;
  transform: rotate(-4deg);
}

.tech-architecture__connector--c {
  right: 8rem;
  bottom: 9.6rem;
  width: 10rem;
  transform: rotate(-126deg);
}

.tech-core {
  position: absolute;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  width: 13rem;
  height: 13rem;
  display: grid;
  place-items: center;
}

.tech-core__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-core__ring--one {
  animation: techPulse 4.2s ease-in-out infinite;
}

.tech-core__ring--two {
  inset: 0.8rem;
  border-color: rgba(89, 225, 255, 0.14);
  animation: techPulse 4.2s ease-in-out infinite 1s;
}

.tech-core__center {
  position: relative;
  z-index: 1;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(89, 225, 255, 0.18), rgba(143, 92, 255, 0.2) 55%, rgba(10, 10, 16, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 60px rgba(89, 225, 255, 0.18);
  text-align: center;
}

.tech-core__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.tech-core__title {
  max-width: 6ch;
  margin-top: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.tech-signal {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.tech-signal__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.tech-signal__value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.tech-marquee {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  scroll-margin-top: 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 6, 11, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.tech-marquee__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.tech-marquee__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-marquee__stat:last-child {
  border-bottom: none;
}

.tech-marquee__stat-value {
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.tech-marquee__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .tech-marquee__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-marquee__stat {
    padding: 1.2rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }

  .tech-marquee__stat:last-child {
    border-right: none;
  }

  .tech-marquee__stat-value {
    font-size: 1rem;
  }

  .tech-marquee__stat-label {
    font-size: 0.82rem;
  }
}

@media (min-width: 1280px) {
  .tech-marquee__stat {
    padding: 1.35rem 2.5rem;
  }

  .tech-marquee__stat-value {
    font-size: 1.12rem;
  }
}

/* ════════════════════════════════════════════
   GENERIC SECTION DIVIDERS (03→04, 04→05, 05→06)
   ════════════════════════════════════════════ */

.tech-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--tech-divider-padding-y) 1.5rem;
  background: transparent;
  position: relative;
  z-index: auto;
  isolation: auto;
  box-shadow: none;
}

.tech-divider--section-top,
.tech-bridge-divider--section-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.tech-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 255, 255, 0.10) 70%,
    transparent
  );
  max-width: 28rem;
}

/* For the compare divider: lines come from sides */
.tech-divider--compare .tech-divider__line--left {
  background: linear-gradient(90deg, transparent, rgba(143, 92, 255, 0.35));
}

.tech-divider--compare .tech-divider__line--right {
  background: linear-gradient(90deg, rgba(89, 225, 255, 0.35), transparent);
}

.tech-divider__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-family: var(--font-brand-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.24s ease, color 0.24s ease;
}

.tech-divider__badge svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Custody divider: violet accent */
.tech-divider--custody .tech-divider__badge {
  border-color: rgba(143, 92, 255, 0.20);
  color: rgba(143, 92, 255, 0.75);
}

.tech-divider--custody .tech-divider__badge svg {
  opacity: 1;
  stroke: var(--tech-violet);
}

/* Compare divider: bidirectional — cyan accent */
.tech-divider--compare .tech-divider__badge {
  border-color: rgba(89, 225, 255, 0.20);
  color: rgba(89, 225, 255, 0.75);
}

.tech-divider--compare .tech-divider__badge svg {
  opacity: 1;
  stroke: var(--tech-cyan);
}

/* Access divider: glowing violet — most prominent */
.tech-divider--access {
  padding: var(--tech-divider-padding-y-access) 1.5rem;
}

.tech-divider--access .tech-divider__line {
  background: linear-gradient(90deg,
    transparent,
    rgba(143, 92, 255, 0.22) 40%,
    rgba(143, 92, 255, 0.22) 60%,
    transparent
  );
}

.tech-divider__badge--glow {
  border-color: rgba(143, 92, 255, 0.30);
  color: rgba(143, 92, 255, 0.85);
  box-shadow: 0 0 20px rgba(143, 92, 255, 0.18);
  animation: techDividerGlow 3.5s ease-in-out infinite;
}

.tech-divider__badge--glow svg {
  opacity: 1;
  stroke: var(--tech-violet);
}

@keyframes techDividerGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(143, 92, 255, 0.14); }
  50%       { box-shadow: 0 0 26px rgba(143, 92, 255, 0.26); }
}

/* ── Divisor 01 → 02: seta de scroll animada ── */
.tech-scroll-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  width: var(--tech-scroll-divider-icon-size);
  background: transparent;
  position: relative;
  z-index: auto;
  isolation: auto;
  box-shadow: none;
}

.tech-scroll-divider--section-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.tech-scroll-divider__line {
  width: 1px;
  height: var(--tech-scroll-divider-line-top);
  background: linear-gradient(180deg, rgba(143, 92, 255, 0.4), rgba(89, 225, 255, 0.15));
}

.tech-scroll-divider__line--bottom {
  background: linear-gradient(180deg, rgba(89, 225, 255, 0.15), transparent);
  height: var(--tech-scroll-divider-line-bottom);
}

.tech-scroll-divider__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tech-scroll-divider-icon-size);
  height: var(--tech-scroll-divider-icon-size);
  border-radius: 50%;
  border: 1px solid rgba(143, 92, 255, 0.28);
  background: transparent;
  color: rgba(143, 92, 255, 0.9);
  animation: techScrollBounce 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  flex-shrink: 0;
}

/* Nenhuma pintura sólida no container — evita “faixa” que corta o degradê do body */
.tech-divider,
.tech-scroll-divider,
.tech-bridge-divider {
  background-color: transparent;
  background-image: none;
}

.tech-divider__badge,
.tech-scroll-divider__icon,
.tech-bridge-divider__badge {
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@keyframes techScrollBounce {
  0%, 100% { transform: translateY(-3px); opacity: 0.7; }
  50%       { transform: translateY(4px);  opacity: 1;   }
}

/* ── Divisor 02 → 03: conector inteligência ── */
.tech-bridge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  background: transparent;
  position: relative;
  z-index: auto;
  isolation: auto;
  box-shadow: none;
}

.tech-bridge-divider__track {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 56rem;
  gap: 0;
}

.tech-bridge-divider__rail {
  flex: 1;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.tech-bridge-divider__rail--left {
  background: linear-gradient(90deg, transparent, rgba(143, 92, 255, 0.45));
}

.tech-bridge-divider__rail--right {
  background: linear-gradient(90deg, rgba(89, 225, 255, 0.45), transparent);
}

.tech-bridge-divider__rail--left::after,
.tech-bridge-divider__rail--right::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3rem;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(89, 225, 255, 0.35), transparent);
  animation: techRailShimmer 3.5s ease-in-out infinite;
  border-radius: 1px;
}

.tech-bridge-divider__rail--left::after {
  left: -3rem;
  animation-direction: normal;
}

.tech-bridge-divider__rail--right::after {
  right: -3rem;
  animation-direction: reverse;
}

@keyframes techRailShimmer {
  0%   { transform: translateX(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateX(60rem); opacity: 0; }
}

.tech-bridge-divider__node {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tech-violet), var(--tech-cyan));
  box-shadow:
    0 0 10px rgba(143, 92, 255, 0.6),
    0 0 22px rgba(89, 225, 255, 0.3);
  flex-shrink: 0;
  animation: techNodePulse 2.8s ease-in-out infinite;
}

.tech-bridge-divider__node:last-child {
  animation-delay: 0.4s;
}

@keyframes techNodePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(143, 92, 255, 0.5), 0 0 18px rgba(89, 225, 255, 0.2); opacity: 0.8; }
  50%       { box-shadow: 0 0 14px rgba(143, 92, 255, 0.8), 0 0 32px rgba(89, 225, 255, 0.45); opacity: 1; }
}

.tech-bridge-divider__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  flex-shrink: 0;
  line-height: 1;
  margin: 0 0.75rem;
}

.tech-bridge-divider__label {
  font-size: 0.6rem;
  font-family: var(--font-brand-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.tech-bridge-divider__dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.tech-bridge-divider__dot--one {
  background: rgba(143, 92, 255, 0.7);
}

.tech-bridge-divider__dot--two {
  background: rgba(89, 225, 255, 0.7);
}

.tech-shield {
  position: relative;
  padding: 5.8rem 0 2rem;
  background-color: var(--tech-page-surface);
  overflow: hidden;
}

.tech-shield__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-shield__beam {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0;
}

.tech-shield__beam--one {
  top: -12%;
  left: -8%;
  width: 28rem;
  height: 22rem;
  background: rgba(143, 92, 255, 0.10);
}

.tech-shield__beam--two {
  right: -8%;
  bottom: -8%;
  width: 22rem;
  height: 26rem;
  background: rgba(89, 225, 255, 0.06);
}

.tech-shield__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86) 16%, rgba(0, 0, 0, 0.92) 84%, transparent);
}

.tech-shield__divider {
  position: absolute;
  left: 52%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12) 16%, rgba(255, 255, 255, 0.1) 84%, transparent);
  opacity: 0;
}

.tech-shield__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.1rem;
}

.tech-shield__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.tech-shield__title {
  margin: 0;
  max-width: 14ch;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance;
}

.tech-shield__title-accent {
  color: var(--tech-cyan);
}

.tech-shield__lead {
  margin: 0;
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72 !important;
  text-wrap: pretty;
}

.tech-shield__threats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
  margin-top: 0.2rem;
}

.tech-threat-card {
  min-width: 0;
  padding: 1.3rem 1.15rem 1.25rem;
  border: 1px solid rgba(143, 92, 255, 0.2);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 11, 28, 0.82), rgba(10, 8, 14, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 34px rgba(0, 0, 0, 0.26);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tech-threat-card:hover {
  border-color: rgba(143, 92, 255, 0.34);
  background: linear-gradient(180deg, rgba(22, 14, 34, 0.9), rgba(12, 9, 16, 0.98));
}

.tech-threat-card__index {
  margin: 0;
  font-size: 0.72rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143, 92, 255, 0.88);
}

.tech-threat-card__copy {
  margin: 0.9rem 0 0;
  max-width: 31ch;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: pretty;
}

.tech-shield__benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 0.75rem 1.2rem;
  margin-top: 0.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-shield__benefit-label {
  font-size: 0.74rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-shield__benefit-value {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: balance;
}

.tech-brain {
  position: relative;
  padding: var(--tech-bridge-divider-space) 0 6.1rem;
  background-color: var(--tech-page-surface);
  overflow: hidden;
}

.tech-brain__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-brain__pulse {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
}

.tech-brain__pulse--one {
  top: -10%;
  right: -8%;
  width: 30rem;
  height: 24rem;
  background: rgba(89, 225, 255, 0.08);
}

.tech-brain__pulse--two {
  left: -8%;
  bottom: -12%;
  width: 28rem;
  height: 26rem;
  background: rgba(71, 215, 172, 0.07);
}

.tech-brain__scan {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 18%, rgba(0, 0, 0, 0.9) 82%, transparent);
}

.tech-brain__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.tech-brain__header {
  display: block;
  max-width: 62rem;
}

.tech-brain__title {
  margin: 0;
  width: fit-content;
  max-width: 24ch;
  font-size: clamp(2.35rem, 4.2vw, 3.95rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
}

.tech-brain__title-line {
  display: block;
  white-space: nowrap;
}

.tech-brain__lead {
  max-width: 54rem;
  margin: 0;
  color: var(--tech-text-soft);
  font-size: clamp(1rem, 1.32vw, 1.2rem) !important;
  line-height: 1.68 !important;
  text-wrap: pretty;
}

.tech-brain__terminal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 9, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 32px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.tech-brain__sidebar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.96), rgba(6, 8, 10, 0.94));
}

.tech-brain__sidebar-head {
  display: flex;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.6rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-brain__terminal-badge {
  font-size: 0.76rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.tech-brain__sidebar-title {
  margin: 1.05rem 1.05rem 0;
  font-size: 2rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
}

.tech-brain__filters {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tech-brain-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.tech-brain-filter:hover {
  border-color: rgba(89, 225, 255, 0.3);
  color: #ffffff;
}

.tech-brain-filter:focus-visible {
  outline: 2px solid var(--tech-cyan);
  outline-offset: 3px;
}

.tech-brain-filter.is-active,
.tech-brain-filter[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(9, 11, 13, 0.94);
  border-color: rgba(255, 255, 255, 0.96);
}

.tech-brain-filter.is-active::before,
.tech-brain-filter[aria-pressed="true"]::before {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: rgba(9, 11, 13, 0.92);
}

.tech-brain__feed {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.tech-brain-feed__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.05rem;
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 9, 0.88);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.tech-brain-feed__row[hidden] {
  display: none;
}

.tech-brain-feed__row:first-child {
  border-top: 0;
}

.tech-brain-feed__row:hover {
  background: rgba(13, 16, 20, 0.96);
  border-color: rgba(89, 225, 255, 0.18);
}

.tech-brain-feed__row.is-highlight {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.tech-brain-feed__index {
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-family: var(--font-brand-mono, monospace);
  color: rgba(255, 255, 255, 0.72);
}

.tech-brain-feed__headline {
  margin: 0;
  font-size: clamp(0.95rem, 1.18vw, 1.18rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

.tech-brain-feed__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.68rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.tech-brain-feed__tag--risk {
  color: rgba(255, 160, 173, 0.96);
  border-color: rgba(255, 86, 103, 0.3);
}

.tech-brain-feed__tag--org {
  color: rgba(113, 235, 197, 0.96);
  border-color: rgba(71, 215, 172, 0.35);
}

.tech-brain-feed__tag--infra {
  color: rgba(89, 225, 255, 0.96);
  border-color: rgba(89, 225, 255, 0.35);
}

.tech-brain-feed__tag--user {
  color: rgba(214, 229, 132, 0.96);
  border-color: rgba(214, 229, 132, 0.3);
}

.tech-brain__benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 0.8rem 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-brain__benefit-label {
  font-size: 0.72rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-brain__benefit-value {
  max-width: 48ch;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: balance;
}

.tech-custody {
  position: relative;
  padding: calc(4.9rem + var(--tech-divider-space)) 0 5.3rem;
  background-color: var(--tech-page-surface);
  overflow: hidden;
}

.tech-custody__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-custody__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
}

.tech-custody__glow--amber {
  top: -12%;
  left: -10%;
  width: 26rem;
  height: 22rem;
  background: rgba(143, 92, 255, 0.07);
}

.tech-custody__glow--cyan {
  right: -10%;
  bottom: -8%;
  width: 24rem;
  height: 26rem;
  background: rgba(89, 225, 255, 0.05);
}

.tech-custody__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 18%, rgba(0, 0, 0, 0.9) 82%, transparent);
}

.tech-custody__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 68rem;
  margin: 0 auto 1.75rem;
}

.tech-custody__title {
  margin: 0 auto;
  width: fit-content;
  max-width: 24ch;
  font-size: clamp(1.95rem, 3.8vw, 3.2rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
}

.tech-custody__title-line {
  white-space: nowrap;
}

.tech-custody__lead {
  max-width: 62ch;
  margin: 1.1rem auto 0;
  color: var(--tech-text-soft);
  text-align: center;
  line-height: 1.64 !important;
  text-wrap: pretty;
}

.tech-custody__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  max-width: 68rem;
  margin: 0 auto;
}

.tech-custody__panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 50px rgba(0, 0, 0, 0.24);
}

.tech-custody__panel--primary {
  background: linear-gradient(180deg, rgba(12, 13, 18, 0.96), rgba(8, 9, 12, 0.96));
  padding: 0.9rem;
  width: 100%;
  max-width: 66rem;
  margin-inline: auto;
}

.tech-ledger {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.tech-ledger__col {
  min-width: 0;
  padding: 1.05rem 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.tech-ledger__col--owner {
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(19, 15, 10, 0.7);
}

.tech-ledger__col--infra {
  background:
    linear-gradient(180deg, rgba(89, 225, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 18, 0.72);
}

.tech-ledger__eyebrow {
  display: inline-flex;
  font-size: 0.67rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-ledger__title {
  margin: 0.68rem 0 0;
  max-width: 15ch;
  font-size: clamp(1.26rem, 1.8vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.tech-ledger__copy {
  max-width: 38ch;
  margin: 0.62rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tech-text-soft);
  text-wrap: pretty;
}

.tech-ledger__token {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  margin-top: 0.95rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
}

.tech-ledger__token-label {
  font-size: 0.64rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.tech-ledger__token-value {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

.tech-ledger__bridge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  min-height: 0;
  padding: 0.05rem 0.05rem 0.2rem;
}

.tech-ledger__bridge-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.35), rgba(255, 255, 255, 0.2), rgba(89, 225, 255, 0.35));
}

.tech-ledger__bridge-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  min-width: 13rem;
  min-height: 0;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(245, 158, 11, 0.12), rgba(89, 225, 255, 0.12)),
    rgba(10, 11, 14, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.tech-ledger__bridge-kicker {
  font-size: 0.58rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.tech-ledger__bridge-title {
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.tech-compare {
  position: relative;
  padding: calc(5.5rem + var(--tech-divider-space)) 0 6rem;
  background-color: var(--tech-page-surface);
  overflow: hidden;
}

.tech-compare__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-compare__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
}

.tech-compare__glow--red {
  top: 12%;
  left: -6%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 107, 147, 0.06);
}

.tech-compare__glow--green {
  right: -4%;
  bottom: 10%;
  width: 26rem;
  height: 26rem;
  background: rgba(71, 215, 172, 0.07);
}

.tech-compare__divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.14) 82%, transparent);
  opacity: 0.22;
  transform: translateX(-50%);
}

.tech-compare__header {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.tech-compare__title {
  margin: 0 auto;
  max-width: 22ch;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  text-wrap: balance;
}

.tech-compare__lead {
  max-width: 38rem;
  margin: 1.4rem auto 0;
  color: var(--tech-text-soft);
  line-height: 1.7 !important;
  text-wrap: pretty;
}

.tech-compare__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.tech-compare__col {
  position: relative;
  min-width: 0;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 64px rgba(0, 0, 0, 0.22);
}

.tech-compare__col--legacy {
  background:
    linear-gradient(180deg, rgba(26, 11, 14, 0.97), rgba(12, 9, 11, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 3px 0 0 rgba(239, 68, 68, 0.32),
    0 28px 64px rgba(0, 0, 0, 0.26);
}

.tech-compare__col--future {
  background:
    linear-gradient(180deg, rgba(10, 22, 18, 0.97), rgba(8, 12, 11, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 3px 0 0 rgba(71, 215, 172, 0.32),
    0 28px 64px rgba(0, 0, 0, 0.26);
}

.tech-compare__col-head {
  padding: 1.5rem 1.4rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-compare__col-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tech-compare__col--legacy .tech-compare__col-label {
  color: rgba(254, 202, 202, 0.92);
  border-color: rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.1);
}

.tech-compare__col--future .tech-compare__col-label {
  color: rgba(209, 250, 229, 0.92);
  border-color: rgba(71, 215, 172, 0.24);
  background: rgba(71, 215, 172, 0.1);
}

.tech-compare__col-title {
  margin: 0.9rem 0 0;
  font-size: clamp(1.28rem, 1.7vw, 1.76rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.tech-compare__rows {
  display: flex;
  flex-direction: column;
}

.tech-compare__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.tech-compare__row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.tech-compare__row:last-child {
  border-bottom: none;
}

.tech-compare__metric {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.tech-compare__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-compare__value--legacy {
  color: rgba(254, 202, 202, 0.95);
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.1);
}

.tech-compare__value--future {
  color: rgba(209, 250, 229, 0.96);
  border: 1px solid rgba(71, 215, 172, 0.22);
  background: rgba(71, 215, 172, 0.1);
}

.tech-compare__versus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.3rem 0;
}

.tech-compare__versus-line {
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.tech-compare__versus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 20px rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-family: var(--font-brand-mono, monospace);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.tech-final {
  position: relative;
  padding: calc(5.5rem + var(--tech-divider-space-access)) 0 6.5rem;
  background-color: var(--tech-page-surface);
  overflow: hidden;
}

.tech-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.tech-final__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
}

.tech-final__halo--one {
  top: 8%;
  left: 10%;
  width: 24rem;
  height: 24rem;
  background: rgba(89, 225, 255, 0.07);
}

.tech-final__halo--two {
  right: 8%;
  bottom: 10%;
  width: 28rem;
  height: 28rem;
  background: rgba(143, 92, 255, 0.10);
}

.tech-final__grain {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.tech-final__card {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.25rem;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.98), rgba(5, 5, 8, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 36px 84px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.tech-final__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
  pointer-events: none;
  opacity: 0.5;
}

.tech-final__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.tech-final__intro {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1rem 2.2rem;
  text-align: center;
}

.tech-final__title {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance;
}

.tech-final__lead {
  max-width: 43rem;
  margin: 1.6rem auto 0;
  color: var(--tech-text-soft);
  line-height: 1.72 !important;
  text-wrap: pretty;
}

.tech-final__separator {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 0 0.15rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}

.tech-final__cta-zone {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-top: 0.1rem;
}

.tech-final__seal {
  position: relative;
  min-height: 19rem;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.tech-final__seal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-final__seal-ring--one {
  width: 15rem;
  height: 15rem;
  animation: techPulse 4.8s ease-in-out infinite;
}

.tech-final__seal-ring--two {
  width: 11.6rem;
  height: 11.6rem;
  border-color: rgba(89, 225, 255, 0.18);
  animation: techPulse 4.8s ease-in-out infinite 0.9s;
}

.tech-final__seal-core {
  position: relative;
  z-index: 1;
  width: 9rem;
  height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 40% 30%, rgba(89, 225, 255, 0.22), rgba(143, 92, 255, 0.26) 55%, rgba(10, 10, 14, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 50px rgba(89, 225, 255, 0.18),
    0 0 90px rgba(143, 92, 255, 0.12);
  text-align: center;
}

.tech-final__seal-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-brand-mono, monospace);
}

.tech-final__seal-title {
  max-width: 8ch;
  font-size: 0.96rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.tech-final__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.tech-final__benefit {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem 0.88rem 1.15rem;
  border: 1px solid rgba(240, 228, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.tech-final__benefit:hover {
  background: rgba(143, 92, 255, 0.07);
  border-color: rgba(143, 92, 255, 0.36);
  transform: translateY(-5px);
  box-shadow:
    0 14px 32px rgba(143, 92, 255, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tech-final__benefit:focus-visible {
  outline: 2px solid var(--tech-cyan);
  outline-offset: 3px;
}

.tech-final__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.tech-final__benefit:hover .tech-final__benefit-icon {
  transform: scale(1.12);
  border-color: rgba(143, 92, 255, 0.38);
  background: rgba(143, 92, 255, 0.14);
  color: rgba(143, 92, 255, 0.95);
  box-shadow: 0 0 16px rgba(143, 92, 255, 0.28);
}

.tech-final__benefit-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.62rem;
  font-family: var(--font-brand-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  width: fit-content;
}

.tech-final__benefit-value {
  display: block;
  font-size: 0.875rem;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.tech-final__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.1rem 1rem 1.35rem;
  text-align: center;
}

.tech-final__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0 1.4rem 0 1.7rem;
  border-radius: 999px;
  border: none;
  background: var(--nd-cta, #7b47ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 48px rgba(123, 71, 255, 0.38);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.tech-final__button:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--nd-cta, #7b47ff) 90%, white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 28px 56px rgba(123, 71, 255, 0.46);
}

.tech-final__button:focus-visible {
  outline: 2px solid var(--tech-cyan);
  outline-offset: 4px;
}

.tech-final__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.tech-final__microcopy {
  max-width: 36rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.46);
  text-wrap: pretty;
}

.tech-footer {
  position: relative;
  padding: 4rem 0 calc(3.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.98), rgba(5, 5, 8, 1));
  overflow: hidden;
}

.tech-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-footer__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 100%);
}

.tech-footer__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.12rem;
  align-items: stretch;
}

.tech-footer__card,
.tech-footer__nav {
  min-width: 0;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 13, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tech-footer__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
  animation: techFooterRise 0.62s cubic-bezier(0.2, 0.72, 0.24, 1) both;
}

.tech-footer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(89, 225, 255, 0.11), transparent 35%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.54;
}

.tech-footer__card > * {
  position: relative;
  z-index: 1;
}

.tech-footer__brand,
.tech-footer__legal {
  height: 100%;
  min-height: 10.4rem;
}

.tech-footer__card--legal {
  animation-delay: 0.06s;
}

.tech-footer__card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 225, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 18, 24, 0.98), rgba(10, 12, 17, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.tech-footer__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-footer__title {
  max-width: 22ch;
  margin: 0.8rem 0 0;
  font-size: clamp(2.2rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.tech-footer__label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-footer__copy {
  margin: 0.85rem 0 0;
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.6);
  text-wrap: pretty;
}

.tech-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 0.62rem 0.7rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.96), rgba(7, 8, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.24);
  animation: techFooterRise 0.62s cubic-bezier(0.2, 0.72, 0.24, 1) both;
  animation-delay: 0.12s;
}

.tech-footer__nav-list {
  display: flex;
  flex: 1 1 38rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.tech-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.48rem;
  padding: 0 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tech-footer__nav-credit {
  margin: 0 0 0 auto;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.tech-footer__nav-credit-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(89, 225, 255, 0.24);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.tech-footer__nav-credit-link:hover {
  color: #59e1ff;
  border-color: rgba(89, 225, 255, 0.62);
  box-shadow: 0 1px 0 rgba(89, 225, 255, 0.34);
}

.tech-footer__nav-credit-link:focus-visible {
  outline: 2px solid var(--vone-glow-cyan, #59e1ff);
  outline-offset: 3px;
}

.tech-footer__link.is-active,
.tech-footer__link[aria-current="page"] {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.32);
}

.tech-footer__link:hover {
  color: #ffffff;
  border-color: rgba(89, 225, 255, 0.24);
  background: rgba(89, 225, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.tech-footer__link:focus-visible {
  outline: 2px solid var(--vone-glow-cyan, #59e1ff);
  outline-offset: 3px;
}

@keyframes techFooterRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes techPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (min-width: 960px) {
  .tech-hero__frame {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 35.5rem);
    gap: 2.5rem;
  }

  .tech-shield__intro {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2.8rem;
  }

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

  .tech-brain__header {
    max-width: 66rem;
    margin-bottom: 0.25rem;
  }

  .tech-brain__terminal {
    grid-template-columns: minmax(14.5rem, 16.5rem) minmax(0, 1fr);
  }

  .tech-brain__sidebar {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .tech-brain__sidebar-title {
    margin-bottom: 1.15rem;
  }

  .tech-brain__filters {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .tech-brain-filter {
    width: 100%;
    justify-content: flex-start;
    min-height: 3.4rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    padding: 0 1rem;
  }

  .tech-brain-feed__row {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .tech-custody__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 72rem;
    gap: 1.15rem;
    align-items: start;
  }

  .tech-custody__header {
    max-width: 70rem;
    margin-bottom: 1.95rem;
  }

  .tech-custody__title {
    max-width: 24ch;
    font-size: clamp(2.1rem, 3.4vw, 3.2rem) !important;
  }

  .tech-custody__lead {
    margin: 1.2rem auto 0;
    max-width: 60ch;
  }

  .tech-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
  }

  .tech-ledger__bridge {
    grid-column: 1 / -1;
    margin: 0.15rem 0.1rem 0;
  }

  .tech-compare__board {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
  }

  .tech-compare__versus {
    flex-direction: column;
    padding: 0;
  }

  .tech-compare__versus-line {
    width: 1px;
    max-width: none;
    height: 5rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  }

  .tech-final__cta-zone {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1fr) minmax(18rem, 0.95fr);
  }

  .tech-final__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .tech-footer__frame {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
    align-items: stretch;
  }

  .tech-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 959px) {
  .tech-hero__frame {
    padding-top: 4.5rem;
  }

  .tech-hero__visual {
    order: -1;
  }

  .tech-shield {
    padding-top: calc(4rem + var(--tech-scroll-divider-space));
  }

  .tech-shield__divider {
    display: none;
  }

  .tech-brain {
    padding-top: var(--tech-bridge-divider-space);
  }

  .tech-custody {
    padding-top: calc(4rem + var(--tech-divider-space));
  }

  .tech-compare {
    padding-top: calc(4rem + var(--tech-divider-space));
  }

  .tech-final {
    padding-top: calc(4rem + var(--tech-divider-space-access));
  }

  .tech-footer {
    padding-top: 3.4rem;
  }
}

@media (max-width: 767px) {
  .tech-hero__frame {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  /* Orbit scales down on small screens */
  .tech-orbit {
    max-width: 22rem;
  }

  /* Hide outermost metric on small screens to avoid overlap */
  .tech-orbit__metric--three {
    display: none;
  }

  .tech-orbit__node {
    min-width: 5.5rem;
    padding: 0.45rem 0.6rem;
  }

  .tech-orbit__node-meta {
    display: none;
  }

  .tech-orbit__node-title {
    font-size: 0.76rem;
  }

  .tech-orbit__node-tag {
    font-size: 0.56rem;
  }

  .tech-orbit__core-inner {
    padding: 0 6%;
  }

  .tech-orbit__core-label {
    font-size: 0.44rem;
  }

  .tech-orbit__core-title {
    font-size: 0.58rem;
  }

  .tech-shield {
    padding: calc(3.6rem + var(--tech-scroll-divider-space)) 0 4rem;
  }

  .tech-shield__intro {
    gap: 1.1rem;
  }

  .tech-shield__title {
    max-width: 12.2ch;
  }

  .tech-shield__lead {
    max-width: 32rem;
  }

  .tech-shield__threats {
    gap: 0.75rem;
  }

  .tech-threat-card {
    padding: 1rem 0.9rem 0.95rem;
  }

  .tech-threat-card__index {
    font-size: 0.64rem;
  }

  .tech-threat-card__copy {
    margin-top: 0.72rem;
    font-size: 0.95rem;
  }

  .tech-shield__benefit {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-top: 0.85rem;
  }

  .tech-brain {
    padding: var(--tech-bridge-divider-space) 0 4rem;
  }

  .tech-brain__header {
    margin-bottom: 0.25rem;
  }

  .tech-brain__title {
    max-width: 23ch;
    font-size: clamp(1.92rem, 7.4vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }

  .tech-brain__title-line {
    white-space: normal;
  }

  .tech-brain__lead {
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
  }

  .tech-brain__sidebar-title {
    margin: 0.85rem 0.85rem 0;
    font-size: 1.7rem;
  }

  .tech-brain__filters {
    padding: 0.85rem 0.5rem;
  }

  .tech-brain-filter {
    min-height: 2.3rem;
    padding: 0 0.78rem;
    font-size: 0.9rem;
  }

  .tech-brain-filter.is-active::before,
  .tech-brain-filter[aria-pressed="true"]::before {
    left: 0.22rem;
    top: 0.28rem;
    bottom: 0.28rem;
  }

  .tech-brain-feed__row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.6rem 0.75rem;
    padding: 0.75rem 0.8rem;
  }

  .tech-brain-feed__index {
    width: 1.85rem;
    height: 1.85rem;
  }

  .tech-brain-feed__headline {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .tech-brain-feed__tag {
    grid-column: 2;
    justify-self: start;
    min-height: 1.75rem;
    margin-top: 0.16rem;
  }

  .tech-brain__benefit {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-top: 0.85rem;
  }

  .tech-custody {
    padding: calc(3.6rem + var(--tech-divider-space)) 0 4rem;
  }

  .tech-custody__panel {
    border-radius: 1.08rem;
  }

  .tech-ledger__col {
    padding: 0.88rem 0.82rem 0.86rem;
  }

  .tech-ledger__bridge {
    min-height: 0;
    margin: 0.1rem 0;
  }

  .tech-ledger__bridge-core {
    min-width: 100%;
    max-width: 17rem;
    border-radius: 0.78rem;
    padding: 0.5rem 0.82rem;
  }

  .tech-custody__header {
    margin-bottom: 1.3rem;
  }

  .tech-custody__title {
    max-width: 23ch;
    font-size: clamp(1.38rem, 6.2vw, 1.62rem) !important;
    line-height: 1.12 !important;
  }

  .tech-custody__title-line {
    white-space: normal;
  }

  .tech-custody__lead {
    max-width: 34ch;
    margin-top: 0.95rem;
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .tech-compare {
    padding: calc(3.6rem + var(--tech-divider-space)) 0 4rem;
  }

  .tech-compare__col {
    border-radius: 1.5rem;
  }

  .tech-compare__col-head {
    padding: 1.2rem 1.1rem 1rem;
  }

  .tech-compare__row {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .tech-compare__value {
    width: fit-content;
  }

  .tech-final {
    padding: calc(3.8rem + var(--tech-divider-space-access)) 0 4.4rem;
  }

  .tech-final__card {
    padding: 0.9rem;
    border-radius: 1.7rem;
  }

  .tech-final__intro {
    padding: 1.4rem 0.5rem 1.6rem;
  }

  .tech-final__seal {
    min-height: 15rem;
  }

  .tech-final__seal-ring--one {
    width: 11.8rem;
    height: 11.8rem;
  }

  .tech-final__seal-ring--two {
    width: 9.1rem;
    height: 9.1rem;
  }

  .tech-final__seal-core {
    width: 7.2rem;
    height: 7.2rem;
  }

  .tech-final__benefit {
    padding: 0.95rem 1rem 1rem;
    border-radius: 1.1rem;
  }

  .tech-final__benefit-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .tech-final__action {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .tech-final__button {
    width: 100%;
    max-width: 24rem;
    min-height: 3.45rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .tech-footer {
    padding: 3.2rem 0 calc(3rem + env(safe-area-inset-bottom));
  }

  .tech-footer__brand,
  .tech-footer__legal,
  .tech-footer__nav {
    padding: 1rem 0.95rem;
    border-radius: 1.15rem;
  }

  .tech-footer__nav {
    gap: 0.72rem;
  }

  .tech-footer__nav-list {
    gap: 0.5rem;
  }

  .tech-footer__nav-credit {
    width: 100%;
    padding-top: 0.15rem;
    padding-left: 0;
    text-align: left;
    white-space: normal;
  }

  .tech-footer__link {
    min-height: 2.3rem;
    padding: 0 0.92rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Divider glow */
  .tech-divider__badge--glow {
    animation: none;
  }

  /* Orbit & hero animations */
  .tech-hero__grid,
  .tech-hero__orb,
  .tech-hero__particle,
  .tech-hero__scan-beam,
  .tech-orbit__track,
  .tech-orbit__track--one,
  .tech-orbit__track--two,
  .tech-orbit__track--three,
  .tech-orbit__node-wrap,
  .tech-orbit__track--one .tech-orbit__node-wrap,
  .tech-orbit__track--two .tech-orbit__node-wrap,
  .tech-orbit__track--three .tech-orbit__node-wrap,
  .tech-orbit__core-ring--one,
  .tech-orbit__core-ring--two,
  .tech-orbit__core-ring--three,
  .tech-orbit__metric,
  /* Legacy core rings */
  .tech-core__ring--one,
  .tech-core__ring--two,
  .tech-final__seal-ring--one,
  .tech-final__seal-ring--two,
  .tech-scroll-divider__icon,
  .tech-bridge-divider__node,
  .tech-bridge-divider__rail--left::after,
  .tech-bridge-divider__rail--right::after {
    animation: none;
  }

  .tech-cta,
  .tech-cta-ghost,
  .tech-skip-link,
  .tech-brain-filter,
  .tech-brain-feed__row,
  .tech-final__button,
  .tech-final__benefit,
  .tech-final__benefit-icon,
  .tech-footer__card,
  .tech-footer__nav,
  .tech-footer__link {
    transition: none;
  }

  .tech-footer__card,
  .tech-footer__nav {
    animation: none;
  }

  .tech-final__benefit:hover,
  .tech-final__benefit:hover .tech-final__benefit-icon {
    transform: none;
  }
}
