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

:root {
  --blue-600: #0057ff;
  --blue-500: #1b73ff;
  --blue-400: #4c8dff;
  --blue-100: #f1f6ff;
  --navy: #0a1a2f;
  --ink: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --bg: #ffffff;
  --surface: #ffffff;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 30px rgba(0, 87, 255, 0.08);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --gradient-blue: linear-gradient(135deg, #0057ff 0%, #4c8dff 50%, #0057ff 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  --transition-fast: all 150ms ease;
  --transition-medium: all 220ms ease;
  --content-max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

a:hover {
  color: #0046d6;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 12px 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(48px, 5vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(24px, 3vw, 32px); line-height: 1.15; }
h4 { font-size: 20px; }
p { margin: 0 0 12px 0; font-size: 17px; line-height: 1.7; color: var(--gray-700); }

strong { color: var(--gray-800); }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

.section.compact { padding: 36px 0; }

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.flex-row { display: flex; gap: 16px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-medium);
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.25);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 87, 255, 0.28); }

.btn:active { transform: translateY(0); box-shadow: 0 10px 22px rgba(0, 87, 255, 0.24); }

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-300, #b7d0ff);
  box-shadow: none;
}

.btn-outline:hover { background: #f1f6ff; box-shadow: inset 0 0 0 1px #cddfff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gray-200);
  box-shadow: none;
}

.btn-ghost:hover { background: var(--gray-100); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 14px;
}

.card-lg,
.card,
.card-sm {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card-lg { padding: 32px; }
.card-sm { padding: 18px; border-radius: var(--radius-sm); }

.card:hover { transform: translateY(-2px); transition: var(--transition-medium); box-shadow: var(--shadow-card); }

.card-bleed {
  background: #f8faff;
  border: 1px solid var(--gray-200);
}

.shadow-soft { box-shadow: var(--shadow-soft); }

.hero {
  background: var(--gradient-soft);
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.hero .headline { font-size: clamp(48px, 5vw, 62px); }

.hero-sub { font-size: 20px; color: var(--gray-700); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.2);
}

.divider { height: 1px; background: var(--gray-200); margin: 24px 0; }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { margin-bottom: 10px; color: var(--gray-700); }

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.stat strong { font-size: 22px; }

.tablet-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.label { font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; }

.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }

.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }

.feature-chip { background: var(--gray-100); padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 600; color: var(--gray-700); }

.gradient-border { border: 1px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--gradient-blue) border-box; }

.surface-panel { background: #f9fbff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 24px; }

.badge-muted { background: #eef2ff; color: #4338ca; }

.emphasis { color: var(--blue-600); font-weight: 700; }

.global-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; font-size: 20px; }
.brand-mark { width: 38px; height: 38px; }
.brand-text { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
.accent { color: var(--blue-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.btc-ticker {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: transparent;
  color: var(--gray-800);
  border: none;
  box-shadow: none;
  min-width: 0;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2af598, #00cfd5);
  box-shadow: 0 0 0 6px rgba(42, 245, 152, 0.12);
}

.ticker-price {
  font-size: 16px;
  font-weight: 700;
  color: #24d68a;
  justify-self: end;
}

.ticker-change {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ticker-change.positive { color: #24d68a; }
.ticker-change.negative { color: #ff7a7a; }

.nav-links a {
  color: var(--gray-800);
  padding: 10px 14px;
  border-radius: 12px;
}

.nav-links a:hover { background: var(--gray-100); color: var(--blue-600); }

.pill-link {
  border: 1px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: 999px;
  background: #f8faff;
  color: var(--blue-600) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: var(--transition-fast); }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: #f3f6ff;
  border: 1px solid #e1e8ff;
}

.metric-card small { color: var(--gray-600); font-weight: 600; letter-spacing: 0.04em; }
.metric-card h3 { margin: 4px 0 0; font-size: 24px; }

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue-600);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }

.list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }

.glow { box-shadow: 0 18px 48px rgba(0, 87, 255, 0.18); }

.highlight { color: var(--blue-600); font-weight: 700; }

.table-list { width: 100%; border-collapse: collapse; }
.table-list td { padding: 12px 0; border-bottom: 1px solid var(--gray-200); }

.alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.alert.success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.alert.warning { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.alert.danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecdd3; }
.alert.info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

.form-control {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-size: 16px;
  background: #fff;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.labelled { display: flex; flex-direction: column; gap: 6px; }

.tag { padding: 8px 10px; background: var(--gray-100); border-radius: 10px; font-weight: 600; color: var(--gray-600); font-size: 14px; }

.timeline {
  position: relative;
  padding-left: 22px;
  display: grid;
  gap: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item { position: relative; padding-left: 10px; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 87, 255, 0.12);
}

.video-frame { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: #0f172a; }

.price-card {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card h3 { margin-bottom: 6px; }
.price-card .price { font-size: 36px; font-weight: 800; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--gray-700); }
.price-card li::before { content: "✓"; color: var(--blue-600); font-weight: 800; margin-right: 8px; }

.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }

.global-footer {
  background: #f8fafc;
  border-top: 1px solid var(--gray-200);
  margin-top: 64px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 36px 24px 18px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 28px;
  align-items: flex-start;
}

.footer-brand img { width: 42px; }
.footer-brand .brand-text { font-size: 22px; }
.footer-brand .mission { color: var(--gray-600); margin-top: 10px; }

.footer-columns h4 { margin-bottom: 10px; color: var(--gray-800); }
.footer-columns a { display: block; margin-bottom: 8px; color: var(--gray-700); }
.footer-columns a:hover { color: var(--blue-600); }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  color: var(--gray-700);
  font-family: 'Inter', sans-serif;
}

.footer-meta {
  text-align: center;
  padding: 0 24px 22px;
  color: var(--gray-500);
  font-size: 14px;
}

.powered { color: var(--gray-600); font-weight: 600; }

.mission-block {
  text-align: center;
  padding: 48px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid #e5edff;
  box-shadow: var(--shadow-soft);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.testimonial .name { font-weight: 700; color: var(--gray-800); }
.testimonial .role { color: var(--gray-500); font-size: 14px; }

.ribbon-badge { background: #e0e9ff; color: var(--blue-600); padding: 6px 10px; border-radius: 10px; font-weight: 700; }

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: var(--gradient-blue);
}

.progress-text { font-weight: 700; color: var(--gray-700); font-size: 14px; }

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid var(--gray-200);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-700); }
.check-list li::before { content: "✓"; color: var(--blue-600); font-weight: 800; margin-top: 2px; }

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

.icon-tile .icon-circle { width: 40px; height: 40px; }

.light-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.tool-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  position: relative;
}

.tool-card:hover { box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08); transform: translateY(-3px); }

.tool-meta { display: flex; gap: 10px; align-items: center; color: var(--gray-600); }

.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.inline-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }

.hero-mini { padding: 32px; border-radius: 18px; background: #f8fbff; border: 1px solid #e0e7ff; }

.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

.skeleton { background: linear-gradient(90deg, #f6f7fb, #e9ecf6, #f6f7fb); background-size: 200% 100%; animation: shimmer 1.2s ease-in-out infinite; border-radius: 12px; height: 12px; }

@keyframes shimmer { to { background-position: -200% 0; } }

.fade-in { animation: fadeIn 0.6s ease forwards; opacity: 0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.slide-up { animation: slideUp 0.7s ease forwards; opacity: 0; }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hover-raise { transition: var(--transition-medium); }
.hover-raise:hover { transform: translateY(-6px); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 16px 24px; box-shadow: var(--shadow-soft); flex-direction: column; }
  .nav-links a { width: fit-content; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 12px; }
  .btc-ticker { order: 1; grid-template-columns: auto; width: 100%; margin-right: auto; }
  .hero { padding: 42px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 12px 18px; }
  .hero { padding: 32px 20px; border-radius: 22px; }
  .hero .headline { font-size: 42px; }
  .section { padding: 42px 0; }
}

/* Utility spacing scale */
:root {
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-18: 18px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-36: 36px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-72: 72px;
  --space-84: 84px;
}

.m-0 { margin: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-14 { margin-top: var(--space-14); }
.mt-16 { margin-top: var(--space-16); }
.mt-18 { margin-top: var(--space-18); }
.mt-20 { margin-top: var(--space-20); }
.mt-24 { margin-top: var(--space-24); }
.mt-28 { margin-top: var(--space-28); }
.mt-32 { margin-top: var(--space-32); }
.mt-36 { margin-top: var(--space-36); }
.mt-40 { margin-top: var(--space-40); }
.mt-48 { margin-top: var(--space-48); }
.mt-56 { margin-top: var(--space-56); }
.mt-64 { margin-top: var(--space-64); }
.mt-72 { margin-top: var(--space-72); }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-14 { margin-bottom: var(--space-14); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-18 { margin-bottom: var(--space-18); }
.mb-20 { margin-bottom: var(--space-20); }
.mb-24 { margin-bottom: var(--space-24); }
.mb-28 { margin-bottom: var(--space-28); }
.mb-32 { margin-bottom: var(--space-32); }
.mb-36 { margin-bottom: var(--space-36); }
.mb-40 { margin-bottom: var(--space-40); }
.mb-48 { margin-bottom: var(--space-48); }
.mb-56 { margin-bottom: var(--space-56); }
.mb-64 { margin-bottom: var(--space-64); }

.mx-auto { margin-left: auto; margin-right: auto; }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }
.p-14 { padding: var(--space-14); }
.p-16 { padding: var(--space-16); }
.p-18 { padding: var(--space-18); }
.p-20 { padding: var(--space-20); }
.p-24 { padding: var(--space-24); }
.p-28 { padding: var(--space-28); }
.p-32 { padding: var(--space-32); }
.p-36 { padding: var(--space-36); }
.p-40 { padding: var(--space-40); }
.p-48 { padding: var(--space-48); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 999px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-600); }
.text-subtle { color: var(--gray-500); }
.text-strong { font-weight: 700; }

.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-33 { width: 33.33%; }
.max-400 { max-width: 400px; }
.max-600 { max-width: 600px; }
.max-800 { max-width: 800px; }

.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.grid-auto-md { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.grid-auto-lg { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.flex-column { display: flex; flex-direction: column; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }
.gap-20 { gap: var(--space-20); }

.bg-white { background: #fff; }
.bg-soft { background: #f8fafc; }
.bg-ink { background: var(--ink); color: white; }
.border { border: 1px solid var(--gray-200); }
.border-blue { border: 1px solid #cfe0ff; }
.shadow-card { box-shadow: var(--shadow-card); }

.badge-blue { background: #e6efff; color: var(--blue-600); }
.badge-gray { background: #f3f4f6; color: var(--gray-700); }
.badge-green { background: #ecfdf3; color: #15803d; }
.badge-orange { background: #fff7ed; color: #c2410c; }

.table-style { width: 100%; border-collapse: collapse; margin-top: 10px; }
.table-style th, .table-style td { border-bottom: 1px solid var(--gray-200); padding: 12px; text-align: left; }
.table-style th { color: var(--gray-700); font-weight: 700; }
.table-style tr:hover { background: #f8fafc; }

.callout {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.callout.primary { border-color: #cfe0ff; background: #f5f8ff; }
.callout.success { border-color: #bbf7d0; background: #ecfdf3; }
.callout.warning { border-color: #fed7aa; background: #fff7ed; }

.avatar-stack { display: flex; align-items: center; }
.avatar-stack .avatar { width: 36px; height: 36px; border-radius: 50%; background: #e2e8f0; border: 2px solid white; margin-left: -10px; }

.chip { padding: 8px 12px; border-radius: 12px; background: #f3f4f6; color: var(--gray-700); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.chip.icon { padding-left: 10px; }

.badge-dot { position: relative; padding-left: 18px; }
.badge-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); position: absolute; left: 0; top: 8px; }

.ribbon-card { position: relative; overflow: hidden; }
.ribbon-card::before { content: "Premium"; position: absolute; top: 16px; right: -40px; transform: rotate(45deg); background: var(--gradient-blue); color: white; padding: 6px 60px; font-weight: 700; box-shadow: var(--shadow-card); }

.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-600) 75%, #e5e7eb 0);
  display: grid;
  place-items: center;
  position: relative;
}

.progress-circle::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
}

.progress-circle span { position: relative; font-weight: 800; color: var(--ink); }

@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
}

@media (max-width: 1024px) {
  .grid-auto-lg { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
}

/* Extended component library to keep styles consistent across every AdaptBTC surface. */
.card-stack { display: grid; gap: 14px; }
.card-tier { padding: 22px; border-radius: 18px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); display: grid; gap: 10px; }
.card-tier .title { font-size: 18px; font-weight: 700; }
.card-tier .subtitle { color: var(--gray-600); }

.accordion { border-radius: 16px; border: 1px solid #e5e7eb; overflow: hidden; box-shadow: var(--shadow-soft); }
.accordion-item { border-bottom: 1px solid #e5e7eb; background: #fff; }
.accordion-trigger { width: 100%; padding: 16px 18px; background: #fff; border: none; text-align: left; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.accordion-content { padding: 0 18px 16px; color: var(--gray-700); }

.pill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.pill-grid .pill { justify-content: center; }

.banner { padding: 22px; border-radius: 18px; border: 1px solid #e5e7eb; background: linear-gradient(135deg, #f9fbff, #f2f5ff); box-shadow: var(--shadow-soft); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.banner .actions { display: flex; gap: 10px; align-items: center; }

.overlay-card { position: relative; overflow: hidden; }
.overlay-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.08) 100%); pointer-events: none; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.stat-grid .stat { background: #fff; border: 1px solid #e5e7eb; box-shadow: var(--shadow-soft); border-radius: 16px; }

.focus-ring { transition: box-shadow 180ms ease, transform 180ms ease; }
.focus-ring:focus { outline: none; box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.2); transform: translateY(-1px); }

.input-inline { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.input-inline label { font-weight: 700; color: var(--gray-700); }

.divider-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-600); }
.divider-dot::before { content: "•"; color: var(--blue-600); }

.icon-row { display: flex; align-items: center; gap: 12px; }
.icon-row .icon-circle { width: 38px; height: 38px; }

.ribbon-inline { padding: 8px 10px; border-radius: 10px; background: #eef4ff; color: var(--blue-600); font-weight: 700; }

.timeline-pro { display: grid; gap: 16px; }
.timeline-pro .item { padding-left: 24px; position: relative; }
.timeline-pro .item::before { content: ""; position: absolute; left: 8px; top: 4px; bottom: -4px; width: 2px; background: #e5e7eb; }
.timeline-pro .item::after { content: ""; position: absolute; left: 2px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 6px rgba(0, 87, 255, 0.15); }

.badge-stack { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-stack .badge { border: 1px solid #dbeafe; background: #f8fbff; }

.metric-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.metric-row .card { padding: 20px; }

.statline { display: flex; justify-content: space-between; align-items: center; color: var(--gray-600); font-weight: 600; }

.widget { border: 1px solid #e5e7eb; border-radius: 18px; background: #fff; padding: 18px; box-shadow: var(--shadow-soft); }
.widget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: var(--gray-500); font-weight: 700; }

.grid-auto-xl { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.label-box { padding: 10px 12px; border-radius: 10px; background: #f8fafc; border: 1px solid #e5e7eb; font-weight: 700; color: var(--gray-700); }

.badge-floating { position: absolute; top: 16px; right: 16px; }

.lozenge { padding: 10px 12px; border-radius: 12px; background: #eef2ff; color: #4338ca; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

.cards-bleed { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.cards-bleed .card { background: #f8faff; }

.sparkline { width: 100%; height: 60px; background: linear-gradient(180deg, rgba(0,87,255,0.18), rgba(0,87,255,0.04)); border-radius: 12px; position: relative; overflow: hidden; }
.sparkline::after { content: ""; position: absolute; inset: 12px; border-radius: 10px; background: linear-gradient(135deg, rgba(0, 87, 255, 0.45), rgba(76, 141, 255, 0.3)); box-shadow: 0 10px 30px rgba(0,87,255,0.18); }

.stat-badge { padding: 8px 12px; border-radius: 10px; background: #e0f2fe; color: #075985; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }

.tile { border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px; background: #fff; }
.tile:hover { box-shadow: var(--shadow-card); }

.wave-bg { background: radial-gradient(circle at 20% 20%, rgba(0, 87, 255, 0.08), transparent 26%), radial-gradient(circle at 80% 10%, rgba(0, 87, 255, 0.05), transparent 20%), #fff; }

.inline-stats { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.inline-stats .stat { padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); }

.tab-bar { display: flex; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid #e5e7eb; padding-bottom: 10px; }
.tab-bar a { padding: 10px 12px; border-radius: 10px; color: var(--gray-700); font-weight: 700; }
.tab-bar a.active { background: #f0f5ff; color: var(--blue-600); }

.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.stats-band .stat { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; }

.hero-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.hero-tiles .tile { background: #f8fbff; }

.badge-ledger { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 10px; background: #e5edff; color: var(--blue-600); font-weight: 700; }

.utility-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.utility-list li { padding: 12px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; display: flex; justify-content: space-between; align-items: center; color: var(--gray-700); }
.utility-list li .label { color: var(--gray-600); }

.focus-card { position: relative; overflow: hidden; background: #fff; border-radius: 18px; border: 1px solid #e5e7eb; padding: 20px; box-shadow: var(--shadow-soft); }
.focus-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(76, 141, 255, 0.04)); pointer-events: none; }

.gradient-pill { padding: 10px 16px; border-radius: 999px; background: var(--gradient-blue); color: white; font-weight: 700; box-shadow: var(--shadow-card); }

.utility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.utility-grid .tile { background: #fff; }

.chart-placeholder { border-radius: 16px; background: linear-gradient(135deg, #eef2ff, #f8fbff); border: 1px solid #e5e7eb; height: 140px; box-shadow: var(--shadow-soft); }

.table-compact { width: 100%; border-collapse: collapse; }
.table-compact th, .table-compact td { padding: 10px 8px; border-bottom: 1px solid #e5e7eb; }
.table-compact th { font-size: 14px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.04em; }

.tagline-large { font-size: 20px; color: var(--gray-700); line-height: 1.6; }

.stat-pill { padding: 10px 14px; border-radius: 12px; background: #f4f8ff; color: var(--blue-600); font-weight: 700; }

.suite-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.suite-grid .card { min-height: 180px; }

.action-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.alert-compact { padding: 10px 12px; border-radius: 10px; font-weight: 700; }
.alert-compact.info { background: #eff6ff; color: #1d4ed8; }
.alert-compact.success { background: #ecfdf3; color: #15803d; }

.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.kpi { padding: 14px; border-radius: 12px; background: #fff; border: 1px solid #e5e7eb; box-shadow: var(--shadow-soft); }

.callout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }

.highlight-box { padding: 18px; border-radius: 14px; background: #f8fbff; border: 1px solid #dbeafe; box-shadow: var(--shadow-soft); }

.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; text-align: center; }
.icon-grid .icon-circle { margin: 0 auto 8px; }

.badge-slim { padding: 6px 8px; border-radius: 8px; background: #eef2ff; color: #4338ca; font-weight: 700; }

.border-dashed { border: 2px dashed #e5e7eb; }

.graph-tile { padding: 16px; border-radius: 16px; background: #fff; border: 1px solid #e5e7eb; box-shadow: var(--shadow-soft); }
.graph-tile .chart-placeholder { height: 160px; }

.overlay-soft { background: rgba(15, 23, 42, 0.04); border-radius: 18px; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }

.media-card { display: grid; grid-template-columns: 140px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 14px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); }
.media-card img { border-radius: 12px; }

.hero-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }

.cta-panel { padding: 22px; border-radius: 16px; background: var(--gradient-blue); color: white; box-shadow: var(--shadow-card); display: grid; gap: 10px; }
.cta-panel .btn { background: white; color: var(--blue-600); }

.ribbon-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.ribbon-tabs button { padding: 10px 14px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; cursor: pointer; font-weight: 700; color: var(--gray-700); }
.ribbon-tabs button.active { border-color: var(--blue-500); color: var(--blue-600); background: #f4f7ff; }

.glass-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border-radius: 18px; border: 1px solid rgba(255,255,255,0.6); box-shadow: var(--shadow-soft); padding: 18px; }

.avatar-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #f3f4f6; color: var(--gray-800); font-weight: 700; }

.section-spacer { height: 18px; }

.quote { font-size: 20px; line-height: 1.6; color: var(--gray-800); font-weight: 600; }

.badge-ghost { padding: 8px 12px; border-radius: 10px; border: 1px solid #e5e7eb; background: #fff; font-weight: 700; color: var(--gray-700); }

.round-card { border-radius: 24px; border: 1px solid #e5e7eb; padding: 24px; background: #fff; box-shadow: var(--shadow-soft); }

.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

.progress-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.progress-grid .progress-bar { height: 14px; }

.flex-gap-4 { display: flex; gap: 4px; }
.flex-gap-8 { display: flex; gap: 8px; }
.flex-gap-12 { display: flex; gap: 12px; }
.flex-gap-16 { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .media-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Extended utility tokens for premium fintech polish */
.border-light { border: 1px solid #edf2f7; }
.border-strong { border: 1px solid #cbd5e1; }
.bg-gradient-blue { background: var(--gradient-blue); color: white; }
.bg-gradient-soft { background: var(--gradient-soft); }

.btn-small { padding: 10px 14px; font-size: 14px; }
.btn-large { padding: 16px 22px; font-size: 18px; }

.glow-soft { box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12); }

.layered-card { position: relative; padding-top: 26px; }
.layered-card::before { content: ""; position: absolute; top: 0; left: 12px; right: 12px; height: 16px; border-radius: 14px; background: #e5edff; opacity: 0.7; }
.layered-card .card { position: relative; z-index: 1; }

.list-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.list-steps li { padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; font-weight: 600; color: var(--gray-700); display: grid; gap: 6px; }
.list-steps li .label { color: var(--gray-500); font-weight: 700; }

.code-block { font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace; background: #0f172a; color: #e2e8f0; padding: 16px; border-radius: 14px; border: 1px solid #1f2937; box-shadow: 0 14px 34px rgba(15, 23, 42, 0.3); }

.callout-border { border-left: 4px solid var(--blue-600); padding-left: 12px; }

.grid-masonry { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-auto-rows: 1fr; gap: 14px; }

.stepper { display: flex; gap: 12px; align-items: center; }
.stepper .dot { width: 12px; height: 12px; border-radius: 50%; background: #e5e7eb; }
.stepper .dot.active { background: var(--blue-600); box-shadow: 0 0 0 6px rgba(0,87,255,0.16); }

.panel { border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

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

@media (max-width: 860px) {
  .grid-quarters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-thirds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .grid-quarters, .grid-thirds { grid-template-columns: 1fr; }
}

.icon-badge { width: 40px; height: 40px; border-radius: 12px; background: #eef2ff; color: #312e81; display: grid; place-items: center; font-weight: 800; }

.frosted { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.6); }

.table-striping tbody tr:nth-child(odd) { background: #f8fafc; }
.table-hover tbody tr:hover { background: #eef2ff; }

.tile-rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }

.muted { color: var(--gray-600); }
.muted strong { color: var(--gray-800); }

.stack-gap-6 { display: grid; gap: 6px; }
.stack-gap-10 { display: grid; gap: 10px; }
.stack-gap-16 { display: grid; gap: 16px; }
.stack-gap-22 { display: grid; gap: 22px; }

.tagline-sub { font-size: 18px; color: var(--gray-700); }

.badge-outline { border: 1px solid #e5e7eb; padding: 8px 10px; border-radius: 10px; color: var(--gray-700); background: #fff; }

.shadow-glow { box-shadow: 0 20px 60px rgba(0, 87, 255, 0.14); }

.dot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.dot-grid .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 8px rgba(0,87,255,0.12); }

.tile-stack { display: grid; gap: 10px; }

.bg-faint { background: #f9fbff; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

.card-outline { border: 1px dashed #d1d5db; padding: 18px; border-radius: 18px; }

.card-floating { position: relative; top: -10px; }

.box { border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; background: #fff; }
.box-lg { padding: 20px; border-radius: 18px; }

.button-row { display: flex; gap: 10px; flex-wrap: wrap; }

.grid-compact { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }

.hover-link { position: relative; }
.hover-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform 200ms ease; }
.hover-link:hover::after { transform: scaleX(1); }

.icon-stack { display: flex; align-items: center; gap: 12px; }
.icon-stack .badge { margin: 0; }

.banner-soft { padding: 18px; border-radius: 16px; background: #f8fafc; border: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

.overlay-gradient { position: relative; overflow: hidden; }
.overlay-gradient::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(0,87,255,0.12), transparent 30%), radial-gradient(circle at 80% 0%, rgba(76,141,255,0.14), transparent 30%); pointer-events: none; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.trust-card { padding: 12px; border-radius: 14px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); text-align: center; }

.avatar-lg { width: 72px; height: 72px; border-radius: 50%; background: #e0f2fe; display: grid; place-items: center; color: #075985; font-weight: 800; }

.grid-detail { display: grid; grid-template-columns: 160px 1fr; gap: 12px; align-items: center; }

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

.h-line { height: 1px; background: #e5e7eb; width: 100%; }

.label-pill { padding: 8px 12px; border-radius: 999px; background: #eef2ff; color: #312e81; font-weight: 700; }

.grid-min { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }

.bg-stripe { background-image: linear-gradient(135deg, rgba(0,87,255,0.04) 25%, transparent 25%, transparent 50%, rgba(0,87,255,0.04) 50%, rgba(0,87,255,0.04) 75%, transparent 75%, transparent); background-size: 24px 24px; }

.tag-ghost { padding: 8px 10px; border-radius: 10px; border: 1px solid #e5e7eb; color: var(--gray-700); background: #fff; }

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.step-card { border: 1px solid #e5e7eb; border-radius: 16px; padding: 14px; background: #fff; box-shadow: var(--shadow-soft); }

.link-muted { color: var(--gray-700); }
.link-muted:hover { color: var(--blue-600); }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }

.card-priority { border: 1px solid #cfe0ff; box-shadow: 0 16px 40px rgba(0,87,255,0.14); }

.subtle-shadow { box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08); }

.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

.hero-subtle { background: #f9fbff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 24px; }

.bg-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; box-shadow: var(--shadow-soft); }

.gradient-border-strong { border: 1px solid transparent; background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #0057ff, #7aa7ff) border-box; }

.tile-stat { padding: 12px; border-radius: 12px; border: 1px solid #e5e7eb; background: #f9fafb; }

@media (max-width: 520px) {
  .button-row { flex-direction: column; }
  .inline-stats { flex-direction: column; align-items: flex-start; }
}

.helper-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.helper-box { padding: 12px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); }

.label-strong { font-weight: 800; color: var(--gray-800); }

.soft-border { border: 1px solid #eef2ff; }

.gradient-chip { padding: 8px 10px; border-radius: 10px; background: linear-gradient(135deg, #e6efff, #f5f8ff); color: var(--blue-600); font-weight: 700; }

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

.helper-text { font-size: 14px; color: var(--gray-600); }

.grid-gap-6 { display: grid; gap: 6px; }
.grid-gap-18 { display: grid; gap: 18px; }

.icon-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 12px; background: #eef2ff; color: #312e81; font-weight: 700; }

.helper-inline { display: inline-flex; gap: 6px; align-items: center; }
.helper-inline small { color: var(--gray-600); font-weight: 600; }

.helper-badge { padding: 6px 8px; border-radius: 8px; background: #f3f4f6; color: var(--gray-700); font-weight: 700; }

.helper-spacer { height: 8px; }

.helper-line { width: 100%; height: 1px; background: #e5e7eb; }

.helper-shadow { box-shadow: var(--shadow-soft); }

.helper-none { display: none; }
.helper-full { width: 100%; }

.helper-stack { display: grid; gap: 8px; }
.helper-card { padding: 10px; border-radius: 10px; border: 1px solid #e5e7eb; background: #fff; box-shadow: var(--shadow-soft); }

.helper-grid-xs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }

.helper-pad { padding: 8px; }
.helper-flex { display: flex; }
.helper-center { justify-content: center; align-items: center; }
.helper-align-start { align-items: flex-start; }
