:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --panel-2: #101010;
  --text: #ffffff;
  --muted: #aaaaaa;
  --soft: rgba(255, 255, 255, 0.72);
  --gold: #d4af37;
  --gold-2: #f1d36b;
  --green: #0ecb81;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  content: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  color: var(--text);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(255, 189, 47, 0.14);
}

.nav {
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  opacity: 0.82;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-actions {
  gap: 10px;
}

.lang-toggle {
  min-width: 40px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.button,
.header-cta,
.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.header-cta:hover,
.text-button:hover {
  border-color: rgba(212, 175, 55, 0.62);
}

.button.primary,
.header-cta {
  border-color: rgba(255, 189, 47, 0.58);
  color: #000000;
  background: var(--gold);
  box-shadow: none;
}

.button.primary:hover,
.header-cta:hover {
  background: var(--gold-2);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.055);
}

.button.ghost {
  color: var(--soft);
}

.text-button {
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

main {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  min-width: 0;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0 40px;
}

.hero::before {
  content: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
}

.title-line {
  display: block;
}

h2 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(34, 214, 164, 0.65);
  border-radius: 50%;
}

.trust-row i::before {
  content: "";
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translate(-1px, -1px);
}

.launch-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease;
}

.launch-card:hover {
  border-color: rgba(255, 189, 47, 0.34);
}

.launch-card::after {
  content: none;
}

.nft-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  min-width: 160px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.nft-badge strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.nft-badge span {
  color: #d8cfdf;
  font-size: 13px;
}

.launch-art {
  height: 300px;
  overflow: hidden;
  background: #060606;
}

.launch-art img {
  width: min(100%, 330px);
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center 45%;
}

.curve-panel {
  padding: 20px 24px 24px;
}

.curve-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--soft);
  min-width: 0;
}

.curve-head strong {
  color: var(--gold);
  white-space: nowrap;
}

.curve-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.curve-track span {
  display: block;
  width: max(var(--progress), 18px);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.source-checks {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
}

.source-checks a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.source-checks span {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.source-checks strong {
  font-size: 15px;
}

.source-checks small {
  color: var(--muted);
  font-size: 12px;
}

.curve-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.curve-stats div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.curve-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.curve-stats strong {
  color: var(--text);
  font-size: 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px 0 32px;
}

.metric-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.metric-card svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 8px;
  color: var(--gold);
  fill: currentColor;
  background: rgba(255, 189, 47, 0.09);
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.metric-card span {
  color: var(--soft);
  font-size: 14px;
}

.network-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 0 44px;
  background: var(--line);
}

.network-strip a,
.network-strip button {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 0;
  padding: 16px 18px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--panel);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.network-strip a:hover,
.network-strip button:hover {
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 189, 47, 0.12), rgba(255, 255, 255, 0.025)),
    #090b0c;
}

.network-strip strong {
  font-size: 14px;
}

.network-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.suite-head {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 42px;
  align-items: end;
  padding: 4px 0 22px;
}

.suite-head h2 {
  max-width: 780px;
  margin-bottom: 8px;
  font-size: 44px;
}

.suite-head p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--soft);
  font-size: 17px;
}

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

.tool-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 26px 26px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.tool-card::before {
  content: none;
}

.card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-head span {
  min-width: 46px;
  border: 1px solid rgba(34, 214, 164, 0.34);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--green);
  background: rgba(34, 214, 164, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.tool-card p,
.section-title p,
.whitepaper-banner p,
.modal-text,
.paper-shell p,
.paper-shell li {
  color: var(--soft);
}

.tool-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--soft);
  font-size: 14px;
}

.tool-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 230px;
  margin: 0 0 18px;
}

.tool-stats span {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.2);
}

.tool-stats b {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.tool-stats small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.tool-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 189, 47, 0.32), transparent);
}

.tool-card .text-button {
  position: relative;
  z-index: 2;
}

.corner-icon {
  position: absolute;
  right: 28px;
  bottom: 36px;
  width: 76px;
  height: 76px;
  color: var(--gold);
  fill: currentColor;
  opacity: 0.18;
}

.operating-section {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
  align-items: stretch;
  padding: 0 0 58px;
}

.operating-copy {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--panel);
}

.operating-copy h2 {
  font-size: 38px;
}

.operating-copy p:last-child {
  margin-bottom: 0;
  color: var(--soft);
}

.operating-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.operating-board article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
}

.operating-board article + article {
  border-left: 1px solid var(--line);
}

.operating-board span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.operating-board strong {
  font-size: 22px;
}

.mini-chart {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-chart i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.operating-board p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.revenue-section,
.roadmap-section,
.token-section {
  padding: 0 0 58px;
}

.revenue-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 58px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: none;
}

.revenue-head {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.revenue-head h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 42px;
}

.revenue-head p:last-child {
  margin: 0;
  color: var(--soft);
}

.commerce-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.commerce-stats article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.commerce-stats strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.commerce-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.package-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(5, 6, 6, 0.62);
}

.package-card.featured {
  border-color: rgba(255, 189, 47, 0.42);
  background: rgba(212, 175, 55, 0.08);
}

.package-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 189, 47, 0.28);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--gold);
  background: rgba(255, 189, 47, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.package-card p {
  margin-bottom: 0;
  color: var(--soft);
}

.package-price {
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--soft);
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.revenue-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.revenue-flow article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.revenue-flow article + article {
  border-left: 1px solid var(--line);
}

.revenue-flow span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1c1200;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.revenue-flow strong {
  font-size: 18px;
}

.revenue-flow p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.section-title {
  margin-bottom: 22px;
}

.section-title h2 {
  margin-bottom: 6px;
}

.path-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.path-row article {
  position: relative;
  min-height: 152px;
  display: grid;
  grid-template-columns: 56px 58px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.path-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--soft);
}

.path-row article:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -34px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--soft);
  border-right: 1px solid var(--soft);
  transform: rotate(45deg);
}

.path-row span {
  align-self: start;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 189, 47, 0.08);
  font-weight: 900;
}

.path-row svg {
  width: 54px;
  height: 54px;
  color: var(--gold);
  fill: currentColor;
}

.path-row p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 14px;
}

.token-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.82fr;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.token-panel article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.stacked-bar {
  height: 28px;
  display: flex;
  overflow: hidden;
  margin: 26px 0 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}

.stacked-bar span {
  width: var(--w);
}

.stacked-bar .liquidity,
.legend .liquidity {
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.stacked-bar .ops,
.legend .ops {
  background: #42d0bd;
}

.stacked-bar .holders,
.legend .holders {
  background: rgba(255, 255, 255, 0.32);
}

.legend {
  display: grid;
  gap: 10px;
}

.legend p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend b {
  color: var(--text);
  font-weight: 650;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.wallet-live {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 18px 0;
  padding: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.wallet-live span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.wallet-live strong {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.wallet-live button {
  min-height: 32px;
  border: 1px solid rgba(255, 189, 47, 0.34);
  border-radius: 7px;
  padding: 5px 10px;
  color: #1c1200;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.wallet-live em {
  justify-self: end;
  border: 1px solid rgba(34, 214, 164, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--green);
  background: rgba(34, 214, 164, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--text);
  text-align: right;
  overflow-wrap: anywhere;
}

.security-view ul {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.security-view li {
  position: relative;
  padding-left: 30px;
  color: var(--soft);
}

.security-view li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(34, 214, 164, 0.58);
  border-radius: 50%;
}

.security-view li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.whitepaper-banner {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 36px;
  background: rgba(255, 255, 255, 0.02);
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 0 64px;
  border: 1px solid rgba(255, 189, 47, 0.28);
  border-radius: 8px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02));
}

.closing-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 42px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.book-icon {
  width: 72px;
  height: 56px;
  position: relative;
  border-bottom: 4px solid var(--gold);
}

.book-icon::before,
.book-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 50px;
  border: 3px solid #f5f0e8;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
}

.book-icon::before {
  left: 1px;
  transform: skewY(2deg);
}

.book-icon::after {
  right: 1px;
  transform: skewY(-2deg);
}

.doc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.65fr 0.65fr 1.05fr;
  gap: 40px;
  padding: 42px max(28px, calc((100vw - 1180px) / 2)) 30px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  background: #050606;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong,
.footer-contract span {
  color: var(--text);
  font-size: 14px;
}

.footer-col a,
.footer-col button {
  border: 0;
  padding: 0;
  color: var(--soft);
  background: transparent;
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--gold);
}

.footer-contract {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-contract div {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 8px 8px 14px;
  background: rgba(0, 0, 0, 0.18);
}

.footer-contract code {
  color: var(--text);
  white-space: nowrap;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.footer-contract button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
}

.footer-contract svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: rgba(212, 206, 193, 0.62);
  font-size: 13px;
}

.modal {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0;
  color: var(--text);
  background: #0d0f10;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.modal-shell {
  position: relative;
  margin: 0;
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-size: 24px;
  line-height: 1;
}

.modal h2 {
  font-size: 34px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mission-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.mission-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.mission-stats span {
  color: var(--muted);
  font-size: 13px;
}

.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-form label,
.field {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.modal-form .full {
  grid-column: 1 / -1;
}

.template-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.template-strip span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.template-strip button {
  min-height: 32px;
  border: 1px solid rgba(255, 189, 47, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold);
  background: rgba(255, 189, 47, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.template-strip button:hover {
  background: rgba(255, 189, 47, 0.16);
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
}

.modal input,
.modal select {
  height: 44px;
  padding: 0 12px;
}

.modal textarea {
  min-height: 118px;
  resize: vertical;
  padding: 12px;
}

#generatedPost {
  margin: 16px 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #ff8d8d;
}

.form-status[data-state="pending"] {
  color: var(--gold);
}

.whitepaper-page {
  background: #050606;
}

.whitepaper-reader {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 84px;
}

.reader-hero {
  padding: 26px 0 28px;
}

.reader-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: 58px;
}

.reader-hero p {
  max-width: 720px;
  color: var(--soft);
  font-size: 18px;
}

.reader-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reader-tabs a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 800;
}

.reader-tabs a.active {
  border-color: rgba(255, 189, 47, 0.62);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1c1200;
}

.paper-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px;
  background: #101214;
  box-shadow: var(--shadow);
}

.paper-shell h1 {
  margin: 0 0 28px;
  font-size: 44px;
}

.paper-shell h2 {
  margin: 42px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 30px;
}

.paper-shell h3 {
  margin: 28px 0 10px;
  color: var(--gold);
  font-size: 20px;
}

.paper-shell p,
.paper-shell li {
  font-size: 17px;
  line-height: 1.8;
}

.paper-shell ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding-left: 22px;
}

.paper-shell code {
  border-radius: 6px;
  padding: 2px 5px;
  color: var(--gold);
  background: rgba(255, 189, 47, 0.1);
}

.paper-shell pre {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 18px 0 28px;
  padding: 16px;
  color: #e8e0d2;
  background: rgba(0, 0, 0, 0.24);
}

.paper-shell pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  white-space: pre;
}

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.paper-shell table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.paper-shell th,
.paper-shell td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: #dcd5c8;
}

.paper-shell th {
  color: var(--gold);
  background: rgba(255, 189, 47, 0.06);
  font-weight: 850;
}

.paper-shell tr:last-child td {
  border-bottom: 0;
}

.paper-shell hr {
  height: 1px;
  border: 0;
  margin: 34px 0;
  background: var(--line);
}

.faq-reader .reader-hero h1 {
  max-width: 900px;
  font-size: 64px;
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.faq-grid h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.faq-grid p {
  margin: 0;
  color: var(--soft);
}

.faq-grid code {
  border-radius: 6px;
  padding: 2px 5px;
  color: var(--gold);
  background: rgba(255, 189, 47, 0.1);
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 24px;
  }

  main {
    width: min(100% - 40px, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .launch-card {
    max-width: 560px;
  }

  .metrics,
  .network-strip,
  .commerce-stats,
  .tool-grid,
  .operating-section,
  .operating-board,
  .revenue-head,
  .package-grid,
  .revenue-flow,
  .path-row,
  .token-panel,
  .closing-cta,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .suite-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .path-row article:not(:last-child)::before,
  .path-row article:not(:last-child)::after {
    display: none;
  }

  .token-panel article + article {
    padding-left: 0;
    border-left: 0;
  }

  .operating-board article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .operating-board article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .operating-board article:nth-child(2) {
    border-top: 0;
  }

  .closing-actions {
    justify-content: flex-start;
  }

  .footer-contract,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 10px 16px 12px;
  }

  .brand span {
    display: inline;
  }

  .nav {
    grid-column: 1 / -1;
    width: calc(100vw - 32px);
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.025);
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 13px;
  }

  main {
    width: calc(100vw - 28px);
    max-width: 1180px;
    overflow: hidden;
  }

  .hero {
    padding-top: 32px;
    gap: 24px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-text {
    font-size: 18px;
  }

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

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

  .launch-art {
    height: 230px;
  }

  .metrics,
  .tool-grid,
  .operating-section,
  .operating-board,
  .path-row,
  .token-panel,
  .whitepaper-banner,
  .closing-cta,
  .site-footer,
  .modal-form,
  .mission-stats,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .network-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .network-strip a,
  .network-strip button {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .curve-stats {
    gap: 12px;
  }

  .curve-stats div + div {
    padding-left: 12px;
  }

  .metric-card {
    min-height: 92px;
  }

  .tool-card {
    min-height: 284px;
  }

  .suite-head h2,
  .operating-copy h2,
  .closing-cta h2 {
    font-size: 30px;
  }

  .network-strip a,
  .network-strip button {
    min-height: 68px;
  }

  .revenue-section {
    padding: 24px;
  }

  .revenue-head,
  .commerce-stats,
  .package-grid,
  .revenue-flow {
    grid-template-columns: 1fr;
  }

  .revenue-head h2 {
    font-size: 30px;
  }

  .package-card {
    min-height: 290px;
  }

  .revenue-flow article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .operating-board article,
  .operating-board article:nth-child(2) {
    min-height: 170px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .operating-board article:nth-child(even) {
    border-left: 0;
  }

  .operating-board article:first-child {
    border-top: 0;
  }

  .corner-icon {
    width: 58px;
    height: 58px;
  }

  .token-panel,
  .whitepaper-banner,
  .modal-shell,
  .paper-shell {
    padding: 24px;
  }

  .whitepaper-banner .doc-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .reader-hero h1,
  .faq-reader .reader-hero h1,
  .paper-shell h1 {
    font-size: 38px;
  }
}

@media (max-width: 460px) {
  .hero-copy,
  .hero-actions,
  .hero-text,
  .launch-card {
    width: 100%;
    max-width: 340px;
  }

  h1 {
    font-size: 38px;
  }

  .trust-row {
    gap: 12px;
  }

  .curve-stats,
  dl div {
    grid-template-columns: 1fr;
  }

  .curve-stats div + div {
    padding-left: 0;
    border-left: 0;
  }

  dd {
    text-align: left;
  }
}

@keyframes chartPulse {
  0%, 100% {
    transform: scaleY(0.94);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes cardSheen {
  0%, 58%, 100% {
    transform: translateX(-120%);
  }

  72% {
    transform: translateX(120%);
  }
}

.reward-page {
  display: grid;
  gap: 34px;
  padding-bottom: 70px;
}

.reward-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 28px;
  align-items: stretch;
  padding: 68px 0 18px;
}

.reward-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.reward-copy h1 {
  max-width: 920px;
}

.reward-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.reward-card,
.reward-grid article,
.reward-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.reward-card {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 360px;
  padding: 30px;
  border-radius: 8px;
}

.reward-card strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1.08;
}

.reward-card p,
.reward-card small {
  color: var(--muted);
}

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

.reward-grid article {
  min-height: 130px;
  padding: 22px;
  border-radius: 8px;
}

.reward-grid strong {
  display: block;
  color: var(--text);
  font-size: 32px;
}

.reward-grid span {
  color: var(--muted);
}

.reward-section {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
}

.reward-submit {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: start;
}

.reward-submit > div > p {
  color: var(--muted);
  line-height: 1.7;
}

.reward-facts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.reward-facts p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,.2);
}

.reward-facts span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reward-facts code {
  overflow-wrap: anywhere;
  color: var(--text);
}

.reward-form {
  padding: 0;
}

@media (max-width: 900px) {
  .reward-hero,
  .reward-submit,
  .reward-grid {
    grid-template-columns: 1fr;
  }
}
