:root {
  --night: #020914;
  --night-2: #061426;
  --blue-950: #071a33;
  --blue-900: #092449;
  --blue-850: #0b2f60;
  --blue-800: #0e3d7a;
  --blue-700: #1460a8;
  --blue-500: #2b8ed6;
  --blue-200: #d9f0ff;
  --accent-500: #2b8ed6;
  --accent-100: #e8f7ff;
  --ice-500: #70c8f4;
  --ice-100: #e8f7ff;
  --steel-700: #42556c;
  --steel-500: #687a8d;
  --steel-200: #dce5ee;
  --steel-100: #eef4f8;
  --white: #ffffff;
  --ink: #172234;
  --muted: #5e7187;
  --line: #d7e3ed;
  --shadow: 0 18px 50px rgba(7, 26, 51, 0.16);
  --radius: 8px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, #030a14, #061629);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 32px rgba(7, 26, 51, 0.2);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  min-width: 250px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-text {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #2784ff, #0962e8);
  box-shadow: 0 8px 22px rgba(9, 98, 232, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(4, 14, 28, 0.48);
  border-color: rgba(122, 169, 220, 0.46);
}

.button.blue {
  color: var(--white);
  background: var(--blue-700);
}

.button.ghost {
  color: var(--blue-800);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 28%, rgba(47, 139, 255, 0.38), transparent 28%),
    radial-gradient(circle at 45% 24%, rgba(112, 200, 244, 0.18), transparent 22%),
    linear-gradient(135deg, #030812 0%, #06182b 48%, #020711 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 37%, rgba(112, 200, 244, 0.24) 38%, transparent 48%),
    linear-gradient(48deg, transparent 0 50%, rgba(43, 142, 214, 0.34) 51%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 82px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 7, 17, 0.9), rgba(2, 7, 17, 0.35) 52%, rgba(2, 7, 17, 0.84));
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(43, 142, 214, 0.22), transparent 24%),
    linear-gradient(135deg, #061325, #071f3a);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(43, 142, 214, 0.16), transparent),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
  opacity: 0.75;
}

.hero-inner,
.page-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-inner {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 34px 0 18px;
}

.hero-inner > *,
.page-hero-inner > *,
.split > *,
.grid-2 > *,
.grid-3 > *,
.explorer-preview > * {
  min-width: 0;
}

.page-hero-inner {
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}

.eyeless-kicker {
  display: none;
}

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

h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 66px);
}

h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  overflow-wrap: anywhere;
}

.page-hero .lead {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof,
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.proof-card {
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.proof-card strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.proof-card span {
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.proof-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 8px;
}

.proof-card,
.live-card,
.card,
.download-card,
.quick-card,
.timeline-item,
.article-block,
.interior-item {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.06);
  overflow: hidden;
}

.proof-card span,
.stat span,
.source,
.meta,
.section-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero .proof-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--white);
}

.hero .proof-card span {
  color: var(--white);
  font-size: 27px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.hero .proof-card img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.hero .proof-card strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.proof-card strong,
.stat strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.chain-stack {
  display: grid;
  gap: 14px;
}

.home-chain-stack {
  align-self: end;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.live-card {
  overflow: hidden;
  color: var(--ink);
}

.hero .live-card {
  color: var(--white);
  background: rgba(6, 18, 34, 0.78);
  border-color: rgba(102, 153, 213, 0.32);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.live-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbff, #edf5fb);
  border-bottom: 1px solid var(--line);
}

.hero .live-card-head {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.coin-id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.coin-id img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.coin-id strong {
  display: block;
  font-size: 20px;
  overflow-wrap: anywhere;
}

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

.hero .coin-id span,
.hero .stat span {
  color: rgba(255, 255, 255, 0.72);
}

.hero .coin-id strong,
.hero .stat strong {
  color: var(--white);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--accent-100);
  color: var(--blue-700);
}

.status.ice {
  background: var(--ice-100);
  color: #11618d;
}

.status.warn {
  background: #fff6d6;
  color: #826008;
}

.live-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.hero .live-card-grid {
  background: rgba(255, 255, 255, 0.1);
}

.stat {
  background: var(--white);
  padding: 17px;
}

.hero .stat {
  background: rgba(255, 255, 255, 0.025);
}

.source {
  margin: 14px 18px 18px;
  color: var(--blue-700);
}

.hero .source {
  color: #72b7ff;
}

.api-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(2, 9, 20, 0.62);
  font-size: 13px;
  justify-self: end;
}

.chain-card-list {
  padding: 0 18px 10px;
}

.chain-card-list dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.chain-card-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 6px;
}

.chain-card-list div:last-child {
  border-bottom: 0;
}

.chain-card-list dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.chain-card-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 750;
  text-align: right;
  overflow-wrap: anywhere;
}

.chain-card-list dd.accent-blue {
  color: #5faeff;
  font-size: 21px;
}

.card-action {
  display: flex;
  justify-content: center;
  margin: 10px 18px 16px;
  min-height: 34px;
  border: 1px solid rgba(122, 169, 220, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.api-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--ice-500);
}

.hero-kicker {
  color: #3494ff;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.06em;
  font-size: 19px;
  margin-bottom: 16px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
}

.ecosystem-section {
  padding-top: 26px;
  padding-bottom: 24px;
}

.section.tight {
  padding: 30px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-head p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.card {
  padding: 24px;
}

.ecosystem-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  align-items: start;
}

.ecosystem-card .coin-mark {
  width: 58px;
  height: 58px;
  margin: 0;
}

.ecosystem-copy {
  min-width: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ecosystem-card .metric-strip {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 390px);
}

.ecosystem-card > .inline-link {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.metric-strip div {
  background: #f9fcff;
  min-width: 0;
  padding: 10px 6px;
  text-align: center;
}

.metric-strip strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.metric-strip span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.card.visual {
  padding: 0;
  overflow: hidden;
}

.card.visual img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card p,
.download-card p,
.quick-card p,
.timeline-item p,
.article-block p,
.interior-item p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.coin-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 24px;
  align-items: start;
}

.article {
  display: grid;
  gap: 18px;
}

.article-block {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.05);
}

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

.interior-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.05);
}

.interior-item .icon-box {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--blue-500);
  font-size: 38px;
  font-weight: 800;
}

.row-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.download-row.with-icon {
  justify-content: flex-start;
}

.download-row.with-icon strong {
  flex: 1;
  min-width: 0;
}

.interior-item .icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.interior-item h2 {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 10px;
}

.interior-item .status + h2 {
  margin-top: 10px;
}

.interior-item p {
  margin-bottom: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.hero-stats .stat {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  min-width: 0;
  padding: 16px;
}

.hero-stats .stat:last-child {
  border-right: 0;
}

.hero-stats .stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.25;
}

.hero-stats .stat strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.hero-stats .stat small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.25;
}

.coin-title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.coin-title > img,
.coin-title .icon-box {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.coin-title .icon-box {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.coin-title .icon-box img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.builder-section {
  padding-top: 0;
}

.builder-wrap {
  display: grid;
  gap: 18px;
}

.builder-block {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.05);
}

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

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

.builder-card-grid {
  grid-column: 1 / -1;
}

.builder-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.builder-copy > .icon-box {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.builder-copy > .icon-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.icon-box.small {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.icon-box.small img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.builder-copy small {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-copy h2,
.builder-card h3 {
  margin: 0;
}

.builder-copy p,
.builder-card p {
  margin: 0;
  color: var(--muted);
}

.builder-copy .button {
  justify-self: start;
  margin-top: 4px;
}

.builder-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fcff;
}

.builder-card h3 {
  overflow-wrap: anywhere;
}

.builder-layout-callout {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 85% 16%, rgba(112, 200, 244, 0.24), transparent 28%),
    linear-gradient(135deg, #07172f, #0a356f);
}

.builder-layout-callout .builder-copy small,
.builder-layout-callout .builder-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.builder-layout-stat-band {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
}

.builder-stat-grid .builder-card {
  text-align: center;
}

.builder-stat-grid h3 {
  color: var(--blue-700);
  font-size: 26px;
  line-height: 1.1;
}

.coin-title.vrc h1 {
  color: #5faeff;
}

.coin-title.vrm h1 {
  color: #5faeff;
}

.article-block p:last-child,
.card p:last-child,
.quick-card p:last-child {
  margin-bottom: 0;
}

.sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 98px;
}

.quick-card,
.download-card {
  padding: 18px;
}

.quick-card a,
.inline-link {
  color: var(--blue-700);
  font-weight: 750;
  text-decoration: none;
}

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

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: #fbfdff;
}

.download-row strong {
  font-size: 14px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.download-row span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
  white-space: nowrap;
}

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

.platform-grid .download-row {
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.platform-grid .download-row.with-icon strong {
  flex: 0 0 auto;
}

.platform-grid .row-icon {
  width: 24px;
  height: 24px;
}

.platform-grid .download-row span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  white-space: normal;
}

.blue-band {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  color: var(--white);
}

.blue-band .section {
  padding: 40px 0;
}

.blue-band .section-head p,
.blue-band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.blue-band .card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.destination-grid {
  gap: 14px;
}

.destination-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 16px 18px;
  color: var(--ink);
  text-decoration: none;
}

.destination-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.destination-card strong,
.destination-card small {
  display: block;
}

.destination-card strong {
  color: var(--blue-700);
  font-size: 16px;
  line-height: 1.2;
}

.destination-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.destination-card:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 102, 232, 0.35);
  box-shadow: 0 12px 26px rgba(7, 26, 51, 0.09);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-950);
  padding: 30px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin-top: 7px;
}

.cms-note {
  border-left: 4px solid var(--blue-500);
  background: #edf7ff;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--steel-700);
}

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

.admin-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 56px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-rail,
.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.06);
  overflow: hidden;
}

.admin-rail {
  position: sticky;
  top: 98px;
  padding: 14px;
}

.admin-rail strong {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--steel-700);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.admin-nav a.active,
.admin-nav a:hover {
  color: var(--blue-700);
  background: #edf7ff;
}

.admin-nav img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-panel {
  padding: 20px;
}

.admin-panel h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.admin-panel > p {
  color: var(--muted);
  margin-bottom: 18px;
}

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

.admin-control-card {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-control-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.admin-control-card h3 {
  font-size: 17px;
  margin: 0;
}

.admin-control-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-status-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-status {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.admin-status span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-status strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mini-table th,
.mini-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.mini-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .nav-links.open,
  .nav-actions.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .page-hero-inner,
  .split,
  .footer-inner,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .admin-rail {
    position: static;
  }

  .grid-3,
  .grid-2,
  .hero-proof,
  .explorer-preview,
  .hero-stats,
  .home-chain-stack,
  .platform-grid,
  .admin-grid,
  .admin-status-row,
  .builder-layout-feature,
  .builder-layout-stat-band,
  .builder-card-grid,
  .builder-stat-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card,
  .interior-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .live-card-grid,
  .timeline-item,
  .metric-strip,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .hero-inner {
    padding-top: 46px;
    min-height: auto;
    gap: 28px;
  }

  .page-hero-inner {
    min-height: auto;
  }

  .lead {
    font-size: 18px;
  }
}
