﻿:root {
  color-scheme: light;
  --color-abyss: #0b0f14;
  --color-abyss-2: #0f1720;
  --color-graphite: #111827;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-2: rgba(255, 255, 255, 0.9);
  --color-teal: #00c5da;
  --color-teal-2: #0096a9;
  --color-teal-3: #007a89;
  --color-blue: #007b89;
  --color-snow: #ffffff;
  --color-muted: rgba(11, 15, 20, 0.68);
  --color-border: rgba(11, 15, 20, 0.12);
  --color-border-strong: rgba(11, 15, 20, 0.18);
  --color-focus: rgba(0, 197, 218, 0.45);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --radius-md: 18px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-edge: 0 2px 10px rgba(11, 15, 20, 0.06);
  --shadow-ambient: 0 24px 70px rgba(11, 15, 20, 0.12);
  --shadow-card: var(--shadow-edge), var(--shadow-ambient);
  --shadow-glow: 0 34px 90px rgba(0, 197, 218, 0.2), 0 18px 60px rgba(11, 15, 20, 0.1);
  --shadow-soft: 0 60px 140px rgba(0, 197, 218, 0.14), 0 26px 70px rgba(11, 15, 20, 0.1);
  --shadow-soft-hover: 0 70px 160px rgba(0, 197, 218, 0.18), 0 30px 80px rgba(11, 15, 20, 0.12);
  --glass-border: rgba(11, 15, 20, 0.12);
  --glass-border-strong: rgba(11, 15, 20, 0.18);
  --glass-border-teal: rgba(0, 197, 218, 0.25);
  --gradient-teal: linear-gradient(125deg, var(--color-teal), var(--color-teal-2));
  --gradient-teal-soft: linear-gradient(135deg, rgba(0, 197, 218, 0.22), rgba(0, 150, 169, 0.12));
  --max-width: 1200px;
  --transition-snappy: cubic-bezier(0.4, 0.1, 0.2, 1);
  --transition-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--color-snow);
  color: var(--color-abyss);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1000px circle at 18% 12%, rgba(0, 197, 218, 0.22), transparent 60%),
    radial-gradient(900px circle at 82% 14%, rgba(0, 197, 218, 0.14), transparent 62%),
    radial-gradient(800px circle at 56% 85%, rgba(0, 150, 169, 0.12), transparent 64%);
  opacity: 0.85;
  transform: translate3d(0, 0, 0);
  contain: paint;
  animation: quantum-drift 36s ease-in-out infinite alternate;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
  contain: paint;
  pointer-events: none;
}

@keyframes quantum-drift {
  0% {
    transform: translate3d(-0.7%, -0.35%, 0) rotate(-0.15deg);
  }
  100% {
    transform: translate3d(0.7%, 0.55%, 0) rotate(0.18deg);
  }
}

@keyframes elastic-bounce {
  0% { transform: scale(1) translateY(0); }
  30% { transform: scale(1.05) translateY(-3px); }
  50% { transform: scale(0.98) translateY(-2px); }
  70% { transform: scale(1.02) translateY(-2px); }
  100% { transform: scale(1) translateY(-2px); }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    filter: blur(8px);
  }
  50% {
    opacity: 0.8;
    filter: blur(12px);
  }
}

@keyframes burst-expand {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

@keyframes ripple-expand {
  to {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
  }
}

@keyframes success-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

::selection {
  background: rgba(0, 197, 218, 0.28);
  color: var(--color-abyss);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 200ms var(--transition-snappy);
}

a:hover,
a:focus-visible {
  color: var(--color-teal-2);
}

a:not(.btn) {
  position: relative;
  display: inline-block;
}

a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--transition-elastic);
}

a:not(.btn):hover::after,
a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

code,
pre {
  font-family: "Space Grotesk", "Fira Code", monospace;
}

code {
  padding: 0.18em 0.42em;
  border-radius: 0.65em;
  background: rgba(11, 15, 20, 0.05);
  border: 1px solid rgba(11, 15, 20, 0.1);
}

pre code {
  padding: 0;
  background: none;
  border: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 0.75rem 1.15rem;
  background: linear-gradient(120deg, var(--color-teal), var(--color-teal-2));
  color: var(--color-snow);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 999;
  transform: translateY(-160%);
  transition: transform 200ms var(--transition-snappy);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(11, 15, 20, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(11, 15, 20, 0.12);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms var(--transition-snappy), transform 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy), background 220ms var(--transition-snappy),
    box-shadow 220ms var(--transition-snappy);
}

.back-to-top::before {
  content: "↑";
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
}

.back-to-top::before {
  content: "↑";
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 197, 218, 0.38);
  box-shadow: 0 22px 65px rgba(0, 197, 218, 0.12), 0 22px 70px rgba(11, 15, 20, 0.14);
}

.back-to-top.is-visible:hover {
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), 0 22px 70px rgba(11, 15, 20, 0.14);
}

canvas#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: transparent;
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  transition: background 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    backdrop-filter 220ms var(--transition-snappy);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-edge), 0 22px 70px rgba(11, 15, 20, 0.1);
}

.site-header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  transition: padding 220ms var(--transition-snappy);
}

.site-header.is-scrolled .inner {
  padding: 0.95rem clamp(1rem, 4vw, 2rem);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-lockup strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.tagline {
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(11, 15, 20, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: rgba(11, 15, 20, 0.78);
  border: 1px solid transparent;
  transition: border-color 200ms var(--transition-snappy), color 200ms var(--transition-snappy),
    background 200ms var(--transition-snappy), transform 200ms var(--transition-snappy);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-teal);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--transition-snappy), opacity 220ms var(--transition-snappy);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(0, 197, 218, 0.18);
  transform: translateY(-1px);
  text-decoration: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  border-color: rgba(0, 197, 218, 0.3);
  background: var(--gradient-teal);
  color: var(--color-abyss);
  box-shadow: 0 16px 36px rgba(0, 197, 218, 0.2);
}

.site-nav a[aria-current="page"]::after {
  opacity: 0;
  transform: scaleX(0);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2rem) 4rem;
  position: relative;
  z-index: 1;
}

main::before {
  content: "";
  position: absolute;
  inset: -220px 0 auto;
  height: 520px;
  z-index: -1;
  background: radial-gradient(closest-side at 50% 10%, rgba(0, 197, 218, 0.18), transparent 72%),
    radial-gradient(closest-side at 12% 45%, rgba(0, 197, 218, 0.1), transparent 68%);
  opacity: 0.95;
  pointer-events: none;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0, 197, 218, 0.08) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px circle at 12% 20%, rgba(0, 197, 218, 0.18), transparent 62%),
    radial-gradient(900px circle at 88% 10%, rgba(0, 197, 218, 0.14), transparent 64%),
    radial-gradient(900px circle at 80% 92%, rgba(0, 150, 169, 0.1), transparent 68%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero > div:not(.quantum-orbit):not(.downloads-orbit):not(.docs-orbit):not(.verify-orbit):not(.community-orbit):not(.legal-orbit):not(.hero-scan) {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.55rem);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.hero-home h1 {
  max-width: 22ch;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08rem;
  width: min(14rem, 62%);
  height: 0.18rem;
  border-radius: 999px;
  background: var(--gradient-teal);
  opacity: 0.78;
}

.hero p {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 65ch;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(11, 15, 20, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--color-teal-3);
  margin: 0;
}

.hero-eyebrow {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.7rem 1.05rem;
  max-width: min(620px, 100%);
  line-height: 1.35;
  border-radius: 18px;
  letter-spacing: 0.18em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 252, 255, 0.78));
  border: 1px solid rgba(0, 197, 218, 0.18);
  box-shadow: var(--shadow-edge), 0 18px 50px rgba(0, 197, 218, 0.08);
  color: rgba(11, 15, 20, 0.74);
}

.hero-eyebrow span:last-child {
  opacity: 0.76;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    background 220ms var(--transition-snappy), border-color 220ms var(--transition-snappy);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
  transition: transform 520ms var(--transition-smooth), opacity 220ms var(--transition-snappy);
}

.btn.primary {
  background: var(--gradient-teal);
  color: var(--color-abyss);
  box-shadow: 0 18px 50px rgba(0, 197, 218, 0.22), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms var(--transition-snappy), transform 240ms var(--transition-snappy);
}

.btn.secondary {
  border-color: rgba(0, 197, 218, 0.26);
  color: var(--color-abyss);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-edge);
}

.btn:hover,
.btn:focus-visible {
  animation: elastic-bounce 400ms var(--transition-elastic) forwards;
  box-shadow: 0 22px 60px rgba(0, 197, 218, 0.14), 0 10px 22px rgba(11, 15, 20, 0.1);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 0.65;
  transform: translateX(120%) skewX(-18deg);
}

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

.btn:active {
  transform: translateY(-1px) scale(0.985);
}

.particle-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}

.burst-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gradient-teal);
  animation: burst-expand 600ms var(--transition-elastic) forwards;
  transform-origin: center;
}

.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 197, 218, 0.4), transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-expand 600ms ease-out;
  pointer-events: none;
}

.copy-success-icon {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--color-teal);
  font-weight: bold;
  animation: success-pop 400ms var(--transition-elastic);
}

.hero {
  --orbit-speed-slow: 28s;
  --orbit-speed-medium: 22s;
  --orbit-speed-fast: 14s;
  --orbit-speed-fast2: 18s;
}

.hero.is-energized {
  --orbit-speed-slow: 22s;
  --orbit-speed-medium: 17s;
  --orbit-speed-fast: 11s;
  --orbit-speed-fast2: 14.5s;
}

.quantum-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(0.6rem, 3vw, 2.2rem);
  pointer-events: none;
  z-index: 1;
}

.quantum-orbit svg {
  width: clamp(240px, 36vw, 460px);
  opacity: 0.95;
  filter: drop-shadow(0 0 26px rgba(0, 197, 218, 0.22));
  transform: translate3d(var(--orbit-offset-x, 0px), var(--orbit-offset-y, 0px), 0);
  transition: transform 160ms var(--transition-snappy);
  will-change: transform;
}

.orbit-svg {
  overflow: visible;
}

.orbit-ring--dashed {
  stroke-dashoffset: 0;
  animation: orbit-dash var(--orbit-speed-slow) linear infinite;
}

.orbit-ring--solid {
  animation: orbit-spin var(--orbit-speed-medium) linear infinite reverse;
}

.dot-orbit {
  transform-origin: 200px 200px;
  will-change: transform;
}

.dot-orbit--a {
  animation: orbit-spin var(--orbit-speed-fast) linear infinite;
}

.dot-orbit--b {
  animation: orbit-spin var(--orbit-speed-medium) linear infinite reverse;
}

.dot-orbit--c {
  animation: orbit-spin var(--orbit-speed-fast2) linear infinite;
}

.dot-orbit circle {
  filter: drop-shadow(0 0 16px rgba(0, 197, 218, 0.45));
}

.orbit-core {
  transform-origin: 200px 200px;
  animation: orbit-pulse 6.2s ease-in-out infinite;
}

@supports (transform-box: view-box) {
  .orbit-ring--solid,
  .dot-orbit,
  .orbit-core {
    transform-box: view-box;
    transform-origin: 50% 50%;
  }
}

.orbit-scan {
  stroke-dasharray: 90 1400;
  stroke-dashoffset: 0;
  opacity: 0;
  animation: orbit-sweep 9.5s ease-in-out infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-dash {
  to {
    stroke-dashoffset: -1005;
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.78;
  }
}

@keyframes orbit-sweep {
  0%,
  64% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  72% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -1180;
  }
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.glass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 320ms var(--transition-smooth), border-color 320ms var(--transition-smooth),
    box-shadow 320ms var(--transition-smooth);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px circle at 18% 12%, rgba(0, 197, 218, 0.14), transparent 55%),
    radial-gradient(800px circle at 92% 16%, rgba(0, 197, 218, 0.1), transparent 62%),
    linear-gradient(135deg, rgba(0, 197, 218, 0.08), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 197, 218, 0.2);
  margin-bottom: 1.05rem;
}

.glass-card .card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-card h3 {
  margin-top: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 197, 218, 0.26);
  box-shadow: var(--shadow-glow), 0 0 40px rgba(0, 197, 218, 0.15);
}

.glass-card .card-icon {
  position: relative;
}

.glass-card:hover .card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 197, 218, 0.5), rgba(0, 150, 169, 0.3));
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  animation: glow-pulse 2s ease-in-out infinite;
  opacity: 1;
}

.pillars-section {
  position: relative;
  isolation: isolate;
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: -80px -60px -60px;
  background-image: linear-gradient(rgba(0, 197, 218, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 197, 218, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 72%);
  pointer-events: none;
}

.pillars-section > * {
  position: relative;
  z-index: 1;
}

section[aria-labelledby="roadmap"] .glass-card {
  padding-left: 3rem;
}

section[aria-labelledby="roadmap"] .glass-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

section[aria-labelledby="roadmap"] .glass-card ul::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 197, 218, 0.75), rgba(0, 150, 169, 0.35));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms var(--transition-smooth);
}

section[aria-labelledby="roadmap"] .glass-card.is-visible ul::before {
  transform: scaleY(1);
}

section[aria-labelledby="roadmap"] .glass-card li {
  position: relative;
  padding-left: 0.2rem;
}

section[aria-labelledby="roadmap"] .glass-card li::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-teal);
  box-shadow: 0 12px 28px rgba(0, 197, 218, 0.22);
}

.dev-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.dev-terminal {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.86), rgba(11, 15, 20, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(11, 15, 20, 0.18), 0 34px 90px rgba(0, 197, 218, 0.14);
  overflow: hidden;
}

.dev-terminal::before {
  content: "";
  position: absolute;
  inset: -80px -60px;
  background: radial-gradient(closest-side at 30% 20%, rgba(0, 197, 218, 0.28), transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}

.dev-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 197, 218, 0.14), transparent);
  transform: translateY(-120%);
  opacity: 0.5;
  pointer-events: none;
  animation: terminal-scan 10s ease-in-out infinite;
}

@keyframes terminal-scan {
  0%,
  70% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(120%);
  }
}

@keyframes hero-scan {
  0%,
  72% {
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
  }
  88% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-18deg);
  }
}

.downloads-hero .hero-scan,
.docs-hero .hero-scan,
.verify-hero .hero-scan,
.community-hero .hero-scan,
.legal-hero .hero-scan {
  position: absolute;
  inset: -40% -18%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  animation: hero-scan 10s ease-in-out infinite;
}

.downloads-hero > div:first-child,
.docs-hero > div:first-child,
.verify-hero > div:first-child,
.community-hero > div:first-child,
.legal-hero > div:first-child {
  max-width: 66ch;
  padding-right: clamp(0rem, 14vw, 18rem);
}

.downloads-orbit,
.docs-orbit,
.verify-orbit,
.community-orbit,
.legal-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(0.7rem, 3vw, 2.4rem);
  pointer-events: none;
  z-index: 1;
}

.hero > .downloads-orbit,
.hero > .docs-orbit,
.hero > .verify-orbit,
.hero > .community-orbit,
.hero > .legal-orbit,
.hero > .hero-scan {
  position: absolute;
}

.downloads-orbit svg,
.docs-orbit svg,
.verify-orbit svg,
.community-orbit svg,
.legal-orbit svg {
  width: clamp(220px, 34vw, 440px);
  opacity: 0.9;
  filter: drop-shadow(0 0 28px rgba(0, 197, 218, 0.18));
}

.page-community .community-hero h1::after {
  display: none;
}

.page-community .hero-title-accent {
  text-decoration: underline;
  text-decoration-thickness: 0.18rem;
  text-decoration-color: rgba(0, 197, 218, 0.72);
  text-underline-offset: 0.24em;
}

.page-community .coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.22);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-edge);
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.78);
  white-space: nowrap;
  animation: coming-soon-breathe 3.4s ease-in-out infinite;
}

@keyframes coming-soon-breathe {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

.page-community .community-orbit svg {
  opacity: 0.78;
}

.page-community .security-notice {
  margin: 1.4rem 0 0;
  border-left-color: rgba(255, 193, 71, 0.72);
  border-color: rgba(255, 193, 71, 0.22);
  color: rgba(11, 15, 20, 0.82);
  box-shadow: var(--shadow-edge), 0 30px 80px rgba(255, 193, 71, 0.08);
}

.page-community .security-notice::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2l8 4v6c0 6-4 10-8 11C8 22 4 18 4 12V6l8-4zm0 6a1 1 0 0 0-1 1v2.6c0 .6.4 1 1 1a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1zm0 6.9a1.15 1.15 0 1 0 0 2.3 1.15 1.15 0 0 0 0-2.3z'/%3E%3C/svg%3E");
}

.page-community .community-contact-grid {
  margin-top: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-community .contact-card p {
  margin: 0;
}

.page-community .pill-code {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-edge);
}

.page-community .safety-card {
  padding: 1.6rem 1.55rem;
}

.page-community .safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.95rem;
}

.page-community .safety-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(11, 15, 20, 0.08);
  color: rgba(11, 15, 20, 0.86);
}

.page-community .safety-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.page-community .safety-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0, 197, 218, 0.18);
  flex: 0 0 auto;
}

.page-community .safety-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-community .safety-icon--warning {
  background: linear-gradient(125deg, rgba(255, 205, 85, 0.95), rgba(255, 193, 71, 0.75));
  box-shadow: 0 16px 40px rgba(255, 193, 71, 0.22);
}

.page-community .safety-icon--warning svg {
  stroke: rgba(11, 15, 20, 0.9);
}

.page-legal .legal-hero > div:first-child {
  max-width: 72ch;
  padding-right: clamp(0rem, 16vw, 20rem);
}

.page-legal .legal-orbit svg {
  opacity: 0.72;
}

.page-legal .legal-layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.page-legal .legal-toc {
  position: sticky;
  top: 7.25rem;
  align-self: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 15, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-edge), 0 26px 70px rgba(11, 15, 20, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  gap: 0.35rem;
}

.page-legal .legal-toc a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  border: 1px solid transparent;
  color: rgba(11, 15, 20, 0.78);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy), background-color 220ms var(--transition-snappy),
    color 220ms var(--transition-snappy);
}

.page-legal .legal-toc a::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.26);
  transform: translateY(-50%);
  opacity: 0.7;
}

.page-legal .legal-toc a:hover,
.page-legal .legal-toc a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 197, 218, 0.22);
  background: rgba(0, 197, 218, 0.08);
  box-shadow: 0 18px 50px rgba(0, 197, 218, 0.12), 0 10px 22px rgba(11, 15, 20, 0.06);
  color: rgba(11, 15, 20, 0.9);
  text-decoration: none;
}

.page-legal .legal-toc a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), 0 18px 50px rgba(0, 197, 218, 0.12), 0 10px 22px rgba(11, 15, 20, 0.06);
}

.page-legal .legal-toc a.is-active,
.page-legal .legal-toc a[aria-current="true"] {
  border-color: rgba(0, 197, 218, 0.32);
  background: rgba(0, 197, 218, 0.12);
  box-shadow: var(--shadow-edge), 0 18px 60px rgba(0, 197, 218, 0.14);
  color: rgba(11, 15, 20, 0.92);
}

.page-legal .legal-toc a.is-active::before,
.page-legal .legal-toc a[aria-current="true"]::before {
  width: 10px;
  height: 10px;
  background: var(--gradient-teal);
  opacity: 1;
}

.page-legal .legal-modules {
  display: grid;
  gap: 1.6rem;
}

.page-legal .legal {
  transition: transform 320ms var(--transition-smooth), border-color 320ms var(--transition-smooth),
    box-shadow 320ms var(--transition-smooth);
}

.page-legal .legal:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 197, 218, 0.22);
  box-shadow: var(--shadow-glow);
}

.page-legal .legal-module--warning {
  border-color: rgba(255, 193, 71, 0.3);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 193, 71, 0.06) inset;
}

.page-legal .legal-module--warning:hover {
  border-color: rgba(255, 193, 71, 0.4);
  box-shadow: 0 34px 90px rgba(255, 193, 71, 0.18), 0 18px 60px rgba(11, 15, 20, 0.1);
}

.page-legal .legal-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-legal .legal-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.page-legal .legal-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 197, 218, 0.18);
  flex: 0 0 auto;
}

.page-legal .legal-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-legal .legal-module--warning .legal-icon {
  background: linear-gradient(125deg, rgba(255, 205, 85, 0.95), rgba(255, 193, 71, 0.78));
  box-shadow: 0 18px 44px rgba(255, 193, 71, 0.22);
}

.page-legal .legal-module--warning .legal-icon svg {
  stroke: rgba(11, 15, 20, 0.92);
}

.page-legal .legal-rule {
  height: 1px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 197, 218, 0.28), transparent);
  margin: 1rem 0 0.95rem;
}

.page-legal .legal p,
.page-legal .legal li {
  line-height: 1.85;
}

.page-legal .legal p {
  max-width: 78ch;
}

.page-legal .legal-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-edge);
  transform: translateY(-1px);
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy);
}

.page-legal .legal-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 197, 218, 0.3);
  box-shadow: 0 18px 50px rgba(0, 197, 218, 0.12), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.page-legal .legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.95rem;
  color: rgba(11, 15, 20, 0.86);
}

.page-legal .legal-list li {
  position: relative;
  padding-left: 1.25rem;
  max-width: 82ch;
}

.page-legal .legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 197, 218, 0.35);
  box-shadow: 0 10px 26px rgba(0, 197, 218, 0.14);
}

.page-legal .legal-list--dividers li {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(11, 15, 20, 0.08);
}

.page-legal .legal-list--dividers li:first-child {
  border-top: none;
  padding-top: 0;
}

.page-legal .legal-list--dividers li::before {
  top: 1.6rem;
}

.page-legal .legal-list--dividers li:first-child::before {
  top: 0.65rem;
}

.page-verify .verify-hero > div:first-child {
  padding-right: clamp(0rem, 12vw, 16rem);
}

.page-verify .verify-orbit svg {
  opacity: 0.78;
}

.page-verify .verify-contents {
  padding: 1.4rem 1.5rem;
}

.page-verify .verify-contents-list {
  --verify-icon-size: 44px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.05rem;
  position: relative;
}

.page-verify .verify-contents-list::before {
  content: "";
  position: absolute;
  left: calc(var(--verify-icon-size) / 2);
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 197, 218, 0.55), rgba(0, 150, 169, 0.18));
  opacity: 0.8;
}

.page-verify .verify-contents-list li {
  display: grid;
  grid-template-columns: var(--verify-icon-size) minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  color: rgba(11, 15, 20, 0.88);
}

.page-verify .verify-contents-icon {
  width: var(--verify-icon-size);
  height: var(--verify-icon-size);
  border-radius: 18px;
  border: 1px solid rgba(0, 197, 218, 0.16);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-edge), 0 14px 30px rgba(0, 197, 218, 0.12);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.page-verify .verify-contents-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(11, 15, 20, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-pill,
.copy-block {
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-edge);
  cursor: pointer;
  font: inherit;
  color: rgba(11, 15, 20, 0.88);
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy);
}

.copy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.copy-pill code.hash {
  font-size: 0.9rem;
  word-break: normal;
  white-space: nowrap;
}

.copy-block {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 252, 255, 0.78));
  width: min(560px, 100%);
  vertical-align: middle;
  text-align: left;
}

.copy-block code.hash {
  display: block;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
}

.copy-pill .copy-icon,
.copy-block .copy-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(11, 15, 20, 0.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.copy-pill:hover,
.copy-pill:focus-visible,
.copy-block:hover,
.copy-block:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 197, 218, 0.32);
  box-shadow: 0 18px 50px rgba(0, 197, 218, 0.14), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.copy-pill:focus-visible,
.copy-block:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), 0 18px 50px rgba(0, 197, 218, 0.14), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.copy-pill.is-copied,
.copy-block.is-copied {
  border-color: rgba(0, 197, 218, 0.55);
  box-shadow: 0 22px 70px rgba(0, 197, 218, 0.18), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.page-verify .verify-keycard {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.55rem;
}

.page-verify .verify-keycard-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px rgba(0, 197, 218, 0.2);
}

.page-verify .verify-keycard-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-verify .verify-instructions {
  margin-top: 0.5rem;
}

.page-verify .verify-tablist {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-edge);
  width: fit-content;
}

.page-verify .verify-tab {
  border: 0;
  background: transparent;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.72);
  transition: box-shadow 220ms var(--transition-snappy), transform 220ms var(--transition-snappy),
    background-color 220ms var(--transition-snappy), color 220ms var(--transition-snappy);
}

.page-verify .verify-tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: var(--shadow-edge);
}

.page-verify .verify-tab-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(11, 15, 20, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-verify .verify-tab.is-active,
.page-verify .verify-tab[aria-selected="true"] {
  background: var(--gradient-teal);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(0, 197, 218, 0.18);
}

.page-verify .verify-tab.is-active .verify-tab-icon,
.page-verify .verify-tab[aria-selected="true"] .verify-tab-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.page-verify .verify-tab.is-active .verify-tab-icon svg,
.page-verify .verify-tab[aria-selected="true"] .verify-tab-icon svg {
  stroke: rgba(255, 255, 255, 0.96);
}

.page-verify .verify-tabpanels {
  padding: 1.45rem 1.55rem;
  margin-top: 1.1rem;
}

.page-verify .verify-tabpanels:hover {
  transform: none;
  border-color: var(--glass-border);
  box-shadow: var(--shadow-card);
}

.page-verify .verify-tabpanel .section-heading {
  margin-top: 0;
}

.page-verify .verify-tabpanel .section-heading small {
  display: none;
}

.page-verify .verify-os-steps {
  margin-top: 1.25rem;
}

.page-verify .verify-os-steps ol li {
  color: rgba(11, 15, 20, 0.86);
}

.page-verify .verify-os-steps .copy-block {
  display: flex;
  margin-top: 0.7rem;
}

.page-verify .verify-os-steps .copy-pill {
  margin-inline: 0.25rem;
}

.page-verify .alert-tile h3 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.page-verify .alert-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-edge);
}

.page-verify .alert-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-verify .alert-tile--warning {
  border-color: rgba(255, 193, 71, 0.28);
}

.page-verify .alert-tile--warning .alert-icon {
  border-color: rgba(255, 193, 71, 0.32);
  background: linear-gradient(180deg, rgba(255, 205, 85, 0.22), rgba(255, 255, 255, 0.7));
}

.page-verify .alert-tile--warning .alert-icon svg {
  stroke: rgba(166, 98, 0, 0.85);
}

.page-verify .alert-tile--error {
  border-color: rgba(255, 99, 103, 0.26);
}

.page-verify .alert-tile--error .alert-icon {
  border-color: rgba(255, 99, 103, 0.28);
  background: linear-gradient(180deg, rgba(255, 99, 103, 0.2), rgba(255, 255, 255, 0.7));
}

.page-verify .alert-tile--error .alert-icon svg {
  stroke: rgba(168, 30, 43, 0.82);
}
.page-docs .quickstart-card {
  padding: 1.45rem;
}

.page-docs .doc-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.page-docs .doc-chip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-edge);
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy);
}

.page-docs .doc-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 197, 218, 0.24);
  box-shadow: 0 22px 60px rgba(0, 197, 218, 0.12), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.page-docs .doc-chip-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 18px 40px rgba(0, 197, 218, 0.18);
}

.page-docs .doc-chip-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-docs .operator-card {
  padding: 1.6rem;
}

.page-docs .operator-card .dev-surface {
  gap: 2rem;
  align-items: start;
}

.page-docs .operator-card .notice {
  margin-top: 1.25rem;
}

.rpc-note::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 2h9l3 3v17a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v4h4l-4-4zM8 12h8v2H8v-2zm0 4h8v2H8v-2z'/%3E%3C/svg%3E");
}

.module-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.module-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 197, 218, 0.18);
  flex: 0 0 auto;
}

.module-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-rule {
  flex: 1 1 auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 197, 218, 0.35), transparent);
}

.pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-edge);
  text-decoration: none;
  color: rgba(11, 15, 20, 0.88);
}

.pill-link:hover,
.pill-link:focus-visible {
  color: var(--color-blue);
}

.pill-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), var(--shadow-edge);
}

.page-docs .support-card {
  border-color: rgba(0, 197, 218, 0.22);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 197, 218, 0.08) inset;
}

.dev-terminal .terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.dev-terminal .terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.dev-terminal .terminal-dot:nth-child(1) {
  background: rgba(255, 99, 103, 0.85);
}

.dev-terminal .terminal-dot:nth-child(2) {
  background: rgba(255, 205, 85, 0.85);
}

.dev-terminal .terminal-dot:nth-child(3) {
  background: rgba(72, 216, 120, 0.85);
}

.dev-terminal .terminal-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.dev-terminal .terminal-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  opacity: 0.95;
}

.dev-terminal .terminal-line:nth-child(1) {
  width: 78%;
}

.dev-terminal .terminal-line:nth-child(2) {
  width: 92%;
}

.dev-terminal .terminal-line:nth-child(3) {
  width: 64%;
}

.dev-terminal .terminal-line:nth-child(4) {
  width: 86%;
}

.dev-terminal .terminal-line:nth-child(5) {
  width: 71%;
}

.dev-terminal .terminal-line:nth-child(6) {
  width: 94%;
}

.dev-terminal .terminal-line:nth-child(7) {
  width: 57%;
}

.dev-terminal .terminal-line:nth-child(8) {
  width: 88%;
}

.dev-terminal .terminal-line:nth-child(9) {
  width: 72%;
}

.dev-terminal .terminal-line:nth-child(10) {
  width: 95%;
}

.section-heading {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.section-heading small {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(11, 15, 20, 0.08);
  color: var(--color-teal-3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.65rem;
}

.prose {
  display: grid;
  gap: 1.4rem;
}

.prose p {
  max-width: 75ch;
  color: rgba(11, 15, 20, 0.9);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.data-table th,
.data-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  text-align: left;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.notice {
  position: relative;
  border-left: 3px solid rgba(0, 197, 218, 0.6);
  padding: 1.15rem 1.25rem 1.15rem 3.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 197, 218, 0.22);
  box-shadow: var(--shadow-edge), 0 30px 80px rgba(0, 197, 218, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.notice.manifest-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.notice::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.6rem;
  background: var(--gradient-teal);
  box-shadow: 0 16px 36px rgba(0, 197, 218, 0.2);
}

.notice::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zm4.293-12.707a1 1 0 0 1 0 1.414l-5.5 5.5a1 1 0 0 1-1.414 0l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.793 1.793 4.793-4.793a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 74%;
  pointer-events: none;
}

pre {
  background: rgba(11, 15, 20, 0.04);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 15, 20, 0.12);
  overflow-x: auto;
}

.hash {
  word-break: break-all;
  font-size: 0.86rem;
  display: inline;
  padding: 0;
  background: transparent;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -260px -30%;
  background: radial-gradient(closest-side at 50% 0%, rgba(0, 197, 218, 0.16), transparent 70%);
  pointer-events: none;
  opacity: 0.38;
}

.site-footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.35rem clamp(1rem, 4vw, 2rem);
  display: grid;
  gap: 1.5rem;
  color: var(--color-muted);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 1.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-abyss);
  text-decoration: none;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  text-decoration: none;
}

.footer-logo img {
  filter: drop-shadow(0 0 18px rgba(0, 197, 218, 0.22));
}

.footer-logo strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer-tagline {
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.footer-summary {
  margin: 0.6rem 0 0;
  color: var(--color-muted);
  max-width: 52ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.4rem;
}

.footer-col h2 {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-family: "Space Grotesk", "Inter", sans-serif;
}

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

.footer-col a {
  color: rgba(11, 15, 20, 0.82);
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--color-blue);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(11, 15, 20, 0.08);
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.footer-links a {
  color: var(--color-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-abyss);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 320ms var(--transition-smooth), border-color 320ms var(--transition-smooth),
    box-shadow 320ms var(--transition-smooth);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px circle at 20% 10%, rgba(0, 197, 218, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(0, 197, 218, 0.08), transparent 58%);
  opacity: 0.9;
  pointer-events: none;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

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

.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 197, 218, 0.2);
  box-shadow: var(--shadow-glow);
}

.tile--planned {
  opacity: 0.84;
  filter: saturate(0.8);
}

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

.tile-icon,
.tile-status {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-edge);
}

.tile-icon {
  background: var(--gradient-teal);
  border-color: rgba(0, 197, 218, 0.18);
  box-shadow: 0 18px 40px rgba(0, 197, 218, 0.16);
}

.tile-head svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(11, 15, 20, 0.72);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-icon svg {
  stroke: rgba(255, 255, 255, 0.95);
}

.tile--windows .tile-icon svg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: none;
}

.tile--macos .tile-icon svg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: none;
}

.tile--planned .tile-status {
  opacity: 0.85;
}

.tile-meta {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(11, 15, 20, 0.06);
}

.meta-row:first-child {
  border-top: none;
  padding-top: 0;
}

.meta-key {
  color: rgba(11, 15, 20, 0.82);
}

.meta-value {
  color: rgba(11, 15, 20, 0.74);
  white-space: nowrap;
}

.meta-row--hash {
  flex-direction: column;
  align-items: flex-start;
}

.meta-row--hash .meta-key {
  margin-bottom: 0.4rem;
}

.hash-chip {
  width: min(520px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-edge);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms var(--transition-snappy), box-shadow 220ms var(--transition-snappy),
    border-color 220ms var(--transition-snappy);
}

.hash-chip:hover,
.hash-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 197, 218, 0.32);
  box-shadow: 0 18px 50px rgba(0, 197, 218, 0.14), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.hash-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), 0 18px 50px rgba(0, 197, 218, 0.14), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.hash-chip .copy-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(11, 15, 20, 0.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.hash-chip.is-copied {
  border-color: rgba(0, 197, 218, 0.55);
  box-shadow: 0 22px 70px rgba(0, 197, 218, 0.18), 0 10px 22px rgba(11, 15, 20, 0.08);
}

.meta-callout {
  margin-top: 0.15rem;
  padding: 0.9rem 0.95rem 0.9rem 2.7rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: linear-gradient(180deg, rgba(0, 197, 218, 0.1), rgba(255, 255, 255, 0.75));
  color: rgba(11, 15, 20, 0.74);
  position: relative;
}

.meta-callout::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.95rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.55rem;
  background: var(--gradient-teal);
  box-shadow: 0 14px 30px rgba(0, 197, 218, 0.18);
}

.tile--planned code {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.16);
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.84);
}

.tile strong {
  color: var(--color-blue);
}

.tile-cta {
  margin-top: auto;
}

.planned-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(11, 15, 20, 0.7);
  white-space: nowrap;
}

.manifest-bar a {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-edge);
  text-decoration: none;
  color: rgba(11, 15, 20, 0.88);
  position: relative;
  overflow: hidden;
}

.manifest-bar a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
  transition: transform 520ms var(--transition-smooth), opacity 220ms var(--transition-snappy);
}

.manifest-bar a:hover::before,
.manifest-bar a:focus-visible::before {
  opacity: 0.7;
  transform: translateX(120%) skewX(-18deg);
}

.manifest-bar a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus), var(--shadow-edge);
}

.verify-steps ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: verify-step;
  position: relative;
}

.verify-steps ol::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 197, 218, 0.7), rgba(0, 150, 169, 0.25));
  opacity: 0.9;
}

.verify-steps li {
  position: relative;
  padding-left: 2.75rem;
  color: rgba(11, 15, 20, 0.86);
}

.verify-steps li::before {
  counter-increment: verify-step;
  content: counter(verify-step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(11, 15, 20, 0.78);
  border: 1px solid rgba(0, 197, 218, 0.24);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-edge);
}

.verify-steps code:not(.hash) {
  border-radius: 12px;
  border: 1px solid rgba(0, 197, 218, 0.18);
  padding: 0.2rem 0.55rem;
  background: rgba(0, 197, 218, 0.08);
}

.operator-note {
  margin: 1.2rem 0 0;
  padding: 0.95rem 1.05rem 0.95rem 3.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(11, 15, 20, 0.78);
  position: relative;
  overflow: hidden;
}

.operator-note::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.95rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.6rem;
  background: var(--gradient-teal);
  box-shadow: 0 16px 36px rgba(0, 197, 218, 0.18);
}

.operator-note a {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 197, 218, 0.18);
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  color: rgba(11, 15, 20, 0.88);
}

.operator-note a:hover,
.operator-note a:focus-visible {
  color: var(--color-blue);
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.list-inline li {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
}

.legal {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.legal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px circle at 16% 14%, rgba(0, 197, 218, 0.12), transparent 62%);
  opacity: 0.75;
  pointer-events: none;
}

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

.legal h2 {
  margin-top: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

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

@media (max-width: 980px) {
  .page-downloads .downloads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-community .community-contact-grid {
    grid-template-columns: 1fr;
  }

  .page-legal .legal-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .page-legal .legal-toc {
    position: sticky;
    top: 6.75rem;
    z-index: 9;
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-legal .legal-toc::-webkit-scrollbar {
    display: none;
  }

  .page-legal .legal-toc a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .page-legal .legal-toc a::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-downloads .downloads-grid {
    grid-template-columns: 1fr;
  }

  .page-verify .verify-tablist {
    width: 100%;
    justify-content: space-between;
  }

  .page-verify .verify-tab {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0.55rem 0.75rem;
  }

  .page-verify .verify-tab-icon {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    width: 100%;
    justify-content: center;
  }

  .quantum-orbit {
    position: relative;
    inset: auto;
    justify-content: center;
    padding-right: 0;
    margin-top: 1.75rem;
  }

  .quantum-orbit svg {
    width: min(340px, 78vw);
  }

  .downloads-hero > div:first-child,
  .docs-hero > div:first-child,
  .verify-hero > div:first-child,
  .community-hero > div:first-child,
  .legal-hero > div:first-child {
    padding-right: 0;
  }

  .downloads-orbit,
  .docs-orbit,
  .verify-orbit,
  .community-orbit,
  .legal-orbit {
    position: relative;
    inset: auto;
    justify-content: center;
    padding-right: 0;
    margin-top: 1.75rem;
  }

  .downloads-orbit svg,
  .docs-orbit svg,
  .verify-orbit svg,
  .community-orbit svg,
  .legal-orbit svg {
    width: min(340px, 78vw);
  }

  .hero {
    padding: 2rem;
  }

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

  .dev-surface {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }

  canvas#starfield {
    display: none;
  }

  .orbit-ring--solid {
    animation: none;
  }

  .orbit-ring--dashed {
    animation-duration: 60s;
  }

  .dot-orbit--a,
  .dot-orbit--b,
  .dot-orbit--c {
    animation-duration: 48s;
  }

  .orbit-core {
    animation-duration: 9s;
  }

  .orbit-scan {
    animation-duration: 14s;
    opacity: 0.35;
  }

  .dev-terminal::after {
    animation-duration: 18s;
    opacity: 0.3;
  }

  .downloads-hero .hero-scan,
  .docs-hero .hero-scan,
  .verify-hero .hero-scan,
  .community-hero .hero-scan,
  .legal-hero .hero-scan {
    animation: none;
    opacity: 0;
  }

  .page-community .coming-soon-badge {
    animation: none;
  }

  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }

  .glass-card:hover,
  .tile:hover {
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(10px);
  transition: opacity 900ms var(--transition-smooth), transform 900ms var(--transition-smooth),
    filter 900ms var(--transition-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

  canvas#starfield {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .burst-particle,
  .ripple {
    display: none !important;
  }

  .particle-burst {
    display: none !important;
  }

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

  .glass-card:hover .card-icon::after {
    animation: none;
  }

  a:not(.btn)::after {
    transition: transform 150ms ease;
  }
}
