:root {
  color-scheme: light;
  --bg: #f7fafb;
  --panel: #ffffff;
  --panel-soft: #f3f7f8;
  --ink: #101418;
  --muted: #66727f;
  --line: #d9e3e7;
  --line-strong: #b8c7cf;
  --charcoal: #121a24;
  --charcoal-soft: #1f2c38;
  --accent: #2d6cdf;
  --accent-strong: #1f55b5;
  --teal: #00a99d;
  --teal-soft: #e5f8f6;
  --coral: #f05d4f;
  --coral-soft: #fff0ee;
  --gold: #d99624;
  --gold-soft: #fff6e6;
  --blue-soft: #edf4ff;
  --green-soft: #edf8f2;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 22px 70px rgba(26, 38, 56, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 251, 0.56), rgba(247, 250, 251, 0.28) 48%, rgba(247, 250, 251, 0.58)),
    url("/site/assets/tokentally-deployment.png") center / cover fixed no-repeat,
    var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 251, 0.56), rgba(247, 250, 251, 0.28) 48%, rgba(247, 250, 251, 0.58));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

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

h1 {
  max-width: 820px;
  font-size: 72px;
  line-height: 0.96;
  font-weight: 840;
}

h2 {
  max-width: 860px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

button,
input,
select,
textarea,
.button,
.top-actions a {
  border-radius: 8px;
  font: inherit;
}

button,
.button,
.primary-link {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 790;
}

button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
.button:hover,
.primary-link:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0 12px;
}

input,
select {
  height: 42px;
}

textarea {
  padding: 11px 12px;
  resize: vertical;
}

label {
  display: grid;
  gap: 7px;
  color: #43505d;
  font-size: 12px;
  font-weight: 760;
}

.site-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(280px, auto);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 13px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(217, 227, 231, 0.78);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand span,
.site-nav a,
.top-actions a,
.eyebrow {
  font-size: 12px;
  font-weight: 820;
}

.brand span,
.site-nav a,
.top-actions a,
.section-head p,
.role-grid p,
.install-grid p,
.pricing-grid p,
.coverage-grid p,
.site-footer {
  color: var(--muted);
}

.billing-toggle {
  display: flex;
  width: max-content;
  gap: 4px;
  margin: 0 auto 28px;
  padding: 4px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.billing-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-option.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.billing-option .save-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-grid .price-sub {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.section-head .tax-note {
  color: var(--ink);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 10px auto 0;
}

.section-head .tax-note strong {
  color: var(--coral);
}

.affiliate-result {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-soft);
}

.affiliate-link-row {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}

.affiliate-link-row input {
  flex: 1;
  min-width: 0;
}

.site-nav,
.top-actions,
.intro-actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a,
.top-actions a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent);
}

.top-actions {
  justify-content: flex-end;
}

.top-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 13px;
  background: #ffffff;
  color: var(--accent);
}

.top-actions .primary-link {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
}

.site-depth-background {
  --page-bg-progress: 0;
  --page-bg-y: 0px;
  --page-bg-rx: 5deg;
  --page-bg-ry: -16deg;
  --page-bg-primary-x: -8vw;
  --page-bg-primary-y: -8vh;
  --page-bg-secondary-x: 10vw;
  --page-bg-secondary-y: 14vh;
  --page-bg-after-y: 0px;
  --page-bg-route: 0.36;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1500px;
  background:
    linear-gradient(90deg, rgba(247, 250, 251, 0.48), rgba(247, 250, 251, 0.18) 48%, rgba(247, 250, 251, 0.5)),
    linear-gradient(180deg, rgba(45, 108, 223, 0.08), transparent 38%, rgba(0, 169, 157, 0.07));
}

.site-depth-background::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 32, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  transform:
    translateY(var(--page-bg-y))
    rotateX(var(--page-bg-rx))
    rotateY(var(--page-bg-ry));
  transform-origin: center;
}

.site-depth-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.18));
  opacity: 0.36;
  transform: translateY(var(--page-bg-after-y));
}

.depth-grid,
.depth-wall,
.depth-panel,
.depth-route,
.depth-node {
  position: absolute;
  transform-style: preserve-3d;
}

.depth-grid {
  inset: 8% 5%;
  border: 1px solid rgba(154, 173, 183, 0.22);
  background: repeating-linear-gradient(90deg, rgba(16, 24, 40, 0.04) 0 1px, transparent 1px 74px);
  transform:
    translate3d(0, var(--page-bg-y), -180px)
    rotateX(var(--page-bg-rx))
    rotateY(var(--page-bg-ry));
}

.depth-wall {
  top: 0;
  bottom: 0;
  width: clamp(96px, 16vw, 250px);
  border-inline: 1px solid rgba(154, 173, 183, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(17, 24, 32, 0.05) 0 1px, transparent 1px 36px);
}

.depth-wall-left {
  left: 0;
  transform: rotateY(62deg) translateX(-58px);
}

.depth-wall-right {
  right: 0;
  transform: rotateY(-62deg) translateX(58px);
}

.depth-panel {
  display: none;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(139, 159, 171, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 32px 90px rgba(24, 36, 48, 0.12);
  opacity: 0.34;
}

.depth-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depth-panel-primary {
  right: -4vw;
  top: 10vh;
  width: min(760px, 58vw);
  aspect-ratio: 16 / 9;
  transform:
    translate3d(var(--page-bg-primary-x), var(--page-bg-primary-y), -90px)
    rotateY(-18deg)
    rotateX(3deg);
}

.depth-panel-secondary {
  left: -8vw;
  bottom: -3vh;
  width: min(620px, 44vw);
  aspect-ratio: 16 / 10;
  transform:
    translate3d(var(--page-bg-secondary-x), var(--page-bg-secondary-y), -150px)
    rotateY(24deg)
    rotateX(5deg);
}

.depth-route {
  left: 50%;
  top: 50%;
  width: min(900px, 70vw);
  height: 2px;
  border-radius: 999px;
  opacity: var(--page-bg-route);
  background: linear-gradient(90deg, transparent, rgba(0, 169, 157, 0.82), rgba(45, 108, 223, 0.62), rgba(240, 93, 79, 0.44), transparent);
}

.depth-route-one {
  transform: translate3d(-50%, -18vh, 40px) rotateZ(-9deg);
}

.depth-route-two {
  transform: translate3d(-48%, 18vh, 10px) rotateZ(11deg);
}

.depth-node {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(45, 108, 223, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(0, 169, 157, 0.08));
  opacity: 0.42;
  box-shadow: 0 18px 44px rgba(24, 36, 48, 0.08);
}

.depth-node-a {
  left: 18vw;
  top: 30vh;
  transform: translateZ(90px);
}

.depth-node-b {
  right: 19vw;
  top: 62vh;
  transform: translateZ(130px);
}

.depth-node-c {
  left: 46vw;
  bottom: 8vh;
  transform: translateZ(70px);
}

.spatial-hero {
  --hero-p: 0;
  --copy-y: 0px;
  --stage-rx: 5deg;
  --stage-ry: -14deg;
  --stage-y: 0px;
  --primary-opacity: 0.38;
  --primary-x: 0vw;
  --primary-y: 0vh;
  --primary-z: -280px;
  --primary-ry: -24deg;
  --secondary-opacity: 0.16;
  --secondary-x: 0vw;
  --secondary-y: 0vh;
  --secondary-z: -360px;
  --secondary-ry: 34deg;
  --object-z: 110px;
  --object-rx: 61deg;
  --object-ry: -30deg;
  --object-rz: -7deg;
  --line-opacity: 0.32;
  --spec-one-x: 0vw;
  --spec-one-y: 0vh;
  --spec-two-x: 0vw;
  --spec-two-y: 0vh;
  --spec-three-x: 0vw;
  --spec-three-y: 0vh;
  position: relative;
  min-height: min(740px, calc(100vh - 74px));
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 32, 0.04) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
}

.spatial-viewport {
  position: relative;
  min-height: min(740px, calc(100vh - 74px));
  overflow: hidden;
  perspective: 1500px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(248, 251, 252, 0.48) 0%, rgba(248, 251, 252, 0.18) 44%, rgba(248, 251, 252, 0.46) 100%),
    linear-gradient(0deg, rgba(248, 251, 252, 0.22), rgba(248, 251, 252, 0.08));
  isolation: isolate;
}

.spatial-viewport::before,
.spatial-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(110px, 16vw, 260px);
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(214, 226, 232, 0.46), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(15, 23, 32, 0.06) 0 1px, transparent 1px 34px);
  transform-origin: center;
}

.spatial-viewport::before {
  left: 0;
  transform: rotateY(58deg) translateX(-46px);
}

.spatial-viewport::after {
  right: 0;
  transform: rotateY(-58deg) translateX(46px);
}

.spatial-viewport::before,
.spatial-viewport::after,
.spatial-stage {
  display: none;
}

.spatial-copy {
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2));
  top: clamp(34px, 9vh, 92px);
  z-index: 6;
  display: grid;
  gap: 18px;
  width: min(570px, calc(100vw - 36px));
  color: var(--ink);
  transform: translateY(var(--copy-y));
}

.spatial-copy h1 {
  color: #111820;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.86;
  text-wrap: balance;
}

.spatial-copy .lede {
  max-width: 590px;
  color: #384655;
  font-size: clamp(16px, 1.55vw, 21px);
}

.spatial-copy .intro-badges span {
  border-color: rgba(14, 33, 46, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #263442;
  box-shadow: 0 1px 10px rgba(16, 24, 40, 0.05);
}

.spatial-copy .secondary {
  border-color: #aebdc6;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.spatial-copy .secondary:hover {
  border-color: var(--accent);
  background: #ffffff;
  color: var(--accent);
}

.spatial-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--stage-rx))
    rotateY(var(--stage-ry))
    translateY(var(--stage-y));
}

.scene-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(139, 159, 171, 0.38);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(24, 36, 48, 0.18);
  transform-style: preserve-3d;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card-primary {
  right: clamp(22px, 8vw, 160px);
  top: clamp(64px, 12vh, 118px);
  width: clamp(330px, 50vw, 820px);
  aspect-ratio: 16 / 9;
  opacity: var(--primary-opacity);
  transform:
    translate3d(var(--primary-x), var(--primary-y), var(--primary-z))
    rotateY(var(--primary-ry))
    rotateX(2deg);
}

.scene-card-secondary {
  left: clamp(18px, 8vw, 150px);
  bottom: clamp(28px, 8vh, 90px);
  width: clamp(270px, 36vw, 560px);
  aspect-ratio: 16 / 10;
  opacity: var(--secondary-opacity);
  transform:
    translate3d(var(--secondary-x), var(--secondary-y), var(--secondary-z))
    rotateY(var(--secondary-ry))
    rotateX(3deg);
}

.gateway-object {
  position: absolute;
  left: 56%;
  top: 56%;
  width: clamp(260px, 30vw, 430px);
  height: clamp(250px, 30vw, 420px);
  z-index: 5;
  transform-style: preserve-3d;
  transform:
    translate3d(-50%, -50%, var(--object-z))
    rotateX(var(--object-rx))
    rotateY(var(--object-ry))
    rotateZ(var(--object-rz));
  filter: drop-shadow(0 32px 42px rgba(15, 27, 38, 0.22));
}

.gateway-database {
  position: absolute;
  left: 34%;
  top: 6%;
  width: 34%;
  height: 46%;
  border-radius: 50% / 12%;
  background:
    linear-gradient(90deg, #dfe9ee, #ffffff 38%, #a5b3bc 100%);
  border: 1px solid rgba(84, 106, 120, 0.24);
  transform: translateZ(76px);
}

.gateway-database::before,
.gateway-database::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 24%;
  border-radius: 50%;
  border: 1px solid rgba(0, 169, 157, 0.36);
}

.gateway-database::before {
  top: -10%;
  background: linear-gradient(90deg, #f8fbfc, #dce8ed);
}

.gateway-database::after {
  bottom: -10%;
  background: rgba(0, 169, 157, 0.16);
}

.gateway-database span {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(0, 169, 157, 0.58);
}

.gateway-database span:nth-child(1) {
  top: 30%;
}

.gateway-database span:nth-child(2) {
  top: 54%;
}

.gateway-database span:nth-child(3) {
  top: 78%;
}

.gateway-appliance {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 30%;
  border-radius: 8px;
  border: 1px solid rgba(65, 80, 91, 0.4);
  background:
    radial-gradient(circle at 18% 48%, #58f1df 0 5px, transparent 6px),
    linear-gradient(135deg, #303b45, #111820 64%, #394957);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateZ(44px);
}

.gateway-light {
  position: absolute;
  top: 42%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78f0df;
  box-shadow: 0 0 14px rgba(120, 240, 223, 0.8);
}

.gateway-light:nth-child(1) {
  left: 28%;
}

.gateway-light:nth-child(2) {
  left: 34%;
  background: #f05d4f;
  box-shadow: 0 0 14px rgba(240, 93, 79, 0.58);
}

.gateway-light:nth-child(3) {
  left: 40%;
}

.gateway-vent {
  position: absolute;
  right: 8%;
  top: 30%;
  width: 32%;
  height: 36%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 8px);
}

.gateway-shield {
  position: absolute;
  left: 50%;
  top: 45%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(124, 248, 231, 0.46);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    #060a0d;
  transform: translate3d(-50%, -48%, 122px);
  box-shadow:
    0 18px 34px rgba(0, 169, 157, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.gateway-shield img {
  width: 66px;
  height: 66px;
  filter: drop-shadow(0 10px 18px rgba(124, 248, 231, 0.16));
}

.real-server-stack {
  position: absolute;
  inset: 8% 0 8%;
  transform-style: preserve-3d;
  transform:
    translateZ(70px)
    rotateX(4deg)
    rotateY(-7deg);
}

.server-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 6%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.42), transparent 70%);
  transform: translateZ(-32px) rotateX(72deg);
  filter: blur(2px);
}

.server-unit {
  position: absolute;
  left: 7%;
  right: 7%;
  height: 24%;
  border: 1px solid rgba(116, 142, 158, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(135deg, #3d4d59 0%, #18222b 45%, #0d141b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -12px 28px rgba(0, 0, 0, 0.32),
    0 20px 38px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
}

.server-unit-front {
  bottom: 18%;
  transform: translateZ(74px);
}

.server-unit-back {
  bottom: 44%;
  opacity: 0.9;
  transform: translateZ(22px) translateY(12px) scale(0.94);
}

.server-top,
.server-side {
  position: absolute;
  pointer-events: none;
}

.server-top {
  left: 2%;
  right: 2%;
  bottom: calc(100% - 1px);
  height: 34%;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(160deg, #526371, #202d36 64%, #121b22);
  transform-origin: bottom center;
  transform: rotateX(62deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.server-side {
  top: 5%;
  right: -5%;
  width: 7%;
  height: 92%;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #273540, #0b1117);
  transform-origin: left center;
  transform: rotateY(-64deg);
}

.server-ear {
  position: absolute;
  top: 9%;
  width: 5.5%;
  height: 82%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.7) 0 2px, transparent 2.5px),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.4) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #34424c, #121920);
}

.server-ear-left {
  left: 2%;
}

.server-ear-right {
  right: 2%;
}

.server-brand-mark {
  position: absolute;
  left: 9%;
  top: 22%;
  width: 14%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 248, 231, 0.34);
  border-radius: 8px;
  background: rgba(3, 7, 10, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 28px rgba(124, 248, 231, 0.12);
}

.server-brand-mark img {
  width: 82%;
  height: 82%;
}

.server-drive {
  position: absolute;
  top: 22%;
  width: 8.5%;
  height: 56%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 46%),
    linear-gradient(90deg, #202d36, #0c131a);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.25),
    inset 0 -10px 16px rgba(0, 0, 0, 0.22);
}

.server-drive::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 14%;
  height: 2px;
  border-radius: 999px;
  background: rgba(124, 248, 231, 0.62);
}

.server-unit-front .server-drive:nth-of-type(6) { left: 27%; }
.server-unit-front .server-drive:nth-of-type(7) { left: 37%; }
.server-unit-front .server-drive:nth-of-type(8) { left: 47%; }
.server-unit-front .server-drive:nth-of-type(9) { left: 57%; }
.server-unit-front .server-drive:nth-of-type(10) { left: 67%; }
.server-unit-front .server-drive:nth-of-type(11) { left: 77%; }

.server-unit-back .server-drive:nth-of-type(5) { left: 18%; }
.server-unit-back .server-drive:nth-of-type(6) { left: 29%; }
.server-unit-back .server-drive:nth-of-type(7) { left: 40%; }
.server-unit-back .server-drive:nth-of-type(8) { left: 51%; }

.server-port {
  position: absolute;
  left: 9.5%;
  bottom: 18%;
  width: 7%;
  height: 13%;
  border: 1px solid rgba(124, 248, 231, 0.36);
  border-radius: 3px;
  background: #071016;
}

.server-light {
  position: absolute;
  bottom: 18%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.server-light-online {
  left: 19%;
  background: #7cf8e7;
  box-shadow: 0 0 14px rgba(124, 248, 231, 0.86);
}

.server-light-warn {
  left: 22.5%;
  background: #ff7b68;
  box-shadow: 0 0 12px rgba(255, 123, 104, 0.68);
}

.server-vent {
  position: absolute;
  right: 8%;
  top: 24%;
  width: 22%;
  height: 52%;
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.85;
}

.server-handle {
  position: absolute;
  top: 27%;
  width: 1.8%;
  height: 44%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
}

.server-handle-left {
  left: 25%;
}

.server-handle-right {
  right: 32%;
}

.logo-object {
  width: clamp(300px, 38vw, 560px);
  height: clamp(300px, 38vw, 560px);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.42));
}

.logo3d-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform:
    translateZ(96px)
    rotateX(3deg)
    rotateY(-8deg);
}

.logo3d-aura,
.logo3d-shadow,
.logo3d-depth,
.logo3d-face {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}

.logo3d-aura {
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 248, 231, 0.22), rgba(45, 108, 223, 0.1) 42%, transparent 72%);
  transform: translate3d(-50%, -50%, -34px);
  filter: blur(12px);
}

.logo3d-shadow {
  width: 72%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.46), transparent 70%);
  transform: translate3d(-50%, 92%, -64px) rotateX(72deg);
  filter: blur(3px);
}

.logo3d-depth,
.logo3d-face {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 24%;
}

.logo3d-depth {
  border: 1px solid rgba(124, 248, 231, 0.16);
  background:
    linear-gradient(145deg, #102033, #071017 62%, #020507);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset -18px -22px 36px rgba(0, 0, 0, 0.38);
}

.logo3d-depth-1 {
  transform: translate3d(calc(-50% + 34px), calc(-50% + 32px), -46px);
  opacity: 0.58;
}

.logo3d-depth-2 {
  transform: translate3d(calc(-50% + 22px), calc(-50% + 22px), -26px);
  opacity: 0.74;
}

.logo3d-depth-3 {
  transform: translate3d(calc(-50% + 11px), calc(-50% + 11px), -10px);
  opacity: 0.9;
}

.logo3d-face {
  display: grid;
  place-items: center;
  padding: 8%;
  border: 1px solid rgba(124, 248, 231, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at 28% 20%, rgba(124, 248, 231, 0.2), transparent 38%),
    #060a0d;
  transform: translate3d(-50%, -50%, 30px);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.44),
    0 0 70px rgba(124, 248, 231, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -20px 38px rgba(0, 0, 0, 0.3);
}

.logo3d-face::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20%;
  pointer-events: none;
}

.logo3d-face::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(124, 248, 231, 0.28), transparent 38%, rgba(45, 108, 223, 0.26), transparent 72%);
  filter: blur(18px);
  opacity: 0.9;
}

.logo3d-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 18px rgba(124, 248, 231, 0.16));
}

.route-line {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(760px, 54vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 169, 157, 0.82), rgba(240, 93, 79, 0.72), transparent);
  transform-origin: center;
  opacity: var(--line-opacity);
}

.route-line-one {
  transform: translate3d(-54%, -40px, 100px) rotateZ(-10deg);
}

.route-line-two {
  transform: translate3d(-42%, 38px, 80px) rotateZ(11deg);
}

.floating-spec {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(172, 189, 198, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  box-shadow: 0 22px 54px rgba(24, 36, 48, 0.12);
  backdrop-filter: blur(10px);
}

.floating-spec span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 830;
  text-transform: uppercase;
}

.floating-spec strong {
  color: #1b2732;
  font-size: 13px;
}

.spec-one {
  right: clamp(30px, 14vw, 240px);
  bottom: 27%;
  transform: translate3d(var(--spec-one-x), var(--spec-one-y), 170px) rotateY(-18deg);
}

.spec-two {
  right: clamp(18px, 7vw, 140px);
  top: 28%;
  transform: translate3d(var(--spec-two-x), var(--spec-two-y), 90px) rotateY(-26deg);
}

.spec-three {
  left: clamp(260px, 32vw, 520px);
  bottom: 12%;
  transform: translate3d(var(--spec-three-x), var(--spec-three-y), 120px) rotateY(24deg);
}

.story-rail {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: clamp(22px, 5vh, 52px);
  z-index: 7;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 36px));
}

.story-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(172, 189, 198, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  opacity: 0.54;
  transform: translateX(18px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
}

.story-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(24, 36, 48, 0.14);
}

.story-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 860;
}

.story-card strong {
  font-size: 15px;
}

.story-card p {
  color: #53616e;
  font-size: 13px;
}

.intro {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 24px;
  align-items: end;
  overflow: hidden;
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  padding: 58px;
  background: var(--charcoal);
  isolation: isolate;
}

.intro-bg,
.intro-shade {
  position: absolute;
  inset: 0;
}

.intro-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-shade {
  background:
    linear-gradient(90deg, rgba(18, 26, 36, 0.95) 0%, rgba(18, 26, 36, 0.82) 43%, rgba(18, 26, 36, 0.34) 100%),
    linear-gradient(0deg, rgba(18, 26, 36, 0.66) 0%, rgba(18, 26, 36, 0.08) 58%);
}

.intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  background: linear-gradient(135deg, rgba(0, 169, 157, 0.52), rgba(240, 93, 79, 0.36));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.intro-copy,
.hero-console {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.intro-copy {
  display: grid;
  gap: 20px;
  align-content: end;
  color: #ffffff;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
}

.intro .eyebrow,
.integration-section .eyebrow,
.access-card > span {
  color: #78f0df;
}

.lede {
  max-width: 760px;
  color: #dce7ed;
  font-size: 18px;
  overflow-wrap: break-word;
}

.intro-badges,
.integration-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #efffff;
  font-size: 12px;
  font-weight: 760;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.hero-console {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 26, 36, 0.76);
  backdrop-filter: blur(14px);
  color: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.console-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #c8d4dc;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.console-top strong {
  color: #78f0df;
}

.console-prompt {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.console-prompt span,
.console-metrics span,
.shot-grid span {
  color: #a9bac4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.console-prompt p {
  color: #eef7f8;
  font-size: 13px;
  overflow-wrap: break-word;
}

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

.console-metrics div {
  display: grid;
  gap: 5px;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.console-metrics strong {
  font-size: 24px;
}

.console-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.console-flow span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 240, 223, 0.28);
  border-radius: 8px;
  color: #d9fff8;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-band div {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-band strong {
  font-size: 34px;
  line-height: 1;
  color: var(--charcoal);
}

.proof-band span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: 100%;
  margin-top: 0;
  padding: 74px max(18px, calc((100vw - var(--max)) / 2));
  scroll-margin-top: 86px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.section:nth-of-type(odd) {
  background: rgba(243, 247, 248, 0.84);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.dashboard-shot {
  display: grid;
  gap: 14px;
  border: 1px solid #263745;
  border-radius: 8px;
  background: var(--charcoal);
  color: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.shot-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.shot-head span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal);
}

.shot-head em {
  color: #78f0df;
  font-style: normal;
  font-weight: 800;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shot-grid section {
  display: grid;
  gap: 6px;
  min-height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.shot-grid strong {
  font-size: 28px;
}

.shot-grid small {
  color: #c8d4dc;
}

.policy-lane {
  display: grid;
  gap: 8px;
}

.policy-lane div {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
}

.policy-lane span {
  color: #c8d4dc;
  font-size: 13px;
}

.policy-lane em {
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(0, 169, 157, 0.2);
  color: #b8fff4;
  font-style: normal;
  font-size: 12px;
  font-weight: 780;
}

.platform-image,
.request-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: 8px;
  background: #dce6e9;
}

.platform-image img,
.request-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(18, 26, 36, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.install-grid,
.pricing-grid,
.resource-grid,
.faq-list,
.role-grid,
.coverage-grid,
.lead-form {
  display: grid;
  gap: 14px;
}

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

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

.role-grid article,
.install-grid article,
.pricing-grid article,
.resource-grid a,
.faq-list article,
.coverage-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.role-grid article:nth-child(1),
.resource-grid a:nth-child(1),
.coverage-grid article:nth-child(1) {
  background: var(--blue-soft);
}

.role-grid article:nth-child(2),
.resource-grid a:nth-child(2),
.coverage-grid article:nth-child(2) {
  background: var(--teal-soft);
}

.role-grid article:nth-child(3),
.resource-grid a:nth-child(3),
.coverage-grid article:nth-child(3) {
  background: var(--gold-soft);
}

.role-grid span,
.resource-grid span,
.coverage-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.coverage-grid strong {
  font-size: 18px;
}

.section.integration-section {
  background: rgba(18, 26, 36, 0.94);
  color: #ffffff;
}

.section.integration-section .section-head p {
  color: #d8e4e8;
}

.integration-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
}

.resource-grid a {
  color: inherit;
  text-decoration: none;
}

.resource-grid a:hover {
  border-color: #b9c9f5;
  background: #ffffff;
}

.resource-grid strong {
  font-size: 17px;
}

.resource-grid p,
.faq-list p {
  color: var(--muted);
}

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

.faq-list article {
  min-height: 146px;
}

.install-grid span {
  color: var(--coral);
  font-size: 24px;
  font-weight: 840;
}

.locked-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border: 1px solid #f2d08d;
  border-radius: 8px;
  background: var(--gold-soft);
  padding: 14px;
}

.locked-note strong {
  color: #9b6310;
}

.locked-note span {
  color: #6b5b2c;
}

.pricing-grid article {
  min-height: 250px;
}

.pricing-grid .featured {
  border-color: #9db6ff;
  background: #f4f7ff;
  box-shadow: var(--shadow-lg);
}

.pricing-grid strong {
  font-size: 32px;
}

.pricing-grid button {
  align-self: end;
  width: 100%;
  margin-top: 8px;
}

.checkout-layout,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.checkout-form,
.lead-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.checkout-form button,
.checkout-form .status,
.checkout-form .full,
.checkout-form .payment-fields,
.lead-form .full,
.lead-form button,
.lead-form .status {
  grid-column: 1 / -1;
}

.payment-fields {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f7fafc;
  margin: 0;
}

.payment-fields legend {
  padding: 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: #43505d;
}

.payment-note {
  font-size: 12px;
  color: #5b6975;
  line-height: 1.5;
}

.payment-note code {
  background: #e8eef2;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 11px;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.access-card {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid #263745;
  border-radius: 8px;
  background: var(--charcoal);
  color: #ffffff;
  padding: 22px;
}

.access-card[hidden] {
  display: none;
}

.access-card p {
  color: #c8d4dc;
}

.access-links {
  display: grid;
  gap: 10px;
}

.access-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  font-weight: 780;
}

.access-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.request-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.request-image {
  min-height: 100%;
}

.status {
  min-height: 20px;
  font-weight: 720;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 38px;
  flex-wrap: wrap;
}

.site-footer span {
  color: var(--ink);
  font-weight: 820;
}

.locked-page {
  width: min(860px, 100%);
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 24px;
}

.locked-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}

.locked-card h1 {
  font-size: 52px;
}

.topic-hero {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 560px;
  padding: 78px max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 251, 252, 0.68) 0%, rgba(248, 251, 252, 0.34) 52%, rgba(248, 251, 252, 0.66) 100%);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.topic-hero::before,
.topic-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.topic-hero::before {
  inset: 34px max(18px, calc((100vw - var(--max)) / 2));
  border: 1px solid rgba(139, 159, 171, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, rgba(16, 24, 40, 0.05) 0 1px, transparent 1px 64px);
  transform: translateZ(-40px) rotateY(-9deg);
}

.topic-hero::after {
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 48px;
  width: min(440px, 34vw);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(45, 108, 223, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    url("/site/assets/tokentally-deployment.png") center / cover;
  box-shadow: 0 28px 74px rgba(24, 36, 48, 0.16);
  transform: translateZ(64px) rotateY(-16deg) rotateX(4deg);
}

.topic-hero h1 {
  max-width: 850px;
  color: #111820;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.95;
  overflow-wrap: break-word;
}

.topic-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #3d4b58;
  font-size: 18px;
}

.topic-hero .intro-actions {
  position: relative;
  z-index: 2;
}

.topic-hero .secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.topic-hero .secondary:hover {
  border-color: var(--accent);
  background: #ffffff;
  color: var(--accent);
}

.prose-section {
  position: relative;
  overflow: hidden;
}

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

.feature-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 188px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.feature-list article:nth-child(1) {
  background: var(--blue-soft);
}

.feature-list article:nth-child(2) {
  background: var(--teal-soft);
}

.feature-list article:nth-child(3) {
  background: var(--gold-soft);
}

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

.article-page main {
  width: 100%;
}

.article-hero,
.content-section {
  width: 100%;
  margin: 0;
  padding: 68px max(18px, calc((100vw - 960px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.article-hero {
  display: grid;
  gap: 14px;
  background: rgba(18, 26, 36, 0.94);
  color: #ffffff;
}

.article-hero h1 {
  max-width: 860px;
  font-size: 58px;
  line-height: 1;
}

.article-hero .lede {
  max-width: 820px;
  color: #dce7ed;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #b7c4cb;
  font-size: 12px;
  font-weight: 720;
}

.breadcrumb a {
  color: #78f0df;
  text-decoration: none;
}

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

.content-section:nth-of-type(odd) {
  background: rgba(243, 247, 248, 0.84);
}

.content-section h2 {
  max-width: 780px;
}

.answer-card {
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.answer-card strong {
  display: block;
  margin-bottom: 6px;
}

.checklist,
.number-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.checklist li,
.number-list li {
  color: #34404b;
}

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

.topic-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.topic-card h3 {
  margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .spatial-stage,
  .spatial-copy,
  .scene-card,
  .gateway-object,
  .floating-spec,
  .story-card,
  .site-depth-background,
  .site-depth-background * {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-topbar {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .top-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .intro,
  .platform-showcase,
  .checkout-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero-console {
    max-width: 720px;
  }

  .spatial-hero {
    min-height: 720px;
  }

  .spatial-copy {
    width: min(620px, calc(100vw - 36px));
  }

  .scene-card-primary {
    right: 18px;
    width: min(720px, 58vw);
  }

  .gateway-object {
    left: 61%;
  }

  .story-rail {
    width: min(360px, calc(100vw - 36px));
  }

  .proof-band,
  .role-grid,
  .resource-grid,
  .shot-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 54px;
  }

  h2,
  .article-hero h1,
  .locked-card h1 {
    font-size: 36px;
  }

  .intro {
    min-height: 0;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-left: 12px;
    margin-right: 12px;
    padding: 30px;
  }

  .spatial-hero {
    min-height: 760px;
  }

  .spatial-viewport {
    min-height: 760px;
  }

  .spatial-copy {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100vw - 28px);
    padding: 28px 14px 0;
    transform: none;
  }

  .spatial-copy h1 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: 0.9;
  }

  .spatial-copy .lede {
    max-width: 100%;
  }

  .spatial-stage {
    inset: 210px 0 180px;
    transform:
      rotateX(var(--stage-rx))
      rotateY(var(--stage-ry))
      translateY(var(--stage-y));
  }

  .scene-card-primary {
    right: 12px;
    top: 34px;
    width: min(78vw, 560px);
  }

  .scene-card-secondary {
    left: 12px;
    bottom: 28px;
    width: min(58vw, 360px);
  }

  .gateway-object {
    left: 58%;
    top: 56%;
    width: min(56vw, 320px);
    height: min(56vw, 320px);
  }

  .floating-spec {
    min-width: 150px;
    padding: 10px;
  }

  .spec-one,
  .spec-two {
    right: 14px;
  }

  .spec-three {
    left: 14px;
    bottom: 18%;
  }

  .story-rail {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .section,
  .topic-hero,
  .article-hero,
  .content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .locked-card {
    padding: 24px;
  }

  .proof-band,
  .role-grid,
  .resource-grid,
  .faq-list,
  .install-grid,
  .pricing-grid,
  .coverage-grid,
  .feature-list,
  .checkout-form,
  .lead-form,
  .two-column {
    grid-template-columns: 1fr;
  }

  .proof-band,
  .site-footer {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .platform-image,
  .request-image {
    min-height: 300px;
  }

  .topic-hero {
    min-height: 0;
  }

  .topic-hero::after {
    width: min(520px, 70vw);
    opacity: 0.24;
    transform: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2,
  .article-hero h1,
  .locked-card h1 {
    font-size: 30px;
  }

  .site-topbar {
    padding: 12px 14px;
  }

  .intro {
    padding: 22px 34px 22px 18px;
  }

  .spatial-hero {
    min-height: 760px;
  }

  .spatial-viewport::before,
  .spatial-viewport::after,
  .scene-card-secondary,
  .route-line-two,
  .floating-spec {
    display: none;
  }

  .spatial-copy {
    gap: 14px;
  }

  .spatial-copy h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .spatial-copy .intro-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .spatial-stage {
    inset: 280px 0 220px;
  }

  .scene-card-primary {
    top: 18px;
    right: -32px;
    width: 92vw;
  }

  .gateway-object {
    left: 50%;
    top: 61%;
    width: min(72vw, 300px);
    height: min(72vw, 300px);
  }

  .floating-spec {
    min-width: 132px;
    max-width: 178px;
  }

  .spec-one {
    right: 10px;
    bottom: 24%;
  }

  .spec-three {
    left: 10px;
    top: 52%;
  }

  .story-card {
    display: none;
  }

  .story-card.is-active {
    display: grid;
  }

  .topic-hero {
    padding-right: 22px;
  }

  .topic-hero h1 {
    font-size: clamp(30px, 9.5vw, 36px);
    line-height: 1;
    width: min(100%, 10.8ch);
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .topic-hero p:not(.eyebrow) {
    width: min(100%, 34ch);
    max-width: calc(100vw - 36px);
    font-size: 16px;
  }

  .topic-hero .intro-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .topic-hero .intro-actions .button {
    width: 100%;
  }

  .topic-hero::before,
  .topic-hero::after {
    display: none;
  }

  .intro-copy,
  .hero-console,
  .intro-actions,
  .lede {
    width: min(100%, calc(100vw - 92px));
    max-width: calc(100vw - 92px);
    justify-self: start;
  }

  .intro-actions,
  .console-metrics,
  .console-flow,
  .policy-lane div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-actions .button {
    width: 100%;
  }

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

/* ======================================================================
   3D scroll-driven redesign layer (keeps the TokenTally theme + content)
   ====================================================================== */

:root {
  --p: 0;          /* global scroll progress 0..1, set by JS */
  --hero-p: 0;     /* hero scene progress 0..1, set by JS */
  --depth-x: 0;    /* pointer parallax, -1..1 */
  --depth-y: 0;
}

html {
  background: var(--bg);
}

body.site-3d {
  background: linear-gradient(180deg, #eaf1f6 0%, #dfe9f1 50%, #e7eef4 100%);
}

/* old JS depth layer is replaced by the datacenter world below */
.site-depth-background { display: none !important; }

/* ====== Datacenter world: a fixed 3D server corridor you fly through ====== */
.datacenter {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1000px;
  perspective-origin: 50% 46%;
  background:
    radial-gradient(80% 60% at 50% 42%, #ffffff 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #dbe6ee 0%, #cdd9e4 46%, #d6e0e8 100%);
}
.dc-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.monolith-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.7s ease;
}

body.monolith-ready .monolith-canvas {
  opacity: 1;
}

body.monolith-ready .dc-scene {
  opacity: 0;
}

body.monolith-ready .datacenter {
  background: #03070d;
}

/* corridor floor + ceiling with receding light grid */
.dc-floor,
.dc-ceil {
  position: absolute;
  left: 50%;
  width: 2400px;
  height: 4200px;
  margin-left: -1200px;
  background:
    linear-gradient(rgba(45, 108, 223, 0.3) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(90deg, rgba(45, 108, 223, 0.22) 1px, transparent 1px) 0 0 / 120px 120px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}
.dc-floor {
  bottom: -6%;
  transform-origin: 50% 100%;
  transform: rotateX(80deg) translateZ(-1400px);
  background-color: rgba(212, 226, 236, 0.5);
  background-position: 0 calc(var(--p, 0) * -2400px);
}
.dc-ceil {
  top: -6%;
  transform-origin: 50% 0%;
  transform: rotateX(-80deg) translateZ(-1400px);
  opacity: 0.5;
  background-position: 0 calc(var(--p, 0) * -2400px);
}

/* server racks lining both walls */
.dc-side { position: absolute; inset: 0; transform-style: preserve-3d; }
.rack {
  position: absolute;
  top: 50%;
  width: 264px;
  height: 600px;
  margin-top: -300px;
  border-radius: 9px;
  border: 1px solid rgba(6, 10, 14, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 34px rgba(0, 0, 0, 0.55),
    0 46px 84px rgba(12, 18, 30, 0.42);
  background:
    radial-gradient(circle at 24px 13px, #79f7e7 0 2px, transparent 3px),
    radial-gradient(circle at 37px 13px, #4d8bf0 0 2px, transparent 3px),
    radial-gradient(circle at 50px 13px, rgba(240, 93, 79, 0.92) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(180deg, #2a3640 0 23px, #0e151c 23px 26px),
    linear-gradient(150deg, #30404e 0%, #121a22 58%, #283643 100%);
  background-size: 100% 26px, 100% 26px, 100% 26px, 132px 100%, 100% 26px, 100% 100%;
  background-position: 0 14px, 0 14px, 0 14px, right 16px top 0, 0 0, 0 0;
  background-repeat: repeat-y, repeat-y, repeat-y, no-repeat, repeat, no-repeat;
  transform-style: preserve-3d;
}
/* glowing "active" edge bar */
.rack::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #79f7e7, #2d6cdf);
  box-shadow: 0 0 16px rgba(88, 241, 223, 0.85);
  animation: rackPulse 2.6s ease-in-out infinite;
}
@keyframes rackPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rack::before { animation: none; } }
.rack { opacity: var(--op, 1); }
.dc-left .rack { left: 0; transform-origin: left center; transform: translateZ(var(--z, 0)) rotateY(36deg); }
.dc-right .rack { right: 0; transform-origin: right center; transform: translateZ(var(--z, 0)) rotateY(-36deg); }

/* glowing aisle + core at the end of the corridor */
.dc-aisle {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(45, 108, 223, 0.12) 45%, transparent 70%);
  transform: translateZ(-2600px);
  filter: blur(6px);
}
.dc-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  transform: translateZ(-3600px);
  border-radius: 16px;
  border: 1px solid rgba(45, 108, 223, 0.4);
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 208, 189, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(205, 217, 227, 0.9));
  box-shadow: 0 0 80px rgba(45, 108, 223, 0.3);
}

/* atmospheric haze: brightens the centre for legible copy, fogs the far end */
.dc-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 50% 38%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(231, 238, 244, 0.55) 0%, rgba(231, 238, 244, 0) 24%, rgba(231, 238, 244, 0) 70%, rgba(231, 238, 244, 0.7) 100%);
}

body.no-3d .datacenter,
body.no-3d .dc-scene { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .dc-scene { transform: none; }
}

/* ====== Entering the server: the front panel you fly through at the start ===== */
.server-portal {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  perspective: 1300px;
  opacity: clamp(0, calc(1.05 - var(--hero-p, 0) * 1.35), 1);
}
.sp-frame {
  position: relative;
  width: min(76vw, 900px);
  height: min(70vh, 580px);
  border-radius: 22px;
  border: 2px solid rgba(6, 10, 14, 0.85);
  transform: translateZ(0) scale(calc(1 + var(--hero-p, 0) * 6.4));
  transform-origin: 50% 46%;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 13px, rgba(0, 0, 0, 0.3) 13px 16px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 7px),
    linear-gradient(160deg, #36454f 0%, #121a22 58%, #2a3744 100%);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.6), 0 60px 130px rgba(12, 18, 30, 0.5);
}
.sp-frame::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 120px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #79f7e7, #2d6cdf 60%, transparent);
  box-shadow: 0 0 16px rgba(88, 241, 223, 0.7);
}
.sp-aperture {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(120, 240, 223, 0.7) 26%, rgba(45, 108, 223, 0.45) 52%, rgba(45, 108, 223, 0) 74%);
  box-shadow: 0 0 90px rgba(88, 241, 223, 0.55), inset 0 0 50px rgba(45, 108, 223, 0.5);
}
.sp-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(233, 242, 248, 0.78);
  font-weight: 780;
}
body.no-3d .server-portal { display: none; }
@media (prefers-reduced-motion: reduce) { .server-portal { display: none; } }

main,
.site-topbar,
.site-footer { position: relative; z-index: 1; }

.site-topbar {
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}

/* progress bar at the very top */
.site-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: perspective(1000px) translate3d(0, 34px, 0) rotateX(7deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: perspective(1000px) translate3d(0, 0, 0) rotateX(0);
}

/* ---------- 3D tilt cards ---------- */
.tilt {
  transform: perspective(900px) rotateX(calc(var(--ty, 0) * -6deg)) rotateY(calc(var(--tx, 0) * 8deg)) translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}
.tilt:hover {
  box-shadow: var(--shadow-lg);
}
.reveal.tilt { transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.tilt.in {
  transform: perspective(900px) rotateX(calc(var(--ty, 0) * -6deg)) rotateY(calc(var(--tx, 0) * 8deg)) translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ========== HERO 3D ========== */
.hero3d {
  position: relative;
  height: 135vh;
}
.hero3d-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  perspective: 1500px;
  perspective-origin: 50% 42%;
}

.stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(calc(8deg + var(--depth-y) * 3deg)) rotateY(calc(var(--depth-x) * 6deg)) translateZ(calc(var(--hero-p) * -120px));
  transition: transform 0.2s ease-out;
}

.stage-grid {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 240vw;
  height: 150vh;
  transform: translateX(-50%) rotateX(72deg) translateZ(-60px);
  transform-origin: 50% 100%;
  background:
    linear-gradient(rgba(45, 108, 223, 0.18) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(45, 108, 223, 0.14) 1px, transparent 1px) 0 0 / 80px 80px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 75%);
  opacity: 0.55;
}

.stage-layer { position: absolute; }

.wire-cube {
  width: clamp(90px, 12vw, 170px);
  height: clamp(90px, 12vw, 170px);
  border: 1.5px solid rgba(33, 50, 70, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(237, 244, 255, 0.16));
  border-radius: 6px;
  transform-style: preserve-3d;
}
.wire-cube::before {
  content: "";
  position: absolute;
  inset: 14% 14%;
  border: 1.5px solid rgba(45, 108, 223, 0.32);
  border-radius: 4px;
  transform: translateZ(46px);
}
.wire-cube-a {
  left: 12%;
  top: 52%;
  transform: translateZ(-90px) rotateX(18deg) rotateY(26deg) translateY(calc(var(--hero-p) * -40px));
}
.wire-cube-b {
  right: 13%;
  top: 26%;
  transform: translateZ(40px) rotateX(-12deg) rotateY(-22deg) translateY(calc(var(--hero-p) * 60px));
}

.pedestal {
  left: 50%;
  top: 60%;
  width: clamp(280px, 34vw, 470px);
  height: clamp(70px, 9vw, 120px);
  transform: translate(-50%, -50%) rotateX(72deg) translateZ(-30px);
  background: radial-gradient(ellipse at 50% 50%, rgba(45, 108, 223, 0.18), rgba(45, 108, 223, 0) 70%);
  border-radius: 50%;
  box-shadow: 0 40px 60px rgba(26, 38, 56, 0.18);
}

.gateway-object,
.arch-object,
.cta-final-object {
  width: clamp(230px, 26vw, 380px);
  height: clamp(230px, 26vw, 380px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 44px rgba(15, 27, 38, 0.24));
}
.gateway-object {
  left: 50%;
  top: 50%;
  transform:
    translate(-50%, -52%)
    translateZ(calc(60px + var(--hero-p) * 80px))
    rotateX(calc(-6deg + var(--depth-y) * 5deg))
    rotateY(calc(-22deg + var(--hero-p) * 120deg + var(--depth-x) * 8deg));
}

.route-line {
  left: 50%;
  top: 56%;
  width: min(760px, 54vw);
  opacity: 0.7;
}
.route-line-one { transform: translate3d(-54%, -40px, 90px) rotateZ(-10deg); }
.route-line-two { transform: translate3d(-46%, 52px, 50px) rotateZ(8deg); }

.chip {
  display: grid;
  gap: 3px;
  padding: 11px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chip span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 760; }
.chip strong { font-size: 13px; color: var(--ink); }
.chip-one { left: 9%; top: 30%; transform: translateZ(140px) translateY(calc(var(--hero-p) * -30px)); }
.chip-two { right: 8%; top: 60%; transform: translateZ(120px) translateY(calc(var(--hero-p) * 36px)); }
.chip-three { right: 14%; top: 16%; transform: translateZ(150px) translateY(calc(var(--hero-p) * -22px)); }

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 940px;
  padding: 40px 30px;
  text-align: center;
  transform: translateY(calc(var(--hero-p) * -40px));
  opacity: calc(1 - var(--hero-p) * 0.9);
  border-radius: 32px;
  background: radial-gradient(120% 110% at 50% 46%, rgba(247, 250, 252, 0.94) 0%, rgba(247, 250, 252, 0.78) 52%, rgba(247, 250, 252, 0) 82%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hero-copy .eyebrow { justify-content: center; display: inline-flex; color: var(--accent-strong); }
.hero-copy h1 { margin: 6px auto 0; max-width: 18ch; }
.h1-brand {
  display: block;
  font-size: clamp(64px, 15vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-weight: 880;
  background: linear-gradient(135deg, var(--accent) 0%, #1f55b5 42%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 50px rgba(45, 108, 223, 0.18);
}
.h1-sub {
  display: block;
  margin-top: 16px;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: -0.01em;
  color: #1c2632;
}
.hero-copy .lede { margin: 20px auto 0; max-width: 58ch; color: #45525f; font-size: clamp(15px, 1.4vw, 18px); }
.hero-copy .intro-badges { justify-content: center; }
.hero-copy .intro-actions { justify-content: center; margin-top: 26px; }

/* ---------- Readability scrims over the server interior ---------- */
.section-head { position: relative; z-index: 0; }
.section-head > * { position: relative; z-index: 1; }
.section-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 210%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 56% at 50% 50%, rgba(248, 251, 253, 0.97) 0%, rgba(248, 251, 253, 0.88) 46%, rgba(248, 251, 253, 0) 78%);
}
.section-head h2 { color: #0e1620; }
.section-head p { color: #3c4956; }
.section-head .eyebrow { color: var(--accent-strong); }

/* darker, higher-contrast body copy on the busy 3D background */
.feature-card p,
.role-grid article p,
.coverage-grid article p,
.story-card p,
.faq-list p,
.resource-grid a p { color: #3a4754; }

/* every content card is an opaque, readable panel floating in the server */
.feature-card,
.story-card,
.role-grid article,
.coverage-grid article,
.resource-grid a,
.install-grid article,
.architecture-cards article,
.faq-list article,
.pricing-grid article,
.proof-band > div,
.dashboard-shot {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: calc(1 - var(--hero-p) * 1.6);
}
.scroll-hint span { position: relative; }
.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 130%;
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--muted), transparent);
  transform: translateX(-50%);
  animation: hintPulse 1.8s ease-in-out infinite;
}
@keyframes hintPulse { 0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.6); } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }

.tagline-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 340px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: calc(1 - var(--hero-p) * 1.4);
}
.tagline-card strong { display: block; font-size: 16px; }
.tagline-card span { color: var(--muted); font-size: 12.5px; }
.tagline-arrow { font-size: 22px; color: var(--accent); }

/* ========== INTRO 3D ========== */
.intro3d {
  position: relative;
  padding: clamp(80px, 12vh, 150px) 24px clamp(40px, 6vh, 80px);
  text-align: center;
}
.intro3d-inner { max-width: 920px; margin: 0 auto; }
.display {
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 12px auto 0;
}
.intro-lede { margin: 22px auto 0; max-width: 62ch; color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); }

.story-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 56px auto 0;
}
.story-card {
  text-align: left;
  padding: 22px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.story-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--accent);
  font-weight: 820;
}
.story-card strong { display: block; margin: 14px 0 8px; font-size: 17px; }
.story-card p { color: var(--muted); }

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}
.feature-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-card h3 { font-size: 18px; }
.feature-card p { margin-top: 10px; color: var(--muted); }

/* ========== ARCHITECTURE ========== */
.architecture-section { text-align: center; overflow: hidden; }
.architecture-stage {
  position: relative;
  height: clamp(360px, 46vw, 540px);
  margin: 30px auto 0;
  max-width: 900px;
  perspective: 1300px;
  perspective-origin: 50% 38%;
}
.arch-ribs {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(33, 50, 70, 0.08) 0 1px, transparent 1px 16px);
  -webkit-mask-image: radial-gradient(60% 75% at 50% 45%, #000, transparent 76%);
  mask-image: radial-gradient(60% 75% at 50% 45%, #000, transparent 76%);
}
.arch-pedestal {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: clamp(240px, 32vw, 420px);
  height: clamp(50px, 7vw, 90px);
  transform: translateX(-50%) rotateX(72deg);
  background: radial-gradient(ellipse, rgba(45, 108, 223, 0.16), transparent 70%);
  border-radius: 50%;
  box-shadow: 0 40px 60px rgba(26, 38, 56, 0.16);
}
.arch-object {
  position: absolute;
  left: 50%;
  top: 46%;
  transform:
    translate(-50%, -50%)
    rotateX(calc(-4deg + var(--depth-y) * 5deg))
    rotateY(calc(-200deg + var(--scene, 0) * 220deg + var(--depth-x) * 10deg));
  transition: transform 0.2s ease-out;
}
.architecture-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 26px auto 0;
}
.architecture-cards article {
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.architecture-cards strong { display: block; font-size: 16px; }
.architecture-cards span { color: var(--muted); font-size: 13.5px; }

/* ========== FINAL CTA ========== */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 26px;
  margin: clamp(40px, 6vh, 90px) auto;
  width: min(var(--max), calc(100% - 36px));
  padding: clamp(60px, 9vw, 120px) 24px;
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(45, 108, 223, 0.16), transparent 60%),
    linear-gradient(160deg, #0f1722, #1b2735 70%, #122033);
  color: #fff;
  perspective: 1200px;
}
.cta-final-object {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%) rotateX(-6deg) rotateY(calc(-40deg + var(--scene, 0) * 60deg + var(--depth-x) * 12deg)) scale(1.1);
  opacity: 0.9;
}
.cta-final-copy { position: relative; z-index: 2; }
.cta-final-copy h2 { margin: 0 auto; color: #fff; max-width: 16ch; }
.cta-final-copy p { margin: 18px auto 0; max-width: 52ch; color: #c8d4dc; }
.cta-final-copy .intro-actions { justify-content: center; margin-top: 26px; }
.cta-final-copy .button.secondary { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.cta-final-copy .button.secondary:hover { background: rgba(255, 255, 255, 0.16); }

/* ========== FOOTER ========== */
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 56px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-brand .brand-logo { width: 26px; height: 26px; }
.footer-brand strong { font-size: 16px; }
.footer-brand span { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 680; }
.footer-links a:hover { color: var(--accent); }
.site-footer small { color: var(--muted); }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-rail { grid-template-columns: 1fr; }
  .hero3d { height: 200vh; }
  .chip { display: none; }
  .wire-cube { opacity: 0.5; }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .architecture-cards { grid-template-columns: 1fr; }
  .tagline-card { display: none; }
  .h1-sub { font-size: clamp(30px, 9vw, 44px); }
}

/* ========== Reduced motion / no-3d fallback ========== */
@media (prefers-reduced-motion: reduce) {
  .hero3d { height: auto; }
  .hero3d-pin { position: relative; height: auto; padding: 90px 0 60px; perspective: none; }
  .stage { display: none; }
  .hero-copy { transform: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tilt { transform: none; }
  .scroll-hint, .tagline-card { display: none; }
  .arch-object, .cta-final-object { transition: none; }
}

body.no-3d .hero3d { height: auto; }
body.no-3d .hero3d-pin { position: relative; height: auto; padding: 90px 0 60px; perspective: none; }
body.no-3d .stage { display: none; }
body.no-3d .hero-copy { transform: none; opacity: 1; }
body.no-3d .reveal { opacity: 1; transform: none; }

/* ======================================================================
   Server corridor polish: realistic background, readable content, no overlap
   ====================================================================== */

html {
  background: #e8f0f6 !important;
}

body,
body.site-3d {
  background: linear-gradient(180deg, rgba(232, 240, 246, 0.96) 0%, rgba(244, 248, 251, 0.94) 48%, rgba(229, 238, 245, 0.96) 100%) !important;
  color: #0d141c;
}

h1,
h2,
h3,
.h1-brand,
.h1-sub,
.display {
  letter-spacing: 0;
}

.datacenter {
  background: #dbe6ee;
}

.dc-scene {
  transform:
    translate3d(calc(var(--depth-x, 0) * -8px), calc(var(--p, 0) * -34px), 0)
    scale(calc(1.03 + var(--p, 0) * 0.18 + var(--hero-p, 0) * 0.12));
  transform-origin: 50% 46%;
  will-change: transform;
}

.dc-scene::before {
  content: "";
  position: absolute;
  inset: -8vh -8vw;
  background:
    linear-gradient(90deg, rgba(231, 240, 247, 0.2), rgba(246, 250, 253, 0.42) 44%, rgba(246, 250, 253, 0.42) 56%, rgba(231, 240, 247, 0.2)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  filter: saturate(1.05) contrast(1.04);
}

.dc-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 34% at 50% 44%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18) 46%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(90deg, rgba(7, 14, 24, 0.22), rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 78%, rgba(7, 14, 24, 0.22)),
    linear-gradient(180deg, rgba(232, 240, 246, 0.72), rgba(232, 240, 246, 0.04) 24%, rgba(232, 240, 246, 0.08) 74%, rgba(232, 240, 246, 0.82));
}

.dc-floor,
.dc-ceil,
.dc-side,
.dc-aisle,
.dc-core,
.rack {
  display: none !important;
}

.dc-haze {
  background:
    radial-gradient(48% 34% at 50% 36%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(232, 240, 246, 0.46) 0%, rgba(232, 240, 246, 0.08) 28%, rgba(232, 240, 246, 0.1) 62%, rgba(232, 240, 246, 0.76) 100%);
}

.server-portal {
  opacity: clamp(0, calc(1 - var(--hero-p, 0) * 1.65), 0.78);
}

.sp-frame {
  width: min(72vw, 900px);
  height: min(66vh, 560px);
  border-color: rgba(8, 14, 22, 0.72);
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.94), rgba(34, 48, 61, 0.78) 48%, rgba(8, 14, 22, 0.94)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.5), 0 58px 120px rgba(12, 18, 30, 0.32);
}

.sp-aperture {
  width: 36%;
  height: 36%;
  opacity: 0.78;
}

.sp-tag {
  display: none;
}

.stage,
.chip,
.route-line {
  display: none;
}

.hero3d {
  height: 150vh;
}

.hero-copy {
  max-width: 900px;
  width: min(900px, calc(100vw - 36px));
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(207, 220, 229, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 252, 0.91));
  box-shadow: 0 28px 90px rgba(10, 18, 30, 0.22);
}

.h1-brand {
  text-shadow: none;
}

.h1-sub,
.hero-copy .lede {
  color: #172332;
}

.hero-copy .lede {
  font-weight: 560;
}

.intro-badges span,
.hero-copy .secondary {
  border: 1px solid #cfdce5;
  background: rgba(255, 255, 255, 0.94);
  color: #203040;
  box-shadow: 0 10px 24px rgba(15, 27, 38, 0.08);
}

.scroll-hint {
  color: #263442;
}

.tagline-card {
  background: rgba(255, 255, 255, 0.94);
}

.intro3d {
  z-index: 1;
  padding-top: clamp(110px, 15vh, 180px);
}

.intro3d-inner {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(207, 220, 229, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(16, 28, 42, 0.14);
}

.intro-lede {
  color: #344353;
}

.story-rail {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
}

.story-card {
  min-height: 240px;
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(16, 28, 42, 0.13);
}

.section {
  position: relative;
  z-index: 1;
  background: rgba(249, 252, 253, 0.96) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(217, 227, 231, 0.6);
}

.section:nth-of-type(odd) {
  background: rgba(241, 247, 250, 0.96) !important;
}

.section-head {
  z-index: 2;
}

.section-head::after {
  width: min(110%, 980px);
  height: 150%;
  background: radial-gradient(58% 56% at 50% 50%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0) 78%);
}

.section-head h2,
.display {
  color: #0b1118;
  text-wrap: balance;
}

.section-head p,
.feature-card p,
.role-grid article p,
.coverage-grid article p,
.install-grid article p,
.pricing-grid article p,
.resource-grid a p,
.faq-list p {
  color: #344353;
}

.dashboard-shot {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(45, 108, 223, 0.2), rgba(45, 108, 223, 0) 42%),
    linear-gradient(160deg, #121a24, #1c2b39 68%, #0e1722) !important;
  color: #ffffff;
  border-color: #293f56;
}

.shot-grid section,
.policy-lane div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.shot-grid span,
.policy-lane span,
.shot-grid small {
  color: #d8e5ed;
}

.policy-lane em {
  background: rgba(88, 241, 223, 0.2);
  color: #cafff7;
}

.feature-card,
.story-card,
.role-grid article,
.coverage-grid article,
.resource-grid a,
.install-grid article,
.architecture-cards article,
.faq-list article,
.pricing-grid article,
.proof-band > div,
.checkout-form,
.lead-form,
.access-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: #cfdce5;
  box-shadow: 0 18px 56px rgba(16, 28, 42, 0.11);
}

.platform-image,
.request-image {
  min-height: clamp(380px, 42vw, 520px);
  border: 1px solid #c5d4dd;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 21, 31, 0.08), rgba(13, 21, 31, 0.14)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(16, 28, 42, 0.16);
}

.platform-image img,
.request-image img {
  object-position: center;
}

.platform-image figcaption,
.request-image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(10, 16, 24, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.section.integration-section {
  background:
    linear-gradient(90deg, rgba(12, 18, 27, 0.98), rgba(24, 36, 49, 0.94)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat !important;
}

.section.integration-section .section-head::after {
  background: radial-gradient(54% 58% at 50% 50%, rgba(18, 26, 36, 0.92), rgba(18, 26, 36, 0.66) 54%, rgba(18, 26, 36, 0) 78%);
}

.section.integration-section .section-head h2 {
  color: #ffffff;
}

.section.integration-section .section-head p {
  color: #dce8ef;
}

.integration-strip span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-final {
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.94), rgba(15, 28, 42, 0.88)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(10, 18, 30, 0.22);
}

.cta-final-object {
  top: 28%;
  opacity: 0.18;
}

.cta-final-copy h2,
.cta-final-copy p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.site-footer {
  background: rgba(232, 240, 246, 0.92);
}

/* Balanced purchase and installation sections */
.checkout-layout,
.request-layout {
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: stretch;
}

.checkout-form,
.lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 2.6vw, 32px);
}

.checkout-form label,
.lead-form label {
  min-width: 0;
}

.checkout-visual,
.request-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid #c5d4dd;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 21, 31, 0.08), rgba(13, 21, 31, 0.14)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(16, 28, 42, 0.16);
}

.checkout-visual[hidden] {
  display: none;
}

.checkout-visual img,
.request-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.checkout-visual figcaption,
.request-image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(10, 16, 24, 0.8);
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.access-card {
  min-height: 100%;
}

@media (max-width: 900px) {
  .hero3d {
    height: auto;
  }

  .hero3d-pin {
    position: relative;
    height: auto;
    min-height: 760px;
    padding: 110px 18px 80px;
  }

  .story-rail {
    grid-template-columns: 1fr;
    width: min(560px, calc(100% - 28px));
  }

  .story-card {
    min-height: auto;
  }

  .checkout-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .checkout-visual,
  .request-image {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    padding: 26px 16px;
  }

  .h1-brand {
    font-size: clamp(50px, 18vw, 86px);
  }

  .h1-sub {
    font-size: clamp(20px, 7vw, 34px);
  }

  .intro3d-inner {
    padding: 22px 16px;
  }

  .display {
    font-size: clamp(32px, 10vw, 46px);
  }

  .checkout-form,
  .lead-form,
  .payment-row {
    grid-template-columns: 1fr;
  }
}

/* High-contrast footer redesign */
.site-footer {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(28px, 5vw, 72px) auto clamp(22px, 4vw, 48px);
  padding: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(126, 158, 182, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(72% 92% at 12% 0%, rgba(45, 108, 223, 0.26), transparent 58%),
    radial-gradient(58% 72% at 95% 12%, rgba(0, 169, 157, 0.22), transparent 56%),
    linear-gradient(160deg, rgba(8, 14, 22, 0.98), rgba(16, 28, 42, 0.96) 56%, rgba(9, 18, 30, 0.98));
  box-shadow: 0 28px 90px rgba(8, 14, 22, 0.28);
  color: #eef7fb;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(120, 240, 223, 0.18), rgba(45, 108, 223, 0.1), rgba(240, 93, 79, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.72;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.75fr) minmax(190px, 0.75fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 44px);
}

.footer-brand-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.footer-brand .brand-logo {
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: #a9d8ff;
  font-size: 12px;
  font-weight: 760;
}

.footer-brand-panel p {
  max-width: 52ch;
  color: #d7e8f1;
  font-size: 15px;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(157, 211, 255, 0.24);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6fbff;
  font-size: 12px;
  font-weight: 780;
}

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

.footer-column strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: #d7e8f1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #78f0df;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(157, 211, 255, 0.18);
  padding: 16px clamp(24px, 4vw, 44px);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom small,
.footer-bottom span {
  color: #c4d7e2;
  font-size: 12px;
  line-height: 1.45;
}

.footer-bottom span {
  max-width: 58ch;
  text-align: right;
}

@media (max-width: 820px) {
  .site-footer {
    width: calc(100% - 24px);
  }

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

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-bottom span {
    text-align: left;
  }
}

/* Final CTA readability override */
.section.cta-final {
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 48vw, 620px);
  padding: clamp(72px, 8vw, 118px) max(18px, calc((100vw - var(--max)) / 2)) !important;
  border: 1px solid rgba(157, 183, 199, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.88), rgba(8, 17, 27, 0.74) 48%, rgba(5, 10, 16, 0.9)),
    radial-gradient(60% 72% at 50% 38%, rgba(45, 108, 223, 0.18), transparent 62%),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat !important;
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(8, 14, 22, 0.24);
}

.section.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(44% 52% at 50% 50%, rgba(121, 247, 231, 0.12), transparent 70%);
}

.section.cta-final::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.section.cta-final .cta-final-object {
  top: 50%;
  opacity: 0.2;
  filter: blur(0.2px) drop-shadow(0 34px 44px rgba(0, 0, 0, 0.36));
}

.section.cta-final .cta-final-copy {
  width: min(760px, 100%);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(202, 224, 238, 0.22);
  border-radius: 8px;
  background: rgba(5, 12, 19, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.section.cta-final .cta-final-copy h2 {
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.98;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.section.cta-final .cta-final-copy p {
  max-width: 58ch;
  color: #e8f2f8;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.section.cta-final .intro-actions {
  gap: 12px;
}

.section.cta-final .button.primary {
  background: #2d6cdf;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(45, 108, 223, 0.34);
}

.section.cta-final .button.secondary {
  border-color: rgba(202, 224, 238, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section.cta-final .button.secondary:hover {
  border-color: rgba(121, 247, 231, 0.52);
  background: rgba(121, 247, 231, 0.16);
}

@media (max-width: 720px) {
  .section.cta-final {
    width: calc(100% - 24px);
    min-height: 520px;
    margin: 42px auto;
    padding: 46px 18px !important;
  }

  .section.cta-final::after {
    inset: 10px;
  }

  .section.cta-final .cta-final-copy {
    padding: 24px 18px;
  }

  .section.cta-final .intro-actions {
    align-items: stretch;
  }
}

/* ===================== Legal: consent + Terms/Privacy pages ===================== */
.legal-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #2b3a47;
  cursor: pointer;
}
.legal-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.legal-consent span { line-height: 1.4; }
.legal-links {
  grid-column: 1 / -1;
  margin-top: -4px;
  font-size: 12.5px;
}
.legal-links a { color: var(--accent-strong); font-weight: 700; }

.trial-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.1);
  color: #164e2d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-column[aria-label="Legal"] a { display: block; }

/* Standalone Terms / Privacy document pages */
body.legal-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--ink);
  min-height: 100vh;
}
.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 8px;
  border-bottom: 1px solid var(--line);
}
.legal-top .brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.legal-top .brand strong { font-size: 17px; }
.legal-langs { display: flex; flex-wrap: wrap; gap: 7px; font-size: 11px; font-weight: 700; }
.legal-langs a { color: var(--muted); text-decoration: none; }
.legal-langs a:hover { color: var(--accent); }
.legal-langs strong { color: var(--accent); }
.legal-doc {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 70px;
}
.legal-doc h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; margin: 14px 0 6px; }
.legal-doc h2 { font-size: clamp(19px, 2.4vw, 24px); margin: 30px 0 8px; color: #0e1620; }
.legal-doc h3 { font-size: 16px; margin: 18px 0 6px; }
.legal-doc p { margin: 0 0 12px; color: #34414e; line-height: 1.6; }
.legal-doc ul { margin: 0 0 14px; padding-left: 22px; }
.legal-doc li { margin: 0 0 7px; color: #34414e; line-height: 1.55; }
.legal-doc a { color: var(--accent-strong); }
.legal-doc strong { color: #15202b; }
.legal-doc hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 6px 0 18px; font-size: 13.5px; }
.legal-doc th, .legal-doc td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.legal-doc th { background: var(--panel-soft); }
.legal-doc .legal-em { color: var(--muted); font-size: 13px; }
.legal-notice {
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1f55b5;
  margin-bottom: 18px;
}
.legal-foot { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; }
[dir="rtl"] .legal-doc, [dir="rtl"] .legal-top { text-align: right; }
[dir="rtl"] .legal-doc ul { padding-left: 0; padding-right: 22px; }

.legal-consent-group { grid-column: 1 / -1; display: grid; gap: 9px; }
.legal-consent-group .legal-consent { grid-column: auto; }
.legal-consent-group .legal-links { grid-column: auto; margin-top: 2px; }

/* ===================== Armory-inspired dark public website ===================== */
html {
  background: #060606 !important;
}

body:not(.legal-page) {
  --bg: #060606;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --charcoal: #ffffff;
  --charcoal-soft: rgba(255, 255, 255, 0.78);
  --accent: #7cf8e7;
  --accent-strong: #ffffff;
  --teal: #7cf8e7;
  --coral: #ff7b68;
  --gold: #f6c36a;
  --shadow: none;
  --shadow-lg: 0 34px 110px rgba(0, 0, 0, 0.52);
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.84), rgba(6, 6, 6, 0.94) 42%, rgba(6, 6, 6, 0.98)),
    url("/site/assets/tokentally-server-corridor.png") center top / cover fixed no-repeat !important;
  color: #ffffff;
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:not(.legal-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 50% 0 / min(7.6vw, 96px) 100%,
    radial-gradient(70% 52% at 50% 0%, rgba(124, 248, 231, 0.16), transparent 62%),
    radial-gradient(40% 32% at 82% 18%, rgba(45, 108, 223, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.84));
}

body:not(.legal-page)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 72px, 72px 100%;
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.35) 56%, transparent);
}

body:not(.legal-page) main,
body:not(.legal-page) .site-topbar,
body:not(.legal-page) .site-footer {
  position: relative;
  z-index: 2;
}

body:not(.legal-page) .datacenter {
  opacity: 0.48;
  filter: saturate(0.72) contrast(1.24) brightness(0.66);
  mix-blend-mode: screen;
}

body:not(.legal-page) .dc-scene::before {
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.82), rgba(6, 6, 6, 0.18) 46%, rgba(6, 6, 6, 0.82));
}

body:not(.legal-page) .dc-haze {
  background:
    radial-gradient(56% 46% at 50% 0%, rgba(124, 248, 231, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.2), rgba(6, 6, 6, 0.86));
}

body:not(.legal-page) .server-portal {
  opacity: 0.62;
  mix-blend-mode: screen;
}

body:not(.legal-page) .site-topbar {
  top: 16px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

body:not(.legal-page) .site-topbar::after {
  opacity: 0.32;
  background: linear-gradient(90deg, transparent, rgba(124, 248, 231, 0.32), transparent);
}

body:not(.legal-page) .brand,
body:not(.legal-page) .site-nav a,
body:not(.legal-page) .top-actions a,
body:not(.legal-page) .language-switcher,
body:not(.legal-page) .site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

body:not(.legal-page) .brand-logo {
  width: 36px;
  height: 36px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

body:not(.legal-page) .brand strong,
body:not(.legal-page) .footer-brand strong {
  color: #ffffff;
}

body:not(.legal-page) .brand span,
body:not(.legal-page) .footer-brand span {
  color: rgba(124, 248, 231, 0.78);
}

body:not(.legal-page) .site-nav a,
body:not(.legal-page) .top-actions a {
  min-height: 38px;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
}

body:not(.legal-page) .site-nav a:hover,
body:not(.legal-page) .top-actions a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body:not(.legal-page) .top-actions a {
  border-color: rgba(255, 255, 255, 0.13);
}

body:not(.legal-page) .top-actions .primary-link,
body:not(.legal-page) .button.primary,
body:not(.legal-page) button,
body:not(.legal-page) .pricing-grid button {
  border-color: rgba(124, 248, 231, 0.72);
  background: #ffffff;
  color: #060606;
  box-shadow: 0 16px 52px rgba(124, 248, 231, 0.18);
}

body:not(.legal-page) .button.secondary,
body:not(.legal-page) .top-actions a:not(.primary-link) {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body:not(.legal-page) .button:hover,
body:not(.legal-page) button:hover,
body:not(.legal-page) .top-actions .primary-link:hover {
  border-color: #ffffff;
  background: #7cf8e7;
  color: #060606;
}

body:not(.legal-page) .language-switcher select {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body:not(.legal-page) .language-switcher option {
  background: #0a0a0a;
  color: #ffffff;
}

body:not(.legal-page) .hero3d {
  min-height: 108vh;
  background:
    radial-gradient(48% 44% at 50% 28%, rgba(255, 255, 255, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.04), rgba(6, 6, 6, 0.9));
}

body:not(.legal-page) .hero3d-pin {
  padding-top: clamp(108px, 11vw, 150px);
  padding-bottom: clamp(68px, 8vh, 96px);
}

body:not(.legal-page) .hero-copy {
  box-sizing: border-box;
  width: min(900px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  padding: clamp(24px, 3vw, 34px) clamp(18px, 3vw, 32px) clamp(30px, 3.6vw, 40px);
  background: transparent;
  text-align: center;
  overflow: hidden;
  margin-bottom: clamp(48px, 7vh, 80px);
}

body:not(.legal-page) .hero-copy::before,
body:not(.legal-page) .hero-copy::after {
  display: none;
}

body:not(.legal-page) .eyebrow {
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(124, 248, 231, 0.9);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

body:not(.legal-page) .h1-brand,
body:not(.legal-page) .h1-sub,
body:not(.legal-page) h1,
body:not(.legal-page) h2 {
  color: #ffffff;
  font-family: Impact, "Arial Black", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.legal-page) .h1-brand {
  max-width: 100%;
  font-size: clamp(52px, 9.6vw, 112px);
  line-height: 0.9;
  overflow-wrap: normal;
  white-space: nowrap;
  text-shadow: 0 24px 96px rgba(0, 0, 0, 0.82);
}

body:not(.legal-page) .hero-copy h1 {
  max-width: 100%;
}

body:not(.legal-page) .h1-sub {
  max-width: 720px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.08;
  text-shadow: 0 18px 74px rgba(0, 0, 0, 0.82);
}

body:not(.legal-page) .lede,
body:not(.legal-page) .intro-lede,
body:not(.legal-page) .section-head p,
body:not(.legal-page) .feature-card p,
body:not(.legal-page) .feature-list article p,
body:not(.legal-page) .story-card p,
body:not(.legal-page) .role-grid article p,
body:not(.legal-page) .coverage-grid article p,
body:not(.legal-page) .install-grid article p,
body:not(.legal-page) .pricing-grid article p,
body:not(.legal-page) .resource-grid a p,
body:not(.legal-page) .faq-list p,
body:not(.legal-page) .topic-card p,
body:not(.legal-page) .answer-card p,
body:not(.legal-page) .content-section p,
body:not(.legal-page) .footer-brand-panel p,
body:not(.legal-page) .legal-consent,
body:not(.legal-page) label {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.legal-page) .lede,
body:not(.legal-page) .intro-lede {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.74);
}

body:not(.legal-page) .intro-badges {
  justify-content: center;
}

body:not(.legal-page) .intro-badges span,
body:not(.legal-page) .integration-strip span,
body:not(.legal-page) .footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
}

body:not(.legal-page) .intro-actions {
  justify-content: center;
  margin-bottom: 0;
}

body:not(.legal-page) .scroll-hint {
  display: block;
  bottom: clamp(14px, 3vh, 30px);
  color: rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

body:not(.legal-page) .tagline-card {
  display: none;
}

body:not(.legal-page) .tagline-card span {
  color: rgba(255, 255, 255, 0.7);
}

body:not(.legal-page) .stage .chip,
body:not(.legal-page) .stage-layer.chip {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(6, 6, 6, 0.74);
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

body:not(.legal-page) .chip span {
  color: rgba(124, 248, 231, 0.82);
}

body:not(.legal-page) .intro3d {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding: clamp(44px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
}

body:not(.legal-page) .intro3d-inner {
  width: min(900px, 100%);
  margin: 0;
  padding: 0;
  text-align: left;
}

body:not(.legal-page) .display {
  max-width: 840px;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.9;
}

body:not(.legal-page) .story-rail {
  width: min(var(--max), 100%);
  margin: clamp(28px, 5vw, 52px) auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.legal-page) .section {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(18px, 3vw, 34px) auto;
  padding: clamp(38px, 6vw, 76px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body:not(.legal-page) .section-head {
  max-width: 920px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

body:not(.legal-page) .section-head::after {
  display: none;
}

body:not(.legal-page) .section-head h2,
body:not(.legal-page) .article-hero h1,
body:not(.legal-page) .topic-hero h1,
body:not(.legal-page) .content-section h2 {
  max-width: 940px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.94;
}

body:not(.legal-page) .feature-grid,
body:not(.legal-page) .role-grid,
body:not(.legal-page) .coverage-grid,
body:not(.legal-page) .install-grid,
body:not(.legal-page) .pricing-grid,
body:not(.legal-page) .resource-grid,
body:not(.legal-page) .faq-list,
body:not(.legal-page) .two-column {
  gap: 14px;
}

body:not(.legal-page) .feature-card,
body:not(.legal-page) .feature-list article,
body:not(.legal-page) .story-card,
body:not(.legal-page) .role-grid article,
body:not(.legal-page) .coverage-grid article,
body:not(.legal-page) .install-grid article,
body:not(.legal-page) .architecture-cards article,
body:not(.legal-page) .faq-list article,
body:not(.legal-page) .pricing-grid article,
body:not(.legal-page) .resource-grid a,
body:not(.legal-page) .topic-card,
body:not(.legal-page) .answer-card,
body:not(.legal-page) .proof-band > div,
body:not(.legal-page) .checkout-form,
body:not(.legal-page) .lead-form,
body:not(.legal-page) .access-card,
body:not(.legal-page) .dashboard-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)) !important;
  color: #ffffff;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body:not(.legal-page) .feature-card::before,
body:not(.legal-page) .feature-list article::before,
body:not(.legal-page) .story-card::before,
body:not(.legal-page) .role-grid article::before,
body:not(.legal-page) .coverage-grid article::before,
body:not(.legal-page) .install-grid article::before,
body:not(.legal-page) .pricing-grid article::before,
body:not(.legal-page) .resource-grid a::before,
body:not(.legal-page) .topic-card::before,
body:not(.legal-page) .answer-card::before,
body:not(.legal-page) .dashboard-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(124, 248, 231, 0.16), transparent 34%, rgba(45, 108, 223, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

body:not(.legal-page) .feature-card:hover::before,
body:not(.legal-page) .feature-list article:hover::before,
body:not(.legal-page) .story-card:hover::before,
body:not(.legal-page) .role-grid article:hover::before,
body:not(.legal-page) .coverage-grid article:hover::before,
body:not(.legal-page) .install-grid article:hover::before,
body:not(.legal-page) .pricing-grid article:hover::before,
body:not(.legal-page) .resource-grid a:hover::before,
body:not(.legal-page) .topic-card:hover::before {
  opacity: 1;
}

body:not(.legal-page) .feature-card h3,
body:not(.legal-page) .feature-list h3,
body:not(.legal-page) .story-card strong,
body:not(.legal-page) .role-grid h3,
body:not(.legal-page) .coverage-grid strong,
body:not(.legal-page) .install-grid h3,
body:not(.legal-page) .pricing-grid h3,
body:not(.legal-page) .resource-grid strong,
body:not(.legal-page) .faq-list h3,
body:not(.legal-page) .topic-card h3,
body:not(.legal-page) .answer-card strong {
  color: #ffffff;
}

body:not(.legal-page) .story-card span,
body:not(.legal-page) .role-grid span,
body:not(.legal-page) .coverage-grid span,
body:not(.legal-page) .install-grid span,
body:not(.legal-page) .resource-grid span {
  color: rgba(124, 248, 231, 0.84);
}

body:not(.legal-page) .proof-band {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(18px, 3vw, 42px) auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
}

body:not(.legal-page) .proof-band strong {
  color: #ffffff;
  font-family: Impact, "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
}

body:not(.legal-page) .proof-band span {
  color: rgba(255, 255, 255, 0.68);
}

body:not(.legal-page) .platform-showcase,
body:not(.legal-page) .checkout-layout,
body:not(.legal-page) .request-layout {
  gap: 14px;
}

body:not(.legal-page) .dashboard-shot {
  padding: clamp(20px, 2.8vw, 32px);
}

body:not(.legal-page) .shot-grid section,
body:not(.legal-page) .policy-lane div {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
}

body:not(.legal-page) .shot-grid span,
body:not(.legal-page) .shot-grid small,
body:not(.legal-page) .policy-lane span {
  color: rgba(255, 255, 255, 0.68);
}

body:not(.legal-page) .policy-lane em {
  background: rgba(124, 248, 231, 0.12);
  color: #7cf8e7;
}

body:not(.legal-page) .platform-image,
body:not(.legal-page) .checkout-visual,
body:not(.legal-page) .request-image {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.32)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

body:not(.legal-page) .platform-image figcaption,
body:not(.legal-page) .checkout-visual figcaption,
body:not(.legal-page) .request-image figcaption {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 6, 6, 0.72);
  color: #ffffff;
}

body:not(.legal-page) .architecture-section {
  overflow: hidden;
}

body:not(.legal-page) .architecture-stage {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(40% 58% at 50% 42%, rgba(124, 248, 231, 0.12), transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 50% 0 / 72px 100%,
    rgba(255, 255, 255, 0.035);
}

body:not(.legal-page) .integration-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.62), rgba(6, 6, 6, 0.94)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat !important;
}

body:not(.legal-page) input,
body:not(.legal-page) select,
body:not(.legal-page) textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

body:not(.legal-page) select option {
  background: #0a0a0a;
  color: #ffffff;
}

body:not(.legal-page) legend,
body:not(.legal-page) code {
  color: #ffffff;
}

body:not(.legal-page) input::placeholder,
body:not(.legal-page) textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

body:not(.legal-page) fieldset {
  border-color: rgba(255, 255, 255, 0.16);
}

body:not(.legal-page) .payment-note,
body:not(.legal-page) .locked-note,
body:not(.legal-page) .status,
body:not(.legal-page) .helper-text {
  color: rgba(255, 255, 255, 0.68);
}

body:not(.legal-page) .locked-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

body:not(.legal-page) .legal-consent input[type="checkbox"] {
  accent-color: #7cf8e7;
}

body:not(.legal-page) .legal-links a {
  color: #7cf8e7;
}

body:not(.legal-page) .section.cta-final {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.92), rgba(6, 6, 6, 0.54) 48%, rgba(6, 6, 6, 0.92)),
    radial-gradient(56% 72% at 50% 38%, rgba(124, 248, 231, 0.15), transparent 68%),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat !important;
}

body:not(.legal-page) .section.cta-final .cta-final-copy {
  background: rgba(6, 6, 6, 0.74);
}

body.article-page {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.88), rgba(6, 6, 6, 0.98)),
    url("/site/assets/tokentally-server-corridor.png") center top / cover fixed no-repeat !important;
}

body:not(.legal-page) .article-page main,
body:not(.legal-page).article-page main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 130px) 0 74px;
}

body:not(.legal-page) .article-hero,
body:not(.legal-page) .topic-hero,
body:not(.legal-page) .content-section {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(6, 6, 6, 0.42) !important;
  color: #ffffff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

body:not(.legal-page) .article-hero,
body:not(.legal-page) .topic-hero {
  min-height: auto;
  margin-top: 0;
  padding: clamp(38px, 6vw, 72px);
}

body:not(.legal-page) .content-section {
  margin-top: 14px;
  padding: clamp(26px, 4vw, 46px);
}

body:not(.legal-page) .breadcrumb {
  color: rgba(255, 255, 255, 0.62);
}

body:not(.legal-page) .breadcrumb a,
body:not(.legal-page) .content-section a {
  color: #7cf8e7;
}

body:not(.legal-page) .number-list {
  color: rgba(255, 255, 255, 0.78);
}

body:not(.legal-page) .number-list li::marker {
  color: #7cf8e7;
}

body:not(.legal-page) .site-footer {
  margin-top: clamp(40px, 6vw, 84px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(6, 6, 6, 0.72);
  color: #ffffff;
}

body:not(.legal-page) .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.18);
}

body:not(.legal-page) .footer-bottom small,
body:not(.legal-page) .footer-bottom span {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 920px) {
  body:not(.legal-page) .site-topbar {
    top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  body:not(.legal-page) .story-rail,
  body:not(.legal-page) .proof-band {
    grid-template-columns: 1fr;
  }

  body:not(.legal-page) .section,
  body:not(.legal-page) .proof-band {
    width: calc(100% - 24px);
  }

  body:not(.legal-page) .article-page main,
  body:not(.legal-page).article-page main {
    width: calc(100% - 24px);
    padding-top: 92px;
  }
}

@media (max-width: 620px) {
  html,
  body:not(.legal-page) {
    max-width: 100%;
    overflow-x: hidden;
  }

  body:not(.legal-page) .hero3d {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  body:not(.legal-page) .hero3d-pin {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    overflow: hidden;
    justify-items: center;
  }

  body:not(.legal-page) .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 24px 12px 30px;
    border-radius: 26px;
  }

  body:not(.legal-page) .hero-copy .eyebrow {
    min-height: 0;
    white-space: normal;
    justify-content: center;
    padding: 8px 10px;
    line-height: 1.25;
    text-align: center;
  }

  body:not(.legal-page) .h1-brand {
    font-size: clamp(38px, 13.4vw, 54px);
  }

  body:not(.legal-page) .h1-sub {
    font-size: clamp(24px, 7.4vw, 34px);
    line-height: 1.08;
  }

  body:not(.legal-page) .section-head h2,
  body:not(.legal-page) .article-hero h1,
  body:not(.legal-page) .topic-hero h1,
  body:not(.legal-page) .content-section h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  body:not(.legal-page) .article-hero,
  body:not(.legal-page) .topic-hero,
  body:not(.legal-page) .content-section {
    padding: 24px 18px;
  }
}

/* Contrast and full-bleed layout corrections from visual review */
body:not(.legal-page) .site-topbar {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 82px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  background: rgba(5, 8, 10, 0.9);
}

body:not(.legal-page) .site-footer {
  width: 100%;
  max-width: none;
  margin: clamp(44px, 6vw, 86px) 0 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 27, 0.96), rgba(7, 11, 14, 0.92) 54%, rgba(16, 12, 12, 0.96)),
    url("/site/assets/tokentally-server-corridor.png") center / cover no-repeat;
}

body:not(.legal-page) .footer-main,
body:not(.legal-page) .footer-bottom {
  width: min(1320px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

body:not(.legal-page) .intro3d-inner,
body:not(.legal-page) .checkout-form,
body:not(.legal-page) .lead-form,
body:not(.legal-page) .access-card,
body:not(.legal-page) .payment-fields,
body:not(.legal-page) fieldset.payment-fields {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.86), rgba(8, 15, 20, 0.78)) !important;
  color: #ffffff !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

body:not(.legal-page) .intro3d-inner {
  padding: clamp(28px, 4.5vw, 54px);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body:not(.legal-page) .payment-fields {
  padding: clamp(18px, 2.4vw, 28px);
}

body:not(.legal-page) .payment-fields legend {
  padding: 0 8px;
  color: #ffffff !important;
  background: transparent !important;
}

body:not(.legal-page) .payment-fields .payment-note,
body:not(.legal-page) .payment-fields label,
body:not(.legal-page) .payment-fields p,
body:not(.legal-page) .legal-consent,
body:not(.legal-page) .trial-note,
body:not(.legal-page) .checkout-form label,
body:not(.legal-page) .lead-form label {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
}

body:not(.legal-page) .trial-note {
  border-color: rgba(34, 197, 94, 0.36);
  background: rgba(34, 197, 94, 0.14);
}

body:not(.legal-page) .payment-fields input,
body:not(.legal-page) .checkout-form input,
body:not(.legal-page) .checkout-form select,
body:not(.legal-page) .lead-form input,
body:not(.legal-page) .lead-form select,
body:not(.legal-page) .lead-form textarea {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

body:not(.legal-page) .payment-fields input::placeholder,
body:not(.legal-page) .checkout-form input::placeholder,
body:not(.legal-page) .lead-form input::placeholder,
body:not(.legal-page) .lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58) !important;
}

body:not(.legal-page) .intro3d-inner .display,
body:not(.legal-page) .intro3d-inner h2,
body:not(.legal-page) .intro3d-inner p,
body:not(.legal-page) .section-head h2,
body:not(.legal-page) .section-head p {
  color: #ffffff !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.66);
}

body:not(.legal-page) .intro3d-inner .intro-lede,
body:not(.legal-page) .section-head p {
  color: rgba(255, 255, 255, 0.88) !important;
}

body:not(.legal-page) .story-card,
body:not(.legal-page) .feature-card,
body:not(.legal-page) .role-grid article,
body:not(.legal-page) .coverage-grid article,
body:not(.legal-page) .install-grid article,
body:not(.legal-page) .locked-note,
body:not(.legal-page) .pricing-grid article,
body:not(.legal-page) .resource-grid a,
body:not(.legal-page) .faq-list article,
body:not(.legal-page) .feature-list article,
body:not(.legal-page) .topic-card,
body:not(.legal-page) .answer-card {
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.84), rgba(8, 15, 20, 0.72)) !important;
}

body:not(.legal-page) .locked-note {
  border-color: rgba(124, 248, 231, 0.28) !important;
  color: #ffffff !important;
  box-shadow:
    0 22px 74px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body:not(.legal-page) .locked-note strong {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

body:not(.legal-page) .locked-note span {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.68);
}

body:not(.legal-page) .story-card p,
body:not(.legal-page) .feature-card p,
body:not(.legal-page) .role-grid article p,
body:not(.legal-page) .coverage-grid article p,
body:not(.legal-page) .install-grid article p,
body:not(.legal-page) .locked-note span,
body:not(.legal-page) .pricing-grid article p,
body:not(.legal-page) .resource-grid a p,
body:not(.legal-page) .faq-list p,
body:not(.legal-page) .feature-list article p,
body:not(.legal-page) .topic-card p,
body:not(.legal-page) .answer-card p,
body:not(.legal-page) .content-section p {
  color: rgba(255, 255, 255, 0.88) !important;
}

body:not(.legal-page) .checkout-form button[type="submit"],
body:not(.legal-page) .lead-form button[type="submit"] {
  min-height: 52px;
  font-weight: 850;
}

.affiliate-banner {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(124, 248, 231, 0.32);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(124, 248, 231, 0.1);
  color: #ffffff;
}

.affiliate-banner[hidden] {
  display: none;
}

.affiliate-banner strong {
  color: #ffffff;
  font-size: 13px;
}

.affiliate-banner span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

body:not(.legal-page) .story-card > span {
  border: 1px solid rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(211, 255, 248, 0.96)) !important;
  color: #031619 !important;
  font-weight: 950;
  text-shadow: none !important;
  box-shadow:
    inset 0 0 0 1px rgba(3, 22, 25, 0.14),
    0 10px 26px rgba(0, 0, 0, 0.34);
}

@media (max-width: 920px) {
  body:not(.legal-page) .site-topbar {
    min-height: 74px;
    padding: 12px 18px;
  }

  body:not(.legal-page) .footer-main,
  body:not(.legal-page) .footer-bottom {
    width: calc(100% - 28px);
  }
}
/* Procedural MONOLITH background: local canvas server fly-through from skill.md */
body.monolith-ready:not(.legal-page) {
  background: #03070d !important;
}

body.monolith-ready:not(.legal-page) .datacenter {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

body.monolith-ready:not(.legal-page) .server-portal {
  display: none;
}

body.monolith-ready:not(.legal-page)::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22) 28%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.76)),
    radial-gradient(58% 46% at 50% 8%, rgba(124, 248, 231, 0.12), transparent 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.5) 72%, rgba(0, 0, 0, 0.86));
}

body.monolith-ready:not(.legal-page)::after {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(124, 248, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 248, 231, 0.028) 1px, transparent 1px);
  background-size: 100% 96px, 96px 100%;
}

body.monolith-ready:not(.legal-page) .hero3d {
  background:
    radial-gradient(54% 50% at 50% 30%, rgba(3, 7, 13, 0.12), transparent 74%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.04), rgba(3, 7, 13, 0.72));
}

body.monolith-ready:not(.legal-page) .hero-copy,
body.monolith-ready:not(.legal-page) .intro3d-inner,
body.monolith-ready:not(.legal-page) .section-head {
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.82), 0 1px 2px rgba(0, 0, 0, 0.82);
}

body.monolith-ready:not(.legal-page) .hero-copy .lede,
body.monolith-ready:not(.legal-page) .intro-lede,
body.monolith-ready:not(.legal-page) .section-head p {
  color: rgba(255, 255, 255, 0.93) !important;
}

body.monolith-ready:not(.legal-page) .eyebrow {
  border-color: rgba(124, 248, 231, 0.34);
  background: rgba(3, 7, 13, 0.5);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

body.monolith-ready:not(.legal-page) .feature-card,
body.monolith-ready:not(.legal-page) .story-card,
body.monolith-ready:not(.legal-page) .role-grid article,
body.monolith-ready:not(.legal-page) .coverage-grid article,
body.monolith-ready:not(.legal-page) .install-grid article,
body.monolith-ready:not(.legal-page) .pricing-grid article,
body.monolith-ready:not(.legal-page) .resource-grid a,
body.monolith-ready:not(.legal-page) .faq-list article,
body.monolith-ready:not(.legal-page) .checkout-form,
body.monolith-ready:not(.legal-page) .lead-form,
body.monolith-ready:not(.legal-page) .access-card {
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.9), rgba(8, 15, 20, 0.8)) !important;
  border-color: rgba(170, 214, 229, 0.2) !important;
}

.brand-credit {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  width: fit-content;
  border: 1px solid rgba(124, 248, 231, 0.28);
  border-radius: 999px;
  padding: 2px 9px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(124, 248, 231, 0.08);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

body:not(.legal-page) .footer-bottom .brand-credit {
  flex: 0 0 auto;
  color: #ffffff;
}

body:not(.legal-page) .compact-site-footer {
  width: min(340px, calc(100% - 32px));
  max-width: 340px;
  margin: clamp(30px, 5vw, 58px) auto 18px;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(124, 248, 231, 0.2);
  border-radius: 8px;
  background: rgba(5, 8, 10, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

body:not(.legal-page) .compact-site-footer::before {
  opacity: 0.24;
}

.legal-foot .brand-credit {
  margin-left: 8px;
  color: var(--accent-strong);
  background: #eef6ff;
  border-color: #cddff8;
}

[dir="rtl"] .legal-foot .brand-credit {
  margin-left: 0;
  margin-right: 8px;
}
