* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-sans: 'Inter', Arial, sans-serif;
  --font-display: 'Inter', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --bg: #04080f;
  --bg2: #080e1a;
  --bg3: #0c1524;
  --navy: #17375e;
  --blue: #2e74b5;
  --electric: #4b9fe1;
  --glow: #5db8ff;
  --border: rgba(46, 116, 181, 0.18);
  --border2: rgba(255, 255, 255, 0.06);
  --text: #f0f4f8;
  --text2: #8ba3ba;
  --text3: #4a6280;
  --orange: #e8721c;
  --green: #22c55e;
  --red: #ef4444;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* ─── GRID BACKGROUND ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    black 0%,
    transparent 70%
  );
}
.glow-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.orb1 {
  width: 600px;
  height: 400px;
  background: rgba(46, 116, 181, 0.12);
  top: -100px;
  left: -100px;
}
.orb2 {
  width: 500px;
  height: 500px;
  background: rgba(23, 55, 94, 0.15);
  top: 200px;
  right: -150px;
}
.orb3 {
  width: 400px;
  height: 300px;
  background: rgba(75, 159, 225, 0.07);
  bottom: 200px;
  left: 30%;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 8, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(4, 8, 15, 0.94);
  border-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--electric));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-name span {
  color: var(--electric);
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-name span {
  color: var(--electric);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-nav {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-nav:hover {
  border-color: var(--electric);
  color: var(--text);
}
.btn-primary-nav {
  padding: 7px 18px;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(46, 116, 181, 0.3);
}
.btn-primary-nav:hover {
  box-shadow: 0 0 30px rgba(46, 116, 181, 0.5);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  padding: 160px 5% 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46, 116, 181, 0.1);
  border: 1px solid rgba(46, 116, 181, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--electric);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-h1 .line1 {
  display: block;
  color: var(--text);
}
.hero-h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--electric), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h1 .line3 {
  display: block;
  color: var(--text2);
  min-height: 1.15em;
}
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.78em;
  background: var(--electric);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}
.hero-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 12px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 1px solid rgba(75, 159, 225, 0.4);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 30px rgba(46, 116, 181, 0.35);
}
.btn-hero-primary:hover {
  box-shadow: 0 4px 40px rgba(46, 116, 181, 0.55);
  transform: translateY(-2px);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-outline:hover {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.hero-right {
  animation: fadeUp 0.7s ease 0.2s both;
}

/* ─── CODE CARD ─── */
.code-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.code-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border2);
}
.code-dots {
  display: flex;
  gap: 6px;
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red {
  background: #ef4444;
  opacity: 0.7;
}
.dot-yellow {
  background: #f59e0b;
  opacity: 0.7;
}
.dot-green {
  background: #22c55e;
  opacity: 0.7;
}
.code-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
}
.code-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border2);
}
.code-tab {
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-mono);
}
.code-tab.active {
  color: var(--electric);
  border-bottom-color: var(--electric);
}
.code-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
}
.c-comment {
  color: #4a6280;
}
.c-keyword {
  color: #7dd3fc;
}
.c-string {
  color: #86efac;
}
.c-prop {
  color: #c4b5fd;
}
.c-value {
  color: #fca5a5;
}
.c-fn {
  color: var(--electric);
}
.c-num {
  color: #fcd34d;
}
.c-text {
  color: var(--text2);
}
.code-response {
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.04);
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}
.code-response-label {
  font-size: 11px;
  color: var(--green);
  font-family: var(--font-mono);
  margin-bottom: 6px;
}
.code-response-body {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
}

/* ─── STATS BAR ─── */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 0 5%;
  margin-bottom: 100px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 4px;
}
.stat-num span {
  background: linear-gradient(90deg, var(--electric), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text3);
  font-weight: 400;
}

/* ─── SECTION SHARED ─── */
section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--electric);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-header .section-sub {
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feat-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 116, 181, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-card:hover {
  background: var(--bg2);
}
.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 116, 181, 0.1);
  border: 1px solid rgba(46, 116, 181, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.feat-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}
.feat-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: rgba(46, 116, 181, 0.08);
  border: 1px solid rgba(46, 116, 181, 0.15);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--electric);
  font-family: var(--font-mono);
}

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border2);
  position: relative;
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  width: 36px;
  height: 36px;
  background: rgba(46, 116, 181, 0.08);
  border: 1px solid rgba(46, 116, 181, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--electric);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  font-family: var(--font-display);
}
.step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}
.flow-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.flow-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow-title {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
}
.flow-live {
  display: flex;
  align-items: center;
  gap:5px;
  font-size: 11px;
  color: var(--green);
}
.section-tag-centered {
  justify-content: center;
}
.section-sub-centered {
  margin: 0 auto;
}
.flow-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.flow-body {
  padding: 20px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: all 0.2s;
}
.flow-step:hover {
  background: rgba(255, 255, 255, 0.03);
}
.flow-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.flow-icon-blue {
  background: rgba(75, 159, 225, 0.1);
}
.flow-icon-purple {
  background: rgba(139, 103, 186, 0.1);
}
.flow-icon-orange {
  background: rgba(232, 114, 28, 0.1);
}
.flow-icon-green {
  background: rgba(34, 197, 94, 0.1);
}

/* ─── INLINE STYLES REPLACEMENT ─── */
.mini-table-live {
  font-size: 10px;
  color: var(--green);
  font-family: var(--font-mono);
}
.ep-label {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.ep-label-green {
  color: var(--green);
}
.mtr-dot-green {
  background: var(--green);
}
.mtr-dot-orange {
  background: var(--orange);
}
.mtr-amount-negative {
  color: var(--red);
}
.flow-step-text {
  font-size: 12.5px;
  color: var(--text2);
}
.flow-step-badge {
  margin-left: auto;
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: 4px;
}
.badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}
.badge-blue {
  background: rgba(75, 159, 225, 0.1);
  color: var(--electric);
}
.badge-orange {
  background: rgba(232, 114, 28, 0.1);
  color: var(--orange);
}
.badge-muted {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text3);
}
.flow-divider {
  height: 1px;
  background: var(--border2);
  margin: 12px 0;
}

/* ─── WALLET SECTION ─── */
.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.wallet-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.wallet-feat {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  transition: all 0.2s;
}
.wallet-feat:hover {
  border-color: var(--border);
}
.wallet-feat-icon {
  width: 38px;
  height: 38px;
  background: rgba(46, 116, 181, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wallet-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.wallet-feat-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}
.wallet-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.balance-card {
  background: linear-gradient(135deg, var(--navy), #1a4472, #1d5488);
  border: 1px solid rgba(75, 159, 225, 0.2);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.balance-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  background: rgba(75, 159, 225, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.bc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bc-amount {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.bc-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.bc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
}
.bc-meta {
  display: flex;
  gap: 24px;
}
.bc-meta-item {
}
.bc-meta-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.bc-meta-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.mini-table {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.mini-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
}
.mini-table-title {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
}
.mini-table-live {
  font-size: 10px;
  color: var(--green);
  font-family: var(--font-mono);
}
.mini-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border2);
  transition: all 0.15s;
}
.mini-table-row:last-child {
  border-bottom: none;
}
.mini-table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.mtr-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mtr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mtr-text {
  font-size: 12px;
  color: var(--text2);
}
.mtr-sub {
  font-size: 10px;
  color: var(--text3);
}
.mtr-amount {
  font-family: var(--font-mono);
  font-size: 12px;
}
.mtr-amount-negative {
  color: var(--red);
}

/* ─── API SECTION ─── */
.api-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.api-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.api-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.api-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text2);
}
.api-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  color: var(--green);
}
.endpoint-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.endpoint-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.method-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
}
.method-post {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}
.method-get {
  background: rgba(75, 159, 225, 0.1);
  color: var(--electric);
}
.endpoint-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
}
.endpoint-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ep-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: start;
}
.ep-key {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #c4b5fd;
}
.ep-val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #86efac;
}
.ep-type {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
}
.ep-val-yellow {
  color: #fcd34d;
}
.ep-divider {
  height: 1px;
  background: var(--border2);
  margin: 4px 0;
}
.ep-label {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.ep-label-green {
  color: var(--green);
}

/* ─── TRUST SECTION ─── */
.trust-section {
  text-align: center;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-chip {
  padding: 8px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
}
.trust-chip:hover {
  border-color: var(--electric);
  color: var(--text);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PRICING TEASER ─── */
.pricing-section {
}
.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(23, 55, 94, 0.4),
    rgba(46, 116, 181, 0.15)
  );
  border: 1px solid rgba(75, 159, 225, 0.25);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(75, 159, 225, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.pricing-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 14px;
}
.pricing-card-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.pricing-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn-pricing-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), var(--electric));
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  box-shadow: 0 4px 30px rgba(46, 116, 181, 0.4);
  transition: all 0.2s;
}
.btn-pricing-primary:hover {
  box-shadow: 0 4px 50px rgba(46, 116, 181, 0.6);
  transform: translateY(-2px);
}
.btn-pricing-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.btn-pricing-outline:hover {
  border-color: var(--electric);
  color: var(--text);
}
.pricing-features {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text3);
}
.pf-check {
  color: var(--green);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  padding: 60px 5% 40px;
  border-top: 1px solid var(--border2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.6;
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border2);
}
.footer-copy {
  font-size: 12px;
  color: var(--text3);
}
.footer-badges {
  display: flex;
  gap: 8px;
}
.footer-badge {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text3);
  font-family: var(--font-mono);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes slideIn {
  from {
    opacity:0;
    transform: translateX(-10px);
  }
  to {
    opacity:1;
    transform: translateX(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--electric),
    var(--glow)
  );
  z-index: 999;
  width: 0%;
  pointer-events: none;
}

/* ─── SHIMMER ON PRIMARY BUTTONS ─── */
.btn-hero-primary,
.btn-primary-nav,
.btn-pricing-primary {
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after,
.btn-primary-nav::after,
.btn-pricing-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-hero-primary:hover::after,
.btn-primary-nav:hover::after,
.btn-pricing-primary:hover::after {
  transform: translateX(100%);
}

/* ─── STAGGERED FEATURE CARDS ─── */
.features-grid .feat-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.features-grid.visible .feat-card:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
.features-grid.visible .feat-card:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
}
.features-grid.visible .feat-card:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.21s;
}
.features-grid.visible .feat-card:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.29s;
}
.features-grid.visible .feat-card:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.37s;
}
.features-grid.visible .feat-card:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* ─── FOCUS VISIBLE ─── */
:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HOW IT WORKS SECTION ─── */
.how-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner,
  .how-grid,
  .wallet-grid,
  .api-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item::after {
    display: none;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .pricing-actions {
    flex-direction: column;
    align-items: center;
  }
}
