:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #0ea5e9;
  --blue-dark: #0284c7;
  --entelekron-blue: #1e40af;
  --cyan: #06b6d4;
  --violet: #7c3aed;
  --navy: #0a1628;
  --soft: #eef6ff;
  --gold: #c79b39;
  --green: #059669;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 12px 40px rgba(14, 165, 233, 0.12);
  --radius: 28px;
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #0ea5e9 35%, #06b6d4 65%, #7c3aed 100%);
  --gradient-hero: linear-gradient(135deg, #dbeafe 0%, #ecfeff 30%, #f5f3ff 60%, #f8fafc 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.06), transparent 32%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.brand-wordmark {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 8px 0 12px;
}

.links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #243247;
  font-weight: 700;
  font-size: 13px;
  flex-wrap: wrap;
}

.links a {
  opacity: 0.86;
}

.links a:hover,
.links a.active {
  opacity: 1;
  color: var(--blue);
}

.nav-cta {
  margin-left: 4px;
}

.lang {
  position: relative;
}

.lang button {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.06);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 48px;
  width: 280px;
  max-height: 410px;
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  z-index: 60;
}

.lang:hover .lang-menu,
.lang.is-open .lang-menu {
  display: grid;
}

.lang-menu a {
  padding: 9px 10px;
  border-radius: 12px;
  color: #29384d;
  font-size: 13px;
}

.lang-menu a:hover,
.lang-menu a[aria-current="true"] {
  background: var(--soft);
  color: var(--blue);
}

.lang-menu a[aria-current="true"] {
  font-weight: 900;
}

.lang button[aria-expanded="true"] {
  border-color: var(--blue);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.26);
}

.btn.secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  padding: 72px 0 70px;
  position: relative;
}

.hero-brand-banner {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: var(--shadow-glow);
  max-width: 400px;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
}

.product-identity {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 640px;
}

.hero-headline {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--ink);
}

.page-hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.page-hero-banner {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.page-hero {
  padding: 88px 0 56px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span.gradient {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .plain {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: inherit;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}

.device {
  position: relative;
  border-radius: 42px;
  background: linear-gradient(180deg, #ffffff, #edf7ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}

.phone {
  background: var(--navy);
  border-radius: 36px;
  padding: 18px;
  color: white;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: -80px -40px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.35;
}

.wallet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  gap: 10px;
}

.phone-brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.preview-title {
  position: relative;
  font-size: 14px;
  color: #9eb3cc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 16px;
}

.preview-status-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  position: relative;
}

.status-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 6px;
  flex: 0 0 10px;
}

.status-row p {
  font-size: 14px;
  font-weight: 700;
  color: #d8e6f5;
}

.preview-status-value,
.feature-status {
  font-size: 12px;
  color: #8fa8c4;
  font-weight: 700;
  margin-top: 4px;
}

.preview-disclaimer {
  position: relative;
  margin-top: 18px;
  font-size: 12px;
  color: #8fa8c4;
  font-weight: 700;
}

section {
  padding: 82px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.7px;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
}

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

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(13, 27, 42, 0.055);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 9px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.panel {
  background: linear-gradient(135deg, #07152d, #102b59);
  color: white;
  border-radius: 36px;
  padding: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.35;
}

.panel h2 {
  font-size: 42px;
  letter-spacing: -1.4px;
  line-height: 1.06;
  margin-bottom: 15px;
}

.panel p {
  color: #c2d0e2;
}

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

.row {
  display: flex;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.05);
}

.check {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #e8fff6;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.check.bad {
  background: #fff1f1;
  color: #c0392b;
}

.ecosystem {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.module {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-radius: 22px;
  padding: 18px;
  font-weight: 900;
}

.module span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.warning {
  background: #fff8e8;
  border: 1px solid #f2d9a1;
  border-radius: 24px;
  padding: 24px;
  color: #5b4211;
}

.danger {
  background: #fff1f1;
  border: 1px solid #f5b8b8;
  border-radius: 24px;
  padding: 28px;
  color: #6b1a1a;
}

.danger h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.danger ul {
  margin: 12px 0 0 20px;
}

.danger li {
  margin: 8px 0;
  font-weight: 700;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.domain-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.05);
}

.domain-card .badge,
.phase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.domain-card .badge,
.phase-badge.current {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
}

.phase-badge.future {
  background: #f0ecff;
  color: var(--violet);
}

.domain-card code,
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.domain-card code {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.wallet-item {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  font-weight: 800;
}

.verify-box {
  background: linear-gradient(135deg, #07152d, #1a3a7a);
  color: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.verify-box p {
  color: #c2d0e2;
  margin: 14px 0 22px;
  font-size: 17px;
}

.verify-box a.btn.secondary {
  color: var(--navy);
}

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

.road-item,
.phase-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  position: relative;
}

.road-item h3,
.phase-card h3 {
  font-size: 17px;
  padding-right: 72px;
}

.phase-card p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

.future-tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

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

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-item p {
  color: var(--muted);
}

.legal-box,
.prose-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.legal-box h3,
.prose-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.legal-box p,
.prose-box p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cta {
  padding: 86px 0 100px;
}

.cta-box {
  border-radius: 42px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  padding: 54px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(11, 111, 255, 0.25);
}

.cta-box.violet {
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.cta-box h2 {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #eaf7ff;
}

.wallet-flow {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(236, 254, 255, 0.4));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.flow-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.flow-step:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-glow);
}

.flow-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 14px;
}

.flow-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.flow-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  background: var(--navy);
  color: white;
  padding: 46px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand-wordmark {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer a,
.footer p {
  display: block;
  color: #b8c7da;
  margin: 8px 0;
  font-size: 14px;
}

.legal-ft {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 20px;
  color: #90a2b8;
  font-size: 13px;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .wallet-top,
[dir="rtl"] .status-row,
[dir="rtl"] .row {
  direction: rtl;
}

[dir="rtl"] .future-tag {
  right: auto;
  left: 14px;
}

[dir="rtl"] .road-item h3,
[dir="rtl"] .phase-card h3 {
  padding-right: 0;
  padding-left: 72px;
}

@media (max-width: 1100px) {
  .links a.nav-link {
    display: none;
  }

  .nav-cta .btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}

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

  .grid,
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .hero {
    padding-top: 58px;
  }

  .phone {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .grid,
  .modules,
  .roadmap-grid,
  .wallet-grid,
  .footer-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .brand-wordmark {
    max-width: 140px;
    height: 28px;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    letter-spacing: -1.7px;
  }

  .cta-box {
    padding: 32px 22px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .lang-menu {
    right: auto;
    left: -120px;
  }

  [dir="rtl"] .lang-menu {
    left: auto;
    right: -120px;
  }
}

/* Chain registry / networks page */
.networks-layout-section {
  padding: 24px 0 64px;
}

.networks-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.networks-nav {
  position: sticky;
  top: 100px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.networks-nav-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.networks-nav-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px;
}

.networks-nav-group + .networks-nav-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.networks-nav-group h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 10px;
}

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

.networks-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}

.networks-nav-link:hover,
.networks-nav-link:focus-visible {
  background: var(--soft);
  border-color: #cfe3ff;
}

.networks-nav-link img {
  border-radius: 8px;
  flex: 0 0 20px;
}

.networks-main {
  min-width: 0;
}

.network-section {
  padding: 32px 0;
  scroll-margin-top: 100px;
}

.network-card {
  scroll-margin-top: 110px;
}

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

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.network-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.network-card:hover {
  border-color: #b8d4ff;
  transform: translateY(-2px);
}

.network-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.network-icon {
  flex: 0 0 44px;
  border-radius: 12px;
}

.network-card-title h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.network-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.network-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.network-badge.active {
  background: #e6f9f0;
  color: #0d7a4e;
}

.network-badge.testnet {
  background: #eef6ff;
  color: #0b6fff;
}

.network-badge.planned {
  background: #f3f0ff;
  color: #6b4cff;
}

.network-badge.experimental {
  background: #fff8e6;
  color: #9a6b00;
}

.network-card-body {
  display: grid;
  gap: 10px;
}

.network-row {
  font-size: 14px;
  color: var(--muted);
}

.network-row strong {
  color: var(--ink);
  margin-right: 6px;
}

.risk-flag {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.risk-flag.low { color: #0d7a4e; }
.risk-flag.medium { color: #9a6b00; }
.risk-flag.high { color: #c0392b; }
.risk-flag.unverified { color: #6b7280; }

.network-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cap-chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  color: #334155;
}

.cap-chip.enabled {
  background: #e6f9f0;
  border-color: #a7e8c9;
  color: #0d7a4e;
}

.cap-chip.gated {
  background: #fff8e6;
  border-color: #f5d78e;
  color: #9a6b00;
}

.network-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}

.module-card .network-card-title h3 {
  color: var(--blue);
}

@media (max-width: 960px) {
  .networks-layout {
    grid-template-columns: 1fr;
  }

  .networks-nav {
    position: static;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
}
