@font-face {
  font-family: "Zen Display";
  src: url("/zen/fonts/Montserrat-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

:root {
  color-scheme: dark;
  --bg: #070906;
  --bg-soft: #0d100c;
  --surface: #151713;
  --surface-raised: #191c17;
  --ink: #f2f0e8;
  --ink-strong: #fffaf0;
  --muted: #aaa99f;
  --dim: #8d8e85;
  --line: rgba(242, 240, 232, 0.12);
  --line-strong: rgba(242, 240, 232, 0.22);
  --ember: #f08a2a;
  --ember-light: #ffad54;
  --mint: #66d69a;
  --olive: #5c7e60;
  --display: "Zen Display", "Arial Black", "Arial", sans-serif;
  --body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max: 1320px;
  --page-pad: clamp(22px, 4.2vw, 72px);
  --section-y: clamp(88px, 11vw, 168px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(240, 138, 42, 0.045), transparent 27%),
    radial-gradient(circle at 9% 45%, rgba(92, 126, 96, 0.055), transparent 23%), var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.symbol-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--ember-light);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  height: 92px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(242, 240, 232, 0.055);
  background: linear-gradient(180deg, rgba(7, 9, 6, 0.97), rgba(7, 9, 6, 0.84));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
}

.brand-orbit {
  width: 42px;
  height: 42px;
}

.brand-orbit svg {
  width: 100%;
  height: 100%;
  animation: brand-orbit 12s linear infinite;
}

.brand-orbit-base {
  stroke: rgba(242, 240, 232, 0.25);
  stroke-width: 2;
}

.brand-orbit-arc {
  stroke: var(--ink-strong);
  stroke-dasharray: 28 72;
  stroke-width: 2.7;
}

.brand-orbit-dot {
  fill: var(--ember);
  stroke: none;
}

.brand-word {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.header-nav a,
.bot-link {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.header-nav a:hover,
.bot-link:hover {
  color: var(--ink-strong);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}

.language-switch {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 9px;
  border: 0;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-option {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  color: var(--dim);
  background: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.language-option.is-active,
.language-option:hover {
  color: var(--ember-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 46px;
  padding: 0 19px;
  border-radius: 13px;
  font-size: 13px;
}

.button-light {
  color: #161713;
  background: var(--ink);
  box-shadow: 0 10px 32px rgba(242, 240, 232, 0.08);
}

.button-primary {
  color: #17140f;
  background: var(--ember);
  box-shadow: 0 18px 48px rgba(240, 138, 42, 0.19);
}

.button-primary:hover {
  background: #fa9638;
  box-shadow: 0 22px 60px rgba(240, 138, 42, 0.26);
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(17, 19, 16, 0.58);
}

.button-ghost:hover {
  border-color: rgba(242, 240, 232, 0.4);
  background: rgba(25, 28, 23, 0.82);
}

main {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  align-items: center;
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(56px, 7.5vw, 108px) var(--page-pad) clamp(72px, 9vw, 126px);
  gap: clamp(28px, 5vw, 84px);
}

.hero::after {
  position: absolute;
  right: var(--page-pad);
  bottom: 28px;
  left: var(--page-pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.micro-label {
  margin: 0 0 25px;
  color: var(--ember-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--ink-strong);
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.98;
  white-space: pre-line;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 38px;
  color: #c4c2b9;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.hero-art {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 138, 42, 0.07), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(240, 138, 42, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.hero-orbit::before {
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-top-color: var(--ember);
  border-right-color: rgba(240, 138, 42, 0.12);
  border-radius: inherit;
  content: "";
  filter: drop-shadow(0 0 8px rgba(240, 138, 42, 0.7));
  animation: orbit-spin 15s linear infinite;
}

.hero-orbit-large {
  width: min(37vw, 560px);
  height: min(37vw, 560px);
}

.hero-orbit-small {
  width: min(27vw, 410px);
  height: min(27vw, 410px);
  border-color: rgba(242, 240, 232, 0.09);
  transform: translate(-50%, -50%) rotate(24deg);
}

.hero-orbit-small::before {
  border-top-color: rgba(242, 240, 232, 0.22);
  filter: none;
  animation-direction: reverse;
  animation-duration: 21s;
}

.hero-spark {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 250, 240, 0.82);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 20px rgba(240, 138, 42, 0.9);
}

.hero-spark-one {
  top: 12%;
  left: 36%;
}

.hero-spark-two {
  right: 5%;
  bottom: 22%;
}

.hero-spark-three {
  bottom: 8%;
  left: 26%;
  width: 5px;
  height: 5px;
}

.hero-wallet-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(31vw, 420px);
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 232, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 7%, rgba(240, 138, 42, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(29, 32, 26, 0.98), rgba(12, 14, 11, 0.98));
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.hero-wallet-card::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(102, 214, 154, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-wallet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-wallet-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-wallet-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(102, 214, 154, 0.68);
}

.hero-wallet-head b {
  color: #d0cec4;
  font-size: inherit;
}

.hero-gram-focus {
  display: flex;
  align-items: center;
  margin: 42px 0 38px;
  gap: 18px;
}

.hero-gram-focus img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(76, 174, 238, 0.2);
}

.hero-gram-focus span {
  display: grid;
  gap: 3px;
}

.hero-gram-focus small {
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-gram-focus strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-token-balance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-token-balance span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 12px 15px;
  gap: 11px;
  border: 1px solid rgba(242, 240, 232, 0.09);
  border-radius: 18px;
  color: #d7d4ca;
  background: rgba(255, 255, 255, 0.035);
}

.hero-token-balance img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
}

.hero-token-balance b {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.product-fragment {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 20, 17, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.product-fragment-actions {
  right: 0;
  bottom: 16%;
  display: flex;
  padding: 14px;
  gap: 7px;
}

.product-fragment-actions span {
  display: grid;
  min-width: 68px;
  place-items: center;
  padding: 9px 7px;
  gap: 7px;
}

.product-fragment-actions svg {
  width: 21px;
  height: 21px;
  color: var(--ink);
}

.product-fragment-actions b {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
}

.product-fragment-flow {
  top: 17%;
  right: 2%;
  display: flex;
  align-items: center;
  width: 208px;
  padding: 15px 16px;
  gap: 12px;
  transform: rotate(-3deg);
}

.flow-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 13px;
  color: var(--ember-light);
  background: rgba(240, 138, 42, 0.1);
}

.flow-mark svg {
  width: 22px;
  height: 22px;
}

.product-fragment-flow > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.product-fragment-flow small {
  color: var(--dim);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-fragment-flow b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-fragment-flow > i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(102, 214, 154, 0.6);
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  min-height: 78px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #b8b5aa;
  list-style: none;
}

.product-strip > li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px;
  gap: 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-strip > li + li {
  border-left: 1px solid var(--line);
}

.product-strip img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
}

.product-strip span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.product-strip strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.15;
}

.product-strip small {
  overflow: hidden;
  color: var(--dim);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-shell {
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.wallet-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.wallet-section::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: -24vw;
  width: 40vw;
  background: radial-gradient(ellipse, rgba(92, 126, 96, 0.1), transparent 67%);
  content: "";
  pointer-events: none;
}

.section-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-copy > p:last-child,
.ecosystem-intro > p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.wallet-flow {
  position: relative;
  min-height: 580px;
}

.wallet-flow::before,
.wallet-flow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(242, 240, 232, 0.09);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.wallet-flow::before {
  width: 430px;
  height: 430px;
}

.wallet-flow::after {
  width: 285px;
  height: 285px;
  border-color: rgba(240, 138, 42, 0.18);
}

.wallet-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(240, 138, 42, 0.37);
  border-radius: 50%;
  background: rgba(13, 16, 12, 0.88);
  box-shadow:
    inset 0 0 40px rgba(240, 138, 42, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.wallet-core-ring {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(242, 240, 232, 0.11);
  border-radius: 50%;
}

.wallet-core svg {
  width: 29px;
  height: 29px;
  margin-bottom: 9px;
  color: var(--ember-light);
}

.wallet-core strong {
  font-family: var(--display);
  font-size: 15px;
}

.wallet-core small {
  margin-top: 4px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.flow-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 194px;
  min-height: 92px;
  padding: 17px;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(21, 23, 19, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

.flow-node > svg {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  color: #d6b17d;
}

.flow-node div {
  display: grid;
  gap: 4px;
}

.flow-node strong {
  font-size: 13px;
}

.flow-node span {
  color: var(--dim);
  font-size: 10px;
  line-height: 1.35;
}

.flow-node-send {
  top: 4%;
  left: 2%;
}

.flow-node-receive {
  top: 7%;
  right: 0;
}

.flow-node-exchange {
  bottom: 4%;
  left: 2%;
}

.flow-node-pay {
  right: 0;
  bottom: 7%;
}

.flow-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 138, 42, 0.5), transparent);
  transform-origin: center;
}

.flow-line::after {
  position: absolute;
  top: -3px;
  left: 24%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 14px rgba(240, 138, 42, 0.8);
  content: "";
}

.flow-line-a {
  transform: translate(-50%, -50%) rotate(24deg);
}

.flow-line-b {
  transform: translate(-50%, -50%) rotate(-24deg);
}

.flow-line-c {
  width: 56%;
  background: linear-gradient(90deg, transparent, rgba(102, 214, 154, 0.35), transparent);
  transform: translate(-50%, -50%) rotate(90deg);
}

.money-products {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.money-product {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: 230px;
  padding: clamp(30px, 4vw, 50px);
  gap: 22px;
}

.money-product + .money-product {
  border-left: 1px solid var(--line);
}

.money-product-card {
  background: radial-gradient(circle at 0 100%, rgba(102, 214, 154, 0.07), transparent 44%);
}

.money-product-pay {
  background: radial-gradient(circle at 100% 0, rgba(240, 138, 42, 0.08), transparent 44%);
}

.money-product-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(240, 138, 42, 0.27);
  border-radius: 19px;
  color: var(--ember-light);
  background: rgba(240, 138, 42, 0.06);
}

.money-product-card .money-product-mark {
  border-color: rgba(102, 214, 154, 0.27);
  color: var(--mint);
  background: rgba(102, 214, 154, 0.06);
}

.money-product-mark svg {
  width: 30px;
  height: 30px;
}

.money-product-kicker {
  margin: 0 0 9px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.money-product h3 {
  margin: 0 0 7px;
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.money-product div > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ecosystem-section {
  padding-top: clamp(90px, 9vw, 130px);
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  margin-bottom: 66px;
  gap: 70px;
}

.ecosystem-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.ecosystem-intro > p {
  max-width: 500px;
  margin-bottom: 6px;
}

.ecosystem-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-grid::before,
.ecosystem-grid::after {
  position: absolute;
  z-index: 2;
  background: var(--ember);
  content: "";
}

.ecosystem-grid::before {
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(240, 138, 42, 0.55);
  transform: translate(-50%, -50%);
}

.ecosystem-grid::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0.75;
  background: var(--line);
}

.world {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 430px;
  padding: clamp(34px, 4.5vw, 62px);
  overflow: hidden;
  gap: 24px;
}

.world:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.world-number {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.world-copy {
  position: relative;
  z-index: 3;
  max-width: 390px;
}

.world-kicker {
  margin: 0 0 13px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.world-kicker-orange {
  color: var(--ember-light);
}

.world-kicker-green {
  color: var(--mint);
}

.world h3 {
  margin-bottom: 13px;
  font-size: clamp(23px, 2.5vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.world-copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trade-line {
  position: absolute;
  right: 6%;
  bottom: 3%;
  width: 56%;
  color: var(--ember);
  overflow: visible;
}

.trade-grid {
  stroke: rgba(242, 240, 232, 0.075);
  stroke-width: 1;
}

.trade-path {
  stroke: var(--ember);
  stroke-width: 2.3;
}

.trade-line circle {
  fill: var(--ember);
  stroke: var(--ink);
  stroke-width: 2;
}

.staking-orbit {
  position: absolute;
  right: 8%;
  bottom: 4%;
  width: 220px;
  height: 145px;
  transform: rotate(-8deg);
}

.staking-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(102, 214, 154, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.staking-ring-a {
  width: 100%;
  height: 82%;
}

.staking-ring-b {
  width: 72%;
  height: 58%;
  border-color: rgba(242, 240, 232, 0.13);
}

.staking-weight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 45px;
  border: 1px solid #bda780;
  border-radius: 9px 9px 12px 12px;
  transform: translate(-50%, -40%);
}

.staking-weight::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 18px;
  height: 15px;
  border: 1px solid #bda780;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
  transform: translateX(-50%);
}

.staking-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px rgba(240, 138, 42, 0.6);
}

.staking-dot-a {
  top: 17%;
  left: 9%;
}

.staking-dot-b {
  top: 68%;
  right: 6%;
}

.staking-dot-c {
  bottom: 5%;
  left: 29%;
}

.ticket {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: 210px;
  height: 112px;
  border: 1.5px solid #c9a675;
  border-radius: 13px;
  transform: rotate(-4deg);
}

.ticket-cut {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1.5px solid #c9a675;
  border-radius: 50%;
  background: var(--bg);
  transform: translateY(-50%);
}

.ticket-cut-left {
  left: -11px;
}

.ticket-cut-right {
  right: -11px;
}

.ticket-star {
  position: absolute;
  top: 50%;
  left: 35%;
  color: var(--ember-light);
  font-size: 45px;
  line-height: 1;
  transform: translate(-50%, -55%);
}

.ticket-seam {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 68%;
  border-left: 1px dashed rgba(201, 166, 117, 0.6);
}

.pets-portrait {
  position: absolute;
  right: 6%;
  bottom: -10%;
  width: 250px;
  height: 250px;
}

.pets-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 38px rgba(0, 0, 0, 0.45));
}

.pets-orbit {
  position: absolute;
  z-index: 1;
  inset: 15%;
  border: 1px solid rgba(102, 214, 154, 0.25);
  border-radius: 50%;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.community-scope {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 13px 16px;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #bdbbb1;
  background: rgba(21, 23, 19, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.community-scope svg {
  width: 22px;
  height: 22px;
  color: #d1b080;
}

.community-flow {
  position: relative;
  min-height: 500px;
}

.community-flow ul {
  position: relative;
  z-index: 3;
  display: grid;
  width: 52%;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.community-flow li {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 10px 0;
  gap: 16px;
}

.community-flow li > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #d1b080;
}

.community-flow li > div {
  display: grid;
  gap: 3px;
}

.community-flow strong {
  font-family: var(--display);
  font-size: 14px;
}

.community-flow li span {
  color: var(--dim);
  font-size: 11px;
}

.community-lines {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 20%;
  bottom: 25px;
  left: 45%;
}

.community-lines i {
  position: absolute;
  top: calc(var(--line-index) * 22%);
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 176, 128, 0.4), rgba(240, 138, 42, 0.08));
  transform: rotate(calc((var(--line-index) - 2) * 5deg));
  transform-origin: left center;
}

.community-lines i:nth-child(1) {
  --line-index: 0;
}

.community-lines i:nth-child(2) {
  --line-index: 1;
}

.community-lines i:nth-child(3) {
  --line-index: 2;
}

.community-lines i:nth-child(4) {
  --line-index: 3;
}

.community-lines i:nth-child(5) {
  --line-index: 4;
}

.community-orbit {
  position: absolute;
  top: 50%;
  right: 0;
  width: 195px;
  height: 195px;
  border: 1px solid rgba(240, 138, 42, 0.35);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-18deg);
}

.community-orbit::before {
  position: absolute;
  inset: 29px;
  border: 1px solid rgba(242, 240, 232, 0.11);
  border-radius: inherit;
  content: "";
}

.community-orbit span {
  position: absolute;
  top: 49%;
  left: 49%;
  width: 54px;
  height: 54px;
  border: 2px solid #c9a675;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.community-orbit b {
  position: absolute;
  top: 6%;
  left: 28%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 17px rgba(240, 138, 42, 0.8);
}

.details-section {
  padding-top: clamp(72px, 8vw, 118px);
}

.details-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  margin-bottom: 56px;
  gap: clamp(40px, 7vw, 100px);
}

.details-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.details-intro > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 210px;
  padding: 38px clamp(26px, 4vw, 58px) 38px 0;
  gap: 20px;
}

.detail-item:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(26px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

.detail-item:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.detail-index {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-item h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.3vw, 33px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.detail-item p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.details-note {
  display: flex;
  align-items: center;
  max-width: 760px;
  margin: 24px 0 0;
  gap: 11px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.55;
}

.details-note::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px rgba(240, 138, 42, 0.6);
  content: "";
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr) auto;
  align-items: center;
  min-height: 330px;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 58px);
}

.final-cta p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.final-route {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d1b080;
}

.final-route svg {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  transform: rotate(-8deg);
}

.final-route span {
  width: 100%;
  border-top: 1px dashed rgba(209, 176, 128, 0.4);
}

.button-wide {
  min-width: 220px;
}

.site-footer {
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 96px) var(--page-pad) 34px;
  color: var(--dim);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.7fr);
  gap: clamp(54px, 8vw, 124px);
}

.footer-intro {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.footer-group {
  display: grid;
  align-content: start;
}

.footer-group > strong {
  min-height: 38px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 14px;
  border-bottom: 1px solid rgba(242, 240, 232, 0.07);
  color: var(--muted);
  font-size: 13px;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.footer-group a:hover {
  color: var(--ink-strong);
  border-color: rgba(240, 138, 42, 0.42);
}

.footer-group i {
  color: #d1b080;
  font-style: normal;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(52px, 6vw, 80px);
  padding-top: 24px;
  gap: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes brand-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .wallet-section {
    grid-template-columns: minmax(280px, 0.75fr) minmax(470px, 1.25fr);
    gap: 40px;
  }

  .flow-node {
    width: 175px;
  }

  .community-section {
    grid-template-columns: minmax(290px, 0.8fr) minmax(480px, 1.2fr);
    gap: 50px;
  }

  .world {
    min-height: 450px;
  }

  .pets-portrait {
    right: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 690px);
    min-height: 610px;
    margin: 0 auto;
  }

  .hero-orbit-large {
    width: 540px;
    height: 540px;
  }

  .hero-orbit-small {
    width: 410px;
    height: 410px;
  }

  .hero-wallet-card {
    width: 390px;
  }

  .wallet-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 700px;
  }

  .wallet-flow {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .ecosystem-intro,
  .details-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem-intro > p,
  .details-intro > p {
    max-width: 700px;
  }

  .world {
    min-height: 470px;
  }

  .community-flow {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
  }

  .final-route {
    display: none;
  }

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

  .footer-intro {
    max-width: 520px;
  }

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

@media (max-width: 680px) {
  :root {
    --page-pad: 20px;
    --section-y: 72px;
  }

  .site-header {
    height: 74px;
  }

  .brand-orbit {
    width: 36px;
    height: 36px;
  }

  .brand-word {
    font-size: 23px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions .button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 13px;
  }

  .header-actions .button span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .header-actions .button svg {
    width: 19px;
    height: 19px;
  }

  .language-switch {
    gap: 6px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .micro-label {
    margin-bottom: 18px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

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

  .hero-art {
    min-height: 440px;
    margin-top: 18px;
    overflow: hidden;
  }

  .hero-orbit-large {
    width: min(96vw, 390px);
    height: min(96vw, 390px);
  }

  .hero-orbit-small {
    width: min(74vw, 295px);
    height: min(74vw, 295px);
  }

  .hero-wallet-card {
    width: min(84vw, 320px);
    min-height: 304px;
    padding: 23px;
    border-radius: 28px;
  }

  .hero-wallet-head {
    gap: 10px;
    font-size: 8px;
  }

  .hero-gram-focus {
    margin: 34px 0 30px;
    gap: 14px;
  }

  .hero-gram-focus img {
    width: 66px;
    height: 66px;
  }

  .hero-gram-focus small {
    font-size: 38px;
  }

  .hero-gram-focus strong {
    font-size: 10px;
  }

  .hero-token-balance span {
    min-height: 54px;
    padding: 10px 12px;
    gap: 8px;
    border-radius: 15px;
  }

  .hero-token-balance img {
    width: 27px;
    height: 27px;
  }

  .product-fragment-flow {
    top: 4%;
    right: 0;
    width: 178px;
    padding: 11px;
  }

  .product-fragment-actions {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .product-fragment-actions span {
    min-width: 64px;
  }

  .hero-spark-one {
    top: 9%;
    left: 20%;
  }

  .hero-spark-two {
    right: 1%;
    bottom: 26%;
  }

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

  .product-strip > li {
    min-height: 66px;
    padding: 10px 5px;
    gap: 7px;
  }

  .product-strip > li + li {
    border-left: 1px solid var(--line);
  }

  .product-strip img {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .product-strip strong {
    font-size: 10px;
  }

  .product-strip small {
    font-size: 8px;
  }

  h2 {
    font-size: clamp(34px, 10.7vw, 48px);
  }

  .wallet-flow {
    min-height: 530px;
  }

  .wallet-flow::before {
    width: 340px;
    height: 340px;
  }

  .wallet-flow::after {
    width: 230px;
    height: 230px;
  }

  .wallet-core {
    width: 132px;
    height: 132px;
  }

  .flow-node {
    width: 148px;
    min-height: 78px;
    padding: 13px;
    gap: 10px;
  }

  .flow-node > svg {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .flow-node-send {
    top: 3%;
    left: 0;
  }

  .flow-node-receive {
    top: 5%;
    right: 0;
  }

  .flow-node-exchange {
    bottom: 3%;
    left: 0;
  }

  .flow-node-pay {
    right: 0;
    bottom: 5%;
  }

  .flow-line {
    width: 84%;
  }

  .money-products {
    grid-template-columns: 1fr;
  }

  .money-product {
    min-height: 0;
    padding: 30px 0;
  }

  .money-product + .money-product {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .money-product-mark {
    width: 54px;
    height: 54px;
  }

  .ecosystem-intro {
    margin-bottom: 44px;
  }

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

  .ecosystem-grid::before,
  .ecosystem-grid::after {
    display: none;
  }

  .world {
    grid-template-columns: 34px 1fr;
    min-height: 410px;
    padding: 34px 10px 34px 0;
    gap: 14px;
  }

  .world + .world {
    border-top: 1px solid var(--line);
  }

  .world-copy {
    max-width: 330px;
  }

  .trade-line {
    right: 0;
    bottom: 6%;
    width: 70%;
  }

  .staking-orbit {
    right: 0;
    bottom: 5%;
    width: 190px;
    height: 125px;
  }

  .ticket {
    right: 2%;
    bottom: 10%;
    width: 185px;
    height: 98px;
  }

  .pets-portrait {
    right: -15px;
    width: 220px;
    height: 220px;
  }

  .community-section {
    gap: 54px;
  }

  .community-flow {
    min-height: 470px;
    overflow: hidden;
  }

  .community-flow ul {
    width: 70%;
  }

  .community-lines {
    right: 10%;
    left: 58%;
  }

  .community-orbit {
    right: -28px;
    width: 145px;
    height: 145px;
  }

  .details-list {
    grid-template-columns: 1fr;
  }

  .detail-item,
  .detail-item:nth-child(even) {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .detail-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding-top: 74px;
    padding-bottom: 74px;
    text-align: left;
  }

  .button-wide {
    width: 100%;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-group > strong {
    min-height: 34px;
  }

  .footer-group a {
    min-height: 46px;
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (max-width: 390px) {
  .product-strip small {
    display: none;
  }

  .flow-node {
    width: 137px;
  }

  .community-flow ul {
    width: 76%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
