@font-face {
  font-family: "PantekNotoSansTC";
  src: url("assets/fonts/NotoSansTC-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg-obsidian: #070b13;
  --bg-navy: #0a111e;
  --surface: #111722;
  --surface-glass: rgba(20, 27, 39, 0.72);
  --gold: #d9b63f;
  --gold-bright: #f2ce5a;
  --cyan: #57c9e8;
  --text: #f5f6f8;
  --text-muted: #9ea6b5;
  --line: rgba(245, 246, 248, 0.13);
  --gold-line: rgba(217, 182, 63, 0.32);
  --shadow: rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(87, 201, 232, 0.13), transparent 34rem),
    radial-gradient(ellipse at 12% 26%, rgba(217, 182, 63, 0.11), transparent 30rem),
    linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-navy) 42%, #05070c 100%);
  color: var(--text);
  font-family: "PantekNotoSansTC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 72%, transparent 100%);
}

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

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

section {
  scroll-margin-top: 96px;
}

.section-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(7, 11, 19, 0.52);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

@supports (backdrop-filter: blur(16px)) {
  .site-header {
    backdrop-filter: blur(16px);
  }
}

.site-header.is-scrolled {
  background: rgba(10, 17, 30, 0.88);
  border-bottom: 1px solid rgba(245, 246, 248, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark,
.og-logo {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  background: #f5f7f1;
  box-shadow:
    0 0 0 1px rgba(255, 226, 138, 0.42),
    0 14px 34px rgba(217, 182, 63, 0.18);
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.brand-mark::after {
  content: "P";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0b4f74;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.brand-mark img,
.og-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.og-logo img {
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 780;
  line-height: 1.05;
}

.brand-product {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-link,
.login-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link {
  color: rgba(245, 246, 248, 0.74);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.login-link {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--text);
  padding: 0 16px;
  background: rgba(245, 246, 248, 0.05);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(245, 246, 248, 0.14);
  border-radius: 8px;
  background: rgba(245, 246, 248, 0.05);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(245, 246, 248, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(10, 17, 30, 0.96);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.mobile-menu-panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 10px;
  color: rgba(245, 246, 248, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: rgba(245, 246, 248, 0.08);
  color: var(--text);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(38px, 5.8vw, 76px);
  padding: clamp(28px, 4.3vw, 58px) 0 clamp(48px, 6.5vw, 88px);
}

.hero-copy {
  display: grid;
  gap: 24px;
  max-width: 660px;
}

.eyebrow {
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.45;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.1vw, 78px);
  line-height: 1.1;
  font-weight: 880;
}

h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.18;
  font-weight: 850;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 820;
}

.title-line {
  display: block;
}

.title-nowrap {
  white-space: nowrap;
}

.hero-description,
.section-copy {
  max-width: 650px;
  color: var(--text-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 470;
  line-height: 1.78;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary {
  color: #11151d;
  background: linear-gradient(180deg, #ffe68f 0%, var(--gold-bright) 28%, var(--gold) 100%);
  box-shadow:
    0 16px 44px rgba(217, 182, 63, 0.24),
    0 0 0 1px rgba(255, 236, 158, 0.28) inset;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -48% auto -48% -58%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-160%) skewX(-18deg);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transition: transform 720ms ease;
  transform: translateX(430%) skewX(-18deg);
}

.button-secondary {
  border: 1px solid rgba(245, 246, 248, 0.16);
  color: var(--text);
  background: rgba(245, 246, 248, 0.055);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  background: rgba(245, 246, 248, 0.1);
}

.cta-note {
  max-width: 540px;
  color: rgba(245, 246, 248, 0.74);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.stage-halo {
  position: absolute;
  inset: auto 2% 7%;
  height: 56%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(87, 201, 232, 0.2), transparent 46%),
    radial-gradient(ellipse at center, rgba(217, 182, 63, 0.32), rgba(217, 182, 63, 0.08) 44%, transparent 72%);
  filter: blur(10px);
  transform: perspective(780px) rotateX(63deg);
  z-index: -1;
}

.morph-stage {
  position: relative;
  width: min(100%, 600px);
  height: 520px;
}

.morph-paper,
.structured-card,
.transcript-card,
.og-transcript-card {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

.morph-paper {
  left: 0;
  top: 58px;
  width: 318px;
  min-height: 390px;
  padding: 24px;
  border: 1px solid rgba(245, 246, 248, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(220, 226, 223, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  transform: rotate(-5deg) translate3d(0, 0, 0);
  animation: heroPaperMorph 1900ms cubic-bezier(0.2, 0.82, 0.24, 1) 180ms both;
}

.paper-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(245, 246, 248, 0.22) 0 50%, rgba(7, 11, 19, 0.12) 50% 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.paper-topline,
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.paper-topline {
  margin-bottom: 22px;
}

.demo-label,
.evidence-pill,
.ready-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.demo-label {
  color: #11151d;
  background: var(--gold-bright);
}

.paper-code,
.paper-footnote {
  color: rgba(245, 246, 248, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.paper-title {
  margin-bottom: 24px;
  color: rgba(245, 246, 248, 0.86);
  font-size: 18px;
  font-weight: 820;
}

.paper-lines,
.mini-paper-lines,
.document-blur-lines {
  display: grid;
  gap: 12px;
}

.line,
.mini-paper-lines span,
.document-blur-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 246, 248, 0.18);
}

.line-long {
  width: 100%;
}

.line {
  width: 78%;
}

.line-mid {
  width: 62%;
}

.line-short {
  width: 46%;
}

.paper-stamp {
  position: absolute;
  right: 24px;
  bottom: 54px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(217, 182, 63, 0.42);
  border-radius: 50%;
  color: rgba(217, 182, 63, 0.52);
  font-size: 15px;
  font-weight: 900;
  transform: rotate(-13deg);
}

.paper-footnote {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.scan-beam {
  position: absolute;
  top: 26px;
  left: -8%;
  width: 26%;
  height: 474px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(87, 201, 232, 0.2) 38%, rgba(242, 206, 90, 0.55) 50%, rgba(87, 201, 232, 0.2) 62%, transparent 100%);
  filter: blur(0.4px);
  mix-blend-mode: screen;
  transform: translateX(-130%) skewX(-8deg);
  animation: heroScan 1900ms cubic-bezier(0.18, 0.76, 0.22, 1) 260ms both;
}

.particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px currentColor;
  opacity: 0;
  animation: heroParticle 1900ms cubic-bezier(0.2, 0.78, 0.2, 1) 260ms both;
}

.particle-field span:nth-child(3n) {
  width: 4px;
  height: 4px;
  color: var(--gold-bright);
  background: var(--gold-bright);
}

.particle-field span:nth-child(1) { left: 48px; top: 80px; --tx: 352px; --ty: 46px; }
.particle-field span:nth-child(2) { left: 104px; top: 58px; --tx: 316px; --ty: 92px; }
.particle-field span:nth-child(3) { left: 248px; top: 82px; --tx: 224px; --ty: 66px; }
.particle-field span:nth-child(4) { left: 14px; top: 154px; --tx: 402px; --ty: 12px; }
.particle-field span:nth-child(5) { left: 294px; top: 148px; --tx: 176px; --ty: 12px; }
.particle-field span:nth-child(6) { left: 48px; top: 214px; --tx: 332px; --ty: -18px; }
.particle-field span:nth-child(7) { left: 134px; top: 206px; --tx: 258px; --ty: 4px; }
.particle-field span:nth-child(8) { left: 280px; top: 230px; --tx: 194px; --ty: -42px; }
.particle-field span:nth-child(9) { left: 28px; top: 292px; --tx: 374px; --ty: -54px; }
.particle-field span:nth-child(10) { left: 190px; top: 292px; --tx: 220px; --ty: -56px; }
.particle-field span:nth-child(11) { left: 304px; top: 314px; --tx: 158px; --ty: -62px; }
.particle-field span:nth-child(12) { left: 72px; top: 390px; --tx: 348px; --ty: -98px; }
.particle-field span:nth-child(13) { left: 144px; top: 428px; --tx: 282px; --ty: -126px; }
.particle-field span:nth-child(14) { left: 246px; top: 422px; --tx: 212px; --ty: -140px; }
.particle-field span:nth-child(15) { left: 318px; top: 384px; --tx: 148px; --ty: -118px; }
.particle-field span:nth-child(16) { left: 96px; top: 128px; --tx: 296px; --ty: 102px; }
.particle-field span:nth-child(17) { left: 226px; top: 166px; --tx: 210px; --ty: 76px; }
.particle-field span:nth-child(18) { left: 34px; top: 346px; --tx: 368px; --ty: -10px; }
.particle-field span:nth-child(19) { left: 268px; top: 352px; --tx: 192px; --ty: -14px; }
.particle-field span:nth-child(20) { left: 166px; top: 104px; --tx: 254px; --ty: 146px; }
.particle-field span:nth-child(21) { left: 18px; top: 246px; --tx: 382px; --ty: 82px; }
.particle-field span:nth-child(22) { left: 310px; top: 264px; --tx: 152px; --ty: 64px; }
.particle-field span:nth-child(23) { left: 214px; top: 452px; --tx: 244px; --ty: -68px; }
.particle-field span:nth-child(24) { left: 118px; top: 342px; --tx: 294px; --ty: 36px; }

.structured-card,
.transcript-card,
.og-transcript-card {
  border: 1px solid rgba(217, 182, 63, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--surface-glass);
  box-shadow:
    0 0 0 1px rgba(87, 201, 232, 0.08) inset,
    0 32px 86px var(--shadow),
    0 0 58px rgba(87, 201, 232, 0.1);
}

.structured-card {
  right: 0;
  top: 104px;
  width: min(100%, 390px);
  padding: 24px;
  transform: translate3d(16px, 0, 0) scale(0.96);
  opacity: 0.18;
  animation: heroUiReveal 1900ms cubic-bezier(0.2, 0.82, 0.24, 1) 180ms both;
}

.evidence-pill {
  color: var(--gold-bright);
  border: 1px solid rgba(217, 182, 63, 0.35);
  background: rgba(217, 182, 63, 0.08);
}

.ready-pill,
.scanner-status {
  color: #091018;
  background: linear-gradient(180deg, #85e1f4, var(--cyan));
}

.record-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.record-list div {
  min-width: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.record-list dt {
  color: var(--text);
  font-size: 16px;
  font-weight: 840;
}

.record-list dd {
  min-width: 0;
  border: 1px solid rgba(245, 246, 248, 0.11);
  border-radius: 8px;
  padding: 11px 13px;
  color: #dfe5ee;
  background: rgba(7, 11, 19, 0.58);
  font-size: 15px;
  font-weight: 540;
  line-height: 1.35;
}

.scanner-story {
  height: 185vh;
  min-height: 1260px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 246, 248, 0.08);
  background:
    radial-gradient(ellipse at 82% 32%, rgba(87, 201, 232, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(10, 17, 30, 0) 0%, rgba(17, 23, 34, 0.44) 54%, rgba(10, 17, 30, 0) 100%);
}

.scanner-sticky {
  position: sticky;
  top: 92px;
  min-height: calc(100svh - 112px);
  display: grid;
  align-content: center;
  gap: 34px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.scanner-heading {
  max-width: 860px;
}

.scanner-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.scanner-document {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(245, 246, 248, 0.12);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(245, 246, 248, 0.045);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
}

.document-blur-lines {
  margin-top: 32px;
  filter: blur(2.4px);
  opacity: 0.58;
}

.document-blur-lines span:nth-child(2n) {
  width: 72%;
}

.document-blur-lines span:nth-child(3n) {
  width: 54%;
}

.scanner-line {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(20px + (100% - 40px) * var(--scan-progress, 1));
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold-bright), transparent);
  box-shadow:
    0 0 18px rgba(87, 201, 232, 0.68),
    0 0 34px rgba(217, 182, 63, 0.28);
}

.scanner-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.field-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(245, 246, 248, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(20, 27, 39, 0.72);
}

.field-card span,
.screen-list dt,
.screen-grid span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 760;
}

.field-card strong {
  color: var(--text);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.28;
}

.evidence-link,
.scanner-status {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.evidence-link {
  grid-column: 1 / -1;
  border: 1px solid rgba(217, 182, 63, 0.26);
  color: var(--gold-bright);
  background:
    linear-gradient(90deg, transparent, rgba(217, 182, 63, 0.12), transparent),
    rgba(217, 182, 63, 0.055);
}

.scanner-status {
  grid-column: 1 / -1;
}

.bento,
.reality-anchor,
.magnetic-cta {
  padding: clamp(72px, 9vw, 118px) 0;
}

.bento {
  border-top: 1px solid rgba(245, 246, 248, 0.08);
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(270px, 0.78fr);
  grid-template-areas:
    "large evidence"
    "large align"
    "flow flow";
  gap: 18px;
  margin-top: 34px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  display: grid;
  gap: 22px;
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    rgba(17, 23, 34, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 182, 63, 0.28);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.bento-card p {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.68;
}

.bento-card-large {
  grid-area: large;
  min-height: 516px;
}

.bento-evidence {
  grid-area: evidence;
}

.bento-align {
  grid-area: align;
}

.bento-flow {
  grid-area: flow;
  min-height: 190px;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  align-items: center;
}

.before-after {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 8px;
  background: rgba(7, 11, 19, 0.46);
}

.ba-panel {
  position: absolute;
  inset: 0;
  padding: 28px;
}

.ba-before {
  background:
    linear-gradient(135deg, rgba(245, 246, 248, 0.065), rgba(245, 246, 248, 0.018)),
    rgba(245, 246, 248, 0.03);
}

.ba-after {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at center, rgba(87, 201, 232, 0.14), transparent 70%),
    rgba(10, 17, 30, 0.92);
  clip-path: inset(0 0 0 var(--slider, 54%));
}

.mini-paper-lines {
  width: min(76%, 380px);
  margin-top: 42px;
}

.mini-paper-lines span:nth-child(2n) {
  width: 72%;
}

.mini-paper-lines span:nth-child(3n) {
  width: 52%;
}

.mini-fields {
  width: min(84%, 340px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-fields span,
.align-visual span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 201, 232, 0.2);
  border-radius: 8px;
  color: #dff8ff;
  background: rgba(87, 201, 232, 0.08);
  font-weight: 800;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider, 54%);
  z-index: 2;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(87, 201, 232, 0.5);
  transform: translateX(-1px);
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 246, 248, 0.28);
  border-radius: 50%;
  background: rgba(10, 17, 30, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.ba-range:focus-visible ~ .ba-handle::after {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.anchor-visual {
  position: relative;
  min-height: 118px;
  margin-top: auto;
}

.doc-node,
.field-node {
  position: absolute;
  top: 38px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgba(245, 246, 248, 0.16);
  background: rgba(245, 246, 248, 0.055);
}

.doc-node {
  left: 4px;
}

.doc-node::before {
  content: "";
  position: absolute;
  inset: 16px 14px;
  border-top: 2px solid rgba(217, 182, 63, 0.62);
  border-bottom: 2px solid rgba(217, 182, 63, 0.44);
}

.field-node {
  right: 4px;
  background: rgba(87, 201, 232, 0.08);
}

.field-node::before,
.field-node::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(87, 201, 232, 0.64);
}

.field-node::before {
  top: 22px;
}

.field-node::after {
  top: 42px;
}

.anchor-path {
  position: absolute;
  left: 78px;
  right: 78px;
  top: 73px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 182, 63, 0.22), rgba(87, 201, 232, 0.22));
}

.anchor-path::after {
  content: "";
  position: absolute;
  inset: -1px 0;
  transform: scaleX(0.4);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan));
  opacity: 0.42;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bento-evidence:hover .anchor-path::after {
  transform: scaleX(1);
  opacity: 0.72;
}

.align-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: end;
  margin-top: auto;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
}

.flow-steps li {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 246, 248, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(7, 11, 19, 0.42);
  font-size: 16px;
  font-weight: 820;
  text-align: center;
}

.flow-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan));
}

.reality-anchor {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 246, 248, 0.08);
  background:
    radial-gradient(ellipse at 76% 52%, rgba(217, 182, 63, 0.16), transparent 30rem),
    radial-gradient(ellipse at 38% 38%, rgba(156, 103, 76, 0.2), transparent 32rem),
    linear-gradient(180deg, rgba(8, 11, 18, 0.96), rgba(26, 21, 18, 0.72) 52%, rgba(7, 11, 19, 0.98));
}

.reality-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.reality-copy {
  max-width: 620px;
}

.device-scene {
  position: relative;
  min-height: 540px;
  display: grid;
  gap: 16px;
  place-items: center;
  isolation: isolate;
}

.ambient-panel {
  position: absolute;
  border-radius: 8px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.24;
  transform: translate3d(calc(var(--reality-shift, 0) * 1px), 0, 0);
}

.panel-one {
  width: min(72%, 520px);
  height: 150px;
  right: -3%;
  top: 8%;
  background: linear-gradient(90deg, transparent, rgba(217, 182, 63, 0.24), transparent);
  transform: translate3d(calc(var(--reality-shift, 0) * 1px), 0, 0) rotate(-10deg);
}

.panel-two {
  width: min(66%, 460px);
  height: 128px;
  left: -2%;
  bottom: 12%;
  background: linear-gradient(90deg, transparent, rgba(87, 201, 232, 0.16), transparent);
  transform: translate3d(calc(var(--reality-shift, 0) * -0.7px), 0, 0) rotate(12deg);
}

.device-mock {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  border: 1px solid rgba(245, 246, 248, 0.18);
  border-radius: 18px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    #151923;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.44),
    0 0 90px rgba(217, 182, 63, 0.08);
  transform: translate3d(0, calc(var(--reality-shift, 0) * -0.32px), 0);
}

.device-bar {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
}

.device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 246, 248, 0.3);
}

.device-screen {
  min-height: 346px;
  border-radius: 12px;
  padding: 24px;
  background:
    radial-gradient(ellipse at 76% 18%, rgba(87, 201, 232, 0.12), transparent 50%),
    #0a111e;
}

.screen-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.screen-topline strong {
  font-size: 22px;
}

.screen-topline span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #091018;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 880;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.screen-grid div,
.screen-list div {
  min-width: 0;
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: rgba(245, 246, 248, 0.045);
}

.screen-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.42;
}

.screen-list {
  display: grid;
  gap: 10px;
}

.screen-list div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
}

.screen-list dd {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.reality-quote {
  position: relative;
  z-index: 3;
  right: auto;
  bottom: auto;
  justify-self: end;
  max-width: 320px;
  border-left: 2px solid rgba(217, 182, 63, 0.58);
  padding: 14px 0 14px 18px;
  color: rgba(245, 246, 248, 0.72);
  background: linear-gradient(90deg, rgba(7, 11, 19, 0.56), transparent);
  font-size: 16px;
  line-height: 1.7;
}

.magnetic-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 246, 248, 0.08);
  background:
    radial-gradient(ellipse at center, rgba(217, 182, 63, 0.18), transparent 24rem),
    radial-gradient(ellipse at center, rgba(137, 106, 210, 0.1), transparent 34rem),
    linear-gradient(180deg, #08101c 0%, #04060b 100%);
}

.magnetic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0 24%, rgba(0, 0, 0, 0.34) 72%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.cta-shell .section-copy,
.cta-shell .cta-note {
  margin: 0 auto;
}

.cta-actions {
  justify-content: center;
  margin-top: 10px;
}

.magnetic-button {
  box-shadow:
    0 16px 44px rgba(217, 182, 63, 0.24),
    0 0 56px rgba(137, 106, 210, 0.12),
    0 0 0 1px rgba(255, 236, 158, 0.28) inset;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(245, 246, 248, 0.08);
  color: var(--text-muted);
  font-size: 14px;
}

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

@keyframes heroPaperMorph {
  0% {
    opacity: 0.9;
    filter: blur(0);
    transform: rotate(-5deg) translate3d(0, 0, 0);
  }
  62% {
    opacity: 0.62;
    filter: blur(1px);
    transform: rotate(-3deg) translate3d(36px, -2px, 0);
  }
  100% {
    opacity: 0.24;
    filter: blur(1.6px);
    transform: rotate(-2deg) translate3d(58px, 10px, 0) scale(0.96);
  }
}

@keyframes heroUiReveal {
  0% {
    opacity: 0.14;
    transform: translate3d(28px, 10px, 0) scale(0.96);
  }
  48% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroScan {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-8deg);
  }
  16%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(560%) skewX(-8deg);
  }
}

@keyframes heroParticle {
  0%,
  26% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.8);
  }
  48% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) scale(0.22);
  }
}

.visual-hero-start .morph-paper,
.visual-hero-start .structured-card,
.visual-hero-start .scan-beam,
.visual-hero-start .particle-field span,
.visual-hero-end .morph-paper,
.visual-hero-end .structured-card,
.visual-hero-end .scan-beam,
.visual-hero-end .particle-field span {
  animation: none !important;
}

.visual-hero-start .morph-paper {
  opacity: 0.9;
  filter: none;
  transform: rotate(-5deg);
}

.visual-hero-start .structured-card {
  opacity: 0.16;
  transform: translate3d(28px, 10px, 0) scale(0.96);
}

.visual-hero-start .scan-beam {
  opacity: 0.86;
  transform: translateX(-38%) skewX(-8deg);
}

.visual-hero-start .particle-field span {
  opacity: 0.8;
}

.visual-hero-end .morph-paper {
  opacity: 0.24;
  filter: blur(1.6px);
  transform: rotate(-2deg) translate3d(58px, 10px, 0) scale(0.96);
}

.visual-hero-end .structured-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.visual-hero-end .scan-beam,
.visual-hero-end .particle-field {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js .scanner-story .field-card,
  .js .scanner-story .evidence-link,
  .js .scanner-story .scanner-status {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    transition: opacity 340ms ease, filter 340ms ease, transform 340ms ease;
  }

  .js .scanner-story[data-step="1"] .field-card:nth-child(-n + 2),
  .js .scanner-story[data-step="2"] .field-card:nth-child(-n + 2),
  .js .scanner-story[data-step="3"] .field-card,
  .js .scanner-story[data-step="4"] .field-card,
  .js .scanner-story[data-step="4"] .evidence-link,
  .js .scanner-story[data-step="4"] .scanner-status {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .js .scanner-story[data-step="0"] .scanner-line,
  .js .scanner-story[data-step="1"] .scanner-line,
  .js .scanner-story[data-step="2"] .scanner-line,
  .js .scanner-story[data-step="3"] .scanner-line {
    opacity: 1;
  }

  .js .scanner-story[data-step="4"] .scanner-line {
    opacity: 0.55;
  }

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

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

.og-body {
  width: 1200px;
  height: 630px;
  overflow: hidden;
  background: var(--bg-obsidian);
}

.og-card {
  position: relative;
  width: 1200px;
  height: 630px;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 76% 50%, rgba(217, 182, 63, 0.24), transparent 360px),
    linear-gradient(135deg, #090d15 0%, #050810 100%);
  color: var(--text);
  padding: 54px 60px;
}

.og-left {
  display: grid;
  align-content: center;
  gap: 28px;
  min-width: 0;
}

.og-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.og-logo {
  width: 74px;
  height: 74px;
  border-radius: 16px;
}

.og-brand span:last-child {
  display: grid;
  gap: 4px;
}

.og-brand strong {
  font-size: 38px;
  line-height: 1;
  font-style: normal;
  font-weight: 820;
}

.og-brand em {
  color: var(--gold);
  font-size: 22px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 740;
}

.og-card h1 {
  max-width: 650px;
  font-size: 82px;
  line-height: 1.08;
  font-weight: 880;
}

.og-card p {
  color: #d8deea;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 460;
}

.og-cta {
  width: 192px;
  min-height: 60px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10131a;
  background: linear-gradient(180deg, #ffe38d 0%, var(--gold) 100%);
  font-size: 26px;
  font-weight: 850;
  box-shadow: 0 18px 48px rgba(217, 182, 63, 0.28);
}

.og-right {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-width: 0;
}

.og-stage {
  position: absolute;
  inset: auto -20px 26px;
  height: 330px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(217, 182, 63, 0.42) 0%, rgba(217, 182, 63, 0.18) 36%, transparent 70%);
  filter: blur(8px);
  transform: perspective(780px) rotateX(62deg);
  z-index: -1;
}

.og-transcript-card {
  position: relative;
  width: 392px;
  padding: 26px;
  transform: rotate(1.2deg);
}

.og-transcript-card .record-list {
  gap: 12px;
}

.og-transcript-card .record-list dd {
  font-size: 17px;
}

.og-signs {
  position: absolute;
  right: 0;
  top: 116px;
  display: grid;
  gap: 18px;
}

.og-signs span {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 182, 63, 0.7);
  border-radius: 50%;
  color: #ffe28a;
  background: rgba(9, 13, 21, 0.82);
  box-shadow: 0 0 28px rgba(217, 182, 63, 0.26);
  font-size: 19px;
  font-weight: 780;
}

@media (max-width: 980px) {
  .header-actions {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .scanner-stage,
  .reality-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .morph-stage {
    height: 450px;
  }

  .morph-paper {
    top: 34px;
  }

  .structured-card {
    top: 82px;
  }

  .scanner-story {
    height: auto;
    min-height: 0;
    padding: 72px 0;
  }

  .scanner-sticky {
    position: static;
    min-height: 0;
  }

  .scanner-document {
    min-height: 300px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "evidence"
      "align"
      "flow";
  }

  .bento-flow {
    grid-template-columns: 1fr;
  }

  .reality-shell {
    gap: 28px;
  }

  .device-scene {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .section-band,
  .site-header,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand-product {
    display: none;
  }

  .brand-name {
    font-size: 17px;
  }

  .login-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-menu summary {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 22px 0 56px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(37px, 12.2vw, 50px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .title-nowrap {
    white-space: normal;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-description,
  .section-copy {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
  }

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

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

  .morph-stage {
    height: 410px;
  }

  .morph-paper,
  .structured-card {
    animation: none;
  }

  .morph-paper {
    top: 0;
    left: 0;
    width: min(72%, 276px);
    min-height: 300px;
    padding: 18px;
    opacity: 0.26;
    filter: blur(1.2px);
    transform: rotate(-3deg) translate3d(12px, 26px, 0);
  }

  .structured-card {
    top: 74px;
    right: 0;
    width: min(92%, 360px);
    padding: 18px;
    opacity: 1;
    transform: none;
  }

  .scan-beam,
  .particle-field {
    display: none;
  }

  .paper-title {
    font-size: 15px;
  }

  .paper-lines {
    gap: 9px;
  }

  .record-list {
    gap: 10px;
    margin-top: 18px;
  }

  .record-list div {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
  }

  .record-list dt,
  .record-list dd {
    font-size: 14px;
  }

  .record-list dd {
    padding: 10px;
  }

  .scanner-fields {
    grid-template-columns: 1fr;
  }

  .field-card {
    min-height: 104px;
  }

  .bento,
  .reality-anchor,
  .magnetic-cta {
    padding: 62px 0;
  }

  .bento-card {
    min-height: 0;
    padding: 22px;
  }

  .bento-card-large {
    min-height: 460px;
  }

  .before-after {
    min-height: 250px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-steps li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    width: 1px;
    height: 12px;
  }

  .device-scene {
    min-height: 460px;
  }

  .device-screen {
    min-height: 330px;
    padding: 16px;
  }

  .screen-topline,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-topline {
    display: grid;
  }

  .screen-grid {
    display: grid;
  }

  .screen-list div {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .reality-quote {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 18px;
  }

  .cta-shell {
    min-height: 500px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .section-band,
  .site-header,
  .site-footer {
    width: calc(100% - 24px);
  }

  .brand-name {
    font-size: 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .login-link {
    padding: 0 10px;
  }

  .mobile-menu-panel {
    right: -2px;
  }
}

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

  .morph-paper {
    opacity: 0.24;
    filter: blur(1.6px);
    transform: rotate(-2deg) translate3d(58px, 10px, 0) scale(0.96);
  }

  .structured-card {
    opacity: 1;
    transform: none;
  }

  .scan-beam,
  .particle-field {
    display: none;
  }

  .scanner-line {
    top: calc(100% - 22px);
  }

  .field-card,
  .evidence-link,
  .scanner-status,
  .reveal-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .ambient-panel,
  .device-mock,
  .button {
    transform: none !important;
  }
}

/* Signature Depth Pass v3 */
h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

.hero-description,
.section-copy {
  font-size: 18px;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
}

.hero-visual {
  min-height: 620px;
  overflow: visible;
  perspective: 1200px;
}

.forge-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  --shine-x: 64%;
  --shine-y: 18%;
  position: relative;
  width: min(100%, 650px);
  height: 560px;
  transform-style: preserve-3d;
  transform: translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 520ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.hero-paths,
.scanner-thread-map,
.evidence-rail,
.gravity-field svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.registry-paper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 32, 0.38);
  border-radius: 8px;
  color: #1a2230;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(218, 225, 221, 0.78)),
    repeating-linear-gradient(92deg, rgba(0, 0, 0, 0.026) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(145, 121, 74, 0.055) 0 1px, transparent 1px 11px);
  box-shadow:
    0 2px 0 rgba(144, 132, 108, 0.72),
    0 5px 0 rgba(78, 68, 54, 0.26),
    0 36px 80px rgba(0, 0, 0, 0.4);
}

.registry-paper::before,
.registry-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.registry-paper::before {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(54, 49, 43, 0.09) 49%, rgba(255, 255, 255, 0.28) 50%, transparent 52%),
    radial-gradient(ellipse at 28% 16%, rgba(255, 255, 255, 0.46), transparent 38%),
    radial-gradient(ellipse at 72% 80%, rgba(0, 0, 0, 0.06), transparent 42%);
  opacity: 0.72;
}

.registry-paper::after {
  background-image:
    radial-gradient(circle at 12% 24%, rgba(22, 30, 42, 0.16) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 68% 72%, rgba(22, 30, 42, 0.12) 0 0.8px, transparent 0.9px);
  background-size: 18px 22px, 26px 30px;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.registry-paper-hero {
  position: absolute;
  left: 2px;
  top: 44px;
  width: 326px;
  height: 440px;
  padding: 22px 20px 18px;
  transform: translateZ(24px) rotate(-4deg);
  transform-style: preserve-3d;
  animation: paperSettle 2200ms cubic-bezier(0.18, 0.78, 0.22, 1) both, paperFloat 9s ease-in-out 2600ms infinite;
}

.paper-specular {
  position: absolute;
  inset: -18%;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.44), transparent 18%),
    linear-gradient(118deg, transparent 12%, rgba(255, 255, 255, 0.22) 35%, transparent 58%);
  opacity: 0.16;
  transform: translateZ(34px);
}

.paper-topline,
.paper-title,
.paper-page,
.paper-watermark,
.registry-row,
.paper-seal,
.paper-source {
  position: relative;
  z-index: 2;
}

.paper-kicker,
.paper-code,
.instrument-label,
.vault-topline span,
.drawer-topline span {
  color: rgba(24, 32, 42, 0.64);
  font-size: 11px;
  font-weight: 860;
  line-height: 1.2;
  text-transform: uppercase;
}

.paper-code {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  border: 1px solid rgba(30, 38, 48, 0.22);
  border-radius: 6px;
  padding: 0 7px;
  color: rgba(19, 27, 38, 0.72);
  background: rgba(255, 255, 255, 0.36);
}

.paper-title {
  margin: 14px 0 16px;
  color: #202b3b;
  font-size: 18px;
  font-weight: 880;
}

.paper-page {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: rgba(26, 34, 45, 0.52);
  font-size: 11px;
  font-weight: 780;
}

.paper-watermark {
  position: absolute;
  left: 24px;
  top: 154px;
  z-index: 1;
  color: rgba(42, 56, 72, 0.07);
  font-size: 54px;
  font-weight: 900;
  transform: rotate(-18deg);
  white-space: nowrap;
}

.paper-grid-lines {
  position: absolute;
  inset: 72px 18px 54px;
  z-index: 1;
  background:
    linear-gradient(rgba(29, 37, 49, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 37, 49, 0.11) 1px, transparent 1px);
  background-size: 100% 52px, 68px 100%;
  opacity: 0.42;
}

.registry-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px 76px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(34, 43, 56, 0.12);
  isolation: isolate;
}

.registry-row-muted {
  opacity: 0.58;
}

.row-index {
  color: rgba(26, 34, 45, 0.48);
  font-size: 11px;
  font-weight: 820;
}

.row-label {
  color: rgba(21, 29, 40, 0.66);
  font-size: 12px;
  font-weight: 760;
}

.row-value {
  min-width: 0;
  color: #172131;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
}

.anchor-dot {
  position: absolute;
  left: -7px;
  top: 50%;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(217, 182, 63, 0.92);
  border-radius: 50%;
  background: #102232;
  box-shadow: 0 0 0 5px rgba(217, 182, 63, 0.13), 0 0 18px rgba(87, 201, 232, 0.28);
  transform: translateY(-50%);
}

.ocr-box {
  position: absolute;
  inset: 9px 12px 9px 107px;
  z-index: -1;
  border: 1px solid rgba(87, 201, 232, 0.55);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent, rgba(87, 201, 232, 0.11), transparent),
    rgba(87, 201, 232, 0.035);
  box-shadow: 0 0 18px rgba(87, 201, 232, 0.18);
}

.paper-seal {
  position: absolute;
  right: 22px;
  bottom: 42px;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(148, 37, 32, 0.32);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.paper-seal span {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(148, 37, 32, 0.2);
  border-radius: 50%;
}

.paper-seal span:nth-child(2) {
  inset: 27px 10px;
  border-radius: 0;
}

.paper-seal span:nth-child(3) {
  inset: 10px 28px;
  border-radius: 0;
}

.paper-source {
  margin-top: 12px;
  color: rgba(26, 34, 45, 0.6);
  font-size: 11px;
  font-weight: 760;
}

.extraction-beam {
  position: absolute;
  left: 24px;
  top: 56px;
  z-index: 5;
  width: 290px;
  height: 390px;
  pointer-events: none;
  transform: translateZ(60px);
  animation: beamTravel 2300ms cubic-bezier(0.2, 0.76, 0.2, 1) 280ms both, beamAmbient 12s ease-in-out 5.8s infinite;
}

.beam-core,
.beam-bloom,
.beam-edge {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  display: block;
  transform: translateY(var(--beam-y, 0));
}

.beam-core {
  height: 2px;
  background: linear-gradient(90deg, transparent, #57c9e8 24%, #f2ce5a 50%, #57c9e8 76%, transparent);
  box-shadow: 0 0 20px rgba(87, 201, 232, 0.82), 0 0 38px rgba(217, 182, 63, 0.32);
}

.beam-bloom {
  height: 42px;
  margin-top: -20px;
  background: linear-gradient(180deg, transparent, rgba(87, 201, 232, 0.2), rgba(217, 182, 63, 0.1), transparent);
  filter: blur(9px);
}

.beam-edge {
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent, rgba(242, 206, 90, 0.72), transparent);
  filter: blur(0.3px);
}

.hero-paths {
  z-index: 3;
  transform: translateZ(42px);
}

.hero-thread,
.scanner-thread,
.evidence-rail path {
  fill: none;
  stroke: url("#heroPathGradient");
  stroke-linecap: round;
}

.hero-thread {
  stroke-width: 1.2;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  opacity: 0.14;
  animation: threadDraw 950ms cubic-bezier(0.22, 0.68, 0.26, 1) both;
}

.hero-thread-address { animation-delay: 900ms; }
.hero-thread-area { animation-delay: 1030ms; }
.hero-thread-share { animation-delay: 1160ms; }
.hero-thread-parking { animation-delay: 1290ms; }

.data-token {
  position: absolute;
  z-index: 7;
  min-width: 178px;
  min-height: 52px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(245, 246, 248, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent),
    rgba(12, 19, 30, 0.9);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(217, 182, 63, 0.12) inset;
  transform: translate3d(var(--from-x), var(--from-y), 72px) scale(0.96);
  opacity: 0;
  animation: tokenTransfer 1300ms cubic-bezier(0.22, 0.74, 0.18, 1) both;
  animation-delay: calc(760ms + (var(--token-index) * 125ms));
}

.data-token::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(110deg, transparent 8%, rgba(87, 201, 232, 0.16), transparent 34%);
  transform: translateX(-46%);
  animation: tokenHighlight 2200ms ease-in-out infinite;
  pointer-events: none;
}

.token-icon,
.field-icon {
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #081018;
  background: linear-gradient(180deg, #f8df82, #d9b63f);
  font-size: 14px;
  font-weight: 900;
}

.token-icon {
  width: 32px;
  height: 32px;
}

.token-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.token-copy span,
.token-source {
  color: rgba(245, 246, 248, 0.58);
  font-size: 10px;
  font-weight: 800;
}

.token-copy strong {
  overflow: hidden;
  color: #f8fbff;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-source {
  color: rgba(87, 201, 232, 0.86);
}

.token-address {
  left: 92px;
  top: 134px;
  --from-x: 0px;
  --from-y: 0px;
  --to-x: 340px;
  --to-y: 10px;
}

.token-area {
  left: 92px;
  top: 192px;
  --from-x: 0px;
  --from-y: 0px;
  --to-x: 342px;
  --to-y: 44px;
}

.token-share {
  left: 92px;
  top: 250px;
  --from-x: 0px;
  --from-y: 0px;
  --to-x: 342px;
  --to-y: 76px;
}

.token-parking {
  left: 92px;
  top: 308px;
  --from-x: 0px;
  --from-y: 0px;
  --to-x: 342px;
  --to-y: 110px;
}

.glass-vault {
  position: absolute;
  right: 0;
  top: 74px;
  z-index: 6;
  width: 352px;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(217, 182, 63, 0.34);
  border-radius: 12px;
  padding: 20px;
  color: var(--text);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(11, 18, 29, 0.82);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(87, 201, 232, 0.07) inset,
    0 0 52px rgba(87, 201, 232, 0.08);
  backdrop-filter: blur(16px);
  transform: translateZ(36px);
}

.glass-vault::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 20deg, transparent, rgba(217, 182, 63, 0.28), transparent 22%, rgba(87, 201, 232, 0.16), transparent 44%);
  opacity: 0.32;
  animation: vaultBorder 11s linear infinite;
}

.glass-vault::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 74% 84%, rgba(87, 201, 232, 0.08), transparent 24%),
    repeating-radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.028) 0 0.6px, transparent 0.7px 4px),
    rgba(8, 14, 24, 0.78);
}

.vault-frame,
.vault-topline,
.vault-rows,
.vault-status {
  position: relative;
  z-index: 2;
}

.vault-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 246, 248, 0.08);
  border-radius: 9px;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.24),
    0 16px 40px rgba(0, 0, 0, 0.22) inset;
}

.vault-topline,
.drawer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vault-topline span,
.drawer-topline span {
  color: rgba(245, 246, 248, 0.52);
}

.vault-topline strong,
.drawer-topline strong,
.ready-pill,
.scanner-status {
  color: #07111a;
  background: linear-gradient(180deg, #8de4f4, var(--cyan));
}

.vault-topline strong,
.drawer-topline strong {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.vault-rows {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.vault-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: rgba(245, 246, 248, 0.045);
  opacity: 0.7;
  animation: vaultRowReady 420ms ease both;
}

.vault-row:nth-child(1) { animation-delay: 1550ms; }
.vault-row:nth-child(2) { animation-delay: 1690ms; }
.vault-row:nth-child(3) { animation-delay: 1830ms; }
.vault-row:nth-child(4) { animation-delay: 1970ms; }

.vault-row dt {
  color: rgba(245, 246, 248, 0.7);
  font-size: 12px;
  font-weight: 820;
}

.vault-row dd {
  overflow: hidden;
  color: #f5f8fb;
  font-size: 14px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vault-row span {
  color: rgba(87, 201, 232, 0.82);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.vault-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vault-status span,
.evidence-link,
.process-rail span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(217, 182, 63, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(245, 246, 248, 0.82);
  background: rgba(217, 182, 63, 0.06);
  font-size: 12px;
  font-weight: 820;
}

.scanner-story {
  height: 178vh;
  min-height: 1180px;
}

.scanner-stage {
  grid-template-columns: minmax(330px, 0.88fr) minmax(420px, 1fr);
}

.scanner-document {
  min-height: 458px;
  padding: 26px;
  color: #172131;
}

.scanner-source {
  position: absolute;
  left: 28px;
  right: 42px;
  z-index: 2;
  min-height: 54px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(34, 43, 56, 0.12);
  border-radius: 7px;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(1.3px);
  opacity: 0.7;
  transition: filter 260ms ease, opacity 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.source-address { top: 118px; }
.source-area { top: 182px; }
.source-share { top: 246px; }
.source-parking { top: 310px; }

.source-label {
  color: rgba(25, 32, 42, 0.62);
  font-size: 12px;
  font-weight: 820;
}

.scanner-source strong {
  color: #172131;
  font-size: 14px;
  font-weight: 850;
}

.scanner-thread-map {
  z-index: 3;
  overflow: visible;
}

.scanner-thread {
  stroke: rgba(87, 201, 232, 0.52);
  stroke-width: 1.3;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  opacity: 0;
  transition: opacity 280ms ease, stroke-dashoffset 520ms cubic-bezier(0.22, 0.7, 0.18, 1);
}

.scanner-line {
  z-index: 4;
}

.scanner-fields {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-card {
  position: relative;
  min-height: 142px;
  align-content: start;
  padding: 18px 18px 16px 64px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(14, 22, 34, 0.82);
}

.field-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(217, 182, 63, 0.7), rgba(87, 201, 232, 0.28));
}

.field-icon {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 32px;
  height: 32px;
}

.field-card em {
  color: rgba(87, 201, 232, 0.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.4;
}

.field-card:hover,
.field-card:focus-visible {
  border-color: rgba(217, 182, 63, 0.38);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 22px rgba(87, 201, 232, 0.08);
}

.process-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 2px;
}

.process-rail span {
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  text-align: center;
}

.process-rail span:not(:last-child)::after {
  content: "";
  position: absolute;
}

.evidence-link,
.scanner-status {
  grid-column: 1 / -1;
}

.scanner-story[data-step="1"] .source-address,
.scanner-story[data-step="2"] .source-address,
.scanner-story[data-step="2"] .source-area,
.scanner-story[data-step="3"] .source-address,
.scanner-story[data-step="3"] .source-area,
.scanner-story[data-step="3"] .source-share,
.scanner-story[data-step="4"] .scanner-source {
  filter: blur(0);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(87, 201, 232, 0.26), 0 0 22px rgba(87, 201, 232, 0.1);
  transform: translateX(5px);
}

.scanner-story[data-step="1"] .scanner-thread-address,
.scanner-story[data-step="2"] .scanner-thread-address,
.scanner-story[data-step="2"] .scanner-thread-area,
.scanner-story[data-step="3"] .scanner-thread-address,
.scanner-story[data-step="3"] .scanner-thread-area,
.scanner-story[data-step="3"] .scanner-thread-share,
.scanner-story[data-step="4"] .scanner-thread {
  opacity: 0.78;
  stroke-dashoffset: 0;
}

.bento-grid {
  position: relative;
  perspective: 1000px;
}

.bento-grid::before {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: -1;
  pointer-events: none;
  opacity: var(--spot-opacity, 0);
  background: radial-gradient(390px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(217, 182, 63, 0.1), rgba(87, 201, 232, 0.035) 34%, transparent 68%);
  transition: opacity 220ms ease;
}

.bento-card {
  isolation: isolate;
  transform-style: preserve-3d;
  background:
    radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.07), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(17, 23, 34, 0.82);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.012);
}

.before-after,
.anchor-visual,
.align-visual,
.flow-steps {
  transform: translateZ(20px);
}

.before-after {
  min-height: 338px;
  border-color: rgba(217, 182, 63, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22) inset;
}

.instrument-label {
  position: relative;
  z-index: 2;
  color: rgba(245, 246, 248, 0.58);
}

.mini-registry-paper {
  position: relative;
  width: min(78%, 330px);
  min-height: 224px;
  margin-top: 20px;
  border: 1px solid rgba(18, 24, 32, 0.28);
  border-radius: 7px;
  padding: 18px;
  color: #172131;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(222, 227, 223, 0.78)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 8px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.mini-registry-paper .paper-code {
  position: absolute;
  right: 14px;
  top: 14px;
}

.mini-paper-lines {
  gap: 11px;
  margin-top: 44px;
  filter: none;
}

.mini-paper-lines span {
  background: rgba(22, 31, 43, 0.2);
}

.mini-anchor {
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(217, 182, 63, 0.9);
  border-radius: 50%;
  background: #102232;
}

.anchor-one { top: 88px; }
.anchor-two { top: 142px; }

.mini-paper-seal {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(148, 37, 32, 0.28);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.mini-vault-ui {
  width: min(86%, 360px);
  border: 1px solid rgba(217, 182, 63, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 12, 20, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.mini-fields span {
  place-items: start;
  gap: 4px;
  padding: 10px;
  color: rgba(245, 246, 248, 0.76);
  font-size: 12px;
  text-align: left;
}

.mini-fields b,
.align-visual b {
  display: block;
  color: rgba(87, 201, 232, 0.82);
  font-size: 11px;
}

.ba-lens {
  position: absolute;
  top: 50%;
  left: var(--slider, 54%);
  z-index: 2;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(245, 246, 248, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.12), transparent 48%);
  box-shadow: 0 0 0 1px rgba(217, 182, 63, 0.24) inset, 0 18px 36px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ba-handle {
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), var(--cyan), transparent);
}

.ba-handle::after {
  border: 2px solid rgba(217, 182, 63, 0.78);
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.24), transparent 38%),
    rgba(10, 17, 30, 0.96);
}

.evidence-chain {
  min-height: 154px;
}

.doc-node,
.field-node {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
}

.doc-node span,
.field-node span {
  color: rgba(245, 246, 248, 0.74);
  font-size: 11px;
  font-weight: 780;
}

.field-node strong {
  color: #f5f8fb;
  font-size: 12px;
  line-height: 1.25;
}

.doc-node i {
  display: block;
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: rgba(217, 182, 63, 0.48);
}

.evidence-rail {
  inset: 20px 8px;
}

.evidence-rail path {
  stroke: rgba(87, 201, 232, 0.48);
  stroke-width: 1.5;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 700ms ease;
}

.bento-evidence.is-visible .evidence-rail path,
.bento-evidence:hover .evidence-rail path {
  stroke-dashoffset: 0;
}

.evidence-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  border: 1px solid rgba(217, 182, 63, 0.34);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--gold-bright);
  background: rgba(7, 11, 19, 0.9);
  font-size: 11px;
  font-weight: 860;
  transform: translate(-50%, -50%);
}

.align-visual {
  position: relative;
  padding-top: 20px;
}

.align-visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 182, 63, 0.44), rgba(87, 201, 232, 0.34), transparent);
}

.align-visual span {
  display: grid;
  place-items: start;
  gap: 4px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.25;
  transform: translate(var(--offset-x), var(--offset-y));
  transition: transform 420ms cubic-bezier(0.22, 0.72, 0.18, 1), border-color 220ms ease;
}

.bento-align.is-visible .align-visual span,
.bento-align:hover .align-visual span {
  transform: translate(0, 0);
}

.align-visual em {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--gold-bright);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms ease 360ms, transform 260ms ease 360ms;
}

.bento-align.is-visible .align-visual em,
.bento-align:hover .align-visual em {
  opacity: 1;
  transform: translateY(0);
}

.delivery-pipeline li {
  grid-template-rows: 54px auto;
  gap: 9px;
  min-height: 122px;
  padding: 12px;
}

.delivery-pipeline strong {
  font-size: 14px;
}

.flow-paper,
.flow-token-stack,
.flow-evidence,
.flow-vault {
  position: relative;
  width: 64px;
  height: 48px;
  display: block;
}

.flow-paper {
  border: 1px solid rgba(30, 38, 48, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(220, 226, 223, 0.72)),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 9px);
}

.flow-token-stack i {
  position: absolute;
  left: calc(var(--i, 0) * 8px);
  top: calc(var(--i, 0) * 7px);
  width: 48px;
  height: 20px;
  border: 1px solid rgba(87, 201, 232, 0.28);
  border-radius: 5px;
  color: rgba(245, 246, 248, 0.8);
  background: rgba(87, 201, 232, 0.12);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.flow-token-stack i:nth-child(1) { --i: 0; }
.flow-token-stack i:nth-child(2) { --i: 1; }
.flow-token-stack i:nth-child(3) { --i: 2; }
.flow-token-stack i:nth-child(4) { --i: 3; }

.flow-evidence::before,
.flow-evidence::after {
  content: "";
  position: absolute;
  top: 20px;
}

.flow-evidence::before {
  left: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
}

.flow-evidence::after {
  left: 17px;
  right: 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan));
}

.flow-vault {
  border: 1px solid rgba(217, 182, 63, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(7, 13, 22, 0.88);
  box-shadow: 0 0 20px rgba(87, 201, 232, 0.08) inset;
}

.reality-anchor {
  background:
    linear-gradient(118deg, rgba(52, 39, 27, 0.26), transparent 32%),
    radial-gradient(ellipse at 76% 48%, rgba(217, 182, 63, 0.12), transparent 34rem),
    radial-gradient(ellipse at 40% 36%, rgba(87, 201, 232, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(8, 11, 18, 0.96), rgba(24, 20, 17, 0.78) 52%, rgba(7, 11, 19, 0.98));
}

.device-scene {
  perspective: 1200px;
}

.panel-three {
  width: min(56%, 390px);
  height: 92px;
  right: 14%;
  bottom: 4%;
  background: linear-gradient(90deg, transparent, rgba(245, 246, 248, 0.12), transparent);
  transform: translate3d(calc(var(--reality-shift, 0) * 0.3px), 0, 0) rotate(-2deg);
}

.device-mock {
  width: min(100%, 620px);
  border-radius: 20px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.055) 30%, rgba(0, 0, 0, 0.18) 70%),
    linear-gradient(180deg, #252b34, #10141b);
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.48),
    0 6px 0 rgba(0, 0, 0, 0.32),
    0 48px 60px rgba(0, 0, 0, 0.26);
  transform: translate3d(0, calc(var(--reality-shift, 0) * -0.32px), 0) rotateX(var(--device-tilt-x, 1deg)) rotateY(var(--device-tilt-y, -2deg));
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.device-mock::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -34px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(16px);
  transform: rotateX(72deg);
}

.device-status-light {
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ee5f4;
  box-shadow: 0 0 16px rgba(87, 201, 232, 0.82);
}

.device-screen {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(245, 246, 248, 0.08);
  background:
    radial-gradient(ellipse at 84% 16%, rgba(87, 201, 232, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 26%),
    #08111e;
}

.screen-reflection {
  position: absolute;
  inset: -30% -20% auto;
  height: 55%;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.12), transparent 52%);
  transform: rotate(-7deg);
  pointer-events: none;
}

.screen-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
  gap: 14px;
}

.screen-list {
  display: grid;
  gap: 10px;
}

.device-field {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  color: inherit;
  background: rgba(245, 246, 248, 0.045);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.device-field span {
  color: rgba(245, 246, 248, 0.6);
  font-size: 12px;
  font-weight: 820;
}

.device-field strong {
  overflow: hidden;
  color: #f5f8fb;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-field em {
  color: rgba(87, 201, 232, 0.78);
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
  text-align: right;
}

.device-field:hover,
.device-field:focus-visible,
.device-field.is-active {
  border-color: rgba(217, 182, 63, 0.34);
  background: rgba(217, 182, 63, 0.07);
}

.evidence-drawer {
  min-width: 0;
  border: 1px solid rgba(217, 182, 63, 0.2);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(7, 12, 20, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.evidence-drawer dl {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.evidence-drawer dl div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  border-bottom: 1px solid rgba(245, 246, 248, 0.075);
  padding-bottom: 7px;
}

.evidence-drawer dt {
  color: rgba(245, 246, 248, 0.54);
  font-size: 11px;
  font-weight: 800;
}

.evidence-drawer dd {
  overflow: hidden;
  color: #f5f8fb;
  font-size: 12px;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evidence-drawer p {
  margin-top: 12px;
  color: rgba(245, 246, 248, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.return-original {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 850;
}

.return-original i {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.return-original i::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 4px 0 0 5px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.magnetic-cta {
  background:
    radial-gradient(ellipse at center, rgba(217, 182, 63, 0.16), transparent 23rem),
    radial-gradient(ellipse at center, rgba(87, 201, 232, 0.07), transparent 34rem),
    linear-gradient(180deg, #08101c 0%, #04060b 100%);
}

.gravity-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gravity-field::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74vw, 860px);
  height: min(74vw, 860px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 182, 63, 0.18), rgba(217, 182, 63, 0.055) 28%, transparent 62%),
    radial-gradient(circle, rgba(87, 201, 232, 0.08), transparent 48%);
  filter: blur(40px);
  opacity: 0.82;
  transform: translate(-50%, -50%);
  animation: gravityBreathe 9s ease-in-out infinite;
}

.gravity-field svg {
  inset: 50% auto auto 50%;
  width: min(92vw, 900px);
  height: min(60vw, 520px);
  transform: translate(-50%, -50%);
}

.gravity-field path {
  fill: none;
  stroke: rgba(217, 182, 63, 0.24);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 7 13;
}

.depth-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(217, 182, 63, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 260px; height: 260px; }
.ring-two { width: 420px; height: 420px; border-color: rgba(87, 201, 232, 0.07); }
.ring-three { width: 620px; height: 620px; }

.gravity-dust {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(242, 206, 90, 0.46);
  box-shadow: 0 0 10px rgba(242, 206, 90, 0.32);
}

.dust-one { left: 22%; top: 38%; }
.dust-two { right: 26%; top: 34%; background: rgba(87, 201, 232, 0.42); }
.dust-three { left: 58%; bottom: 28%; }

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
}

.demo-disclosure {
  justify-self: center;
  max-width: 560px;
  color: rgba(245, 246, 248, 0.58);
  text-align: center;
}

@keyframes paperSettle {
  0% {
    opacity: 0.76;
    transform: translate3d(-10px, 10px, 24px) rotate(-6deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 24px) rotate(-4deg);
  }
}

@keyframes paperFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 24px) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -5px, 24px) rotate(-3.6deg);
  }
}

@keyframes beamTravel {
  0% {
    opacity: 0;
    --beam-y: 2px;
  }
  10%,
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
    --beam-y: 372px;
  }
}

@keyframes beamAmbient {
  0%,
  82%,
  100% {
    opacity: 0;
    transform: translateZ(60px);
  }
  88% {
    opacity: 0.24;
    transform: translate3d(0, -8px, 60px);
  }
  94% {
    opacity: 0.08;
    transform: translate3d(0, 8px, 60px);
  }
}

@keyframes threadDraw {
  0% {
    stroke-dashoffset: 280;
    opacity: 0;
  }
  28% {
    opacity: 0.84;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.18;
  }
}

@keyframes tokenTransfer {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 72px) scale(0.96);
  }
  30% {
    opacity: 1;
    transform: translate3d(0, -10px, 72px) scale(1);
  }
  100% {
    opacity: 0.88;
    transform: translate3d(var(--to-x), var(--to-y), 72px) scale(0.78);
  }
}

@keyframes tokenHighlight {
  0%,
  48%,
  100% {
    transform: translateX(-56%);
    opacity: 0;
  }
  58% {
    transform: translateX(64%);
    opacity: 0.9;
  }
}

@keyframes vaultBorder {
  to {
    transform: rotate(1turn);
  }
}

@keyframes vaultRowReady {
  from {
    opacity: 0.62;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gravityBreathe {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .bento-card[data-reveal-card] {
    opacity: 0.86;
    transform: translateY(14px);
    transition: opacity 420ms ease, transform 420ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .js .bento-card[data-reveal-card].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js .before-after.is-demoing {
    animation: sliderDemo 1700ms cubic-bezier(0.22, 0.72, 0.16, 1) 220ms both;
  }

  @keyframes sliderDemo {
    0% { --slider: 35%; }
    48% { --slider: 68%; }
    100% { --slider: 50%; }
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

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

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

  .forge-stage {
    width: min(100%, 640px);
  }

  .scanner-story {
    height: auto;
    min-height: 0;
  }

  .scanner-stage {
    grid-template-columns: 1fr;
  }

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

  .screen-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-description,
  .section-copy {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 520px;
    overflow: hidden;
  }

  .forge-stage {
    height: 504px;
    transform: none !important;
  }

  .registry-paper-hero {
    left: 0;
    top: 12px;
    width: min(76%, 286px);
    height: 356px;
    padding: 18px 16px;
    transform: rotate(-3deg);
    animation: none;
  }

  .paper-title {
    margin: 10px 0 12px;
    font-size: 15px;
  }

  .registry-row {
    min-height: 40px;
    grid-template-columns: 22px 62px minmax(0, 1fr);
    gap: 5px;
  }

  .row-label,
  .row-value {
    font-size: 11px;
  }

  .paper-watermark,
  .hero-paths,
  .extraction-beam,
  .hero-token {
    display: none;
  }

  .glass-vault {
    right: 0;
    top: 116px;
    width: min(92%, 354px);
    min-height: 342px;
    padding: 16px;
  }

  .vault-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .vault-row span {
    display: none;
  }

  .scanner-document {
    min-height: 398px;
    padding: 20px;
  }

  .scanner-source {
    left: 22px;
    right: 22px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .scanner-thread-map {
    display: none;
  }

  .scanner-fields,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .field-card {
    min-height: 116px;
  }

  .before-after {
    min-height: 286px;
  }

  .mini-registry-paper {
    width: 88%;
  }

  .mini-vault-ui {
    width: 92%;
  }

  .mini-fields {
    grid-template-columns: 1fr;
  }

  .evidence-chain {
    min-height: 168px;
  }

  .doc-node,
  .field-node {
    width: 76px;
    height: 76px;
  }

  .delivery-pipeline {
    grid-template-columns: 1fr;
  }

  .device-scene {
    min-height: 660px;
  }

  .device-mock {
    transform: none !important;
  }

  .device-screen {
    min-height: 540px;
  }

  .screen-grid,
  .screen-workspace {
    grid-template-columns: 1fr;
  }

  .device-field {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .device-field em {
    grid-column: 2;
    text-align: left;
  }

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

  .demo-disclosure {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 31px;
  }

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

  .registry-paper-hero {
    width: 282px;
  }

  .glass-vault {
    top: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forge-stage,
  .registry-paper-hero,
  .glass-vault,
  .device-mock {
    transform: none !important;
  }

  .registry-paper-hero,
  .extraction-beam,
  .hero-thread,
  .hero-token,
  .glass-vault::before,
  .vault-row,
  .gravity-field::before {
    animation: none !important;
  }

  .extraction-beam {
    display: none;
  }

  .hero-thread {
    stroke-dashoffset: 0;
    opacity: 0.16;
  }

  .hero-token {
    opacity: 0.88;
    transform: translate3d(var(--to-x), var(--to-y), 72px) scale(0.78);
  }

  .scanner-source {
    filter: none;
    opacity: 1;
  }

  .scanner-thread {
    stroke-dashoffset: 0;
    opacity: 0.58;
  }

  .bento-card[data-reveal-card],
  .align-visual span,
  .align-visual em {
    opacity: 1 !important;
    transform: none !important;
  }
}

.extraction-beam {
  opacity: 0.18;
  animation: beamOpacity 2300ms cubic-bezier(0.2, 0.76, 0.2, 1) 280ms both, beamAmbient 12s ease-in-out 5.8s infinite;
}

.beam-core,
.beam-bloom,
.beam-edge {
  animation: beamLineTravel 2300ms cubic-bezier(0.2, 0.76, 0.2, 1) 280ms both;
}

.scanner-story[data-active-field="address"] .scanner-source[data-field="address"],
.scanner-story[data-active-field="area"] .scanner-source[data-field="area"],
.scanner-story[data-active-field="share"] .scanner-source[data-field="share"],
.scanner-story[data-active-field="parking"] .scanner-source[data-field="parking"] {
  filter: blur(0);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(217, 182, 63, 0.36), 0 0 24px rgba(217, 182, 63, 0.14);
  transform: translateX(5px);
}

@keyframes beamOpacity {
  0% {
    opacity: 0;
  }
  10%,
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
  }
}

@keyframes beamLineTravel {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(372px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .before-after.is-demoing {
    animation: none;
  }
}

/* Hero video background blend */
.hero {
  position: relative;
  isolation: isolate;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-media-layer {
  position: absolute;
  inset: -76px calc(50% - 50vw) -72px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 64% 36%, rgba(87, 201, 232, 0.14), transparent 28rem),
    radial-gradient(circle at 74% 74%, rgba(217, 182, 63, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(7, 11, 19, 0.24), rgba(7, 11, 19, 0.92));
}

.hero-media-layer::before,
.hero-media-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-media-layer::before {
  background:
    radial-gradient(circle at 72% 58%, transparent 0 20%, rgba(7, 11, 19, 0.2) 46%, rgba(7, 11, 19, 0.86) 86%),
    linear-gradient(90deg, rgba(7, 11, 19, 0.92) 0%, rgba(7, 11, 19, 0.42) 45%, rgba(7, 11, 19, 0.68) 100%);
}

.hero-media-layer::after {
  background:
    radial-gradient(circle at 84% 82%, rgba(7, 11, 19, 0.98) 0%, rgba(7, 11, 19, 0.82) 20%, rgba(7, 11, 19, 0.28) 42%, transparent 62%),
    linear-gradient(to bottom, transparent 0%, rgba(7, 11, 19, 0.5) 72%, rgba(7, 11, 19, 0.94) 100%);
}

.hero-background-video {
  position: absolute;
  inset: -5%;
  z-index: 1;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
  transform: scale(1.16) translate(1.8%, -1.4%);
  transform-origin: center;
  transition: opacity 900ms ease;
  mask-image:
    radial-gradient(circle at 58% 42%, #000 0%, #000 38%, rgba(0, 0, 0, 0.72) 60%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(circle at 58% 42%, #000 0%, #000 38%, rgba(0, 0, 0, 0.72) 60%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
}

.hero-background-video.is-video-ready {
  opacity: 0.56;
}

.hero-background-video.is-video-failed {
  display: none;
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 84%, rgba(7, 11, 19, 0.96) 0%, rgba(7, 11, 19, 0.82) 18%, transparent 42%),
    linear-gradient(90deg, rgba(7, 11, 19, 0.94) 0%, rgba(7, 11, 19, 0.36) 48%, rgba(7, 11, 19, 0.82) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(7, 11, 19, 0.92) 92%);
}

.visual-video-off .hero-media-layer {
  display: none;
}

@media (max-width: 768px) {
  .hero-background-video {
    display: none;
  }

  .hero-media-layer {
    inset: -70px calc(50% - 50vw) -42px;
    background:
      radial-gradient(circle at 72% 42%, rgba(87, 201, 232, 0.12), transparent 22rem),
      radial-gradient(circle at 40% 78%, rgba(217, 182, 63, 0.08), transparent 20rem),
      linear-gradient(180deg, rgba(7, 11, 19, 0.38), rgba(7, 11, 19, 0.9));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video {
    display: none;
  }

  .hero-media-layer {
    background:
      radial-gradient(circle at 68% 38%, rgba(87, 201, 232, 0.1), transparent 26rem),
      radial-gradient(circle at 74% 74%, rgba(217, 182, 63, 0.08), transparent 28rem),
      linear-gradient(180deg, rgba(7, 11, 19, 0.22), rgba(7, 11, 19, 0.92));
  }
}
