:root {
  --bg: #050816;
  --bg-elev: rgba(255, 255, 255, 0.045);
  --bg-elev-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #b7bfd1;
  --muted-2: #8b93a9;
  --accent: #8de9ff;
  --accent-2: #79b9ff;
  --accent-3: #8e8cff;
  --danger: #ffafaf;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --header-h: 84px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.98;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.24;
  pointer-events: none;
}

.orb-a {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #22d3ee;
}

.orb-b {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 24rem;
  background: #6366f1;
}

.orb-c {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  top: 42rem;
  background: #38bdf8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(5, 8, 22, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.36);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 233, 255, 0.3);
  background: rgba(141, 233, 255, 0.08);
  color: var(--accent);
  font-size: 1.2rem;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted-2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.desktop-nav .nav-cta {
  background: rgba(255, 255, 255, 0.94);
  color: #050816;
  font-weight: 600;
}

.desktop-nav .nav-cta:hover {
  background: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0.75rem 0 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem;
  background: rgba(5, 8, 22, 0.9);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.mobile-nav a {
  padding: 1rem 1rem;
  border-radius: 18px;
  color: var(--muted);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.section {
  position: relative;
  padding: 4.35rem 0;
}

.hero {
  padding-top: 3.85rem;
  padding-bottom: 3.7rem;
}

.hero-grid,
.split-layout,
.two-up {
  display: grid;
  gap: clamp(1.15rem, 1.6vw, 1.6rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow-row,
.hero-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7dced;
  font-size: 0.78rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.pill.subtle {
  background: rgba(255, 255, 255, 0.04);
}

h1,
h2,
h3,
.section-kicker,
.eyebrow {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  hyphens: none;
}

strong,
.stat-card strong,
.compact-grid strong,
.mini-cards strong {
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.038em;
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-text,
.section-heading p,
.glass-card p,
.simple-list,
.check-list,
.band-item,
.timeline-item p,
.footer-inner p {
  color: var(--muted);
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 46rem;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 180ms ease;
  border: 1px solid transparent;
}

.button-solid {
  background: rgba(255, 255, 255, 0.96);
  color: #050816;
}

.button-solid:hover {
  transform: translateY(-1px);
  background: #fff;
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid,
.card-grid,
.band-grid,
.mini-cards,
.footer-inner,
.visual-lower,
.bullet-grid {
  display: grid;
  gap: clamp(1.15rem, 1.5vw, 1.6rem);
}

.stats-grid {
  margin-top: 2.25rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 2.2vw, 2.45rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 55%);
  pointer-events: none;
}

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

.stats-grid > *,
.card-grid > *,
.mini-cards > *,
.compact-grid > *,
.band-grid > *,
.visual-lower > * {
  min-width: 0;
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.stat-card p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
}

.visual-panel,
.small-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.visual-panel h3,
.small-panel p {
  margin-top: 0.7rem;
}

.panel-label,
.section-kicker,
.roadmap-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
}

.panel-label.accent,
.section-kicker.accent,
.eyebrow {
  color: var(--accent);
}

.section-kicker.danger {
  color: var(--danger);
}

.top-panel {
  margin-bottom: 1rem;
}

.anchor-panel {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.12));
  border-color: rgba(141, 233, 255, 0.18);
}

.connector-line {
  width: 1px;
  height: 3rem;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(141, 233, 255, 0), rgba(141, 233, 255, 0.8), rgba(141, 233, 255, 0));
}

.mini-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mini-grid span,
.compact-grid div,
.mini-cards div,
.bullet-grid div,
.band-item {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
}

.mini-grid span {
  font-size: 0.92rem;
  color: #e8f6ff;
}

.small-panel p {
  margin: 0.55rem 0 0;
}

.band-section {
  padding-top: 1rem;
}

.band-item {
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading p,
.glass-card p,
.timeline-item p,
.check-list li,
.simple-list li,
.compact-grid span,
.mini-cards span,
.footer-inner p,
.site-footer a,
.glass-card a {
  font-size: 0.98rem;
  line-height: 1.75;
}

.glass-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent);
}

.four-up,
.three-up,
.two-up,
.five-up {
  margin-top: 1.4rem;
}

.simple-list,
.check-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  list-style: none;
  margin: 1.25rem 0 0;
}

.simple-list li,
.check-list li {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-list li {
  position: relative;
  padding-left: 2.8rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.muted li::before {
  color: #9aa4b8;
}

.accent-list li {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(141, 233, 255, 0.16);
  color: #e8fbff;
}

.paradox-card {
  background: linear-gradient(135deg, rgba(255, 176, 176, 0.08), rgba(255,255,255,0.04));
}

.spotlight-card,
.cta-card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.11));
  border-color: rgba(141, 233, 255, 0.18);
}

.bullet-grid,
.mini-cards,
.compact-grid {
  margin-top: 1.25rem;
}

.compact-grid div,
.mini-cards div {
  display: grid;
  gap: 0.5rem;
}

.compact-grid strong,
.mini-cards strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.stat-card strong {
  text-wrap: pretty;
}

.compact-grid span,
.mini-cards span,
.simple-list li,
.check-list li {
  text-wrap: pretty;
}

.compact-grid div,
.mini-cards div,
.bullet-grid div {
  min-height: 100%;
}

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

.lower-architecture .compact-grid div {
  padding: 1.2rem 1.2rem 1.25rem;
}

.lower-architecture .compact-grid strong {
  font-size: 1.05rem;
}

.wide-list li {
  padding-right: 1.35rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(141,233,255,0), rgba(141,233,255,0.85), rgba(141,233,255,0));
}

.timeline-item {
  padding-left: 4rem;
}

.timeline-step {
  position: absolute;
  left: 0.25rem;
  top: 1.3rem;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(141, 233, 255, 0.14);
  border: 1px solid rgba(141, 233, 255, 0.24);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.roadmap-grid .glass-card {
  display: flex;
  flex-direction: column;
}

.price {
  display: block;
  margin-top: auto;
  font-size: 2rem;
  line-height: 1.1;
}

.meter {
  height: 0.55rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

.big-number {
  font-size: clamp(3rem, 7vw, 4.7rem);
  letter-spacing: -0.05em;
  margin: 0.8rem 0 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  align-items: start;
}

.footer-inner strong {
  font-size: 1rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.site-footer a:hover,
.glass-card a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.14s;
}

.reveal.delay-3 {
  transition-delay: 0.2s;
}

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

@media (min-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  }

  .band-grid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }

  .four-up {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }

  .three-up {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }

  .two-up,
  .split-layout,
  .hero-grid {
    grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
    align-items: start;
  }

  .visual-lower,
  .mini-grid,
  .bullet-grid,
  .mini-cards.two-cols {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }

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

  .metrics-grid.three-cols,
  .mini-cards.three-cols {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }

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

@media (min-width: 1040px) {
  .container {
    width: min(calc(100% - 5.5rem), 1460px);
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(20rem, 0.94fr);
    gap: clamp(1.5rem, 2vw, 2.25rem);
    align-items: center;
  }

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

  .four-up {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }

  .three-up {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }

  .architecture-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 2vw, 2.25rem);
  }

  .lower-architecture,
  .split-layout {
    gap: clamp(1.25rem, 1.6vw, 1.7rem);
  }

  .roadmap-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }

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

@media (min-width: 1400px) {
  .glass-card {
    padding: 2rem;
  }

  .hero-copy {
    max-width: 50rem;
  }

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


@media (min-width: 1040px) {
  .hero-copy .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy .stats-grid > :last-child {
    grid-column: 1 / -1;
  }

  .hero-copy .stat-card {
    min-height: 13.5rem;
  }

  .hero-copy .stat-card strong {
    font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  }

  .hero-copy .stat-card:last-child strong {
    font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  }

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

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .lower-architecture .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .lower-architecture .compact-grid div {
    min-height: 11.5rem;
  }

  .check-list.wide-list li {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .architecture-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 1500px) {
  .four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-copy .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-copy .stats-grid > :last-child {
    grid-column: auto;
  }

  .hero-copy .stat-card {
    min-height: 0;
  }
}

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

  .reveal,
  .reveal.delay-1,
  .reveal.delay-2,
  .reveal.delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bg-orb {
    animation: none !important;
  }
}


/* v5 spacing fix: the issue was inter-section block spacing, not card padding */
.card-grid + .split-layout,
.card-grid + .two-up,
.architecture-layout + .lower-architecture,
.roadmap-grid + .split-layout,
#credibility .card-grid + .split-layout,
#problem .card-grid + .split-layout {
  margin-top: clamp(1.35rem, 2vw, 2rem);
}

/* Keep paired rows comfortably separated at desktop widths */
@media (min-width: 1040px) {
  .card-grid + .split-layout,
  .card-grid + .two-up,
  .architecture-layout + .lower-architecture,
  .roadmap-grid + .split-layout,
  #credibility .card-grid + .split-layout,
  #problem .card-grid + .split-layout {
    margin-top: clamp(1.5rem, 2.1vw, 2.25rem);
  }
}

/* Slightly more breathing room inside the large lower cards */
.lower-architecture > .glass-card,
#credibility .split-layout > .glass-card,
#roadmap .split-layout > .glass-card,
#problem .split-layout > .glass-card {
  padding: clamp(1.9rem, 2.35vw, 2.7rem);
}



/* V7 polish: floating header + premium button fixes */
body {
  overflow-x: hidden;
}

.site-shell {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 120;
  padding: 0 0 1rem;
}

.header-inner {
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .header-inner {
  background: rgba(5, 8, 22, 0.86);
  border-color: rgba(141, 233, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}

.desktop-nav {
  gap: 0.35rem;
}

.desktop-nav a {
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.desktop-nav .nav-cta,
.desktop-nav .nav-cta:visited,
.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible {
  color: #050816 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,245,255,0.96));
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.62);
}

.hero-actions,
.tag-row {
  align-items: center;
}

.hero-actions {
  margin-top: 1.8rem;
  gap: 0.95rem;
}

.hero-actions .button {
  position: relative;
  overflow: hidden;
  min-height: 3.65rem;
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.hero-actions .button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.button-solid,
.button-solid:visited,
.button-solid:hover,
.button-solid:focus-visible {
  color: #050816 !important;
}

.button-solid {
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(240,245,255,0.965));
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 16px 42px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.65);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  transform: translateY(-1px);
}

.button-ghost,
.button-ghost:visited {
  color: var(--text);
  border-color: rgba(141, 233, 255, 0.12);
  background: linear-gradient(180deg, rgba(22, 31, 60, 0.86), rgba(10, 17, 36, 0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 28px rgba(0,0,0,0.18);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #f5faff;
  background: linear-gradient(180deg, rgba(28, 41, 79, 0.92), rgba(12, 21, 45, 0.9));
  border-color: rgba(141, 233, 255, 0.24);
  transform: translateY(-1px);
}

.glass-card a.button,
.glass-card a.button:hover,
.glass-card a.button:focus-visible {
  margin-top: 0;
}

.tag-row {
  margin-top: 1rem;
  gap: 0.8rem;
  max-width: 64rem;
}

.tag-row .pill {
  padding: 0.82rem 1.08rem;
  font-size: 0.84rem;
  line-height: 1.1;
  color: #dfe7f6;
  border-color: rgba(141, 233, 255, 0.14);
  background: linear-gradient(180deg, rgba(18, 28, 52, 0.84), rgba(9, 16, 34, 0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 24px rgba(0,0,0,0.16);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.tag-row .pill:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(141, 233, 255, 0.28);
  background: linear-gradient(180deg, rgba(24, 38, 70, 0.9), rgba(10, 18, 38, 0.88));
}

#support .hero-actions {
  margin-top: 2rem;
  margin-bottom: 0.4rem;
  gap: 1rem;
}

#support .hero-actions .button {
  min-height: 3.8rem;
  padding-inline: 1.7rem;
  font-size: 1.04rem;
}

#support .hero-actions .button-solid {
  min-width: 21rem;
}

@media (max-width: 759px) {
  .site-header {
    top: 0.55rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  #support .hero-actions .button,
  #support .hero-actions .button-solid {
    width: 100%;
    min-width: 0;
  }

  .tag-row {
    gap: 0.7rem;
  }

  .tag-row .pill {
    font-size: 0.8rem;
    padding: 0.75rem 0.95rem;
  }
}

/* Verification marker: BUTTON-POLISH-V7 */


/* V8 anchor offset fix: keep section content clear of the floating header */
:root {
  --anchor-offset: 6.15rem;
}

.section[id],
footer[id] {
  scroll-margin-top: var(--anchor-offset);
}

@media (max-width: 759px) {
  :root {
    --anchor-offset: 5.35rem;
  }
}

/* V9 tighter anchor offset */


/* V10 additions: preloader, grant banner, and credibility team row */
body.is-preloading {
  overflow: hidden;
}

.preloader {
  --preload-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.15), transparent 26%),
    radial-gradient(circle at 50% 60%, rgba(99, 102, 241, 0.14), transparent 28%),
    rgba(5, 8, 22, 0.96);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.preloader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  width: min(100%, 28rem);
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  text-align: center;
}

.preloader-logo-wrap {
  position: relative;
  width: clamp(9rem, 28vw, 12.5rem);
}

.preloader-logo-stack {
  position: relative;
  aspect-ratio: 1;
  border-radius: 2rem;
}

.preloader-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.preloader-logo-base {
  filter: grayscale(1) brightness(0.9) contrast(1.08);
}

.preloader-logo-fill {
  clip-path: inset(0 calc(100% - (var(--preload-progress) * 1%)) 0 0 round 2rem);
  filter: saturate(1.08) drop-shadow(0 0 28px rgba(34, 211, 238, 0.22));
}

.preloader-logo-glow {
  position: absolute;
  inset: auto 12% -8% 12%;
  height: 2rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.35);
  filter: blur(24px);
  opacity: calc(0.25 + (var(--preload-progress) / 100) * 0.55);
}

.preloader-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
}

.preloader-copy strong {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -0.04em;
}

.preloader-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.preloader-meter {
  width: min(100%, 19rem);
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(calc(var(--preload-progress) / 100));
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transition: transform 180ms ease;
}

.grant-banner {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.11), rgba(99, 102, 241, 0.11));
  border-color: rgba(141, 233, 255, 0.18);
}

.grant-banner h3 {
  margin-top: 0.5rem;
}

.grant-banner p {
  margin: 0.75rem 0 0;
}

.grant-banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.grant-banner-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: #e8f6ff;
  font-size: 0.84rem;
}

.team-grid {
  margin-top: 1.4rem;
}

@media (max-width: 759px) {
  .grid-overlay {
    background-size: 88px 88px;
    opacity: 0.82;
  }

  .bg-orb {
    filter: blur(96px);
    opacity: 0.18;
  }

  .preloader-inner {
    gap: 0.95rem;
  }
}

@media (min-width: 760px) {
  .grant-banner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader,
  .preloader-meter span {
    transition: none;
  }
}


/* V11 additions: tighter section rhythm, brighter hover states, and rotating testimonial layout */
.glass-card,
.mini-grid span,
.compact-grid div,
.mini-cards div,
.bullet-grid div,
.band-item,
.simple-list li,
.check-list li {
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, color 220ms ease;
}

.grant-banner,
.testimonial-card {
  isolation: isolate;
}

.one-up {
  grid-template-columns: 1fr;
}

.testimonial-wrap {
  margin-top: 1.4rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(255,255,255,0.045));
  border-color: rgba(141, 233, 255, 0.14);
}

.testimonial-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 233, 255, 0.18);
  background: rgba(141, 233, 255, 0.08);
  color: #dffbff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.testimonial-note {
  margin: 0.95rem 0 0;
  max-width: 54rem;
}

.testimonial-quote {
  margin: 1.35rem 0 0;
  font-size: clamp(1.15rem, 2.15vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #f7fdff;
}

.testimonial-meta {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
}

.testimonial-meta strong {
  font-size: 1rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (hover: hover) {
  .glass-card:hover,
  .mini-grid span:hover,
  .compact-grid div:hover,
  .mini-cards div:hover,
  .bullet-grid div:hover,
  .band-item:hover,
  .simple-list li:hover,
  .check-list li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.072);
    border-color: rgba(141, 233, 255, 0.18);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(141, 233, 255, 0.05) inset;
  }

  .anchor-panel:hover,
  .testimonial-card:hover {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(99, 102, 241, 0.12));
    border-color: rgba(141, 233, 255, 0.22);
  }

  .simple-list li:hover,
  .check-list li:hover {
    color: #edf8ff;
  }
}

@media (max-width: 760px) {
  .testimonial-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-status {
    white-space: normal;
  }
}


/* v13 refinements */
.desktop-nav .nav-cta.active,
.desktop-nav .nav-cta.active:hover,
.desktop-nav .nav-cta.active:focus-visible {
  color: #050816 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(233, 246, 255, 0.96));
  border: 1px solid rgba(141,233,255,0.42);
  box-shadow: 0 12px 34px rgba(0,0,0,0.24), 0 0 0 1px rgba(141,233,255,0.12) inset;
}

.mobile-nav a[href="#support"].active {
  color: var(--text);
  background: rgba(141, 233, 255, 0.12);
  border: 1px solid rgba(141, 233, 255, 0.16);
}

.footer-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-meta p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.65;
}


/* V15: strategic polish based on external review */
.desktop-nav a[href="contact/"] {
  color: #dce8f7;
}

.pill-button {
  cursor: pointer;
  font: inherit;
}

.link-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.link-pair a {
  margin-top: 0;
}

.standards-section {
  padding-top: 2.2rem;
}

.standards-layout {
  align-items: stretch;
}

.standards-card,
.analogy-card {
  min-height: 100%;
}

.framework-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.framework-grid div,
.flow-principles div,
.phase-strip div {
  position: relative;
  min-width: 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(141,233,255,0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 29, 54, 0.75), rgba(8, 14, 32, 0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.framework-grid strong,
.flow-principles strong,
.phase-strip strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.framework-grid span,
.flow-principles span,
.phase-strip p {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.analogy-flow {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.analogy-flow span {
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(0,0,0,0.2);
}

.analogy-flow strong {
  color: var(--accent);
  text-align: center;
}

.inline-button {
  margin-top: 1.35rem !important;
}

.flowbook-section {
  padding-top: 2.2rem;
}

.flowbook-layout {
  align-items: center;
}

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

.flow-principles {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.flowbook-card {
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border-color: rgba(141,233,255,0.18);
  background: linear-gradient(145deg, rgba(34,211,238,0.09), rgba(99,102,241,0.08) 45%, rgba(255,255,255,0.035));
}

.flowbook-topline,
.flowbook-controls,
.zkdude-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.flowbook-toggle,
.flowbook-controls button,
.flowbook-controls a,
.zkdude-prompts button {
  border: 1px solid rgba(141,233,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--text);
  padding: 0.72rem 1rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  transition: 180ms ease;
}

.flowbook-toggle:hover,
.flowbook-controls button:hover,
.flowbook-controls a:hover,
.zkdude-prompts button:hover {
  transform: translateY(-1px);
  border-color: rgba(141,233,255,0.28);
  background: rgba(141,233,255,0.08);
}

.flowbook-stage {
  display: grid;
  place-items: center;
  margin-top: 1rem;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(141,233,255,0.1), transparent 36%), rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 20rem;
}

.flowbook-stage img {
  display: block;
  width: min(100%, 27rem);
  max-height: 35rem;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.35));
  transition: opacity 220ms ease, transform 220ms ease;
}

.flowbook-stage.is-changing img {
  opacity: 0.35;
  transform: scale(0.985);
}

.flowbook-caption {
  padding: 1.2rem 0.25rem 0;
}

.flowbook-caption p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.flowbook-progress {
  height: 0.55rem;
  margin: 1.15rem 0 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.flowbook-progress span {
  display: block;
  height: 100%;
  width: 5%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transition: width 260ms ease;
}

.phase-strip {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.phase-strip div span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
}

.zkdude-launcher {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.95rem 0.62rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.22);
  background: rgba(5, 8, 22, 0.78);
  color: var(--text);
  box-shadow: 0 18px 52px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.zkdude-launcher img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(141,233,255,0.32);
}

.zkdude-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.zkdude-modal.open {
  display: flex;
}

.zkdude-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(14px);
}

.zkdude-panel {
  position: relative;
  width: min(100%, 42rem);
  padding: clamp(1.4rem, 2.4vw, 2.3rem);
  border-radius: 32px;
  border: 1px solid rgba(141,233,255,0.18);
  background: linear-gradient(145deg, rgba(12,20,42,0.96), rgba(7,11,26,0.98));
  box-shadow: 0 34px 100px rgba(0,0,0,0.55);
}

.zkdude-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.zkdude-panel-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-right: 2.5rem;
}

.zkdude-panel-head img {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.35rem;
  box-shadow: 0 0 34px rgba(141,233,255,0.24);
}

.zkdude-panel > p {
  color: var(--muted);
  line-height: 1.75;
}

.zkdude-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.zkdude-note,
.form-note {
  color: var(--muted-2) !important;
  font-size: 0.9rem !important;
  margin-top: 1rem !important;
}

.contact-hero {
  padding-top: 4rem;
}

.contact-layout {
  align-items: start;
}

.contact-intro h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.contact-direct {
  display: inline-grid;
  gap: 0.2rem;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(141,233,255,0.16);
  background: rgba(141,233,255,0.06);
}

.contact-direct span {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-direct a {
  color: var(--accent);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(0,0,0,0.24);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(141,233,255,0.42);
  box-shadow: 0 0 0 4px rgba(141,233,255,0.08);
}

@media (min-width: 760px) {
  .framework-grid,
  .flow-principles,
  .phase-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-form .full,
  .contact-form button,
  .contact-form .form-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .standards-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  }

  .flowbook-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 0.95fr);
  }

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

@media (max-width: 759px) {
  .zkdude-launcher {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .zkdude-launcher span {
    display: none;
  }

  .flowbook-stage img {
    width: 100%;
  }
}

/* Verification marker: STRATEGIC-POLISH-V15 */


/* V16 refinements: uniform storyboard viewport + illustrative code block */
.flowbook-card {
  max-width: 35rem;
}

.flowbook-stage {
  width: min(100%, 28rem);
  aspect-ratio: 10 / 14.2;
  margin-inline: auto;
  padding: 1rem;
  min-height: 0;
  background: #f7f8fb;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.flowbook-stage img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  background: #f7f8fb;
  border-radius: 18px;
}

.flowbook-caption,
.flowbook-progress,
.flowbook-controls {
  max-width: 28rem;
  margin-inline: auto;
}

.anchor-example-layout {
  align-items: center;
}

.anchor-example-copy p {
  color: var(--muted);
}

.code-mock-card {
  padding: clamp(1.35rem, 1.8vw, 1.75rem);
}

.code-mock-card pre {
  margin: 1rem 0 0.85rem;
  padding: 1.1rem 1rem;
  border-radius: 22px;
  overflow: auto;
  background: linear-gradient(180deg, rgba(3,10,28,0.96), rgba(8,15,38,0.92));
  border: 1px solid rgba(141,233,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.code-mock-card code {
  display: block;
  color: #d9ecff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre;
}

.code-mock-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 1040px) {
  .anchor-example-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  }
}

@media (max-width: 759px) {
  .flowbook-card {
    max-width: 100%;
  }

  .flowbook-stage,
  .flowbook-caption,
  .flowbook-progress,
  .flowbook-controls {
    max-width: 100%;
    width: 100%;
  }

  .flowbook-stage {
    aspect-ratio: 10 / 13.8;
    padding: 0.8rem;
  }

  .code-mock-card code {
    font-size: 0.78rem;
  }
}

/* Verification marker: FLOWBOOK-UNIFORM-V16 */


/* V18 bespoke phone-native walkthrough */
.flowbook-card.phone-storyboard {
  max-width: 24.5rem;
  margin-inline: auto;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.phone-storyboard .flowbook-topline,
.phone-storyboard .flowbook-caption,
.phone-storyboard .flowbook-progress,
.phone-storyboard .flowbook-controls {
  max-width: 22rem;
  margin-inline: auto;
}

.phone-scene {
  display: block;
  width: min(100%, 22rem);
  margin: 0.7rem auto 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.phone-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  padding: 0.4rem;
  border-radius: 3rem;
  background: linear-gradient(145deg, rgba(170,179,195,0.9), rgba(44,51,70,0.92) 15%, rgba(7,9,18,1) 50%, rgba(82,92,115,0.82) 84%, rgba(193,197,207,0.92));
  box-shadow: 0 26px 70px rgba(1,6,20,0.42), 0 8px 20px rgba(2,8,20,0.22);
}

.phone-shell::before {
  content: '';
  position: absolute;
  inset: -5% -8%;
  border-radius: 4rem;
  background: radial-gradient(circle at 50% 36%, rgba(112, 98, 255, 0.25), rgba(111,225,255,0.15) 30%, rgba(8,11,27,0) 72%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.phone-shell::after {
  content: '';
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -1.3rem;
  height: 2.4rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), rgba(0,0,0,0));
  filter: blur(10px);
  pointer-events: none;
}

.phone-button {
  position: absolute;
  z-index: 1;
  right: -0.18rem;
  width: 0.16rem;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(205, 209, 217, 0.75), rgba(86, 93, 110, 0.75));
}

.phone-button-top { top: 18%; height: 9%; }
.phone-button-mid { top: 31%; height: 14%; }
.phone-button-right { top: 49%; height: 11%; }

.phone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.55rem;
  background: radial-gradient(circle at 50% 18%, rgba(91, 76, 235, 0.22), rgba(8, 11, 25, 0) 34%), linear-gradient(180deg, #0a0d17 0%, #0a0e19 48%, #0b1020 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
  transition: opacity 180ms ease, transform 180ms ease;
}

.phone-screen.is-changing {
  opacity: 0.78;
  transform: scale(0.992);
}

.phone-screen-glow {
  position: absolute;
  inset: 14% 14% 28%;
  background: radial-gradient(circle at 50% 28%, rgba(116, 103, 255, 0.22), rgba(105,222,255,0.07) 45%, rgba(5,9,18,0) 72%);
  filter: blur(16px);
  pointer-events: none;
}

.phone-status {
  position: absolute;
  top: 1rem;
  left: 1.15rem;
  right: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(237, 243, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.phone-status-icons i {
  display: block;
  width: 0.9rem;
  height: 0.5rem;
  border-radius: 0.18rem;
  border: 1px solid rgba(232,238,255,0.9);
  opacity: 0.9;
}

.phone-status-icons i:nth-child(1) { width: 0.46rem; border-radius: 999px; }
.phone-status-icons i:nth-child(2) { width: 0.72rem; }
.phone-status-icons i:nth-child(3) { width: 1rem; position: relative; }
.phone-status-icons i:nth-child(3)::after {
  content: '';
  position: absolute;
  right: -0.18rem;
  top: 0.12rem;
  width: 0.12rem;
  height: 0.22rem;
  border-radius: 99px;
  background: rgba(232,238,255,0.9);
}

.phone-notch {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 1.45rem;
  border-radius: 999px;
  background: #04060d;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}

.phone-brand {
  position: absolute;
  top: 3.3rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(232, 240, 255, 0.86);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.phone-content {
  position: absolute;
  inset: 5.75rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-layout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  color: #eef4ff;
}

.screen-layout h4 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.screen-layout p {
  margin: 0;
  color: rgba(214, 224, 244, 0.82);
  font-size: 0.94rem;
  line-height: 1.48;
}

.screen-mini-label {
  color: #8fe7ff;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.screen-glyph,
.screen-hex-badge,
.request-card,
.continuity-ring,
.masked-panel {
  align-self: center;
}

.screen-glyph {
  width: 7rem;
  height: 7rem;
  position: relative;
  border-radius: 2rem;
  background: radial-gradient(circle at 50% 35%, rgba(137,120,255,0.28), rgba(66,84,255,0.08) 45%, rgba(0,0,0,0) 72%);
}

.shield-glyph::before,
.shield-glyph::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.shield-glyph::before {
  top: 0.8rem;
  width: 4.2rem;
  height: 4.9rem;
  clip-path: polygon(50% 0%, 90% 18%, 90% 56%, 50% 100%, 10% 56%, 10% 18%);
  background: linear-gradient(180deg, rgba(161, 150, 255, 0.95), rgba(92, 85, 242, 0.6));
  box-shadow: 0 0 24px rgba(113,108,255,0.42);
}

.shield-glyph::after {
  top: 2rem;
  width: 1.3rem;
  height: 1.7rem;
  border: 2px solid rgba(239,243,255,0.95);
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
  border-bottom: 0;
}

.screen-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.screen-chip-row.three .screen-chip { flex: 1 1 calc(33.333% - 0.5rem); }
.screen-chip-row.two .screen-chip { flex: 1 1 calc(50% - 0.5rem); }
.screen-chip-row.compact .screen-chip { padding-inline: 0.65rem; }

.screen-chip {
  border-radius: 999px;
  border: 1px solid rgba(143, 231, 255, 0.16);
  background: rgba(15, 21, 38, 0.72);
  color: rgba(235, 242, 255, 0.9);
  font-size: 0.8rem;
  padding: 0.48rem 0.72rem;
  text-align: center;
  line-height: 1.2;
}

.screen-primary-action,
.primary-action,
.ghost-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.9rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.screen-primary-action,
.primary-action {
  background: linear-gradient(90deg, rgba(116, 104, 255, 0.94), rgba(146, 132, 255, 0.94));
  color: #f8fbff;
  box-shadow: 0 8px 20px rgba(100,92,255,0.32);
}

.screen-primary-action {
  width: 100%;
  margin-top: auto;
  font-size: 0.95rem;
}

.screen-idline {
  margin-top: -0.15rem;
  color: rgba(221, 229, 247, 0.66);
  font-size: 0.82rem;
  text-align: center;
  word-break: break-all;
}

.screen-hex-badge {
  width: 10rem;
  height: 9.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.screen-hex-core {
  position: absolute;
  inset: 0.7rem 1.2rem 1.8rem;
  clip-path: polygon(50% 0%, 89% 24%, 89% 76%, 50% 100%, 11% 76%, 11% 24%);
  background: linear-gradient(180deg, rgba(111, 97, 255, 0.92), rgba(62, 71, 214, 0.42));
  box-shadow: 0 0 26px rgba(111, 97, 255, 0.42);
}

.screen-hex-badge strong,
.screen-hex-badge small {
  position: relative;
  z-index: 1;
}

.screen-hex-badge strong {
  font-size: 1.08rem;
}

.screen-hex-badge small {
  color: rgba(223, 231, 247, 0.72);
  margin-top: 0.2rem;
}

.screen-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: auto;
}

.screen-soft-grid span {
  border-radius: 1rem;
  padding: 0.65rem 0.45rem;
  background: rgba(15, 19, 32, 0.64);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(219, 228, 246, 0.9);
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.25;
}

.screen-flow-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.2rem;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.flow-node span {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(111, 96, 255, 0.2), rgba(14, 22, 42, 0.85));
  border: 1px solid rgba(143,231,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 20px rgba(108, 102, 255, 0.22);
  position: relative;
}

.flow-node-phone span::before,
.flow-node-registry span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.flow-node-phone span::before {
  width: 1.7rem;
  height: 2.3rem;
  border-radius: 0.52rem;
  border: 2px solid rgba(235, 241, 255, 0.9);
}

.flow-node-registry span::before {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid rgba(235, 241, 255, 0.9);
  box-shadow: 0 0 0 0.35rem rgba(109, 100, 255, 0.16);
}

.flow-node label {
  color: rgba(221, 229, 247, 0.88);
  font-size: 0.78rem;
}

.flow-link {
  display: flex;
  gap: 0.32rem;
  align-items: center;
}

.flow-link i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(143,231,255,1), rgba(127, 119, 255, 1));
  box-shadow: 0 0 12px rgba(143,231,255,0.5);
}

.screen-meter {
  width: 100%;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.screen-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(128, 234, 255, 1), rgba(134, 118, 255, 1));
}

.request-card {
  width: 100%;
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(14, 20, 37, 0.96), rgba(11, 15, 28, 0.88));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 34px rgba(2,6,18,0.26);
}

.request-head {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.request-head strong { display: block; font-size: 1rem; }
.request-head small { display: block; color: rgba(216,224,243,0.72); margin-top: 0.12rem; }

.request-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(112, 98, 255, 0.26), rgba(10, 18, 36, 0.85));
  border: 1px solid rgba(143,231,255,0.16);
  position: relative;
}

.request-icon::before,
.request-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(240,244,255,0.92);
}

.request-icon::before { top: 0.45rem; width: 0.75rem; height: 0.75rem; }
.request-icon::after { top: 1.28rem; width: 1.35rem; height: 0.7rem; }

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.ghost-action {
  background: rgba(15, 21, 38, 0.74);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(228, 236, 251, 0.88);
}

.proof-stack {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.proof-chip {
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(180deg, rgba(12,20,39,0.92), rgba(9,14,28,0.82));
  border: 1px solid rgba(144, 232, 255, 0.14);
  font-weight: 700;
  color: #edf4ff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.proof-chip.success::before {
  content: '✓';
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(128, 234, 255, 0.16);
  color: #8fe7ff;
}

.masked-panel {
  width: 100%;
  padding: 0.95rem;
  border-radius: 1.35rem;
  background: rgba(11, 16, 29, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
}

.masked-row {
  height: 0.72rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  background: linear-gradient(90deg, rgba(143,231,255,0.16), rgba(118, 104, 255, 0.18));
}

.masked-row.short { width: 68%; }

.masked-panel small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(209, 218, 238, 0.68);
  line-height: 1.45;
}

.continuity-ring {
  position: relative;
  width: 8.2rem;
  height: 8.2rem;
}

.ring-core,
.ring-orbit {
  position: absolute;
  border-radius: 50%;
}

.ring-core {
  inset: 1.9rem;
  background: radial-gradient(circle at 50% 45%, rgba(131, 118, 255, 0.95), rgba(72, 81, 220, 0.52));
  box-shadow: 0 0 26px rgba(104, 99, 255, 0.38);
}

.ring-orbit {
  inset: 0.2rem;
  border: 1px solid rgba(143,231,255,0.22);
}

.orbit-b {
  inset: 1rem;
  border-color: rgba(118,104,255,0.26);
}

.phone-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.phone-dots span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(245,248,255,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-dots span.active {
  width: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(128,234,255,1), rgba(130,114,255,1));
}

.phone-tap-hint {
  margin-top: 0.75rem;
  color: rgba(201, 217, 244, 0.7);
  font-size: 0.92rem;
}

.phone-storyboard .flowbook-progress,
.phone-storyboard .flowbook-controls {
  margin-top: 0.95rem;
}

.phone-storyboard .flowbook-controls {
  gap: 0.75rem;
  justify-content: space-between;
}

@media (max-width: 759px) {
  .flowbook-card.phone-storyboard { max-width: 100%; }
  .phone-storyboard .flowbook-topline,
  .phone-storyboard .flowbook-caption,
  .phone-storyboard .flowbook-progress,
  .phone-storyboard .flowbook-controls,
  .phone-scene {
    max-width: min(100%, 21rem);
  }

  .screen-layout h4 {
    font-size: 1.4rem;
  }

  .screen-chip {
    font-size: 0.76rem;
  }
}

/* Verification marker: LEFT-PANEL-V21 */


/* V19 refinements: richer phone flow and better desktop balance */
.flowbook-support-note {
  margin-top: 0.9rem;
  max-width: 42rem;
  color: rgba(204, 219, 243, 0.84);
  font-size: 0.98rem;
}

.phone-storyboard .flowbook-panel {
  max-width: 22rem;
  margin-inline: auto;
}

.flowbook-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.flowbook-note-grid div {
  border-radius: 1rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.flowbook-note-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 0.85rem;
}

.flowbook-note-grid span {
  display: block;
  color: rgba(205, 220, 244, 0.72);
  font-size: 0.8rem;
  line-height: 1.4;
}

.phone-storyboard .flowbook-caption {
  padding-top: 0.2rem;
}

.phone-storyboard .flowbook-caption h3 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.phone-storyboard .flowbook-caption p:first-of-type {
  font-size: 1.03rem;
  color: rgba(217, 227, 244, 0.82);
  line-height: 1.45;
}

.phone-dots {
  gap: 0.3rem;
}

.phone-dots span {
  width: 0.34rem;
  height: 0.34rem;
}

.phone-dots span.active {
  width: 0.95rem;
}

.screen-keygrid,
.resolver-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.key-card,
.resolver-item {
  border-radius: 1rem;
  padding: 0.9rem 0.85rem;
  background: linear-gradient(180deg, rgba(15,21,38,0.9), rgba(11,16,29,0.82));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.key-card.wide,
.resolver-item.blocked {
  grid-column: 1 / -1;
}

.key-card strong,
.resolver-item strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.18rem;
}

.key-card span,
.resolver-item span {
  display: block;
  font-size: 0.78rem;
  color: rgba(208, 219, 239, 0.72);
  line-height: 1.35;
}

.resolver-item.blocked {
  background: linear-gradient(180deg, rgba(32, 14, 34, 0.88), rgba(16, 10, 22, 0.84));
  border-color: rgba(255, 131, 175, 0.12);
}

.vault-stack {
  position: relative;
  height: 7rem;
  margin-top: 0.2rem;
}

.vault-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 1.15rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.96), rgba(11, 15, 28, 0.82));
  border: 1px solid rgba(143,231,255,0.12);
  color: rgba(236, 242, 255, 0.92);
  font-size: 0.86rem;
  box-shadow: 0 12px 30px rgba(4,7,18,0.16);
}

.vault-card.front { top: 0; z-index: 3; }
.vault-card.mid { top: 1rem; width: 84%; opacity: 0.86; z-index: 2; }
.vault-card.back { top: 2rem; width: 78%; opacity: 0.68; z-index: 1; }

.proving-ring {
  position: relative;
  width: 9rem;
  height: 9rem;
  margin: 0.15rem auto 0.25rem;
}

.proving-core {
  position: absolute;
  inset: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 42%, rgba(137, 121, 255, 0.98), rgba(76, 82, 221, 0.55));
  box-shadow: 0 0 28px rgba(108, 98, 255, 0.42);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.proving-orbit {
  position: absolute;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(13, 20, 37, 0.86);
  border: 1px solid rgba(143,231,255,0.12);
  color: rgba(222, 232, 249, 0.88);
  font-size: 0.72rem;
}

.orbit-1 { top: 0.4rem; left: 50%; transform: translateX(-50%); }
.orbit-2 { bottom: 1.1rem; left: -0.2rem; }
.orbit-3 { bottom: 1.1rem; right: -0.2rem; }

@media (min-width: 1180px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.02fr);
    align-items: start;
    gap: 1.5rem;
  }

  .phone-storyboard {
    max-width: none;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(19rem, 22rem) minmax(15rem, 1fr);
    grid-template-areas:
      "top top"
      "phone panel";
    column-gap: 1.55rem;
    align-items: center;
  }

  .phone-storyboard .flowbook-topline {
    grid-area: top;
    max-width: none;
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .phone-storyboard .phone-scene {
    grid-area: phone;
    max-width: 22rem;
    margin: 0;
  }

  .phone-storyboard .flowbook-panel {
    grid-area: panel;
    max-width: none;
    margin: 0;
    align-self: center;
  }
}

@media (max-width: 980px) {
  .flowbook-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .phone-storyboard .flowbook-panel {
    max-width: min(100%, 21rem);
  }

  .phone-storyboard .flowbook-caption h3 {
    font-size: 2.2rem;
  }

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

/* Verification marker: LEFT-PANEL-V21 */


/* V20 balance pass: widen phone-side text and remove note-card space */
.flowbook-note-grid {
  display: none !important;
}

.phone-storyboard .flowbook-panel {
  max-width: 26rem;
}

.phone-storyboard .flowbook-caption h3 {
  font-size: clamp(2rem, 2.2vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.phone-storyboard .flowbook-caption p:first-of-type {
  max-width: 26rem;
}

.phone-storyboard .flowbook-controls {
  justify-content: flex-start;
}

@media (min-width: 1180px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(46rem, 1.32fr);
    gap: clamp(1.1rem, 2vw, 2rem);
  }

  .phone-storyboard {
    grid-template-columns: minmax(18rem, 21.5rem) minmax(24rem, 1fr);
    column-gap: clamp(1.6rem, 2.4vw, 2.8rem);
  }

  .phone-storyboard .flowbook-panel {
    max-width: 30rem;
  }

  .phone-storyboard .phone-scene {
    justify-self: end;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(50rem, 1.35fr);
  }

  .phone-storyboard {
    grid-template-columns: minmax(18rem, 22rem) minmax(27rem, 1fr);
  }
}

@media (max-width: 1179px) {
  .phone-storyboard .flowbook-panel {
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Verification marker: LEFT-PANEL-V21 */


/* V21 left-panel restoration pass: keep phone side, improve left composition */
.flowbook-copy h2 {
  max-width: 48rem;
}

.flowbook-copy > p:not(.flowbook-support-note) {
  max-width: 46rem;
}

.flowbook-support-note {
  display: none !important;
}

@media (min-width: 1180px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(46rem, 1.18fr);
    gap: clamp(1rem, 1.6vw, 1.8rem);
  }

  .flowbook-copy {
    padding-top: clamp(2.2rem, 3.5vw, 4.2rem);
  }

  .flowbook-copy h2 {
    font-size: clamp(3.8rem, 4.8vw, 6.2rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .flowbook-copy > p:not(.flowbook-support-note) {
    font-size: clamp(1.05rem, 1.15vw, 1.22rem);
    line-height: 1.38;
    margin-top: 1.15rem;
  }

  .flow-principles {
    max-width: 39rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.55rem;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(50rem, 1.22fr);
  }

  .flowbook-copy h2 {
    font-size: clamp(4.2rem, 4.95vw, 6.6rem);
  }
}

@media (max-width: 1179px) {
  .flowbook-copy h2 {
    max-width: 46rem;
  }
}

/* Verification marker: LEFT-PANEL-V21 */


/* V22 symmetry pass: match left and right panel height while preserving the phone composition */
@media (min-width: 1180px) {
  .flowbook-layout {
    align-items: stretch;
    grid-template-columns: minmax(0, 0.84fr) minmax(47rem, 1.16fr);
    gap: clamp(1rem, 1.5vw, 1.7rem);
  }

  .flowbook-copy,
  .phone-storyboard {
    min-height: 47rem;
  }

  .flowbook-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.35rem;
    padding-bottom: 0.55rem;
  }

  .flowbook-copy h2 {
    max-width: 31rem;
    font-size: clamp(3.55rem, 4.35vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.068em;
    margin-bottom: 0.9rem;
  }

  .flowbook-copy > p:not(.flowbook-support-note) {
    max-width: 35rem;
    font-size: 1.02rem;
    line-height: 1.42;
    margin-top: 0;
  }

  .flow-principles {
    max-width: 38rem;
    margin-top: auto;
    padding-top: 1.45rem;
    gap: 0.9rem;
  }

  .flow-principles div {
    padding: 1rem 1.05rem;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(49rem, 1.18fr);
  }

  .flowbook-copy,
  .phone-storyboard {
    min-height: 47.5rem;
  }

  .flowbook-copy h2 {
    max-width: 32rem;
    font-size: clamp(3.85rem, 4.55vw, 6rem);
  }
}

/* Verification marker: SYMMETRY-V22 */


/* V23 alignment pass: align section labels and bring the phone cluster left without changing the visual design */
@media (min-width: 1180px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(43.5rem, 1.08fr);
    gap: clamp(0.8rem, 1.15vw, 1.15rem);
    align-items: stretch;
  }

  .flowbook-copy {
    padding-top: 0.9rem;
  }

  .phone-storyboard {
    min-height: 47rem;
    grid-template-columns: minmax(18.8rem, 20.8rem) minmax(16.8rem, 1fr);
    column-gap: clamp(0.95rem, 1.25vw, 1.25rem);
    align-content: start;
  }

  .phone-storyboard .flowbook-topline {
    padding-top: 0.9rem;
    margin-bottom: 0.15rem;
    align-items: center;
  }

  .phone-storyboard .phone-scene {
    justify-self: start;
  }

  .phone-storyboard .flowbook-panel {
    max-width: 27rem;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(45.5rem, 1.1fr);
    gap: clamp(0.95rem, 1.25vw, 1.35rem);
  }

  .phone-storyboard {
    min-height: 47.5rem;
    grid-template-columns: minmax(19rem, 21rem) minmax(18rem, 1fr);
    column-gap: clamp(1rem, 1.3vw, 1.4rem);
  }

  .flowbook-copy {
    padding-top: 0.95rem;
  }
}

/* Verification marker: ALIGNMENT-V23 */


/* V24 final spacing polish: pull the phone cluster left, add breathing room between phone and copy, and tighten top alignment */
@media (min-width: 1180px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(40.75rem, 0.98fr);
    gap: clamp(0.75rem, 0.95vw, 1rem);
  }

  .phone-storyboard {
    width: min(100%, 41.75rem);
    justify-self: start;
    grid-template-columns: minmax(18.9rem, 20.3rem) minmax(17.8rem, 1fr);
    column-gap: clamp(1.35rem, 1.7vw, 1.65rem);
  }

  .phone-storyboard .flowbook-topline {
    padding-top: 0.05rem;
    margin-bottom: 0.28rem;
  }

  .phone-storyboard .phone-scene {
    margin-left: -0.1rem;
  }

  .phone-storyboard .flowbook-panel {
    max-width: 18.8rem;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(42.5rem, 1fr);
    gap: clamp(0.85rem, 1.05vw, 1.12rem);
  }

  .phone-storyboard {
    width: min(100%, 43.5rem);
    grid-template-columns: minmax(19rem, 20.8rem) minmax(18.5rem, 1fr);
    column-gap: clamp(1.45rem, 1.8vw, 1.85rem);
  }

  .phone-storyboard .flowbook-panel {
    max-width: 19.75rem;
  }
}

/* Verification marker: FINAL-SPACING-V24 */


/* V25 phone-panel final nudge: pull the phone cluster left and open more breathing room to the right copy */
@media (min-width: 1180px) {
  .phone-storyboard {
    width: min(100%, 41.2rem);
    grid-template-columns: minmax(18.7rem, 19.9rem) minmax(18.1rem, 1fr);
    column-gap: clamp(1.75rem, 2.15vw, 2rem);
  }

  .phone-storyboard .phone-scene {
    margin-left: -0.8rem;
  }

  .phone-storyboard .flowbook-panel {
    max-width: 19.25rem;
  }
}

@media (min-width: 1420px) {
  .phone-storyboard {
    width: min(100%, 42.8rem);
    grid-template-columns: minmax(18.9rem, 20.2rem) minmax(18.9rem, 1fr);
    column-gap: clamp(1.9rem, 2.25vw, 2.15rem);
  }

  .phone-storyboard .phone-scene {
    margin-left: -0.95rem;
  }

  .phone-storyboard .flowbook-panel {
    max-width: 19.9rem;
  }
}

/* Verification marker: PHONE-NUDGE-V25 */


/* V26 direct phone-panel shift: preserve internal spacing, move the whole phone/text cluster left */
@media (min-width: 1180px) {
  .phone-storyboard {
    transform: translateX(-2.4rem);
  }
}

@media (min-width: 1420px) {
  .phone-storyboard {
    transform: translateX(-3.15rem);
  }
}

@media (min-width: 1700px) {
  .phone-storyboard {
    transform: translateX(-3.6rem);
  }
}

/* Verification marker: PHONE-SHIFT-V26 */


/* V27 stable phone-panel shift: use layout margins instead of transform so reveal animation cannot move it back right */
@media (min-width: 1180px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -2.4rem;
    margin-right: 2.4rem;
  }
}

@media (min-width: 1420px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -3.15rem;
    margin-right: 3.15rem;
  }
}

@media (min-width: 1700px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -3.6rem;
    margin-right: 3.6rem;
  }
}

/* Verification marker: STABLE-MARGIN-SHIFT-V27 */


/* V28 calibrated phone-panel shift: halfway back from v27 so the phone cluster lands between v25 and v27 */
@media (min-width: 1180px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -1.25rem;
    margin-right: 1.25rem;
  }
}

@media (min-width: 1420px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -1.75rem;
    margin-right: 1.75rem;
  }
}

@media (min-width: 1700px) {
  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    transform: none !important;
    margin-left: -2rem;
    margin-right: 2rem;
  }
}

/* Verification marker: CALIBRATED-SHIFT-V28 */


/* V29 structural desktop rebuild: stop fighting nested offsets; place copy, phone, and caption on one explicit grid */
@media (min-width: 1180px) {
  .flowbook-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(18.5rem, 20.2rem) minmax(18rem, 21.4rem);
    grid-template-areas:
      "copy topline topline"
      "copy phone panel";
    column-gap: clamp(1.25rem, 1.6vw, 1.7rem);
    align-items: start;
  }

  .flowbook-copy {
    grid-area: copy;
    min-height: 47rem;
    padding-top: 0.9rem;
  }

  .phone-storyboard,
  .phone-storyboard.reveal,
  .phone-storyboard.visible {
    display: contents;
    transform: none !important;
    margin: 0 !important;
  }

  .phone-storyboard .flowbook-topline {
    grid-area: topline;
    max-width: none;
    width: 100%;
    padding-top: 0.9rem;
    margin: 0 0 0.35rem 0;
  }

  .phone-storyboard .phone-scene {
    grid-area: phone;
    width: min(100%, 20.2rem);
    max-width: 20.2rem;
    margin: 0 !important;
    justify-self: start;
    align-self: start;
  }

  .phone-storyboard .flowbook-panel {
    grid-area: panel;
    max-width: 21.4rem;
    margin: 0 0 0 0.35rem !important;
    align-self: center;
  }
}

@media (min-width: 1420px) {
  .flowbook-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(19.2rem, 20.7rem) minmax(19rem, 22rem);
    column-gap: clamp(1.35rem, 1.7vw, 1.9rem);
  }

  .phone-storyboard .phone-scene {
    width: min(100%, 20.7rem);
    max-width: 20.7rem;
  }

  .phone-storyboard .flowbook-panel {
    max-width: 22rem;
    margin-left: 0.45rem !important;
  }
}

/* Verification marker: STRUCTURAL-GRID-V29 */


/* V30 neural background layer + mobile proof-flow spacing */
.neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: screen;
  z-index: 0;
}

@media (max-width: 759px) {
  .neural-canvas {
    opacity: 0.16;
  }

  .phone-storyboard .flowbook-caption {
    margin-top: 2.15rem;
    padding-top: 0;
  }

  .phone-storyboard .flowbook-progress {
    margin-top: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neural-canvas {
    opacity: 0.18;
  }
}

/* Verification marker: NEURAL-BG-V30 */


/* V32 neural beam refinement: preserve the subtle layer while supporting node-to-node beam transmissions. */
.neural-canvas { opacity: 0.36; }
@media (max-width: 759px) { .neural-canvas { opacity: 0.2; } }
@media (prefers-reduced-motion: reduce) { .neural-canvas { opacity: 0.18; } }

/* Verification marker: RANDOM-LONG-BEAMS-V35 */


/* V36 hero title refinement: keeps the new headline premium without pushing the hero balance too far. */
.hero-title-evolved {
  max-width: 47rem;
  font-size: clamp(2.85rem, 6.25vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  margin: 0.85rem 0 0;
  max-width: 46rem;
  color: #e7edf9;
  font-size: clamp(1.22rem, 1.75vw, 1.68rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-subtitle + .hero-text {
  margin-top: 0.95rem;
}

@media (max-width: 759px) {
  .hero-title-evolved {
    font-size: clamp(2.5rem, 11.5vw, 3.75rem);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 0.75rem;
    font-size: 1.13rem;
    line-height: 1.28;
  }
}

/* Verification marker: HERO-TITLE-REFINE-V36 */


/* V37 mobile Safari performance polish + ZkDude access note + touch swipe affordance. */
.neural-canvas {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  contain: strict;
}

@media (max-width: 759px), (pointer: coarse) {
  .neural-canvas {
    opacity: 0.14;
    mix-blend-mode: normal;
  }
}

.phone-scene {
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.zkdude-access-note {
  display: inline-flex;
  align-items: center;
  margin: 0.85rem 0 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(141, 233, 255, 0.16);
  border-radius: 999px;
  background: rgba(141, 233, 255, 0.075);
  color: #dff8ff;
  font-size: 0.86rem;
  line-height: 1.35;
}

/* Verification marker: MOBILE-SAFARI-SWIPE-ZKDUDE-V37 */


/* V38 stronger ZkDude account-required badge + more visible mobile neural layer. */
.zkdude-access-note {
  gap: 0.58rem;
  padding: 0.72rem 1rem 0.72rem 0.74rem;
  border-color: rgba(255, 203, 118, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 199, 94, 0.16), rgba(141, 233, 255, 0.07)),
    rgba(5, 8, 22, 0.68);
  color: #fff0c8;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 171, 0.06),
    0 14px 36px rgba(255, 180, 74, 0.08);
}

.zkdude-access-note::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 219, 142, 0.5);
  background: rgba(255, 203, 118, 0.2);
  color: #ffe3a0;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 759px), (pointer: coarse) {
  .neural-canvas {
    opacity: 0.23;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 900px), (pointer: coarse) {
    .neural-canvas {
      opacity: 0.24;
    }
  }
}

/* Verification marker: MOBILE-NEURAL-VISIBILITY-WARNING-BADGE-V38 */


/* V39 real contact form states and honeypot field. */
.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.74;
  transform: none !important;
}

.form-note.success {
  color: #b9ffd8;
}

.form-note.error {
  color: #ffb9b9;
}

/* Verification marker: PHP-CONTACT-FORM-V39 */


/* V40 dedicated contact success landing page. */
.sent-shell {
  min-height: 100svh;
}

.sent-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.sent-card {
  width: min(100%, 48rem);
  text-align: center;
  padding: clamp(2rem, 5vw, 4.3rem);
  border-color: rgba(141, 233, 255, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 233, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.12)),
    rgba(5, 8, 22, 0.7);
}

.sent-mark {
  width: 5.3rem;
  height: 5.3rem;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 1.3rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(141, 233, 255, 0.32), rgba(141, 233, 255, 0.08));
  border: 1px solid rgba(141, 233, 255, 0.38);
  box-shadow: 0 0 42px rgba(141, 233, 255, 0.16);
}

.sent-mark span {
  display: inline-grid;
  place-items: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.96);
  color: #050816;
  font-size: 1.65rem;
  font-weight: 900;
}

.sent-card h1 {
  margin-top: 0.95rem;
  font-size: clamp(2.25rem, 6vw, 4.4rem);
  line-height: 0.98;
}

.sent-copy {
  max-width: 35rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.sent-pulse {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.7rem 0 0;
}

.sent-pulse i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(141, 233, 255, 0.8);
  box-shadow: 0 0 18px rgba(141, 233, 255, 0.5);
  animation: sentPulse 1.7s ease-in-out infinite;
}

.sent-pulse i:nth-child(2) { animation-delay: 0.16s; }
.sent-pulse i:nth-child(3) { animation-delay: 0.32s; }

@keyframes sentPulse {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-0.28rem); opacity: 1; }
}

.sent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.sent-note {
  margin: 1.25rem 0 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.sent-note a {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .sent-pulse i { animation: none; }
}

/* Verification marker: CONTACT-SUCCESS-PAGE-V40 */


/* Verification marker: PHP-COMPAT-CRITICAL-FALLBACK-V41 */


/* Verification marker: CLEAN-CONTACT-MAIL-V42 */


/* V43 restore original darker page mood: fallback CSS no longer tints the loaded layout. */
.site-shell {
  background: transparent;
}

/* Verification marker: DARK-MOOD-RESTORE-V43 */


/* Verification marker: NATURAL-CONTACT-MAIL-V44 */

/* HEADER-ZKDUDE-FIRST-V46: compact ZkDude access in main navigation */
.nav-zkdude {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 2.72rem;
  padding: 0.34rem 0.92rem 0.34rem 0.42rem;
  border: 1px solid rgba(141, 233, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(141, 233, 255, 0.08), rgba(99, 102, 241, 0.08)), rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-zkdude:hover,
.nav-zkdude:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(141, 233, 255, 0.42);
  background: linear-gradient(135deg, rgba(141, 233, 255, 0.12), rgba(99, 102, 241, 0.11)), rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24), 0 0 28px rgba(141, 233, 255, 0.07);
}

.nav-zkdude img {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(141, 233, 255, 0.22);
}

.mobile-zkdude {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  width: 100%;
  padding: 0.78rem 1rem 0.78rem 0.78rem;
  border: 1px solid rgba(141, 233, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(141, 233, 255, 0.08), rgba(99, 102, 241, 0.08)), rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.mobile-zkdude img {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(141, 233, 255, 0.24);
}

.mobile-zkdude:hover,
.mobile-zkdude:focus-visible {
  border-color: rgba(141, 233, 255, 0.35);
  background: linear-gradient(135deg, rgba(141, 233, 255, 0.12), rgba(99, 102, 241, 0.1)), rgba(255, 255, 255, 0.06);
}

@media (min-width: 1040px) and (max-width: 1280px) {
  .desktop-nav {
    gap: 0.18rem;
  }

  .desktop-nav a {
    padding-inline: 0.72rem;
    font-size: 0.88rem;
  }

  .nav-zkdude {
    padding-right: 0.72rem;
    font-size: 0.84rem;
  }

  .nav-zkdude img {
    width: 1.74rem;
    height: 1.74rem;
  }
}

@media (min-width: 1040px) and (max-width: 1160px) {
  .nav-zkdude span {
    display: none;
  }

  .nav-zkdude {
    gap: 0;
    padding: 0.36rem;
  }
}

/* ZKDID-ROOT-SITE-V1: public-facing root website */
.root-shell .site-header {
  margin-bottom: 0;
}

.root-hero {
  padding-top: clamp(3.5rem, 6vw, 5.8rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.root-hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.root-hero-copy {
  max-width: 54rem;
}

.root-hero h1 {
  max-width: 58rem;
  margin-top: 1.35rem;
  font-size: clamp(3.05rem, 7.3vw, 7.1rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.root-hero-lede {
  max-width: 48rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.72;
}

.root-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.root-trust-strip span {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(141, 233, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.42);
  color: #dbe8f7;
  font-size: 0.86rem;
}

.root-network-visual {
  position: relative;
  min-height: 29rem;
}

.trust-orbit-card {
  position: relative;
  min-height: clamp(25rem, 40vw, 34rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 44%, rgba(141, 233, 255, 0.1), transparent 32%), rgba(255, 255, 255, 0.04);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(141, 233, 255, 0.15);
  border-radius: 999px;
  box-shadow: inset 0 0 50px rgba(141, 233, 255, 0.025);
}

.ring-one { width: 11rem; height: 11rem; }
.ring-two { width: 18rem; height: 18rem; opacity: 0.88; }
.ring-three { width: 25rem; height: 25rem; opacity: 0.62; }

.orbit-core {
  position: relative;
  z-index: 3;
  width: 7.7rem;
  height: 7.7rem;
  padding: 0.38rem;
  border: 1px solid rgba(141, 233, 255, 0.28);
  border-radius: 2rem;
  background: rgba(5, 8, 22, 0.7);
  box-shadow: 0 0 60px rgba(141, 233, 255, 0.14), 0 20px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(18px);
}

.orbit-core img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.55rem;
  object-fit: cover;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  padding: 0.72rem 0.98rem;
  border: 1px solid rgba(141, 233, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.72);
  color: #e8f8ff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 16px 50px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}

.node-human { top: 17%; left: 13%; }
.node-agent { top: 20%; right: 12%; }
.node-device { bottom: 14%; left: 50%; transform: translateX(-50%); }

.orbit-signal {
  position: absolute;
  height: 1px;
  width: 12rem;
  background: linear-gradient(90deg, transparent, rgba(141, 233, 255, 0.7), transparent);
  transform-origin: center;
  opacity: 0.38;
  filter: drop-shadow(0 0 10px rgba(141, 233, 255, 0.5));
  animation: rootSignalPulse 4.8s ease-in-out infinite;
}

.signal-a { top: 34%; left: 21%; transform: rotate(24deg); }
.signal-b { top: 39%; right: 17%; transform: rotate(-28deg); animation-delay: 1.15s; }
.signal-c { bottom: 31%; left: 36%; transform: rotate(90deg); animation-delay: 2.2s; }

@keyframes rootSignalPulse {
  0%, 100% { opacity: 0.08; transform: translate3d(0,0,0) scaleX(0.78) rotate(var(--r, 0deg)); }
  45% { opacity: 0.48; }
  58% { opacity: 0.2; transform: translate3d(0,0,0) scaleX(1.12) rotate(var(--r, 0deg)); }
}

.root-feature-grid .glass-card {
  min-height: 16rem;
}

.root-proof-layout {
  align-items: stretch;
}

.root-story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.root-story-card h2,
.root-roadmap h2 {
  margin-top: 0.7rem;
}

.root-story-actions,
.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.root-storyboard {
  display: grid;
  gap: 1rem;
}

.story-step {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  min-height: 12.5rem;
}

.story-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(141, 233, 255, 0.22);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.root-layer-map {
  display: grid;
  gap: 0.95rem;
  max-width: 60rem;
  margin-inline: auto;
}

.layer-card {
  display: grid;
  gap: 0.55rem;
  text-align: center;
}

.layer-card span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 800;
}

.layer-card strong {
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.accent-layer {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(99, 102, 241, 0.12));
  border-color: rgba(141, 233, 255, 0.22);
}

.layer-connector {
  width: 1px;
  height: 2.4rem;
  margin-inline: auto;
  background: linear-gradient(180deg, transparent, rgba(141, 233, 255, 0.85), transparent);
}

.root-roadmap .check-list strong {
  color: var(--text);
}

@media (min-width: 760px) {
  .root-storyboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .root-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
  }

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

@media (max-width: 759px) {
  .root-hero {
    padding-top: 2.3rem;
  }

  .root-hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .root-network-visual {
    min-height: 22rem;
  }

  .trust-orbit-card {
    min-height: 22rem;
  }

  .ring-three {
    width: 20rem;
    height: 20rem;
  }

  .orbit-node {
    font-size: 0.76rem;
  }

  .node-human { left: 7%; }
  .node-agent { right: 7%; }
}
.signal-a { --r: 24deg; }
.signal-b { --r: -28deg; }
.signal-c { --r: 90deg; }


/* ROOT V2 orbit enhancement + CTA wording update */
.trust-orbit-card {
  background:
    radial-gradient(circle at 50% 46%, rgba(141, 233, 255, 0.14), transparent 28%),
    radial-gradient(circle at 52% 52%, rgba(121, 185, 255, 0.06), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.orbit-neuron-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.neuron-dot {
  position: absolute;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(141, 233, 255, 0.88);
  box-shadow: 0 0 14px rgba(141, 233, 255, 0.42);
  opacity: 0.14;
  animation: orbitNeuronBlink 5.8s ease-in-out infinite;
}

.dot-a { top: 19%; left: 23%; animation-delay: 0.2s; }
.dot-b { top: 26%; right: 26%; animation-delay: 1.1s; }
.dot-c { left: 31%; bottom: 25%; animation-delay: 2s; }
.dot-d { right: 33%; bottom: 20%; animation-delay: 2.9s; }
.dot-e { top: 48%; left: 17%; animation-delay: 3.8s; }
.dot-f { top: 57%; right: 17%; animation-delay: 4.5s; }

.orbit-link {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(141,233,255,0.32), rgba(141,233,255,0.08) 72%, transparent 100%);
  box-shadow: 0 0 18px rgba(141,233,255,0.12);
  opacity: 0.72;
}

.link-human { width: 12rem; transform: rotate(-149deg); }
.link-agent { width: 11.7rem; transform: rotate(-31deg); }
.link-device { width: 10.6rem; transform: rotate(90deg); }

.link-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: -0.31rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(190, 248, 255, 0.96) 0%, rgba(141,233,255,0.8) 42%, rgba(141,233,255,0.04) 100%);
  box-shadow: 0 0 12px rgba(141,233,255,0.78), 0 0 24px rgba(121,185,255,0.3);
  opacity: 0;
}

.link-human .pulse-1 { animation: orbitPulseTravel 4.8s linear infinite; }
.link-human .pulse-2 { animation: orbitPulseTravel 4.8s linear infinite 2.2s; }
.link-agent .pulse-1 { animation: orbitPulseTravel 5.2s linear infinite 0.65s; }
.link-agent .pulse-2 { animation: orbitPulseTravel 5.2s linear infinite 3.1s; }
.link-device .pulse-1 { animation: orbitPulseTravel 5s linear infinite 1.25s; }
.link-device .pulse-2 { animation: orbitPulseTravel 5s linear infinite 3.75s; }

.orbit-node::after {
  content: "";
  position: absolute;
  inset: -0.28rem;
  border: 1px solid rgba(141, 233, 255, 0.12);
  border-radius: inherit;
  opacity: 0;
  animation: orbitNodeHalo 5.6s ease-in-out infinite;
}

.node-human::after { animation-delay: 0.4s; }
.node-agent::after { animation-delay: 1.2s; }
.node-device::after { animation-delay: 2s; }

@keyframes orbitPulseTravel {
  0% { left: 4%; opacity: 0; transform: scale(0.72); }
  10% { opacity: 0.95; }
  70% { opacity: 0.78; }
  100% { left: calc(100% - 0.62rem); opacity: 0; transform: scale(1.08); }
}

@keyframes orbitNodeHalo {
  0%, 100% { opacity: 0; transform: scale(0.96); }
  18% { opacity: 0.35; }
  42% { opacity: 0; transform: scale(1.08); }
}

@keyframes orbitNeuronBlink {
  0%, 100% { opacity: 0.08; transform: scale(0.9); }
  24% { opacity: 0.2; }
  45% { opacity: 0.7; transform: scale(1.12); }
  70% { opacity: 0.16; }
}

@media (max-width: 759px) {
  .link-human { width: 8.9rem; transform: rotate(-149deg); }
  .link-agent { width: 8.8rem; transform: rotate(-31deg); }
  .link-device { width: 8.2rem; transform: rotate(90deg); }

  .node-human { top: 16%; left: 7%; }
  .node-agent { top: 17%; right: 7%; }
  .node-device { bottom: 11%; }
}


/* ROOT V3 orbit phone-core upgrade */
.orbit-core.orbit-phone-core {
  width: 8.65rem;
  height: 12.6rem;
  padding: 0;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.96), rgba(7, 12, 24, 0.92));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 0 1px rgba(141, 233, 255, 0.16),
    0 16px 44px rgba(0,0,0,0.42),
    0 0 64px rgba(141, 233, 255, 0.18);
}

.orbit-phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2.2rem;
  padding: 0.46rem;
  background: linear-gradient(180deg, rgba(180, 196, 220, 0.18), rgba(255,255,255,0.03));
}

.orbit-phone-shell::before {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.orbit-phone-notch {
  position: absolute;
  z-index: 3;
  top: 0.58rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.65rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.98);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.orbit-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.82rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  background:
    radial-gradient(circle at 50% 34%, rgba(141, 233, 255, 0.2), transparent 25%),
    radial-gradient(circle at 52% 80%, rgba(94, 92, 230, 0.16), transparent 30%),
    linear-gradient(180deg, #0a1020 0%, #081120 52%, #0b1630 100%);
}

.orbit-screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(141,233,255,0.1), transparent 38%);
  animation: orbitScreenBreathe 4.4s ease-in-out infinite;
}

.orbit-screen-mark {
  position: relative;
  z-index: 2;
  width: 4.28rem;
  height: 4.28rem;
  padding: 0.18rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(226,236,242,0.88));
  box-shadow: 0 8px 24px rgba(0,0,0,0.32), 0 0 24px rgba(141,233,255,0.12);
}

.orbit-screen-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.08rem;
  object-fit: cover;
}

.orbit-screen-wordmark,
.orbit-screen-sub {
  position: relative;
  z-index: 2;
  text-align: center;
}

.orbit-screen-wordmark {
  margin-top: 0.22rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  color: #eefbff;
  letter-spacing: 0.02em;
}

.orbit-screen-sub {
  font-size: 0.44rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(210, 242, 255, 0.72);
}

.orbit-screen-signal {
  position: absolute;
  left: 50%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.12);
  transform: translateX(-50%);
  opacity: 0;
}

.orbit-screen-signal.signal-1 {
  bottom: 1.55rem;
  animation: orbitScreenSignal 4.6s ease-out infinite;
}

.orbit-screen-signal.signal-2 {
  bottom: 1.55rem;
  animation: orbitScreenSignal 4.6s ease-out infinite 2.3s;
}

.orbit-link {
  overflow: visible;
}

.link-pulse {
  width: 0.68rem;
  height: 0.68rem;
  margin-top: -0.34rem;
}

.orbit-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.18rem;
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.21rem;
  border-radius: 999px;
  background: rgba(141, 233, 255, 0.58);
  box-shadow: 0 0 12px rgba(141, 233, 255, 0.42);
  opacity: 0.3;
  animation: orbitEndpointSpark 4.8s ease-in-out infinite;
}

.link-agent::after { animation-delay: 1.15s; }
.link-device::after { animation-delay: 2.2s; }

.link-human .pulse-1 { animation: orbitPulseTravelHumanA 4.35s linear infinite; }
.link-human .pulse-2 { animation: orbitPulseTravelHumanB 5.4s linear infinite 1.9s; }
.link-agent .pulse-1 { animation: orbitPulseTravelAgentA 4.95s linear infinite 0.45s; }
.link-agent .pulse-2 { animation: orbitPulseTravelAgentB 5.8s linear infinite 2.9s; }
.link-device .pulse-1 { animation: orbitPulseTravelDeviceA 4.6s linear infinite 1.05s; }
.link-device .pulse-2 { animation: orbitPulseTravelDeviceB 5.2s linear infinite 3.2s; }

.neuron-dot {
  width: 0.36rem;
  height: 0.36rem;
  opacity: 0.12;
}
.dot-a { animation: orbitNeuronBlinkA 5.4s ease-in-out infinite; }
.dot-b { animation: orbitNeuronBlinkB 6.2s ease-in-out infinite; }
.dot-c { animation: orbitNeuronBlinkC 4.9s ease-in-out infinite; }
.dot-d { animation: orbitNeuronBlinkD 6.6s ease-in-out infinite; }
.dot-e { animation: orbitNeuronBlinkE 5.8s ease-in-out infinite; }
.dot-f { animation: orbitNeuronBlinkF 7.1s ease-in-out infinite; }

@keyframes orbitScreenBreathe {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

@keyframes orbitScreenSignal {
  0% { opacity: 0; transform: translateX(-50%) scale(0.4); }
  18% { opacity: 0.45; }
  70% { opacity: 0.12; }
  100% { opacity: 0; transform: translateX(-50%) scale(1.05); }
}

@keyframes orbitEndpointSpark {
  0%, 100% { opacity: 0.16; transform: scale(0.9); }
  30% { opacity: 0.28; }
  52% { opacity: 0.95; transform: scale(1.25); }
  72% { opacity: 0.24; }
}

@keyframes orbitPulseBaseStart {
  0% { left: 4%; opacity: 0; transform: scale(0.62); }
  12% { opacity: 0.95; }
  70% { opacity: 0.8; }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(1.08); }
}

@keyframes orbitPulseTravelHumanA {
  0% { left: 4%; opacity: 0; transform: scale(0.58); filter: brightness(0.95); }
  10% { opacity: 0.82; }
  54% { opacity: 1; filter: brightness(1.25); }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(1.12); filter: brightness(1.05); }
}
@keyframes orbitPulseTravelHumanB {
  0% { left: 4%; opacity: 0; transform: scale(0.66); filter: brightness(1.1); }
  16% { opacity: 0.98; }
  58% { opacity: 0.78; }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(0.96); filter: brightness(0.95); }
}
@keyframes orbitPulseTravelAgentA {
  0% { left: 4%; opacity: 0; transform: scale(0.6); filter: brightness(1.05); }
  12% { opacity: 0.94; }
  64% { opacity: 0.88; filter: brightness(1.35); }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(1.14); filter: brightness(1.0); }
}
@keyframes orbitPulseTravelAgentB {
  0% { left: 4%; opacity: 0; transform: scale(0.72); filter: brightness(0.92); }
  14% { opacity: 0.72; }
  52% { opacity: 1; filter: brightness(1.22); }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(1.02); filter: brightness(1.02); }
}
@keyframes orbitPulseTravelDeviceA {
  0% { left: 4%; opacity: 0; transform: scale(0.64); filter: brightness(1.0); }
  13% { opacity: 0.9; }
  68% { opacity: 0.76; filter: brightness(1.18); }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(1.1); filter: brightness(0.98); }
}
@keyframes orbitPulseTravelDeviceB {
  0% { left: 4%; opacity: 0; transform: scale(0.56); filter: brightness(0.94); }
  18% { opacity: 1; }
  48% { opacity: 0.82; filter: brightness(1.3); }
  100% { left: calc(100% - 0.68rem); opacity: 0; transform: scale(0.98); filter: brightness(1.03); }
}

@keyframes orbitNeuronBlinkA {
  0%,100% { opacity: 0.08; transform: scale(0.88); } 24% { opacity: 0.18; } 47% { opacity: 0.75; transform: scale(1.18); } 70% { opacity: 0.16; }
}
@keyframes orbitNeuronBlinkB {
  0%,100% { opacity: 0.06; transform: scale(0.92); } 20% { opacity: 0.12; } 38% { opacity: 0.54; transform: scale(1.06); } 61% { opacity: 0.2; }
}
@keyframes orbitNeuronBlinkC {
  0%,100% { opacity: 0.07; transform: scale(0.9); } 31% { opacity: 0.22; } 49% { opacity: 0.82; transform: scale(1.16); } 74% { opacity: 0.12; }
}
@keyframes orbitNeuronBlinkD {
  0%,100% { opacity: 0.08; transform: scale(0.96); } 27% { opacity: 0.18; } 56% { opacity: 0.66; transform: scale(1.1); } 80% { opacity: 0.14; }
}
@keyframes orbitNeuronBlinkE {
  0%,100% { opacity: 0.05; transform: scale(0.86); } 22% { opacity: 0.14; } 43% { opacity: 0.58; transform: scale(1.08); } 69% { opacity: 0.15; }
}
@keyframes orbitNeuronBlinkF {
  0%,100% { opacity: 0.07; transform: scale(0.9); } 25% { opacity: 0.15; } 52% { opacity: 0.78; transform: scale(1.14); } 76% { opacity: 0.11; }
}

@media (max-width: 759px) {
  .orbit-core.orbit-phone-core {
    width: 7.7rem;
    height: 11.25rem;
  }
  .orbit-screen-mark {
    width: 3.72rem;
    height: 3.72rem;
  }
  .orbit-screen-wordmark {
    font-size: 0.7rem;
  }
}


/* ROOT V4: proof storyboard import + stronger ZkDude button */
.story-zkdude {
  padding: 0.44rem 1rem 0.44rem 0.48rem;
  min-height: 3.1rem;
  gap: 0.7rem;
  font-size: 0.98rem;
  box-shadow: 0 18px 42px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.07);
}

.story-zkdude img {
  width: 2.2rem;
  height: 2.2rem;
  box-shadow: 0 0 22px rgba(141, 233, 255, 0.24);
}

.root-proof-deck {
  margin-top: clamp(1.15rem, 2vw, 1.8rem);
}

.root-phone-storyboard {
  max-width: none;
}

.root-phone-storyboard .flowbook-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
}

@media (max-width: 759px) {
  .story-zkdude {
    width: 100%;
    justify-content: center;
  }
}


/* ROOT V5: full proof-flow section + stronger orbit phone */
.root-proof.flowbook-section {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.root-phone-storyboard {
  max-width: 100%;
}

.orbit-core.orbit-phone-core {
  width: 9.1rem;
  height: 13.2rem;
  border-radius: 2.35rem;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.98), rgba(7, 12, 24, 0.94));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.045) inset,
    0 0 0 1px rgba(141, 233, 255, 0.18),
    0 22px 64px rgba(0,0,0,0.48),
    0 0 84px rgba(141, 233, 255, 0.22);
}

.orbit-core.orbit-phone-core::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 2.8rem;
  background: radial-gradient(circle at 50% 50%, rgba(141,233,255,0.18), rgba(141,233,255,0.04) 46%, transparent 68%);
  filter: blur(10px);
  opacity: 0.75;
  animation: orbitAuraBeat 5.4s ease-in-out infinite;
}

.orbit-phone-shell {
  animation: orbitPhoneFloatBeat 6.4s ease-in-out infinite;
}

.orbit-phone-shell::after {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0.9rem;
  width: 36%;
  height: 72%;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  opacity: 0.28;
  pointer-events: none;
  filter: blur(0.4px);
}

.orbit-phone-screen {
  gap: 0.34rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(141, 233, 255, 0.24), transparent 24%),
    radial-gradient(circle at 55% 76%, rgba(94, 92, 230, 0.18), transparent 28%),
    linear-gradient(180deg, #091122 0%, #071022 50%, #081631 100%);
}

.orbit-screen-mark {
  width: 4.52rem;
  height: 4.52rem;
  padding: 0.2rem;
  border-radius: 1.32rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.36), 0 0 30px rgba(141,233,255,0.16);
}

.orbit-screen-wordmark {
  font-size: 0.82rem;
  text-shadow: 0 0 16px rgba(141,233,255,0.12);
}

.orbit-screen-sub {
  font-size: 0.46rem;
}

.orbit-heartbeat {
  position: relative;
  z-index: 2;
  width: 5.2rem;
  height: 0.92rem;
  margin-top: 0.08rem;
}

.heartbeat-line,
.heartbeat-scan {
  position: absolute;
  inset: 0;
}

.heartbeat-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(141,233,255,0.08), rgba(141,233,255,0.78), rgba(174,227,255,0.22));
  clip-path: polygon(0% 60%, 16% 60%, 24% 60%, 29% 14%, 36% 86%, 42% 36%, 49% 60%, 66% 60%, 74% 44%, 82% 60%, 100% 60%, 100% 74%, 0% 74%);
  filter: drop-shadow(0 0 8px rgba(141,233,255,0.48));
  opacity: 0.92;
}

.heartbeat-scan::before {
  content: "";
  position: absolute;
  top: 0;
  left: -22%;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), rgba(141,233,255,0.6), transparent);
  filter: blur(1px);
  animation: orbitHeartbeatScan 2.8s linear infinite;
}

.orbit-screen-signal.signal-1 { animation-duration: 4.2s; }
.orbit-screen-signal.signal-2 { animation-duration: 4.2s; animation-delay: 2.1s; }

@keyframes orbitAuraBeat {
  0%, 100% { transform: scale(0.95); opacity: 0.54; }
  10% { transform: scale(1); opacity: 0.82; }
  14% { transform: scale(1.04); opacity: 0.96; }
  18% { transform: scale(1); opacity: 0.68; }
  58% { transform: scale(0.98); opacity: 0.6; }
}

@keyframes orbitPhoneFloatBeat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  10% { transform: translate3d(0, -1px, 0) scale(1.006); }
  12% { transform: translate3d(-0.6px, 0.2px, 0) scale(1.014); }
  14% { transform: translate3d(0.75px, -0.25px, 0) scale(1.016); }
  16% { transform: translate3d(-0.45px, 0.2px, 0) scale(1.008); }
  20% { transform: translate3d(0, -1.2px, 0) scale(1.004); }
  58% { transform: translate3d(0, 0.4px, 0) scale(1); }
}

@keyframes orbitHeartbeatScan {
  0% { left: -22%; opacity: 0; }
  10% { opacity: 0.95; }
  85% { opacity: 0.65; }
  100% { left: 100%; opacity: 0; }
}

@media (max-width: 759px) {
  .orbit-core.orbit-phone-core {
    width: 8rem;
    height: 11.8rem;
  }

  .orbit-screen-mark {
    width: 3.9rem;
    height: 3.9rem;
  }

  .orbit-heartbeat {
    width: 4.55rem;
  }
}


/* ROOT V6: brand root links, proposal-aligned proof flow, interactive sovereignty visuals */
.root-proof .phone-storyboard {
  transform: none;
}

.root-proof .flowbook-layout {
  align-items: center;
}

.sovereignty-explorer h2 {
  margin-top: 0.7rem;
}

.boundary-orbit {
  position: relative;
  min-height: 18rem;
  margin: 1.45rem 0 1.2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(141, 233, 255, 0.1);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(141,233,255,0.1), transparent 32%),
    rgba(0,0,0,0.13);
}

.boundary-ring {
  position: absolute;
  border: 1px solid rgba(141,233,255,0.14);
  border-radius: 999px;
}

.boundary-ring-one { width: 7.5rem; height: 7.5rem; }
.boundary-ring-two { width: 12rem; height: 12rem; opacity: 0.75; }
.boundary-ring-three { width: 16.5rem; height: 16.5rem; opacity: 0.45; }

.boundary-core {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(141,233,255,0.24);
  background: rgba(5,8,22,0.72);
  color: #ecfbff;
  font-weight: 800;
  box-shadow: 0 0 42px rgba(141,233,255,0.12), 0 18px 48px rgba(0,0,0,0.26);
  animation: boundaryCoreBreathe 5.4s ease-in-out infinite;
}

.boundary-node {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(141,233,255,0.18);
  border-radius: 999px;
  background: rgba(5,8,22,0.76);
  color: #dff8ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.boundary-human { top: 14%; left: 13%; }
.boundary-proof { right: 12%; top: 26%; }
.boundary-policy { bottom: 14%; left: 50%; transform: translateX(-50%); }

.boundary-details {
  display: grid;
  gap: 0.72rem;
}

.boundary-details details {
  border: 1px solid rgba(141,233,255,0.12);
  border-radius: 1rem;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.boundary-details summary {
  cursor: pointer;
  padding: 0.92rem 1rem;
  color: #edf9ff;
  font-weight: 700;
}

.boundary-details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.sovereignty-visual-lab {
  padding-top: 1rem;
}

.visual-flow-rail {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.visual-flow-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.45rem, 2vw, 2rem);
  border: 1px solid rgba(141,233,255,0.12);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(141,233,255,0.07), rgba(99,102,241,0.06)),
    rgba(255,255,255,0.035);
  box-shadow: 0 18px 60px rgba(0,0,0,0.2);
  overflow: hidden;
}

.visual-flow-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 60%;
  background: radial-gradient(circle at center, rgba(141,233,255,0.1), transparent 62%);
  pointer-events: none;
}

.visual-flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.2);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.visual-flow-card h3 {
  margin-top: 1rem;
}

.visual-flow-card p {
  color: var(--muted);
}

.visual-flow-card.centre {
  background:
    linear-gradient(135deg, rgba(34,211,238,0.13), rgba(99,102,241,0.13)),
    rgba(255,255,255,0.04);
  border-color: rgba(141,233,255,0.22);
}

.visual-flow-beam {
  position: relative;
  min-height: 3rem;
  display: grid;
  place-items: center;
}

.visual-flow-beam::before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(141,233,255,0.82), transparent);
}

.visual-flow-beam i {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.9);
  box-shadow: 0 0 18px rgba(141,233,255,0.52);
  animation: verticalProofPulse 3.7s ease-in-out infinite;
}

.visual-flow-beam i:nth-child(2) {
  animation-delay: 1.8s;
}

@keyframes boundaryCoreBreathe {
  0%, 100% { transform: scale(0.98); box-shadow: 0 0 36px rgba(141,233,255,0.1), 0 18px 48px rgba(0,0,0,0.26); }
  50% { transform: scale(1.02); box-shadow: 0 0 58px rgba(141,233,255,0.18), 0 18px 48px rgba(0,0,0,0.26); }
}

@keyframes verticalProofPulse {
  0% { top: 0; opacity: 0; transform: scale(0.7); }
  18% { opacity: 0.95; }
  80% { opacity: 0.72; }
  100% { top: calc(100% - 0.48rem); opacity: 0; transform: scale(1.08); }
}

@media (min-width: 1040px) {
  .visual-flow-rail {
    grid-template-columns: minmax(0, 1fr) 3.5rem minmax(0, 1fr) 3.5rem minmax(0, 1fr);
  }

  .visual-flow-beam {
    min-height: 0;
  }

  .visual-flow-beam::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(141,233,255,0.82), transparent);
  }

  .visual-flow-beam i {
    animation-name: horizontalProofPulse;
  }
}

@keyframes horizontalProofPulse {
  0% { left: 0; opacity: 0; transform: scale(0.7); }
  18% { opacity: 0.95; }
  80% { opacity: 0.72; }
  100% { left: calc(100% - 0.48rem); opacity: 0; transform: scale(1.08); }
}

@media (max-width: 759px) {
  .boundary-orbit {
    min-height: 16rem;
  }

  .boundary-ring-three {
    width: 13.5rem;
    height: 13.5rem;
  }

  .visual-flow-card {
    min-height: 12rem;
  }
}


/* ROOT V7: sync hero phone vibration with on-screen heartbeat */
.orbit-phone-core {
  --orbit-heartbeat-cycle: 2.8s;
}

.orbit-core.orbit-phone-core::before {
  animation: orbitAuraBeatSync var(--orbit-heartbeat-cycle) ease-in-out infinite;
}

.orbit-phone-shell {
  animation: orbitPhoneFloatBeatSync var(--orbit-heartbeat-cycle) linear infinite;
  will-change: transform;
}

.heartbeat-line::before {
  animation: orbitHeartbeatGlow var(--orbit-heartbeat-cycle) linear infinite;
  transform-origin: 50% 50%;
}

.heartbeat-scan::before {
  animation: orbitHeartbeatScan var(--orbit-heartbeat-cycle) linear infinite;
}

@keyframes orbitAuraBeatSync {
  0%, 100% { transform: scale(0.95); opacity: 0.52; }
  18% { transform: scale(0.97); opacity: 0.58; }
  28% { transform: scale(1.01); opacity: 0.86; }
  31% { transform: scale(1.055); opacity: 0.98; }
  35% { transform: scale(1.015); opacity: 0.76; }
  60% { transform: scale(0.98); opacity: 0.6; }
}

@keyframes orbitPhoneFloatBeatSync {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  20% { transform: translate3d(0, 0, 0) scale(1); }
  27% { transform: translate3d(0, -0.35px, 0) scale(1.003); }
  30% { transform: translate3d(-0.9px, 0.2px, 0) scale(1.013); }
  31.5% { transform: translate3d(1.1px, -0.25px, 0) scale(1.018); }
  33% { transform: translate3d(-0.8px, 0.2px, 0) scale(1.012); }
  36% { transform: translate3d(0, -0.5px, 0) scale(1.004); }
  68% { transform: translate3d(0, 0.15px, 0) scale(1); }
}

@keyframes orbitHeartbeatGlow {
  0%, 100% { opacity: 0.55; filter: drop-shadow(0 0 6px rgba(141,233,255,0.34)); }
  20% { opacity: 0.62; }
  28% { opacity: 0.9; filter: drop-shadow(0 0 10px rgba(141,233,255,0.54)); }
  31% { opacity: 1; filter: drop-shadow(0 0 13px rgba(141,233,255,0.72)); }
  36% { opacity: 0.82; filter: drop-shadow(0 0 8px rgba(141,233,255,0.42)); }
  70% { opacity: 0.58; }
}


/* ROOT V8: interactive boundary explorer + fuller right panel */
.roadmap-interactive-layout {
  align-items: stretch;
}

.roadmap-interactive-layout > .glass-card {
  min-height: 100%;
}

.boundary-orbit {
  isolation: isolate;
}

.boundary-core {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.boundary-orbit[data-active-boundary="identity"] .boundary-core,
.boundary-orbit[data-active-boundary="proof"] .boundary-core,
.boundary-orbit[data-active-boundary="policy"] .boundary-core,
.boundary-orbit[data-active-boundary="governance"] .boundary-core {
  border-color: rgba(141, 233, 255, 0.34);
  box-shadow: 0 0 56px rgba(141,233,255,0.16), 0 18px 48px rgba(0,0,0,0.28);
}

.boundary-node {
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.boundary-node:hover,
.boundary-node:focus-visible,
.boundary-node.is-active {
  transform: translateY(-1px);
  border-color: rgba(141, 233, 255, 0.45);
  background: rgba(141, 233, 255, 0.12);
  color: #f5fdff;
  box-shadow: 0 0 24px rgba(141, 233, 255, 0.13), 0 14px 42px rgba(0,0,0,0.24);
}

.boundary-policy.is-active {
  transform: translateX(-50%) translateY(-1px);
}

.boundary-governance {
  right: 12%;
  bottom: 18%;
}

.boundary-governance.is-active,
.boundary-governance:hover,
.boundary-governance:focus-visible {
  transform: translateY(-1px);
}

.boundary-energy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(141,233,255,0.45), rgba(141,233,255,0.08), transparent);
  opacity: 0.28;
}

.energy-identity { width: 10.8rem; transform: rotate(-150deg); }
.energy-proof { width: 10.3rem; transform: rotate(-24deg); }
.energy-policy { width: 8.2rem; transform: rotate(90deg); }
.energy-governance { width: 10rem; transform: rotate(34deg); }

.boundary-energy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.24rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.9);
  box-shadow: 0 0 18px rgba(141,233,255,0.52);
  opacity: 0;
}

.boundary-orbit[data-active-boundary="identity"] .energy-identity::after,
.boundary-orbit[data-active-boundary="proof"] .energy-proof::after,
.boundary-orbit[data-active-boundary="policy"] .energy-policy::after,
.boundary-orbit[data-active-boundary="governance"] .energy-governance::after {
  animation: boundaryActivePulse 1.15s ease-out infinite;
}

.boundary-orbit[data-active-boundary="identity"] .energy-identity,
.boundary-orbit[data-active-boundary="proof"] .energy-proof,
.boundary-orbit[data-active-boundary="policy"] .energy-policy,
.boundary-orbit[data-active-boundary="governance"] .energy-governance {
  opacity: 0.82;
  filter: drop-shadow(0 0 12px rgba(141,233,255,0.26));
}

.boundary-details details[open] {
  border-color: rgba(141, 233, 255, 0.28);
  background: linear-gradient(135deg, rgba(141,233,255,0.08), rgba(99,102,241,0.06)), rgba(255,255,255,0.04);
}

.protocol-next-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.protocol-pathway {
  position: relative;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-left: 1.1rem;
}

.protocol-pathway::before {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(141,233,255,0), rgba(141,233,255,0.8), rgba(141,233,255,0));
}

.protocol-pathway div {
  position: relative;
  display: grid;
  gap: 0.18rem;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(141,233,255,0.1);
  border-radius: 1rem;
  background: rgba(0,0,0,0.14);
}

.protocol-pathway div::before {
  content: "";
  position: absolute;
  left: -1.04rem;
  top: 1.05rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.75);
  box-shadow: 0 0 18px rgba(141,233,255,0.42);
}

.protocol-pathway span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.protocol-pathway strong {
  color: var(--text);
  font-size: 1rem;
}

.protocol-pathway small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.protocol-signal {
  position: relative;
  min-height: 5.4rem;
  margin: auto 0 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(141,233,255,0.1);
  background:
    radial-gradient(circle at 50% 50%, rgba(141,233,255,0.1), transparent 42%),
    rgba(0,0,0,0.12);
  overflow: hidden;
}

.protocol-signal::before,
.protocol-signal::after {
  content: "";
  position: absolute;
  inset: 50% 8% auto 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,233,255,0.8), transparent);
}

.protocol-signal::after {
  transform: rotate(8deg);
  opacity: 0.48;
}

.protocol-signal i {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.27rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.95);
  box-shadow: 0 0 20px rgba(141,233,255,0.5);
  animation: protocolSignalTravel 3.8s ease-in-out infinite;
}

.protocol-signal i:nth-child(2) {
  animation-delay: 1.25s;
}

.protocol-signal i:nth-child(3) {
  animation-delay: 2.5s;
}

@keyframes boundaryActivePulse {
  0% { left: 4%; opacity: 0; transform: scale(0.72); }
  18% { opacity: 1; }
  80% { opacity: 0.76; }
  100% { left: calc(100% - 0.48rem); opacity: 0; transform: scale(1.1); }
}

@keyframes protocolSignalTravel {
  0% { left: 8%; opacity: 0; transform: scale(0.75); }
  18% { opacity: 1; }
  82% { opacity: 0.76; }
  100% { left: calc(92% - 0.55rem); opacity: 0; transform: scale(1.1); }
}

@media (max-width: 759px) {
  .boundary-governance {
    right: 8%;
    bottom: 16%;
  }

  .energy-identity { width: 8.2rem; }
  .energy-proof { width: 8rem; }
  .energy-policy { width: 7rem; }
  .energy-governance { width: 7.8rem; }

  .protocol-signal {
    min-height: 4.5rem;
    margin-top: 1.1rem;
  }
}


/* ROOT V9: boundary phone upgrade + pathway pulse refinement */
.boundary-orbit {
  overflow: hidden;
}

.boundary-core.boundary-phone-core {
  width: 6.15rem;
  height: 8.9rem;
  padding: 0;
  border: none;
  border-radius: 2rem;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.boundary-phone-core::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border-radius: 2.4rem;
  background: radial-gradient(circle at 50% 50%, rgba(141,233,255,0.14), rgba(141,233,255,0.03) 48%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: boundaryPhoneAura 2.8s ease-in-out infinite;
}

.boundary-phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2rem;
  padding: 0.26rem;
  background: linear-gradient(180deg, rgba(168, 184, 210, 0.55), rgba(70, 80, 102, 0.86));
  box-shadow: 0 0 0 1px rgba(141,233,255,0.14), 0 18px 44px rgba(0,0,0,0.32);
  animation: boundaryPhoneBeat 2.8s linear infinite;
}

.boundary-phone-shell::before {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: 1.78rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.boundary-phone-shell::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.72rem;
  width: 34%;
  height: 64%;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.02));
  opacity: 0.26;
  pointer-events: none;
}

.boundary-phone-notch {
  position: absolute;
  top: 0.54rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.82rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(5,8,18,0.96);
  z-index: 3;
}

.boundary-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.74rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  background: radial-gradient(circle at 50% 28%, rgba(141,233,255,0.22), transparent 24%), linear-gradient(180deg, #08111f 0%, #071021 52%, #08152e 100%);
}

.boundary-phone-logo {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.13rem;
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(228,236,241,0.9));
  box-shadow: 0 6px 18px rgba(0,0,0,0.34), 0 0 18px rgba(141,233,255,0.14);
  z-index: 2;
}

.boundary-phone-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.boundary-phone-wordmark {
  position: relative;
  z-index: 2;
  margin-top: 0.08rem;
  color: #effcff;
  font-size: 0.66rem;
  font-weight: 800;
}

.boundary-phone-sub {
  position: relative;
  z-index: 2;
  color: rgba(207,242,255,0.6);
  font-size: 0.34rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.boundary-phone-heartbeat {
  position: relative;
  z-index: 2;
  width: 2.95rem;
  height: 0.62rem;
  margin-top: 0.12rem;
}

.boundary-phone-heartbeat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(141,233,255,0.08), rgba(141,233,255,0.82), rgba(174,227,255,0.2));
  clip-path: polygon(0% 62%, 18% 62%, 26% 62%, 31% 20%, 39% 84%, 46% 40%, 53% 62%, 72% 62%, 80% 46%, 88% 62%, 100% 62%, 100% 78%, 0% 78%);
  filter: drop-shadow(0 0 6px rgba(141,233,255,0.5));
  animation: boundaryHeartbeatGlow 2.8s linear infinite;
}

.boundary-phone-heartbeat i {
  position: absolute;
  top: 0;
  left: -24%;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), rgba(141,233,255,0.68), transparent);
  filter: blur(1px);
  animation: boundaryHeartbeatScan 2.8s linear infinite;
}

.boundary-phone-heartbeat i:nth-child(2) {
  animation-delay: 1.4s;
  opacity: 0.72;
}

.boundary-human { top: 15%; left: 12%; }
.boundary-proof { right: 11%; top: 28%; }
.boundary-policy { bottom: 13%; left: 50%; transform: translateX(-50%); }
.boundary-governance { right: 10%; bottom: 19%; }

.energy-identity { width: 10rem; transform: rotate(-150deg); }
.energy-proof { width: 9.4rem; transform: rotate(-22deg); }
.energy-policy { width: 6.5rem; transform: rotate(90deg); }
.energy-governance { width: 9.35rem; transform: rotate(31deg); }

.boundary-energy {
  z-index: 0;
  opacity: 0.24;
}

.boundary-energy::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.14rem;
  width: 0.34rem;
  height: 0.34rem;
  margin-top: -0.17rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.45);
  box-shadow: 0 0 10px rgba(141,233,255,0.28);
}

.boundary-orbit[data-active-boundary="identity"] .energy-identity::after,
.boundary-orbit[data-active-boundary="proof"] .energy-proof::after,
.boundary-orbit[data-active-boundary="policy"] .energy-policy::after,
.boundary-orbit[data-active-boundary="governance"] .energy-governance::after {
  animation-duration: 1.35s;
  animation-timing-function: linear;
}

.protocol-pathway {
  margin-bottom: 0.25rem;
}

.protocol-pathway::before {
  left: 0.4rem;
}

.protocol-pathway::after {
  content: "";
  position: absolute;
  left: 0.14rem;
  top: 0.55rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.95);
  box-shadow: 0 0 20px rgba(141,233,255,0.52);
  animation: protocolRailPulse 3.8s linear infinite;
}

.protocol-pathway div::before {
  animation: protocolRailDotPulse 3.8s ease-in-out infinite;
}

.protocol-pathway div:nth-child(1)::before { animation-delay: 0s; }
.protocol-pathway div:nth-child(2)::before { animation-delay: 0.95s; }
.protocol-pathway div:nth-child(3)::before { animation-delay: 1.9s; }
.protocol-pathway div:nth-child(4)::before { animation-delay: 2.85s; }

.protocol-pathway div::after {
  content: "";
  position: absolute;
  left: -0.52rem;
  top: 1.3rem;
  width: 0.65rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(141,233,255,0.75), transparent);
}

.protocol-next-panel .hero-actions.compact-actions {
  margin-top: 1.25rem;
}

@keyframes boundaryPhoneAura {
  0%,100% { transform: scale(0.96); opacity: 0.5; }
  28% { transform: scale(1.02); opacity: 0.84; }
  31% { transform: scale(1.06); opacity: 1; }
  36% { transform: scale(1.02); opacity: 0.68; }
}

@keyframes boundaryPhoneBeat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  26% { transform: translate3d(0,-0.25px,0) scale(1.002); }
  30% { transform: translate3d(-0.55px,0.12px,0) scale(1.013); }
  31.5% { transform: translate3d(0.68px,-0.16px,0) scale(1.017); }
  33% { transform: translate3d(-0.4px,0.12px,0) scale(1.01); }
  36% { transform: translate3d(0,-0.3px,0) scale(1.003); }
}

@keyframes boundaryHeartbeatGlow {
  0%,100% { opacity: 0.58; filter: drop-shadow(0 0 5px rgba(141,233,255,0.32)); }
  26% { opacity: 0.72; }
  30% { opacity: 0.96; filter: drop-shadow(0 0 8px rgba(141,233,255,0.56)); }
  31.5% { opacity: 1; filter: drop-shadow(0 0 10px rgba(141,233,255,0.72)); }
  36% { opacity: 0.82; }
}

@keyframes boundaryHeartbeatScan {
  0% { left: -24%; opacity: 0; }
  12% { opacity: 0.85; }
  88% { opacity: 0.62; }
  100% { left: 100%; opacity: 0; }
}

@keyframes protocolRailPulse {
  0% { top: 0.55rem; opacity: 0; transform: scale(0.72); }
  10% { opacity: 1; }
  90% { opacity: 0.72; }
  100% { top: calc(100% - 1.05rem); opacity: 0; transform: scale(1.08); }
}

@keyframes protocolRailDotPulse {
  0%,100% { box-shadow: 0 0 18px rgba(141,233,255,0.42); transform: scale(1); }
  35% { box-shadow: 0 0 28px rgba(141,233,255,0.72); transform: scale(1.18); }
  55% { box-shadow: 0 0 18px rgba(141,233,255,0.42); transform: scale(1); }
}

@media (max-width: 759px) {
  .boundary-core.boundary-phone-core {
    width: 5.6rem;
    height: 8.15rem;
  }
  .boundary-phone-logo { width: 2.48rem; height: 2.48rem; }
  .boundary-phone-heartbeat { width: 2.6rem; }
  .boundary-governance { right: 7%; bottom: 18%; }
  .energy-identity { width: 7.6rem; }
  .energy-proof { width: 7.3rem; }
  .energy-policy { width: 5.8rem; }
  .energy-governance { width: 7.25rem; }
  .protocol-pathway::after { left: 0.13rem; }
}


/* ROOT V10: policy node positioning + hover wobble fix */
.boundary-policy { left: 45.5%; }
.boundary-governance { right: 9%; }
.energy-policy { width: 5.85rem; transform: rotate(96deg); }
.energy-governance { width: 9.65rem; transform: rotate(29deg); }

/* keep centred-x transform for policy in all interactive states to prevent wobble */
.boundary-policy:hover,
.boundary-policy:focus-visible,
.boundary-policy.is-active {
  transform: translateX(-50%) translateY(-1px);
}

/* keep governance stable too */
.boundary-governance:hover,
.boundary-governance:focus-visible,
.boundary-governance.is-active {
  transform: translateY(-1px);
}

/* slightly soften the policy beam landing point */
.boundary-orbit[data-active-boundary="policy"] .energy-policy {
  opacity: 0.9;
}

@media (max-width: 759px) {
  .boundary-policy { left: 44.5%; }
  .energy-policy { width: 5.2rem; transform: rotate(96deg); }
  .boundary-governance { right: 6.5%; }
  .energy-governance { width: 7.4rem; transform: rotate(29deg); }
}


/* ROOT V11: public-facing zero-knowledge dDNS + SSI framing */
.identity-ownership-card {
  margin: 1.45rem 0 1.35rem;
  padding: clamp(1.45rem, 2vw, 2rem);
  border-color: rgba(141, 233, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(141,233,255,0.09), rgba(99,102,241,0.08)),
    rgba(255,255,255,0.04);
}

.identity-ownership-card h3 {
  margin-top: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.identity-ownership-card p {
  max-width: 64rem;
  color: var(--muted);
}

.identity-ownership-card strong {
  color: #f5fbff;
}

.ownership-soft-note {
  margin-top: 0.55rem;
  font-size: 0.98rem;
}

.root-trust-strip span:last-child {
  border-color: rgba(141, 233, 255, 0.2);
  background: rgba(141, 233, 255, 0.07);
  color: #eafaff;
}


/* ROOT V13: lighter, cooler public explanation of z...kdid dDNS identity layer */
.intro-heading-compact h2 {
  max-width: 18ch;
}

.idea-banner {
  margin: 1.3rem 0 1.6rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: center;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.4vw, 1.8rem);
  border-color: rgba(141, 233, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(141,233,255,0.08), rgba(99,102,241,0.07)),
    rgba(255,255,255,0.035);
}

.idea-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 233, 255, 0.18);
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.idea-banner-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #f6fbff;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.idea-banner-copy p {
  margin: 0;
  max-width: 54rem;
  color: var(--muted);
}

.identity-shift-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.shift-card {
  padding: clamp(1.3rem, 2vw, 1.8rem);
}

.shift-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 0.98;
}

.shift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.shift-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
}

.shift-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.92);
  box-shadow: 0 0 16px rgba(141,233,255,0.42);
}

.shift-card-negative {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    rgba(8, 12, 24, 0.72);
}

.shift-card-positive {
  background:
    linear-gradient(180deg, rgba(141,233,255,0.06), rgba(99,102,241,0.05)),
    rgba(8, 12, 24, 0.72);
}

.shift-visual-card {
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(141,233,255,0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    rgba(8, 12, 24, 0.72);
}

.shift-visual-copy h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.55rem;
  line-height: 0.98;
}

.shift-visual-copy p {
  max-width: 42rem;
  color: var(--muted);
}

.shift-orbit {
  position: relative;
  min-height: 20.5rem;
  margin: 1.1rem 0 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(141,233,255,0.09);
  background: rgba(0,0,0,0.14);
  overflow: hidden;
}

.shift-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(141,233,255,0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.shift-ring-one { width: 7.6rem; height: 7.6rem; }
.shift-ring-two { width: 12rem; height: 12rem; opacity: 0.78; }
.shift-ring-three { width: 16.5rem; height: 16.5rem; opacity: 0.48; }

.shift-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.7rem;
  height: 5.7rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(141,233,255,0.22);
  background:
    radial-gradient(circle at 50% 32%, rgba(141,233,255,0.16), transparent 40%),
    rgba(5, 8, 18, 0.86);
  color: #f4fcff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 42px rgba(141,233,255,0.12), 0 16px 42px rgba(0,0,0,0.26);
  animation: shiftCoreBreathe 4.8s ease-in-out infinite;
}

.shift-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.18);
  background: rgba(5, 8, 22, 0.78);
  color: #effbff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.node-person { top: 12%; left: 11%; }
.node-service { right: 10%; top: 28%; }
.node-device { left: 50%; bottom: 10%; transform: translateX(-50%); }

.shift-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(141,233,255,0.54), rgba(141,233,255,0.12), transparent);
  opacity: 0.82;
  z-index: 2;
}

.beam-person { width: 9.8rem; transform: rotate(-150deg); }
.beam-service { width: 9.1rem; transform: rotate(-22deg); }
.beam-device { width: 7rem; transform: rotate(90deg); }

.shift-beam::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.44rem;
  height: 0.44rem;
  margin-top: -0.22rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.92);
  box-shadow: 0 0 18px rgba(141,233,255,0.48);
  animation: shiftPulseTravel 3.2s linear infinite;
}

.beam-person::after { animation-delay: 0s; }
.beam-service::after { animation-delay: 0.95s; }
.beam-device::after { animation-delay: 1.8s; }

.shift-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shift-legend span {
  display: inline-flex;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.83rem;
}

.root-signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.root-signal-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(141,233,255,0.16);
  background: rgba(255,255,255,0.035);
  color: #eaf8ff;
  font-size: 0.86rem;
  font-weight: 600;
}

@keyframes shiftPulseTravel {
  0% { left: 3%; opacity: 0; transform: scale(0.72); }
  14% { opacity: 1; }
  82% { opacity: 0.72; }
  100% { left: calc(100% - 0.44rem); opacity: 0; transform: scale(1.08); }
}

@keyframes shiftCoreBreathe {
  0%,100% { transform: translate(-50%, -50%) scale(0.985); }
  50% { transform: translate(-50%, -50%) scale(1.018); }
}

@media (max-width: 1040px) {
  .identity-shift-grid {
    grid-template-columns: 1fr;
  }

  .shift-orbit {
    min-height: 17.8rem;
  }
}

@media (max-width: 720px) {
  .idea-banner {
    grid-template-columns: 1fr;
  }

  .idea-kicker {
    min-width: 0;
    justify-self: start;
  }

  .shift-core {
    width: 4.9rem;
    height: 4.9rem;
    font-size: 0.92rem;
  }

  .shift-node {
    font-size: 0.82rem;
    padding: 0.6rem 0.8rem;
  }

  .node-person { left: 7%; }
  .node-service { right: 6%; top: 26%; }
  .node-device { bottom: 7%; }

  .beam-person { width: 7.9rem; }
  .beam-service { width: 7.5rem; }
  .beam-device { width: 6rem; }

  .root-signal-chips span {
    font-size: 0.8rem;
  }
}


/* ROOT V14: move policy node to left-lower position */
.boundary-policy {
  left: 26.5%;
  bottom: 14.5%;
  transform: none;
}

.boundary-policy:hover,
.boundary-policy:focus-visible,
.boundary-policy.is-active {
  transform: translateY(-1px);
}

.energy-policy {
  width: 7.4rem;
  transform: rotate(145deg);
}

.boundary-orbit[data-active-boundary="policy"] .energy-policy {
  opacity: 0.92;
}

@media (max-width: 759px) {
  .boundary-policy {
    left: 22.5%;
    bottom: 13%;
  }

  .energy-policy {
    width: 6.2rem;
    transform: rotate(148deg);
  }
}


/* ROOT V15: centre phone continuity for public trust root visual */
.shift-core.shift-phone-core {
  width: 6.2rem;
  height: 9rem;
  padding: 0;
  border: none;
  border-radius: 2rem;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.shift-core.shift-phone-core::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  border-radius: 2.4rem;
  background: radial-gradient(circle at 50% 48%, rgba(141,233,255,0.14), rgba(141,233,255,0.03) 50%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
  animation: shiftPhoneAura 3s ease-in-out infinite;
}

.shift-phone-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  padding: 0.26rem;
  background: linear-gradient(180deg, rgba(168,184,210,0.58), rgba(70,80,102,0.88));
  box-shadow: 0 0 0 1px rgba(141,233,255,0.14), 0 18px 44px rgba(0,0,0,0.34);
  animation: shiftPhoneBeat 3s linear infinite;
}

.shift-phone-shell::before {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: 1.78rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.shift-phone-shell::after {
  content: "";
  position: absolute;
  top: 0.76rem;
  left: 0.76rem;
  width: 34%;
  height: 62%;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.02));
  opacity: 0.24;
  pointer-events: none;
}

.shift-phone-notch {
  position: absolute;
  top: 0.54rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.82rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(5,8,18,0.96);
  z-index: 3;
}

.shift-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.74rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  background: radial-gradient(circle at 50% 28%, rgba(141,233,255,0.22), transparent 24%), linear-gradient(180deg, #08111f 0%, #071021 52%, #08152e 100%);
}

.shift-phone-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(141,233,255,0.14), transparent 28%);
}

.shift-phone-logo {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.13rem;
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(228,236,241,0.9));
  box-shadow: 0 6px 18px rgba(0,0,0,0.34), 0 0 18px rgba(141,233,255,0.14);
  z-index: 2;
}

.shift-phone-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.shift-phone-wordmark {
  position: relative;
  z-index: 2;
  margin-top: 0.08rem;
  color: #effcff;
  font-size: 0.66rem;
  font-weight: 800;
}

.shift-phone-sub {
  position: relative;
  z-index: 2;
  color: rgba(207,242,255,0.6);
  font-size: 0.34rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shift-phone-heartbeat {
  position: relative;
  z-index: 2;
  width: 2.95rem;
  height: 0.62rem;
  margin-top: 0.12rem;
}

.shift-phone-heartbeat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(141,233,255,0.08), rgba(141,233,255,0.82), rgba(174,227,255,0.2));
  clip-path: polygon(0% 62%, 18% 62%, 26% 62%, 31% 20%, 39% 84%, 46% 40%, 53% 62%, 72% 62%, 80% 46%, 88% 62%, 100% 62%, 100% 78%, 0% 78%);
  filter: drop-shadow(0 0 6px rgba(141,233,255,0.5));
  animation: shiftHeartbeatGlow 3s linear infinite;
}

.shift-phone-heartbeat i {
  position: absolute;
  top: 0;
  left: -24%;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), rgba(141,233,255,0.68), transparent);
  filter: blur(1px);
  animation: shiftHeartbeatScan 3s linear infinite;
}

.shift-phone-heartbeat i:nth-child(2) {
  animation-delay: 1.5s;
  opacity: 0.72;
}

@keyframes shiftPhoneAura {
  0%,100% { transform: scale(0.96); opacity: 0.5; }
  28% { transform: scale(1.02); opacity: 0.84; }
  31% { transform: scale(1.06); opacity: 1; }
  36% { transform: scale(1.02); opacity: 0.68; }
}

@keyframes shiftPhoneBeat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  26% { transform: translate3d(0,-0.25px,0) scale(1.002); }
  30% { transform: translate3d(-0.55px,0.12px,0) scale(1.013); }
  31.5% { transform: translate3d(0.68px,-0.16px,0) scale(1.017); }
  33% { transform: translate3d(-0.4px,0.12px,0) scale(1.01); }
  36% { transform: translate3d(0,-0.3px,0) scale(1.003); }
}

@keyframes shiftHeartbeatGlow {
  0%,100% { opacity: 0.58; filter: drop-shadow(0 0 5px rgba(141,233,255,0.32)); }
  26% { opacity: 0.72; }
  30% { opacity: 0.96; filter: drop-shadow(0 0 8px rgba(141,233,255,0.56)); }
  31.5% { opacity: 1; filter: drop-shadow(0 0 10px rgba(141,233,255,0.72)); }
  36% { opacity: 0.82; }
}

@keyframes shiftHeartbeatScan {
  0% { left: -24%; opacity: 0; }
  12% { opacity: 0.85; }
  88% { opacity: 0.62; }
  100% { left: 100%; opacity: 0; }
}

@media (max-width: 720px) {
  .shift-core.shift-phone-core {
    width: 5.55rem;
    height: 8.1rem;
  }
  .shift-phone-logo {
    width: 2.45rem;
    height: 2.45rem;
  }
  .shift-phone-heartbeat { width: 2.6rem; }
}


/* ROOT V16: final polish - slim identity banner, centred architecture intro, neuron connector pulses */
@media (min-width: 1180px) {
  .idea-banner-copy p {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(0.94rem, 0.96vw, 1rem);
  }

  .idea-banner {
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }
}

.root-architecture .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.root-architecture .section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 68rem;
}

.layer-connector {
  position: relative;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(141,233,255,0.2));
}

.layer-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.2rem;
  width: 0.52rem;
  height: 0.52rem;
  margin-left: -0.26rem;
  border-radius: 999px;
  background: rgba(141,233,255,0.96);
  box-shadow:
    0 0 12px rgba(141,233,255,0.78),
    0 0 28px rgba(121,185,255,0.32);
  animation: layerNeuronPull 2.9s ease-in-out infinite;
}

.layer-connector:nth-child(4)::after {
  animation-delay: 1.35s;
}

.layer-connector::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(141,233,255,0.72), transparent);
  opacity: 0.78;
}

@keyframes layerNeuronPull {
  0% {
    top: -0.25rem;
    opacity: 0;
    transform: scale(0.72);
  }
  16% {
    opacity: 1;
  }
  76% {
    opacity: 0.8;
  }
  100% {
    top: calc(100% - 0.25rem);
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 1179px) {
  .idea-banner-copy p {
    white-space: normal;
  }
}

@media (max-width: 759px) {
  .root-architecture .section-heading {
    text-align: left;
  }

  .root-architecture .section-heading p {
    margin-left: 0;
  }
}


/* ROOT V17: restore fuller public sovereignty copy */
.shift-card-lede {
  margin: -0.25rem 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.shift-card-punch {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(141,233,255,0.16);
  border-radius: 1rem;
  background: rgba(141,233,255,0.055);
  color: #f4fbff;
  font-weight: 800;
  line-height: 1.2;
}
