@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --bg-dark: #0f1115;
  --bg-card: rgba(22, 25, 32, 0.7);
  --bg-card-hover: rgba(30, 34, 44, 0.85);

  --primary: #00f2fe;
  --primary-dark: #4facfe;
  --secondary: #667eea;

  --text-light: #f0f2f5;
  --text-muted: #8a9bb8;
  --text-dim: #5a6a80;

  --danger: #ff4b4b;
  --success: #00d2ff;
  --warning: #f1c40f;

  --glass-border: rgba(255, 255, 255, 0.055);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  --radius-card: 18px;
  --radius-btn: 11px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 18% 45%, rgba(0, 242, 254, 0.07) 0%, transparent 52%),
    radial-gradient(circle at 82% 28%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ============================================================
   GLASSMORPHISM
   ============================================================ */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.glass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #000 !important;
  box-shadow: 0 4px 16px rgba(0, 242, 254, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.5);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Pro CTA — strongest visual weight */
.btn-pro {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 26px;
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.38);
}

.btn-pro:hover {
  box-shadow: 0 8px 32px rgba(0, 242, 254, 0.6);
  transform: scale(1.04);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1.3px;
  line-height: 1;
}

.nav-brand-hl {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -1.5px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-light);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(200px);
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.1rem;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.hero-content h1 .gradient-text {
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 4px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 30px auto;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Eyebrow pill (hero variant) */
.eyebrow-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.18);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Hero benefit chips */
.hero-chips {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  color: #b8c8e0;
  font-family: 'Inter', sans-serif;
}

/* Hero preview — dashboard mock */
.hero-preview {
  margin-top: 60px;
  background: rgba(12, 14, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
  transform: perspective(1000px) rotateX(2deg);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.preview-bar {
  background: rgba(0, 0, 0, 0.55);
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.preview-url {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  margin-left: 8px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-stat:last-child {
  border-right: none;
}

.ps-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ps-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 2px;
}

.ps-sub {
  font-size: 0.72rem;
  color: rgba(0, 242, 254, 0.55);
  font-family: 'Inter', sans-serif;
}

.preview-txlist {
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.preview-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.preview-tx:last-child {
  border-bottom: none;
}

.ptx-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ptx-dot--ok {
  background: var(--success);
  box-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
}

.ptx-dot--wait {
  background: var(--warning);
  box-shadow: 0 0 5px rgba(241, 196, 15, 0.4);
}

.ptx-ref {
  flex: 1;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
}

.ptx-amount {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.8rem;
}

.ptx-status-text {
  font-size: 0.72rem;
  color: rgba(0, 210, 255, 0.7);
  min-width: 60px;
  text-align: right;
}

.ptx-st--wait {
  color: rgba(241, 196, 15, 0.7);
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 36px;
}

.proof-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.3px;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section-shell {
  padding: 96px 0;
}

.muted-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-header {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 13px;
  margin-top: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  line-height: 1.65;
}

/* Eyebrow label (section variant) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.14);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

/* Pricing grid — 4 columns desktop */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

/* Base price card */
.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  min-height: 420px;
}

/* Plan tag wrapper */
.plan-tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* Plan tags with color variants */
.plan-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-tag--free {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.plan-tag--starter {
  background: rgba(79, 172, 254, 0.08);
  border: 1px solid rgba(79, 172, 254, 0.22);
  color: #6fb8ff;
}

.plan-tag--pro {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary);
}

.plan-tag--business {
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.22);
  color: #8fa5f5;
}

/* Popular badge on Pro */
.badge-popular {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.28);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Price amount block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
}

/* Credit line */
.price-credit-line {
  font-size: 0.86rem;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
  opacity: 0.75;
}

/* Tagline */
.price-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Feature list */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  line-height: 1.4;
}

.pf-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 210, 255, 0.18);
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 75, 75, 0.07);
  color: #ff7070;
  border: 1px solid rgba(255, 75, 75, 0.14);
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA full width */
.price-cta {
  width: 100%;
  display: block;
  margin-top: auto;
  text-align: center;
}

/* ===== PRO FEATURED CARD ===== */
.price-card--pro {
  border-color: rgba(0, 242, 254, 0.38);
  background: rgba(0, 242, 254, 0.038);
  box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.1), 0 28px 70px rgba(0, 242, 254, 0.16);
  transform: translateY(-8px);
  position: relative;
  min-height: 440px;
}

.price-card--pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.18), 0 36px 88px rgba(0, 242, 254, 0.24);
}

.price-card--pro .price-amount {
  color: var(--primary);
}

.price-card--pro .price-credit-line {
  opacity: 1;
}

.price-card--pro .price-features li {
  color: rgba(240, 242, 245, 0.8);
}

/* ============================================================
   USE CASE GRID
   ============================================================ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.use-case-card {
  padding: 24px 22px;
}

.uc-icon {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.use-case-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.use-case-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px 22px;
}

.feature-icon {
  font-size: 1.55rem;
  margin-bottom: 13px;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   WORKFLOW STEPS
   ============================================================ */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 26px 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.18);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  position: relative;
}

.final-cta-box {
  text-align: center;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  border-color: rgba(0, 242, 254, 0.1);
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-box:hover {
  border-color: rgba(0, 242, 254, 0.18);
}

.final-cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-box .eyebrow,
.final-cta-box h2,
.final-cta-box p,
.final-cta-box .hero-actions {
  position: relative;
  z-index: 1;
}

.final-cta-box h2 {
  font-size: 2.1rem;
  margin: 12px 0 10px;
  letter-spacing: -0.5px;
}

.final-cta-box p {
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Wide tablet */
@media (max-width: 1100px) {
  .feature-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 980px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }

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

  .price-card--pro {
    transform: none;
    min-height: unset;
  }

  .price-card--pro:hover {
    transform: translateY(-4px);
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .proof-sep {
    display: none;
  }

  .proof-inner {
    gap: 6px;
  }

  .proof-item {
    padding: 8px 20px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .navbar {
    padding: 16px 20px;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links a {
    margin-left: 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-preview {
    display: none;
  }

  .feature-grid,
  .use-case-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card--pro {
    transform: none;
    min-height: unset;
  }

  .section-shell {
    padding: 72px 0;
  }

  .final-cta-box {
    padding: 44px 24px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }
}

/* ============================================================
   DASHBOARD LAYOUT (preserved — untouched)
   ============================================================ */
.dash-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 40px;
}

/* ============================================================
   STATUS BADGES (preserved)
   ============================================================ */
.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(0, 210, 255, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.badge-pending {
  background: rgba(241, 196, 15, 0.1);
  color: var(--warning);
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* ============================================================
   DATA TABLE (preserved)
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   API BOX (preserved)
   ============================================================ */
.api-box {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  font-family: monospace;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* ============================================================
   MERCHANT SELECTION BADGE (preserved)
   ============================================================ */
.merchant-selection-badge {
  padding: 12px 14px;
  background: rgba(100, 180, 255, 0.08);
  border: 1px solid rgba(100, 180, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}
