:root {
  color-scheme: light;
  --bg: #edf5fb;
  --surface: #ffffff;
  --surface-2: #e7f2f8;
  --ink: #102033;
  --muted: rgba(16, 32, 51, 0.68);
  --line: rgba(17, 68, 104, 0.12);
  --line-strong: rgba(8, 127, 192, 0.24);
  --green: #0f9f7e;
  --green-dark: #087fc0;
  --mint: #d8f7ec;
  --cyan: #29c2ff;
  --gold: #c77a06;
  --terrain: #5f8199;
  --route: #f59e0b;
  --red: #d84c65;
  --shadow: 0 18px 56px rgba(28, 71, 108, 0.16);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23087fc0' stroke-opacity='0.06' stroke-width='1.4'%3E%3Cpath d='M-80 74 C 52 12 126 122 246 70 C 352 24 433 54 600 18'/%3E%3Cpath d='M-58 178 C 72 104 155 238 276 158 C 392 82 478 142 608 92'/%3E%3Cpath d='M-96 304 C 64 210 158 356 300 260 C 415 182 478 264 606 218'/%3E%3Cpath d='M-52 442 C 104 328 188 500 336 374 C 432 292 516 390 608 326'/%3E%3C/g%3E%3Cg fill='none' stroke='%230f9f7e' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M116 -30 C 100 88 150 150 126 252 C 110 320 130 406 92 552'/%3E%3Cpath d='M382 -42 C 342 80 398 176 350 286 C 314 368 350 438 300 552'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 251, 0.96)),
    var(--bg);
  color: var(--ink);
  min-width: 280px;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

main > section[id] {
  scroll-margin-top: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px clamp(14px, calc((100vw - 1180px) / 2), 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(237, 245, 251, 0.84);
  backdrop-filter: blur(18px);
  transition: min-height 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-header--compact {
  min-height: 64px;
  background: rgba(237, 245, 251, 0.95);
  box-shadow: 0 12px 32px rgba(28, 71, 108, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #06271c;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(7, 19, 15, 0.08);
}

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

.brand__text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  padding: 10px 9px;
  border-radius: var(--radius);
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(7, 19, 15, 0.05);
}

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

.language-switcher {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 740;
  white-space: nowrap;
}

.language-switcher select {
  width: 90px;
  max-width: 90px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  font-size: 0.95rem;
  cursor: pointer;
}

.header-cta,
.button--primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  box-shadow: 0 12px 32px rgba(8, 127, 192, 0.2);
}

.button--primary:hover,
.header-cta:hover {
  background: linear-gradient(135deg, #066ca5, #0c896d);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line-strong);
}

.button--secondary:hover {
  border-color: rgba(8, 127, 192, 0.42);
}

.button--quiet {
  border-color: transparent;
  background: transparent;
  color: var(--green-dark);
}

.button--quiet:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.52);
}

.manifesto-section {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  min-height: max(720px, calc(100svh - 72px));
  scroll-margin-top: 72px;
  isolation: isolate;
  color: #f4fbff;
  background: #03101b;
}

.manifesto-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 rgba(111, 255, 208, 0);
  opacity: 0;
  pointer-events: none;
}

.manifesto-section.is-targeted::after {
  animation: manifesto-section-highlight 1000ms ease-out;
}

.manifesto-layer__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(41, 194, 255, 0.24), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(15, 159, 126, 0.22), transparent 30%),
    radial-gradient(circle at 62% 72%, rgba(240, 161, 43, 0.1), transparent 24%),
    linear-gradient(145deg, #03101b 0%, #061d2a 48%, #041610 100%);
}

.manifesto-layer__backdrop::before,
.manifesto-layer__backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-layer__backdrop::before {
  width: min(66vw, 880px);
  aspect-ratio: 1;
  right: -22vw;
  top: -42%;
  border: 1px solid rgba(77, 226, 182, 0.2);
  box-shadow:
    0 0 0 48px rgba(41, 194, 255, 0.025),
    0 0 0 130px rgba(41, 194, 255, 0.02),
    0 0 120px rgba(41, 194, 255, 0.14);
}

.manifesto-layer__backdrop::after {
  width: 220px;
  height: 220px;
  right: 17%;
  bottom: 12%;
  background: rgba(68, 214, 161, 0.12);
  filter: blur(72px);
}

.manifesto-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.manifesto-map__contours {
  fill: none;
  stroke: rgba(139, 218, 255, 0.16);
  stroke-width: 1.2;
}

.manifesto-map__route {
  fill: none;
  stroke: url(#manifesto-route-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
  filter: drop-shadow(0 0 10px rgba(41, 194, 255, 0.5));
  animation: manifesto-route-travel 18s linear infinite;
}

.manifesto-map__route--two {
  opacity: 0.58;
  animation-duration: 26s;
  animation-direction: reverse;
}

.manifesto-map__points {
  fill: #6fffd0;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
}

.manifesto-map__points circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: manifesto-point-pulse 3.4s ease-in-out infinite;
}

.manifesto-map__points circle:nth-child(2n) {
  animation-delay: -1.1s;
}

.manifesto-map__points circle:nth-child(3n) {
  animation-delay: -2.2s;
}

.manifesto-panel {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 72px));
  min-height: inherit;
  margin: 0 auto;
  padding: 24px 0 30px;
}

.manifesto-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.62fr);
  gap: 22px 28px;
  padding-top: clamp(28px, 5vh, 64px);
}

.manifesto-intro {
  max-width: 930px;
}

.manifesto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6fffd0;
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.manifesto-intro h2,
.manifesto-spaceonne h3 {
  max-width: 980px;
  color: #f8fcff;
  font-size: clamp(2.4rem, 3.2vw, 3.3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.manifesto-intro h2 {
  margin: 16px 0 18px;
  max-width: none;
  white-space: nowrap;
}

.manifesto-spaceonne h3 {
  margin: 4px 0 0;
}

.manifesto-intro__lead {
  max-width: 860px;
  margin: 0;
  color: rgba(220, 239, 249, 0.7);
  font-size: clamp(1.08rem, 1.42vw, 1.38rem);
  line-height: 1.52;
}

.manifesto-stat {
  position: relative;
  align-self: end;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(111, 255, 208, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(41, 194, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(15, 159, 126, 0.18), rgba(5, 23, 34, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.manifesto-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background: repeating-linear-gradient(90deg, transparent 0 23px, rgba(142, 221, 255, 0.07) 24px);
  pointer-events: none;
}

.manifesto-stat__value,
.manifesto-stat__label {
  position: relative;
  z-index: 1;
}

.manifesto-stat__value {
  display: block;
  color: #f7fffc;
  font-size: clamp(1.9rem, 2.75vw, 3.1rem);
  line-height: 0.94;
  font-weight: 860;
  letter-spacing: -0.06em;
}

.manifesto-stat__label {
  display: block;
  max-width: 230px;
  margin-top: 13px;
  color: rgba(218, 239, 247, 0.62);
  font-size: 0.8rem;
  line-height: 1.42;
}

.manifesto-argument {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
}

.manifesto-spaceonne {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.manifesto-argument__card {
  position: relative;
  min-height: 152px;
  padding: 20px 22px;
  border: 1px solid rgba(160, 221, 247, 0.14);
  border-radius: 22px;
  background: rgba(4, 21, 31, 0.58);
  backdrop-filter: blur(16px);
}

.manifesto-argument__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 22px 0 0 22px;
  background: rgba(216, 76, 101, 0.7);
}

.manifesto-argument__card--solution {
  background:
    radial-gradient(circle at 92% 16%, rgba(68, 214, 161, 0.12), transparent 34%),
    rgba(4, 26, 30, 0.68);
}

.manifesto-argument__card--solution::before {
  background: linear-gradient(180deg, #29c2ff, #6fffd0);
  box-shadow: 0 0 18px rgba(68, 214, 161, 0.55);
}

.manifesto-argument__card > span {
  color: rgba(195, 224, 236, 0.6);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifesto-argument__card p {
  margin: 12px 0 0;
  color: rgba(236, 247, 251, 0.82);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.5;
}

.manifesto-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  margin-top: 10px;
}

.manifesto-argument__card .manifesto-solution-grid p {
  margin: 0;
}

.manifesto-solution-grid__validation {
  padding-left: 20px;
  border-left: 1px solid rgba(111, 255, 208, 0.2);
}

.manifesto-argument__card .manifesto-argument__token {
  color: #88fbd5;
  font-weight: 690;
}

.manifesto-argument__card .manifesto-argument__value-loop {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(111, 255, 208, 0.18);
  color: #f3fffb;
  font-weight: 780;
}

.manifesto-punchline {
  grid-column: 1 / -1;
  display: grid;
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.manifesto-punchline span {
  color: rgba(235, 247, 252, 0.42);
}

.manifesto-punchline strong {
  color: #72ffd2;
  text-shadow: 0 0 42px rgba(68, 214, 161, 0.2);
}

.manifesto-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.manifesto-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 780;
  cursor: pointer;
}

.manifesto-action--primary {
  color: #03130e;
  background: linear-gradient(135deg, #8affda, #36d4ff);
  box-shadow: 0 14px 34px rgba(41, 194, 255, 0.2);
}

.manifesto-action--secondary {
  color: rgba(242, 250, 253, 0.84);
  border-color: rgba(153, 217, 244, 0.22);
  background: rgba(4, 22, 32, 0.72);
}

.manifesto-action:hover,
.manifesto-action:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.manifesto-trigger {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: max(14px, env(safe-area-inset-right));
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(8, 127, 192, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(246, 252, 255, 0.9);
  box-shadow: 0 18px 44px rgba(21, 68, 101, 0.2);
  backdrop-filter: blur(18px);
  font: inherit;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, -50%, 0) scale(1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 220ms ease, padding 220ms ease;
}

.manifesto-trigger.is-over-manifesto {
  padding-right: 7px;
  border-color: rgba(111, 255, 208, 0.28);
  background: rgba(5, 28, 35, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.manifesto-trigger.is-guiding {
  animation: manifesto-trigger-guide 720ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.manifesto-trigger:hover,
.manifesto-trigger:focus-visible {
  border-color: rgba(15, 159, 126, 0.58);
  transform: translate3d(-4px, -50%, 0) scale(1.01) !important;
  outline: none;
}

.manifesto-trigger__orb {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: #031c16;
  box-shadow: 0 0 0 1px rgba(15, 159, 126, 0.2), 0 0 26px rgba(15, 159, 126, 0.22);
}

.manifesto-trigger__orb::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(41, 194, 255, 0.55);
  border-radius: 50%;
  animation: manifesto-orb-pulse 2.8s ease-out infinite;
}

.manifesto-trigger__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-trigger__copy {
  display: grid;
  max-width: 180px;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  opacity: 1;
  transition: max-width 220ms ease, opacity 140ms ease;
}

.manifesto-trigger.is-over-manifesto .manifesto-trigger__copy {
  max-width: 0;
  opacity: 0;
}

.manifesto-trigger__copy strong {
  font-size: 1rem;
  line-height: 1;
  font-weight: 850;
}

.manifesto-trigger__arrow {
  display: inline-block;
  max-width: 20px;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 0.9rem;
  opacity: 1;
  transition: max-width 220ms ease, opacity 140ms ease;
}

.manifesto-trigger.is-over-manifesto .manifesto-trigger__arrow {
  max-width: 0;
  opacity: 0;
}

@keyframes manifesto-route-travel {
  to { stroke-dashoffset: -240; }
}

@keyframes manifesto-point-pulse {
  0%, 100% { opacity: 0.48; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.42); }
}

@keyframes manifesto-trigger-guide {
  0%, 100% { transform: translate3d(0, -50%, 0) scale(1); }
  48% { transform: translate3d(-5px, -50%, 0) scale(1.06); box-shadow: 0 20px 52px rgba(15, 159, 126, 0.34); }
}

@keyframes manifesto-section-highlight {
  0% { opacity: 0; border-color: transparent; box-shadow: inset 0 0 0 rgba(111, 255, 208, 0); }
  28% { opacity: 1; border-color: rgba(111, 255, 208, 0.68); box-shadow: inset 0 0 64px rgba(111, 255, 208, 0.1); }
  100% { opacity: 0; border-color: transparent; box-shadow: inset 0 0 0 rgba(111, 255, 208, 0); }
}

@keyframes manifesto-orb-pulse {
  0% { opacity: 0.7; transform: scale(0.8); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero#overview {
  scroll-margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px -40px auto auto;
  width: min(48vw, 620px);
  height: 420px;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 18% 72%, rgba(240, 161, 43, 0.2), transparent 18%),
    url("data:image/svg+xml,%3Csvg width='620' height='420' viewBox='0 0 620 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M46 334 C 114 282 156 286 214 242 C 284 190 310 142 392 138 C 470 134 522 90 584 48' stroke='%23f0a12b' stroke-width='4' stroke-linecap='round' stroke-dasharray='10 14'/%3E%3Cg stroke='%2308734b' stroke-opacity='0.2'%3E%3Cpath d='M8 80 C 122 12 220 112 334 50 C 430 -2 502 34 640 -4'/%3E%3Cpath d='M4 170 C 126 86 226 216 360 132 C 474 60 532 108 644 76'/%3E%3Cpath d='M-2 282 C 128 202 238 320 366 232 C 488 148 548 230 646 172'/%3E%3C/g%3E%3Cg fill='%2308734b'%3E%3Ccircle cx='46' cy='334' r='7'/%3E%3Ccircle cx='214' cy='242' r='7'/%3E%3Ccircle cx='392' cy='138' r='7'/%3E%3Ccircle cx='584' cy='48' r='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 166, 106, 0.13);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(4.8rem, 7vw, 6.35rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.35;
  color: rgba(16, 32, 51, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}

.hero__meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.hero__meta strong,
.hero__meta span {
  display: block;
}

.hero__meta strong {
  font-size: 0.95rem;
}

.hero__meta span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero__visual--cards {
  min-height: auto;
}

.hero-insight-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-insight-card {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 19, 15, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 243, 239, 0.72)),
    #fff;
  box-shadow: 0 18px 48px rgba(12, 42, 32, 0.08);
}

.hero-insight-card--wide {
  grid-column: span 2;
  min-height: 150px;
  background:
    radial-gradient(circle at 90% 12%, rgba(43, 167, 216, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 239, 0.8));
}

.hero-insight-card--accent {
  background:
    radial-gradient(circle at 86% 18%, rgba(240, 161, 43, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 226, 0.78));
}

.hero-insight-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 860;
}

.hero-insight-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.hero-insight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.app-surface-section {
  width: 100%;
  max-width: none;
  padding-top: 52px;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(94, 84, 141, 0.1);
  border-bottom: 1px solid rgba(94, 84, 141, 0.1);
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 111, 222, 0.12), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(240, 161, 43, 0.1), transparent 29%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.97), rgba(246, 244, 252, 0.96));
}

.app-surface-frame {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 0%, rgba(41, 194, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(68, 214, 161, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.app-surface-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.82rem;
}

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

.app-surface-card {
  --module-accent: var(--green-dark);
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--module-accent) 10%, white), rgba(255, 255, 255, 0.78) 48%),
    #fff;
}

.app-surface-card--atlas {
  --module-accent: var(--green);
}

.app-surface-card--wallet {
  --module-accent: #8b5cf6;
}

.app-surface-card--market {
  --module-accent: var(--route);
}

.app-surface-card--chat {
  --module-accent: #d84c9a;
}

.app-surface-card > span {
  color: var(--module-accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.app-surface-card strong {
  font-size: 1.14rem;
}

.app-surface-card p,
.app-surface-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.app-surface-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.install-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 8%, rgba(41, 194, 255, 0.12), transparent 28%),
    radial-gradient(circle at 90% 96%, rgba(68, 214, 161, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.62);
}

.install-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.install-heading .section-heading {
  margin-bottom: 0;
}

.install-heading__actions {
  display: grid;
  justify-items: start;
  gap: 9px;
  max-width: 310px;
  padding-bottom: 3px;
}

.install-heading__actions span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.install-tabs {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto 22px;
  padding: 7px;
  border: 1px solid rgba(17, 68, 104, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(28, 71, 108, 0.08);
  backdrop-filter: blur(18px);
}

.install-tab {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.install-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.install-tab:focus-visible {
  outline: 3px solid rgba(41, 194, 255, 0.28);
  outline-offset: 2px;
}

.install-tab--active,
.install-tabs .install-tab[aria-selected="true"] {
  border-color: rgba(32, 159, 116, 0.22);
  background: linear-gradient(145deg, rgba(17, 78, 70, 0.98), rgba(25, 139, 103, 0.94));
  color: #fff;
  box-shadow: 0 12px 28px rgba(12, 84, 66, 0.22);
}

.install-tab--active:hover,
.install-tabs .install-tab[aria-selected="true"]:hover {
  color: #fff;
  transform: translateY(-1px);
}

.install-tab__system {
  min-width: 64px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: inherit;
  font-size: 0.73rem;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-platform-grid {
  display: block;
  width: 100%;
}

.install-platform-grid > [hidden] {
  display: none;
}

.install-platform {
  scroll-margin-top: 88px;
  --platform-accent: var(--green-dark);
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--platform-accent) 7%, white), rgba(255, 255, 255, 0.82) 30%),
    #fff;
  box-shadow: 0 18px 52px rgba(28, 71, 108, 0.1);
  animation: install-panel-in 240ms ease both;
}

@keyframes install-panel-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.install-platform--android {
  --platform-accent: var(--green);
}

.install-platform__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.install-platform__badge {
  min-width: 76px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--platform-accent);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.install-platform__header div > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.install-platform__header h3 {
  margin: 4px 0 0;
  font-size: 1.4rem;
}

.install-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.install-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 14px;
  align-items: stretch;
  min-height: 184px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.install-step__copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.install-step__number {
  color: var(--platform-accent);
  font-size: 0.76rem;
  font-weight: 880;
}

.install-step h4 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.18;
}

.install-step p,
.install-platform__tip,
.install-aftercare p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.install-step p {
  font-size: 0.84rem;
}

.install-shot {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(17, 68, 104, 0.12);
  border-radius: 15px;
  background: #f6f9fc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.install-shot--ios {
  background: linear-gradient(160deg, #f1f7fb, #e7f2f8);
}

.install-shot--android,
.install-shot--home {
  background: linear-gradient(160deg, #e9f8f2, #dcefe9);
}

.install-shot__screen {
  min-height: 82px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 24%, rgba(41, 194, 255, 0.13), transparent 38%),
    #fff;
}

.install-shot__screen img,
.install-confirm-head img,
.install-dialog-app img,
.install-home-result img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(16, 32, 51, 0.16);
}

.install-shot__screen strong {
  font-size: 0.75rem;
}

.install-address-bar {
  min-height: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-size: 0.62rem;
}

.install-address-bar strong {
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-address-bar--android {
  order: -1;
  min-height: 40px;
  border-radius: 20px;
}

.install-more {
  font-size: 1.2rem;
  line-height: 1;
}

.install-lock {
  color: var(--green);
  font-size: 0.54rem;
}

.install-toolbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
}

.install-shot--toolbar > strong,
.install-shot--home > strong {
  color: var(--platform-accent);
  font-size: 0.72rem;
  text-align: center;
}

.install-toolbar-alternate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.64rem;
}

.install-toolbar-alternate strong {
  color: var(--ink);
  font-size: 0.64rem;
}

.install-more-button {
  min-width: 34px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--platform-accent) 40%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--platform-accent) 10%, white);
  color: var(--platform-accent);
  font-weight: 900;
  letter-spacing: 1px;
}

.install-control-highlight {
  position: relative;
  z-index: 1;
  color: var(--platform-accent);
}

.install-control-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 2px solid var(--platform-accent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--platform-accent) 12%, white);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--platform-accent) 9%, transparent);
}

.install-share-icon {
  width: 28px;
  height: 28px;
}

.install-share-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.install-sheet-row,
.install-menu-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
}

.install-sheet-row--active,
.install-menu-row--active {
  outline: 2px solid var(--platform-accent);
  background: color-mix(in srgb, var(--platform-accent) 10%, white);
  color: var(--platform-accent);
}

.install-add-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 6px;
}

.install-hand-pointer {
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--platform-accent);
  color: #fff;
  font-size: 0.54rem;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.2);
}

.install-confirm-head,
.install-dialog-app {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
}

.install-confirm-head strong {
  flex: 1;
  font-size: 0.8rem;
}

.install-confirm-head > span {
  color: var(--platform-accent);
  font-size: 0.72rem;
  font-weight: 850;
}

.install-toggle {
  width: 34px;
  height: 20px;
  flex: 0 0 auto;
  padding: 2px;
  border-radius: 999px;
  background: #bec8d0;
}

.install-toggle i {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.install-toggle--on {
  background: var(--green);
}

.install-toggle--on i {
  margin-left: 14px;
}

.install-home-result {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 0.63rem;
}

.install-shot--confirm .install-home-result {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 7px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
}

.install-menu-row {
  justify-content: flex-start;
}

.install-menu-row span:first-child {
  min-width: 24px;
  font-size: 1rem;
  text-align: center;
}

.install-dialog-app div {
  min-width: 0;
}

.install-dialog-app strong,
.install-dialog-app span {
  display: block;
}

.install-dialog-app strong {
  font-size: 0.82rem;
}

.install-dialog-app span {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-shot--dialog > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.install-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.install-dialog-actions strong {
  color: var(--green);
}

.install-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  min-height: 94px;
  padding: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(145deg, rgba(15, 159, 126, 0.22), rgba(41, 194, 255, 0.2));
}

.install-dummy-app {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.56);
}

.install-platform__tip {
  margin-top: 16px;
  padding: 14px;
  border-left: 3px solid var(--platform-accent);
  border-radius: 0 12px 12px 0;
  background: color-mix(in srgb, var(--platform-accent) 8%, white);
  font-size: 0.8rem;
}

.install-aftercare {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.install-aftercare .status-dot {
  flex: 0 0 auto;
  margin-top: 7px;
}

.install-sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.install-sources > span {
  font-weight: 720;
}

.install-sources a {
  color: var(--green-dark);
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(8, 127, 192, 0.28);
  text-underline-offset: 3px;
}

.install-sources a:hover {
  text-decoration-color: currentColor;
}

.terminal-card {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(7, 19, 15, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 239, 0.98)),
    #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.terminal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(8, 115, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 115, 75, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 72%);
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(16, 166, 106, 0.18), transparent 38%, rgba(184, 135, 44, 0.18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.terminal-card__top,
.terminal-card__bottom,
.wallet-panel__head,
.terminal-grid,
.asset-row,
.ticket-row {
  display: flex;
  align-items: center;
}

.terminal-card__top {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.micro-label {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 780;
}

.pill--green {
  color: #07563a;
  background: rgba(16, 166, 106, 0.12);
  border: 1px solid rgba(16, 166, 106, 0.2);
}

.terminal-grid {
  align-items: stretch;
  gap: 12px;
}

.chart-panel,
.book-panel,
.mini-card,
.trade-ticket,
.wallet-panel,
.product-card,
.stage-card,
.reward-card,
.institutional-card,
.security-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.chart-panel {
  flex: 1;
  min-height: 330px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.chart-panel__stats {
  display: grid;
  gap: 6px;
}

.chart-panel__stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.chart-panel__stats strong {
  font-size: 2.5rem;
  line-height: 1;
}

.chart-panel__stats em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 800;
}

.chart-line {
  position: relative;
  height: 190px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 78%, rgba(240, 161, 43, 0.22), transparent 9%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 100%, 100% 48px, 70px 100%;
}

.chart-line::before {
  content: "";
  position: absolute;
  inset: 28px 12px 32px;
  background: linear-gradient(135deg, transparent 0 8%, rgba(16, 166, 106, 0.11) 8% 100%);
  clip-path: polygon(0 72%, 14% 54%, 27% 62%, 39% 38%, 54% 45%, 66% 20%, 82% 28%, 100% 8%, 100% 100%, 0 100%);
}

.chart-line::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 22px;
  height: 132px;
  background: none;
  border-bottom: 3px dashed var(--route);
  clip-path: polygon(0 72%, 14% 54%, 27% 62%, 39% 38%, 54% 45%, 66% 20%, 82% 28%, 100% 8%, 100% 18%, 82% 38%, 66% 30%, 54% 55%, 39% 48%, 27% 72%, 14% 64%, 0 82%);
}

.chart-line span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #9ff3ca 44%, var(--green) 100%);
  box-shadow: 0 0 0 7px rgba(16, 166, 106, 0.12);
}

.chart-line span:nth-child(1) { left: 9%; bottom: 24%; }
.chart-line span:nth-child(2) { left: 20%; bottom: 37%; }
.chart-line span:nth-child(3) { left: 32%; bottom: 31%; }
.chart-line span:nth-child(4) { left: 45%; bottom: 50%; }
.chart-line span:nth-child(5) { left: 58%; bottom: 43%; }
.chart-line span:nth-child(6) { left: 70%; bottom: 63%; }
.chart-line span:nth-child(7) { left: 83%; bottom: 55%; }
.chart-line span:nth-child(8) { left: 94%; bottom: 76%; background: radial-gradient(circle at 35% 30%, #fff, #ffd979 42%, var(--route) 100%); }

.book-panel {
  width: 168px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.book-row {
  display: block;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.book-row span:last-child {
  color: var(--muted);
}

.book-row span:last-child::before {
  content: " / ";
  color: rgba(59, 77, 70, 0.58);
}

.book-row b {
  display: none;
}

.book-row--ask span:first-child {
  color: var(--red);
}

.book-row--ask b {
  background: linear-gradient(90deg, rgba(220, 63, 87, 0.16), rgba(220, 63, 87, 0.04));
}

.book-row--bid span:first-child {
  color: var(--green-dark);
}

.book-row--bid b {
  background: linear-gradient(90deg, rgba(16, 166, 106, 0.18), rgba(16, 166, 106, 0.04));
}

.book-mid {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 850;
  text-align: center;
  color: var(--green-dark);
}

.terminal-card__bottom {
  gap: 12px;
  margin-top: 12px;
}

.mini-card {
  flex: 1;
  padding: 14px;
}

.mini-card span,
.wallet-panel span,
.token-metrics span,
.atlas-overlay-card span,
.market-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.mini-card strong,
.wallet-panel strong,
.token-metrics strong,
.atlas-overlay-card strong {
  display: block;
  margin-top: 5px;
}

.wallet-float,
.atlas-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 12px;
  color: #fff;
  background: rgba(7, 19, 15, 0.86);
  box-shadow: 0 20px 48px rgba(7, 19, 15, 0.2);
  backdrop-filter: blur(16px);
}

.wallet-float {
  left: -18px;
  bottom: 110px;
}

.wallet-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.wallet-float span,
.atlas-float span:not(.atlas-path) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.wallet-float strong,
.atlas-float strong {
  display: block;
  margin-top: 3px;
}

.atlas-float {
  right: -8px;
  top: 64px;
}

.atlas-path {
  position: relative;
  width: 52px;
  height: 32px;
}

.atlas-path::before,
.atlas-path::after {
  content: "";
  position: absolute;
}

.atlas-path::before {
  inset: 6px 0 10px;
  border-bottom: 3px solid var(--green);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.atlas-path::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  right: 7px;
  top: 7px;
  box-shadow: -28px 13px 0 rgba(255, 255, 255, 0.72);
}

.market-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.market-strip__track {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-tile {
  min-height: 94px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.market-tile:first-child {
  border-left: 1px solid var(--line);
}

.market-tile strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.market-tile em {
  display: block;
  margin-top: 5px;
  color: var(--green-dark);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 760;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split-section h2,
.token-card h2,
.airdrop-copy h2,
.atlas-copy h2,
.final-cta h2 {
  margin: 12px 0 14px;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.split-section p,
.token-card p,
.atlas-copy p,
.final-cta p,
.wallet-panel p,
.product-card p,
.stage-card p,
.reward-card p,
.institutional-copy p,
.institutional-card p,
.airdrop-copy p,
.airdrop-card p,
.security-grid p,
.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}

.stage-section {
  padding-bottom: 84px;
}

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

.stage-card {
  min-height: 270px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stage-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.stage-card span {
  color: var(--green-dark);
  font-weight: 850;
}

.stage-card h3,
.reward-card h3,
.institutional-card h3 {
  margin: 54px 0 10px;
  font-size: 1.35rem;
}

.stage-card p,
.reward-card p,
.institutional-card p {
  margin: 0;
}

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

.product-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(7, 19, 15, 0.1);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
}

.product-card h3 {
  margin: 22px 0 8px;
  font-size: 1.28rem;
}

.product-card p {
  margin: 0;
}

.product-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.flow-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1280px) / 2));
  padding-right: max(20px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(160, 119, 36, 0.1);
  border-bottom: 1px solid rgba(15, 159, 126, 0.1);
  background:
    radial-gradient(circle at 10% 12%, rgba(41, 194, 255, 0.11), transparent 29%),
    radial-gradient(circle at 88% 20%, rgba(240, 161, 43, 0.14), transparent 31%),
    linear-gradient(180deg, rgba(250, 249, 242, 0.97), rgba(238, 247, 243, 0.96));
}

.flow-section .section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.flow-section .flow-animation--cinematic {
  border-color: rgba(17, 88, 72, 0.08);
  background:
    radial-gradient(circle at 14% 12%, rgba(43, 167, 216, 0.1), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(240, 161, 43, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(248, 251, 247, 0.86) 0%, rgba(238, 246, 241, 0.9) 54%, rgba(229, 238, 232, 0.86) 100%);
  box-shadow: 0 18px 48px rgba(23, 54, 45, 0.1);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.45;
  color: #263731;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--mint);
}

.exchange-preview {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 166, 106, 0.18), transparent 34%),
    #0a1511;
  color: #fff;
  box-shadow: var(--shadow);
}

.preview-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.preview-tabs button {
  flex: 1;
  border: 0;
  min-height: 40px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 780;
  cursor: pointer;
}

.preview-tabs button.is-active {
  color: var(--ink);
  background: #fff;
}

.preview-stage {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
}

.trade-ticket {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.trade-ticket p {
  min-height: 76px;
  color: rgba(255, 255, 255, 0.66);
}

.ticket-row {
  justify-content: space-between;
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
}

.ticket-row b {
  color: #fff;
}

.depth-stack {
  min-height: 280px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 74%, rgba(240, 161, 43, 0.32), transparent 10%),
    radial-gradient(circle at 72% 26%, rgba(43, 167, 216, 0.24), transparent 12%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 46px, 54px 100%;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 12px;
  overflow: hidden;
}

.depth-stack span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(240, 161, 43, 0.82) 0 10px, transparent 10px 18px);
  transform-origin: left center;
}

.depth-stack span:nth-child(2),
.depth-stack span:nth-child(4) {
  width: 76%;
  transform: rotate(-11deg);
}

.depth-stack span:nth-child(3) {
  width: 52%;
  background: repeating-linear-gradient(90deg, rgba(43, 167, 216, 0.72) 0 8px, transparent 8px 14px);
  transform: rotate(18deg);
}

.depth-stack span:nth-child(5) {
  width: 64%;
  background: repeating-linear-gradient(90deg, rgba(16, 166, 106, 0.72) 0 8px, transparent 8px 14px);
  transform: rotate(8deg);
}

.flow-animation {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(43, 167, 216, 0.3), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(240, 161, 43, 0.22), transparent 26%),
    linear-gradient(145deg, #07130f, #0b2119 58%, #081613);
  box-shadow: var(--shadow);
}

.flow-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.flow-animation__map,
.flow-steps,
.flow-payout {
  position: relative;
  z-index: 1;
}

.flow-animation__map {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    url("data:image/svg+xml,%3Csvg width='520' height='320' viewBox='0 0 520 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.1'%3E%3Cpath d='M-40 82 C 38 36 112 128 190 82 S 322 26 396 72 S 500 136 560 92'/%3E%3Cpath d='M-36 164 C 58 94 128 212 226 154 S 370 112 442 170 S 522 238 572 196'/%3E%3Cpath d='M-34 258 C 70 194 154 286 254 232 S 390 198 462 246 S 532 304 572 270'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: cover, 58px 58px, 58px 58px;
}

.flow-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-route__shadow,
.flow-route__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-route__shadow {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 14;
}

.flow-route__line {
  stroke: #f0a12b;
  stroke-width: 4;
  stroke-dasharray: 18 12;
  filter: drop-shadow(0 0 12px rgba(240, 161, 43, 0.7));
  animation: flowDash 2.8s linear infinite;
}

.flow-courier {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #9ff3ca 44%, var(--green) 100%);
  box-shadow:
    0 0 0 8px rgba(16, 166, 106, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.3);
  offset-path: path("M42 244 C98 178 145 218 194 152 S301 98 356 126 S430 210 482 78");
  offset-rotate: 0deg;
  animation: flowTravel 9s ease-in-out infinite;
}

.flow-courier span {
  position: absolute;
  right: -7px;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: rgba(7, 19, 15, 0.82);
}

.flow-node {
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 19, 15, 0.72);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  animation: flowPulse 9s ease-in-out infinite;
}

.flow-node b {
  font-size: 0.72rem;
  letter-spacing: 0;
}

.flow-node--task { left: 15%; top: 54%; animation-delay: 0.5s; }
.flow-node--photo { left: 36%; top: 38%; animation-delay: 1.8s; }
.flow-node--scan { left: 62%; top: 28%; animation-delay: 3.1s; }
.flow-node--finish { right: 6%; top: 16%; animation-delay: 4.4s; }

.flow-map-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 142px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 19, 15, 0.7);
  backdrop-filter: blur(12px);
}

.flow-map-card span,
.flow-payout span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.flow-map-card strong,
.flow-payout strong {
  font-size: 1rem;
}

.flow-map-card--task {
  left: 18px;
  top: 18px;
}

.flow-map-card--gps {
  right: 18px;
  bottom: 18px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.flow-step {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.075);
}

.flow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(159, 243, 202, 0.2), transparent);
  animation: flowSweep 9s ease-in-out infinite;
}

.flow-step--gps::before { animation-delay: 1s; }
.flow-step--ai::before { animation-delay: 2s; }
.flow-step--moderators::before { animation-delay: 3s; }
.flow-step--storage::before { animation-delay: 4s; }
.flow-step--chain::before { animation-delay: 5s; }

.flow-step span {
  color: #9ff3ca;
  font-size: 0.76rem;
  font-weight: 850;
}

.flow-step strong {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
}

.flow-payout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.flow-payout > div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.flow-payout__user strong {
  color: #9ff3ca;
}

.flow-payout__mods strong {
  color: #ffd979;
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes flowTravel {
  0%, 100% {
    offset-distance: 0%;
  }
  50% {
    offset-distance: 100%;
  }
}

@keyframes flowPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(159, 243, 202, 0.12);
  }
}

@keyframes flowSweep {
  0%, 42% {
    transform: translateX(-100%);
  }
  52%, 100% {
    transform: translateX(100%);
  }
}

.flow-animation--cinematic {
  isolation: isolate;
  padding: 16px;
  border-radius: 18px;
  color: #10241e;
  border-color: rgba(17, 88, 72, 0.12);
  background:
    radial-gradient(circle at 14% 12%, rgba(43, 167, 216, 0.12), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(240, 161, 43, 0.12), transparent 28%),
    linear-gradient(145deg, #f8fbf7 0%, #eef6f1 54%, #e5eee8 100%);
  box-shadow: 0 22px 62px rgba(23, 54, 45, 0.14);
}

.flow-animation--cinematic::before {
  background:
    linear-gradient(rgba(17, 88, 72, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 88, 72, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.62;
}

.flow-animation--cinematic::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  border-radius: 14px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent),
    radial-gradient(circle at 50% 50%, transparent 0 66%, rgba(66, 101, 86, 0.12) 100%);
  opacity: 0.78;
  mix-blend-mode: normal;
}

.flow-animation__viewport {
  position: relative;
  z-index: 1;
  min-height: 430px;
  overflow: hidden;
  contain: paint;
  border-radius: 14px;
  border: 1px solid rgba(31, 80, 67, 0.18);
  background:
    radial-gradient(circle at 22% 70%, rgba(16, 166, 106, 0.1), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(43, 167, 216, 0.1), transparent 24%),
    linear-gradient(160deg, rgba(250, 253, 249, 0.96), rgba(235, 245, 239, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 -24px 80px rgba(25, 84, 69, 0.07);
}

.flow-animation__canvas,
.flow-animation__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-animation__canvas {
  z-index: 1;
}

.flow-animation__overlay {
  z-index: 2;
  overflow: visible;
}

.flow-track,
.flow-data-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-track--ghost {
  stroke: rgba(31, 80, 67, 0.12);
  stroke-width: 18;
}

.flow-track--live {
  stroke: url("#flowRouteGradient");
  stroke-width: 5;
  stroke-dasharray: 22 16;
  filter: url("#flowGlow");
  animation: flowDash 3s linear infinite;
}

.flow-data-arc {
  stroke: rgba(21, 120, 92, 0.42);
  stroke-width: 3;
  stroke-dasharray: 8 16;
  filter: url("#flowGlow");
  animation: flowDash 2.6s linear infinite;
}

.flow-data-arc--chain {
  stroke: rgba(219, 130, 24, 0.58);
  animation-duration: 2.2s;
}

.flow-data-arc--miners {
  stroke: rgba(16, 136, 96, 0.5);
  animation-duration: 2.4s;
}

.flow-data-arc--approve,
.flow-data-arc--db {
  stroke: rgba(219, 130, 24, 0.54);
  animation-duration: 2.1s;
}

.flow-data-arc--reject {
  stroke: rgba(255, 113, 113, 0.38);
  stroke-dasharray: 3 13;
  opacity: 0.46;
}

.flow-ring circle {
  fill: rgba(255, 255, 255, 0.78);
  stroke: rgba(16, 136, 96, 0.52);
  stroke-width: 1.5;
  filter: url("#flowGlow");
}

.flow-ring text {
  fill: #10241e;
  font-size: 13px;
  font-weight: 850;
  text-anchor: middle;
}

.flow-ring--ai text,
.flow-ring--miners text {
  font-size: 10px;
  letter-spacing: 0;
}

.flow-ring circle {
  transform-origin: center;
  transform-box: fill-box;
}

.flow-ring.is-node-active circle {
  animation: flowNodePulse 1.35s ease-in-out infinite;
}

.flow-ring--photo.is-node-active circle {
  animation-duration: 1.05s;
  fill: rgba(255, 247, 219, 0.9);
  stroke: rgba(219, 130, 24, 0.92);
}

.flow-ring.is-node-done circle {
  opacity: 0.92;
}

@keyframes flowNodePulse {
  0%, 100% {
    transform: scale(1);
    stroke-width: 1.5;
  }

  50% {
    transform: scale(1.1);
    stroke-width: 2.35;
  }
}

.flow-ring--photo circle,
.flow-ring--scan circle {
  stroke: rgba(240, 161, 43, 0.7);
}

.flow-ring--mode circle,
.flow-ring--points circle {
  stroke: rgba(159, 243, 202, 0.68);
}

.flow-ring--ai circle,
.flow-ring--db circle {
  stroke: rgba(43, 167, 216, 0.74);
}

.flow-ring--db .flow-db-globe__sphere {
  fill: url("#flowDbGlobeGradient");
  stroke: rgba(31, 112, 154, 0.84);
}

.flow-db-globe__line,
.flow-db-globe__orbit {
  fill: none;
  stroke: rgba(31, 112, 154, 0.62);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  filter: url("#flowGlow");
}

.flow-db-globe__line {
  opacity: 0.78;
}

.flow-db-globe__orbit {
  stroke: rgba(16, 136, 96, 0.64);
  stroke-dasharray: 5 7;
  opacity: 0.72;
}

.flow-ring--db.is-node-active .flow-db-globe__line,
.flow-ring--db.is-node-active .flow-db-globe__orbit {
  opacity: 1;
}

.flow-ring--miners circle {
  stroke: rgba(159, 243, 202, 0.78);
}

.flow-ring--done circle,
.flow-ring--onne circle {
  stroke: rgba(240, 161, 43, 0.78);
}

.flow-ring--onne .flow-onne-label__main {
  font-size: 11.6px;
}

.flow-ring--onne .flow-onne-label__sub {
  font-size: 8.3px;
  font-weight: 820;
}

.flow-animation--cinematic .flow-courier {
  left: 0;
  top: 0;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  offset-path: none;
  animation: none;
  pointer-events: none;
  overflow: visible;
  --cityscan-user-blue: #1677ff;
  transform: translate3d(var(--flow-x, 58px), var(--flow-y, 316px), 0) translate(-50%, -50%);
}

.flow-animation--cinematic .cityscan-user-cursor__bearing {
  position: absolute;
  left: 50%;
  top: -80px;
  right: auto;
  bottom: auto;
  width: 78px;
  height: 104px;
  z-index: 1;
  transform: translateX(-50%) rotate(var(--cityscan-heading, 0rad));
  transform-origin: 50% 100%;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45, 151, 255, 0.34), rgba(45, 151, 255, 0.18) 48%, transparent 78%);
  clip-path: polygon(50% 100%, 8% 0, 92% 0);
  opacity: 0.64;
  filter: blur(0.5px);
  transition: transform 80ms linear;
  will-change: transform;
}

.flow-animation--cinematic .cityscan-user-cursor__pulse {
  position: absolute;
  left: 6px;
  top: 6px;
  right: auto;
  bottom: auto;
  width: 36px;
  height: 36px;
  z-index: 2;
  border-radius: 50%;
  border: 0;
  background: rgba(32, 147, 255, 0.18);
  box-shadow:
    0 0 0 8px rgba(32, 147, 255, 0.08),
    0 0 24px rgba(32, 147, 255, 0.22);
}

.flow-animation--cinematic .cityscan-user-cursor__dot {
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  top: 10px;
  right: auto;
  bottom: auto;
  width: 28px;
  height: 28px;
  z-index: 4;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background: #2093ff;
  box-shadow:
    0 4px 14px rgba(0, 64, 130, 0.2),
    0 0 0 2px rgba(32, 147, 255, 0.95);
}

.flow-animation--cinematic .cityscan-user-cursor__stem,
.flow-animation--cinematic .cityscan-user-cursor__arrow {
  display: none;
}

.flow-animation--cinematic .flow-scan-fan {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 0;
  pointer-events: none;
  opacity: var(--scan-opacity, 0.42);
  transform: translate(-50%, -50%) rotate(var(--scan-angle, 0deg));
  background:
    conic-gradient(from -24deg, rgba(43, 167, 216, 0.28) 0 38deg, transparent 40deg 360deg),
    radial-gradient(circle, rgba(16, 166, 106, 0.1), transparent 62%);
  mix-blend-mode: multiply;
  filter: blur(0.2px);
}

.flow-task-console,
.flow-gate-panel {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 9px;
  min-width: 184px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 80, 67, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(23, 54, 45, 0.14);
  backdrop-filter: blur(16px);
}

.flow-task-console {
  left: 16px;
  top: 16px;
}

.flow-task-console > span,
.flow-gate-panel > span {
  color: rgba(16, 36, 30, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.flow-mode-switch button,
.flow-gate-panel b {
  appearance: none;
  display: grid;
  min-height: 30px;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(31, 80, 67, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 36, 30, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.flow-mode-switch button:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 136, 96, 0.28);
}

.flow-mode-switch button.is-active {
  border-color: rgba(159, 243, 202, 0.72);
  color: #07130f;
  background: linear-gradient(135deg, #9ff3ca, #f0a12b);
  box-shadow: 0 0 24px rgba(159, 243, 202, 0.26);
}

.flow-point-row {
  display: grid;
  gap: 3px;
}

.flow-point-row span {
  color: rgba(16, 36, 30, 0.58);
  font-size: 0.72rem;
  font-weight: 740;
}

.flow-point-row strong {
  color: #10241e;
  font-size: 0.9rem;
  line-height: 1.2;
}

.flow-hud {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 4px;
  min-width: 164px;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(31, 80, 67, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(23, 54, 45, 0.12);
  backdrop-filter: blur(14px);
}

.flow-hud span,
.flow-payout span {
  color: rgba(16, 36, 30, 0.58);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.flow-hud strong,
.flow-payout strong {
  color: #10241e;
  font-size: 0.98rem;
  line-height: 1.2;
}

.flow-hud--capture {
  left: 16px;
  top: auto;
  bottom: 18px;
}

.flow-hud--verify {
  right: 18px;
  top: 18px;
}

.flow-gate-panel {
  right: 18px;
  top: 106px;
}

.flow-gate-panel div {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 6px;
}

.flow-gate-panel__reject {
  background: rgba(255, 113, 113, 0.08);
  text-decoration: line-through;
  opacity: 0.52;
}

.flow-gate-panel__approve {
  background: rgba(159, 243, 202, 0.1);
}

.flow-gate-panel.is-active .flow-gate-panel__approve {
  border-color: rgba(159, 243, 202, 0.7);
  color: #07130f;
  background: #9ff3ca;
  box-shadow: 0 0 24px rgba(159, 243, 202, 0.28);
}

.flow-hud--chain {
  right: 18px;
  bottom: 18px;
}

.flow-animation--cinematic .flow-steps {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(31, 80, 67, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.flow-animation--cinematic .flow-step {
  min-height: 48px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 7px;
  padding: 7px 9px;
  border-color: transparent;
  border-radius: 9px;
  background: transparent;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.flow-animation--cinematic .flow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  display: block;
  width: 6px;
  height: 1px;
  transform: none;
  background: rgba(16, 136, 96, 0.24);
  animation: none;
}

.flow-animation--cinematic .flow-step:last-child::before {
  display: none;
}

.flow-animation--cinematic .flow-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: rgba(16, 36, 30, 0.72);
  font-size: 0.62rem;
  line-height: 1;
  background: rgba(16, 136, 96, 0.08);
  border: 1px solid rgba(16, 136, 96, 0.18);
}

.flow-animation--cinematic .flow-step strong {
  min-width: 0;
  font-size: 0.68rem;
  line-height: 1.12;
}

.flow-animation--cinematic .flow-step.is-active {
  border-color: rgba(16, 136, 96, 0.24);
  background:
    linear-gradient(135deg, rgba(159, 243, 202, 0.28), rgba(240, 161, 43, 0.14)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(23, 54, 45, 0.1);
}

.flow-animation--cinematic .flow-step.is-active span {
  color: #07130f;
  border-color: rgba(255, 255, 255, 0.46);
  background: linear-gradient(135deg, #9ff3ca, #f0a12b);
  box-shadow: 0 0 18px rgba(159, 243, 202, 0.26);
}

.flow-animation--cinematic .flow-step.is-done span {
  color: #9a6408;
  border-color: rgba(219, 130, 24, 0.32);
  background: rgba(240, 161, 43, 0.08);
}

.flow-animation--cinematic .flow-payout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.flow-animation--cinematic .flow-payout > div {
  min-height: 82px;
  border-radius: 12px;
  border-color: rgba(31, 80, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 248, 0.62));
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.flow-animation--cinematic .flow-payout > div.is-active {
  transform: translateY(-2px);
  border-color: rgba(240, 161, 43, 0.5);
  box-shadow: 0 16px 34px rgba(240, 161, 43, 0.12);
}

.flow-payout__map strong {
  color: #2ba7d8;
}

.wallet-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wallet-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(0, 0.72fr));
  gap: 14px;
}

.wallet-panel {
  padding: 22px;
  min-height: 240px;
}

.wallet-panel--main {
  min-height: 340px;
}

.wallet-panel__head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.wallet-panel__head span {
  font-size: 0.9rem;
}

.wallet-panel__head strong {
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
}

.asset-row {
  gap: 12px;
  min-height: 72px;
  border-top: 1px solid var(--line);
}

.asset-row img,
.asset-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.asset-row img {
  object-fit: cover;
}

.asset-row div {
  flex: 1;
}

.asset-row strong,
.asset-row span {
  display: block;
}

.asset-row span {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

.asset-row b {
  font-variant-numeric: tabular-nums;
}

.asset-dot--ton {
  background: linear-gradient(135deg, #2ba7d8, #78d9ff);
}

.asset-dot--usdt {
  background: linear-gradient(135deg, #21a67a, #8ff4c5);
}

.official-token-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 16% 18%, rgba(43, 167, 216, 0.12), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(240, 161, 43, 0.12), transparent 28%),
    rgba(237, 245, 251, 0.84);
}

.official-token-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.official-token-copy h2 {
  margin: 14px 0 12px;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.official-token-copy p {
  max-width: 760px;
}

.official-token-slogan {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 1.38rem;
  line-height: 1.25;
  font-weight: 820;
}

.official-token-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 243, 239, 0.78)),
    #fff;
  box-shadow: 0 18px 56px rgba(10, 32, 24, 0.1);
}

.official-token-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(8, 115, 75, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 115, 75, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 74%);
}

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

.official-token-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.official-token-card__head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(7, 19, 15, 0.14);
}

.official-token-card__head span,
.official-token-meta span,
.official-token-hint {
  color: var(--muted);
}

.official-token-card__head span,
.official-token-meta span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.official-token-card__head strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.official-token-meta {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.official-token-meta strong {
  font-size: 1.1rem;
}

.official-token-meta code {
  display: block;
  width: 100%;
  padding: 0;
  color: var(--ink);
  font: 780 0.92rem/1.42 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.official-token-copy-button {
  width: 100%;
}

.official-token-hint {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.docs-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(8, 115, 75, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 115, 75, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
}

.docs-section .section-heading {
  margin-bottom: 28px;
}

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

.docs-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(10, 32, 24, 0.08);
}

.docs-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(43, 167, 216, 0.24);
  border-radius: 50%;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(172, 246, 200, 0.8), rgba(240, 183, 47, 0.72));
  font-weight: 860;
  font-size: 0.82rem;
}

.docs-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.docs-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.docs-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.docs-card__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(245, 248, 246, 0.92);
  font-size: 0.9rem;
  font-weight: 820;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.docs-card__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 115, 75, 0.34);
  background: #fff;
}

.token-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 34px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 22%, rgba(16, 166, 106, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.token-card__media {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 26px 72px rgba(9, 69, 48, 0.22);
}

.token-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.token-metrics div {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.rewards-section {
  padding-top: 84px;
}

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

.reward-card {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 243, 239, 0.82)),
    #fff;
}

.reward-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #07563a;
  background: rgba(16, 166, 106, 0.1);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.airdrop-section {
  padding-top: 84px;
}

.airdrop-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.airdrop-copy p {
  max-width: 760px;
}

.conversion-panel {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(7, 19, 15, 0.12);
  background:
    url("data:image/svg+xml,%3Csvg width='360' height='260' viewBox='0 0 360 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2308734b' stroke-opacity='0.12'%3E%3Cpath d='M-20 54 C 70 0 126 90 218 44 C 292 8 332 50 390 20'/%3E%3Cpath d='M-24 140 C 72 78 140 180 232 118 C 306 68 340 132 386 98'/%3E%3Cpath d='M-18 220 C 76 160 154 260 246 196 C 306 154 340 202 386 176'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 239, 0.92));
  background-size: cover;
  box-shadow: var(--shadow);
}

.conversion-row {
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.conversion-row span:not(.point-coin):not(.token-coin) {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.conversion-row strong {
  display: block;
  margin-top: 6px;
  font-size: 1.42rem;
}

.point-coin,
.token-coin {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.point-coin {
  background: transparent;
  border: 0;
  box-shadow: 0 14px 34px rgba(184, 135, 44, 0.22);
}

.point-coin svg {
  width: 62px;
  height: 62px;
  display: block;
}

.token-coin {
  overflow: hidden;
  background: #07130f;
  box-shadow: 0 14px 34px rgba(7, 19, 15, 0.18);
}

.token-coin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversion-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 1.3rem;
  font-weight: 850;
}

.airdrop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.airdrop-card {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 243, 239, 0.82)),
    #fff;
}

.airdrop-card > span {
  color: var(--green-dark);
  font-weight: 850;
}

.airdrop-card h3 {
  margin: 44px 0 10px;
  font-size: 1.35rem;
}

.airdrop-card p {
  margin: 0;
}

.institutional-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 242, 248, 0.92)),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.institutional-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 24px;
}

.institutional-copy h2 {
  margin: 12px 0 14px;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.institutional-copy p {
  max-width: 720px;
}

.institutional-terminal {
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 166, 106, 0.2), transparent 42%),
    #07130f;
  box-shadow: var(--shadow);
}

.institutional-terminal__row {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.institutional-terminal__row + .institutional-terminal__row {
  margin-top: 10px;
}

.institutional-terminal__row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.institutional-terminal__row strong {
  font-size: 1.05rem;
}

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

.institutional-card {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.institutional-card span {
  color: var(--green-dark);
  font-weight: 850;
}

.atlas-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.atlas-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
  background: #06271c;
  box-shadow: var(--shadow);
}

.atlas-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.atlas-overlay-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.security-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: #07130f;
  color: #fff;
}

.security-section .eyebrow {
  color: #8ff4c5;
}

.security-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

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

.security-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.security-grid span {
  color: #8ff4c5;
  font-weight: 850;
}

.security-grid h3 {
  margin: 58px 0 10px;
}

.security-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  color: #f7fcff;
  border-top: 1px solid rgba(111, 255, 208, 0.13);
  border-bottom: 1px solid rgba(111, 255, 208, 0.13);
  background:
    radial-gradient(circle at 88% 6%, rgba(41, 194, 255, 0.18), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(68, 214, 161, 0.14), transparent 36%),
    linear-gradient(145deg, #071720 0%, #0a2630 54%, #071d23 100%);
}

.faq-section .eyebrow {
  color: #6fffd0;
}

.faq-section .section-heading h2 {
  color: #f7fcff;
}

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

.faq-item {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  border: 1px solid rgba(177, 226, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 38px rgba(0, 8, 14, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 255, 208, 0.28);
  background: rgba(255, 255, 255, 0.085);
}

.faq-item span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #f7fcff;
  font-size: 1.08rem;
  font-weight: 820;
}

.faq-item span::after {
  content: "+";
  color: #6fffd0;
  font-size: 1.5rem;
}

.faq-item[aria-expanded="true"] span::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 14px 0 0;
  color: rgba(220, 239, 249, 0.72);
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.final-cta {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 76px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(17, 68, 104, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(41, 194, 255, 0.17), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(240, 161, 43, 0.13), transparent 28%),
    linear-gradient(120deg, rgba(223, 248, 244, 0.98), rgba(235, 246, 255, 0.98));
}

.final-cta div {
  max-width: 760px;
}

.final-cta__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 32px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.brand--footer {
  color: var(--ink);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 680;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 720;
}

.footer-legal-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.legal-page {
  background:
    url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2308734b' stroke-opacity='0.06' stroke-width='1.4'%3E%3Cpath d='M-80 74 C 52 12 126 122 246 70 C 352 24 433 54 600 18'/%3E%3Cpath d='M-58 178 C 72 104 155 238 276 158 C 392 82 478 142 608 92'/%3E%3Cpath d='M-96 304 C 64 210 158 356 300 260 C 415 182 478 264 606 218'/%3E%3Cpath d='M-52 442 C 104 328 188 500 336 374 C 432 292 516 390 608 326'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, #fff, #f5f7f4 44%, #eef3ef);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.legal-header__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 740;
}

.legal-header__links a:hover {
  color: var(--ink);
}

.legal-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 64px rgba(10, 32, 24, 0.1);
}

.legal-hero {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.legal-hero p,
.legal-section p,
.legal-section li {
  color: #2e3e38;
  line-height: 1.65;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(7, 19, 15, 0.06);
  font: 760 0.9em/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.legal-footer {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .manifesto-panel {
    width: min(100% - 40px, 920px);
  }

  .manifesto-panel__content {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  }

  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: clamp(2.55rem, 5.8vw, 3.7rem);
  }

  .manifesto-intro h2 {
    white-space: normal;
  }

  .manifesto-stat {
    min-height: 166px;
  }

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

  .nav-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    justify-self: end;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .split-section,
  .atlas-section,
  .airdrop-shell {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 6.2rem;
  }

  .hero__lead {
    font-size: 1.28rem;
  }

  .section-heading h2,
  .split-section h2,
  .token-card h2,
  .official-token-copy h2,
  .airdrop-copy h2,
  .institutional-copy h2,
  .atlas-copy h2,
  .final-cta h2 {
    font-size: 3.25rem;
  }

  .hero__visual {
    min-height: auto;
  }

  .product-grid,
  .stage-grid,
  .rewards-grid,
  .airdrop-grid,
  .institutional-grid,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .install-heading,
  .install-platform-grid {
    grid-template-columns: 1fr;
  }

  .install-heading__actions {
    max-width: 520px;
  }

  .wallet-layout {
    grid-template-columns: 1fr;
  }

  .institutional-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .official-token-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .token-card {
    grid-template-columns: 280px minmax(0, 1fr);
  }

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

  .brand--footer {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 1320px) and (min-width: 1041px) {
  .header-cta {
    display: none;
  }
}

@media (max-height: 1040px) and (min-width: 1041px) {
  .manifesto-panel {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .manifesto-panel__content {
    gap: 15px 20px;
    padding-top: 16px;
  }

  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  }

  .manifesto-intro h2 {
    margin-top: 12px;
    margin-bottom: 14px;
    max-width: none;
  }

  .manifesto-spaceonne h3 {
    margin-top: 0;
  }

  .manifesto-intro__lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .manifesto-stat {
    min-height: 136px;
    padding: 16px;
  }

  .manifesto-argument__card {
    min-height: auto;
    padding: 16px 19px;
  }

  .manifesto-argument__card p {
    margin-top: 9px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .manifesto-spaceonne {
    gap: 11px;
  }

  .manifesto-punchline {
    font-size: clamp(2.15rem, 3.5vw, 3.4rem);
  }

  .manifesto-action {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.8rem;
  }
}

@media (max-height: 820px) and (min-width: 1041px) {
  .manifesto-panel {
    padding-top: 5px;
    padding-bottom: 11px;
  }

  .manifesto-panel__content {
    gap: 10px 18px;
    padding-top: 7px;
  }

  .manifesto-kicker {
    gap: 7px;
    font-size: 0.78rem;
  }

  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: clamp(2.3rem, 3vw, 3rem);
    line-height: 0.9;
  }

  .manifesto-intro h2 {
    margin: 9px 0 11px;
    max-width: none;
  }

  .manifesto-spaceonne h3 {
    margin-top: 0;
  }

  .manifesto-intro__lead {
    font-size: 1.02rem;
    line-height: 1.44;
  }

  .manifesto-stat {
    min-height: 112px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .manifesto-stat__value {
    font-size: clamp(1.8rem, 2.25vw, 2.2rem);
  }

  .manifesto-stat__label {
    margin-top: 7px;
    font-size: 0.76rem;
  }

  .manifesto-argument__card {
    min-height: auto;
    padding: 12px 16px;
    border-radius: 17px;
  }

  .manifesto-argument__card > span {
    font-size: 0.76rem;
  }

  .manifesto-argument__card p {
    margin-top: 7px;
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .manifesto-spaceonne {
    gap: 8px;
  }

  .manifesto-argument__card .manifesto-argument__token {
    margin-top: 9px;
  }

  .manifesto-argument__card .manifesto-argument__value-loop {
    margin-top: 9px;
    padding-top: 9px;
  }

  .manifesto-punchline {
    margin-top: 8px;
    font-size: clamp(1.8rem, 2.9vw, 2.65rem);
    line-height: 1;
  }

  .manifesto-actions {
    gap: 8px;
    margin-top: 10px;
  }

  .manifesto-action {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 6.7rem;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__meta {
    margin-top: 28px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .chart-panel {
    min-height: 260px;
  }

  .chart-line {
    height: 132px;
  }
}

@media (max-height: 760px) and (min-width: 1041px) {
  .manifesto-panel {
    padding-top: 5px;
    padding-bottom: 8px;
  }

  .manifesto-panel__content {
    gap: 7px 16px;
    padding-top: 6px;
  }

  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: clamp(2.2rem, 2.8vw, 2.75rem);
  }

  .manifesto-intro h2 {
    margin: 6px 0 7px;
  }

  .manifesto-intro__lead {
    line-height: 1.38;
  }

  .manifesto-stat {
    min-height: 100px;
  }

  .manifesto-argument__card {
    padding: 10px 14px;
  }

  .manifesto-argument__card p {
    margin-top: 6px;
    line-height: 1.38;
  }

  .manifesto-argument__card .manifesto-argument__token,
  .manifesto-argument__card .manifesto-argument__value-loop {
    margin-top: 8px;
  }

  .manifesto-argument__card .manifesto-argument__value-loop {
    padding-top: 8px;
  }

  .manifesto-spaceonne {
    gap: 6px;
  }

  .manifesto-punchline {
    margin-top: 7px;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 0.96;
  }

  .manifesto-actions {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .manifesto-panel {
    width: 100%;
    padding: 14px 14px calc(24px + env(safe-area-inset-bottom));
  }

  .manifesto-panel__content {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-top: 42px;
  }

  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: clamp(2.25rem, 10.8vw, 3.25rem);
    line-height: 0.92;
  }

  .manifesto-intro h2 {
    margin: 13px 0 15px;
  }

  .manifesto-spaceonne {
    gap: 10px;
  }

  .manifesto-intro__lead {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .manifesto-stat {
    min-height: 128px;
    padding: 18px;
    border-radius: 20px;
  }

  .manifesto-stat__value {
    font-size: 2.15rem;
  }

  .manifesto-argument {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .manifesto-argument__card {
    min-height: auto;
    padding: 17px 18px;
    border-radius: 18px;
  }

  .manifesto-argument__card p {
    font-size: 0.98rem;
  }

  .manifesto-solution-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .manifesto-solution-grid__validation {
    padding: 9px 0 0;
    border-top: 1px solid rgba(111, 255, 208, 0.2);
    border-left: 0;
  }

  .manifesto-punchline {
    margin-top: 6px;
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .manifesto-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manifesto-action {
    width: 100%;
  }

  .manifesto-trigger {
    top: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 54px;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .manifesto-trigger.is-over-manifesto {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(16px, 16px, 0) scale(0.82);
  }

  .manifesto-trigger:hover,
  .manifesto-trigger:focus-visible {
    transform: translate3d(-3px, -2px, 0) scale(1.01) !important;
  }

  .manifesto-trigger.is-guiding {
    animation-name: manifesto-trigger-guide-mobile;
  }

  @keyframes manifesto-trigger-guide-mobile {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    48% { transform: translate3d(-4px, -3px, 0) scale(1.06); box-shadow: 0 20px 52px rgba(15, 159, 126, 0.34); }
  }

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .section-pad.app-surface-section,
  .section-pad.install-section,
  .section-pad.flow-section,
  .section-pad.wallet-section,
  .section-pad.official-token-section,
  .section-pad.docs-section,
  .section-pad.institutional-section,
  .section-pad.faq-section,
  .section-pad.final-cta {
    width: 100%;
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 14px;
    gap: 10px;
  }

  .brand__text {
    font-size: 0.95rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .header-actions {
    gap: 6px;
    max-width: 188px;
    overflow: hidden;
  }

  .language-switcher {
    min-height: 40px;
    padding: 0 8px;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    width: 58px;
    max-width: 58px;
    font-size: 0.78rem;
  }

  .site-header .header-cta {
    box-shadow: none;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .section-heading h2,
  .split-section h2,
  .token-card h2,
  .official-token-copy h2,
  .airdrop-copy h2,
  .institutional-copy h2,
  .atlas-copy h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .wallet-panel__head strong {
    font-size: 2rem;
  }

  .hero__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero__meta div {
    padding: 10px;
  }

  .hero__meta strong {
    font-size: 0.82rem;
  }

  .hero__meta span {
    font-size: 0.68rem;
  }

  .hero__meta,
  .market-strip__track,
  .product-grid,
  .stage-grid,
  .rewards-grid,
  .airdrop-grid,
  .docs-grid,
  .institutional-grid,
  .security-grid,
  .token-metrics {
    grid-template-columns: 1fr;
  }

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

  .terminal-grid,
  .preview-stage {
    flex-direction: column;
    display: flex;
  }

  .hero__visual:not(.hero__visual--cards) {
    display: none;
  }

  .hero__visual--cards {
    display: block;
  }

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

  .hero-insight-card,
  .hero-insight-card--wide {
    grid-column: auto;
    min-height: auto;
  }

  .app-surface-frame {
    padding: 14px;
  }

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

  .app-surface-card {
    min-height: auto;
  }

  .install-platform {
    padding: 14px;
    border-radius: 20px;
  }

  .install-tabs {
    gap: 5px;
    padding: 5px;
    border-radius: 18px;
  }

  .install-tab {
    min-height: 58px;
    gap: 7px;
    padding: 9px 10px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .install-tab__system {
    min-width: 0;
    padding: 4px 7px;
    font-size: 0.65rem;
  }

  .install-step {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .install-shot {
    min-height: 168px;
  }

  .install-heading__actions .button {
    width: 100%;
  }

  .docs-section .section-heading h2 {
    font-size: 2.08rem;
  }

  .docs-card {
    padding: 18px;
  }

  .docs-card__index {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
  }

  .docs-card__links {
    margin-top: 20px;
  }

  .book-panel {
    width: 100%;
  }

  .wallet-float,
  .atlas-float {
    position: static;
    margin-top: 12px;
    width: 100%;
  }

  .terminal-card__bottom {
    flex-direction: column;
  }

  .market-tile,
  .market-tile:first-child {
    border-left: 1px solid var(--line);
  }

  .product-card,
  .stage-card,
  .reward-card,
  .airdrop-card,
  .docs-card,
  .institutional-card,
  .security-grid article {
    min-height: auto;
  }

  .stage-card h3,
  .reward-card h3,
  .airdrop-card h3,
  .institutional-card h3 {
    margin-top: 28px;
  }

  .wallet-section,
  .install-section,
  .official-token-section,
  .docs-section,
  .airdrop-section,
  .institutional-section,
  .security-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wallet-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .asset-row {
    grid-template-columns: auto 1fr;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .asset-row b {
    width: 100%;
    padding-left: 46px;
  }

  .token-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px;
  }

  .institutional-shell {
    gap: 28px;
  }

  .official-token-shell {
    gap: 28px;
  }

  .official-token-card {
    padding: 18px;
  }

  .legal-header {
    width: min(100% - 28px, 980px);
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-shell {
    width: min(100% - 28px, 980px);
    padding: 24px;
    margin-bottom: 54px;
  }

  .legal-footer {
    width: min(100% - 28px, 980px);
  }

  .airdrop-shell,
  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .flow-animation {
    padding: 12px;
  }

  .flow-animation__map {
    min-height: 280px;
  }

  .flow-animation__viewport {
    min-height: 360px;
  }

  .flow-animation--cinematic .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .flow-animation--cinematic .flow-step {
    min-height: 50px;
  }

  .flow-animation--cinematic .flow-payout {
    grid-template-columns: 1fr;
  }

  .flow-hud {
    min-width: 138px;
    padding: 10px;
  }

  .flow-task-console,
  .flow-gate-panel {
    min-width: 156px;
    padding: 10px;
  }

  .flow-hud--verify {
    top: auto;
    bottom: 96px;
  }

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

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

  .flow-map-card {
    min-width: 124px;
    padding: 10px;
  }

  .conversion-panel {
    min-height: auto;
    gap: 10px;
  }

  .conversion-row {
    min-height: 150px;
  }

  .conversion-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .institutional-terminal {
    padding: 12px;
  }

  .token-card__media {
    max-width: 240px;
    margin: 0 auto;
  }

  .atlas-overlay-card {
    position: static;
    width: 100%;
    border-radius: 0;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .manifesto-intro h2,
  .manifesto-spaceonne h3 {
    font-size: 2.35rem;
  }

  .manifesto-punchline {
    font-size: 2.2rem;
  }

  .manifesto-trigger {
    gap: 8px;
    padding-right: 9px;
  }

  .manifesto-trigger__orb {
    width: 40px;
    height: 40px;
  }

  .manifesto-trigger__copy strong {
    font-size: 0.88rem;
  }

  .manifesto-trigger__arrow {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .brand__text {
    display: none;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .header-cta {
    padding: 0 10px;
  }

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

  .flow-animation--cinematic .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .flow-animation--cinematic .flow-step {
    min-height: 52px;
    padding: 7px 8px;
  }

  .flow-animation--cinematic .flow-step strong {
    font-size: 0.68rem;
  }

  .flow-animation__viewport {
    min-height: 360px;
  }

  .flow-hud {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 6;
    margin: 8px;
  }

  .flow-task-console,
  .flow-gate-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-width: 0;
    margin: 8px;
  }

  .flow-hud--verify,
  .flow-hud--chain {
    position: absolute;
    margin: 0;
  }

  .flow-hud--verify {
    left: 8px;
    bottom: 84px;
  }

  .flow-hud--chain {
    right: 8px;
    bottom: 8px;
  }
}

/* Concise landing manifesto aligned with the first onboarding story. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.manifesto-section {
  min-height: max(680px, calc(100svh - 72px));
}

.manifesto-panel {
  width: min(1380px, calc(100% - 64px));
  padding: clamp(20px, 3.2vh, 34px) 0;
}

.manifesto-panel__content.manifesto-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vh, 28px);
  padding-top: 0;
}

.manifesto-overview__header {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.manifesto-overview__header h2 {
  max-width: 980px;
  margin: 0;
  color: #f8fcff;
  font-size: clamp(2.65rem, 4.4vw, 4.9rem);
  font-weight: 860;
  line-height: 0.96;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.manifesto-overview__body {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(310px, 0.72fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
}

.manifesto-story {
  position: relative;
  isolation: isolate;
  min-height: clamp(410px, 55vh, 520px);
}

.manifesto-story__picture {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(170, 231, 250, 0.24);
  border-radius: 30px;
  background: #dceef5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.manifesto-story__picture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(2, 15, 24, 0.34), transparent 42%),
    linear-gradient(0deg, rgba(2, 17, 24, 0.38), transparent 38%);
}

.manifesto-story__picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: manifesto-picture-drift 12s ease-in-out infinite;
}

.manifesto-story__glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.22) 45%, transparent 68%),
    radial-gradient(circle at 64% 56%, rgba(111, 255, 208, 0.2), transparent 34%);
  background-size: 220% 100%, 100% 100%;
  animation: manifesto-picture-shine 7.2s ease-in-out infinite;
}

.manifesto-story__content-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(111, 255, 208, 0.42);
  border-radius: 999px;
  color: #f7fffc;
  background: rgba(3, 23, 29, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.manifesto-story__content-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fffd0;
  box-shadow: 0 0 14px rgba(111, 255, 208, 0.9);
}

.manifesto-model-card {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 13px 16px;
  border: 1px solid rgba(185, 228, 244, 0.24);
  border-radius: 22px;
  color: #f7fcff;
  background: rgba(2, 17, 27, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.manifesto-model-card--centralized {
  top: 22px;
  left: 22px;
  width: min(448px, calc(100% - 44px));
}

.manifesto-model-card--decentralized {
  right: 22px;
  bottom: 22px;
  width: min(500px, calc(100% - 44px));
  border-color: rgba(111, 255, 208, 0.38);
  background:
    radial-gradient(circle at 90% 12%, rgba(41, 194, 255, 0.22), transparent 42%),
    rgba(3, 34, 35, 0.86);
  box-shadow: 0 18px 48px rgba(1, 37, 33, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.manifesto-model-card__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.manifesto-model-card__copy > span {
  color: rgba(202, 231, 241, 0.66);
  font-size: 0.7rem;
  font-weight: 860;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto-model-card__copy > strong {
  color: #f8fffc;
  font-size: clamp(1.1rem, 1.45vw, 1.38rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.manifesto-platform-bubble,
.manifesto-spaceonne-bubble {
  position: relative;
  isolation: isolate;
  display: grid;
  place-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 1px solid rgba(142, 221, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 21%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(17, 50, 64, 0.96), rgba(3, 18, 29, 0.96));
  box-shadow: inset -7px -9px 16px rgba(41, 194, 255, 0.08), 0 0 0 5px rgba(41, 194, 255, 0.06);
  flex: 0 0 auto;
}

.manifesto-platform-bubble::before,
.manifesto-platform-bubble::after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(102, 207, 245, 0.24);
  border-radius: 50%;
}

.manifesto-platform-bubble::before {
  inset: 18px 3px;
  transform: rotate(-18deg);
}

.manifesto-platform-bubble::after {
  inset: 4px 21px;
  transform: rotate(24deg);
}

.manifesto-platform-bubble > span {
  position: absolute;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 21px;
  height: 21px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.32));
  animation: manifesto-platform-pulse 3.2s ease-in-out infinite;
}

.manifesto-platform-bubble svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.manifesto-platform-bubble > .is-google {
  top: 10px;
  left: 24px;
  color: #4c8bf5;
}

.manifesto-platform-bubble > .is-apple {
  bottom: 10px;
  left: 12px;
  color: #f2f7fa;
  animation-delay: -1s;
}

.manifesto-platform-bubble > .is-microsoft {
  right: 12px;
  bottom: 10px;
  color: #f35325;
  animation-delay: -2s;
}

.manifesto-spaceonne-bubble {
  padding: 4px;
  border-color: rgba(111, 255, 208, 0.56);
  background: rgba(6, 45, 42, 0.94);
  box-shadow: 0 0 0 5px rgba(111, 255, 208, 0.08), 0 10px 24px rgba(31, 209, 163, 0.16);
}

.manifesto-spaceonne-bubble img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.manifesto-service-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  color: rgba(219, 238, 246, 0.7);
  font-size: 0.72rem;
  font-weight: 720;
}

.manifesto-service-list i {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
}

.manifesto-service-list i + i::before {
  content: "•";
  color: #6fffd0;
  font-size: 0.76em;
}

.manifesto-model-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(222, 237, 242, 0.78);
  font-size: 0.64rem;
  font-weight: 760;
  line-height: 1.24;
}

.manifesto-model-facts li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.manifesto-model-facts li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff7187;
  box-shadow: 0 0 8px rgba(255, 89, 115, 0.38);
  flex: 0 0 auto;
}

.manifesto-model-card--decentralized .manifesto-model-facts {
  color: rgba(220, 255, 244, 0.82);
}

.manifesto-model-card--decentralized .manifesto-model-facts li::before {
  background: #6fffd0;
  box-shadow: 0 0 8px rgba(111, 255, 208, 0.5);
}

.manifesto-principles {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(158, 220, 245, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(68, 214, 161, 0.12), transparent 34%),
    rgba(3, 20, 30, 0.68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.manifesto-principles__label {
  color: rgba(195, 226, 237, 0.62);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.manifesto-principles__list {
  display: grid;
  gap: 0;
  margin-top: 10px;
}

.manifesto-principles__list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(142, 221, 255, 0.12);
}

.manifesto-principles__list article:last-child {
  border-bottom: 0;
}

.manifesto-principles__list article > span {
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(111, 255, 208, 0.28);
  border-radius: 50%;
  color: #6fffd0;
  background: rgba(68, 214, 161, 0.08);
  font-size: 0.68rem;
  font-weight: 840;
}

.manifesto-principles__list p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.manifesto-principles__list strong {
  color: #f7fffc;
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  line-height: 1.18;
}

.manifesto-principles__list small {
  color: rgba(213, 235, 243, 0.68);
  font-size: clamp(0.84rem, 0.95vw, 0.96rem);
  font-weight: 590;
  line-height: 1.42;
}

.manifesto-principles .manifesto-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
  padding-top: 16px;
}

.manifesto-principles .manifesto-action {
  width: 100%;
}

@keyframes manifesto-picture-drift {
  0%, 100% { transform: scale(1.015) translate3d(0, 0, 0); }
  50% { transform: scale(1.055) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes manifesto-picture-shine {
  0%, 20% { background-position: 115% 0, 0 0; opacity: 0.46; }
  52% { opacity: 0.94; }
  78%, 100% { background-position: -75% 0, 0 0; opacity: 0.46; }
}

@keyframes manifesto-platform-pulse {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.08); }
}

@media (max-width: 1080px) {
  .manifesto-section {
    min-height: auto;
  }

  .manifesto-panel {
    width: min(100% - 40px, 960px);
    padding: 36px 0;
  }

  .manifesto-overview__body {
    grid-template-columns: 1fr;
  }

  .manifesto-story {
    min-height: min(520px, 58vw);
  }

  .manifesto-principles__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .manifesto-principles__list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 14px 0 0;
    border-right: 1px solid rgba(142, 221, 255, 0.12);
    border-bottom: 0;
  }

  .manifesto-principles__list article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .manifesto-principles .manifesto-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .manifesto-panel {
    width: 100%;
    padding: 24px 14px calc(28px + env(safe-area-inset-bottom));
  }

  .manifesto-panel__content.manifesto-overview {
    gap: 18px;
    padding-top: 36px;
  }

  .manifesto-overview__header {
    gap: 10px;
  }

  .manifesto-overview__header h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  .manifesto-story {
    display: grid;
    gap: 10px;
    min-height: auto;
  }

  .manifesto-story__picture {
    position: relative;
    inset: auto;
    order: 2;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .manifesto-model-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 98px;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 13px;
    border-radius: 18px;
  }

  .manifesto-model-card--centralized {
    order: 1;
  }

  .manifesto-model-card--decentralized {
    order: 3;
  }

  .manifesto-platform-bubble,
  .manifesto-spaceonne-bubble {
    width: 60px;
    height: 60px;
  }

  .manifesto-spaceonne-bubble img {
    width: 52px;
    height: 52px;
  }

  .manifesto-platform-bubble > .is-google {
    top: 7px;
    left: 20px;
  }

  .manifesto-platform-bubble > .is-apple {
    bottom: 7px;
    left: 8px;
  }

  .manifesto-platform-bubble > .is-microsoft {
    right: 8px;
    bottom: 7px;
  }

  .manifesto-model-card__copy > strong {
    font-size: 1.04rem;
  }

  .manifesto-model-facts {
    gap: 3px 8px;
    font-size: 0.6rem;
  }

  .manifesto-story__content-badge {
    left: 12px;
    bottom: 12px;
  }

  .manifesto-principles {
    padding: 19px;
    border-radius: 24px;
  }

  .manifesto-principles__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
  }

  .manifesto-principles__list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(142, 221, 255, 0.12);
  }

  .manifesto-principles .manifesto-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .manifesto-overview__header h2 {
    font-size: clamp(2rem, 10.6vw, 2.7rem);
  }

  .manifesto-model-card__copy > span,
  .manifesto-principles__label {
    font-size: 0.65rem;
  }

  .manifesto-service-list {
    font-size: 0.66rem;
  }

  .manifesto-model-facts {
    font-size: 0.57rem;
  }
}

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