: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);
}

.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::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 {
  padding-top: 52px;
}

.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-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.install-platform {
  scroll-margin-top: 88px;
  --platform-accent: var(--green-dark);
  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);
}

.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: min(1280px, calc(100% - 40px));
}

.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-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

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

.faq-item span::after {
  content: "+";
  color: var(--green-dark);
  font-size: 1.5rem;
}

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

.faq-item p {
  display: none;
  margin: 14px 0 0;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 76px;
}

.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) {
  .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: 820px) and (min-width: 1041px) {
  .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-width: 720px) {
  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .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-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) {
  .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;
  }
}

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