@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Chivo:wght@400;600&display=swap');

:root {
  --accent: #5e31eb;
  --accent-soft: rgba(94, 49, 235, 0.3);
  --bg: #0a090d;
  --text: #ffffff;
  --muted: #67666e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --radius: 22px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Chivo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: -10% auto auto -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(94, 49, 235, 0.4), transparent 60%);
  filter: blur(50px);
  z-index: -2;
}

body::after {
  inset: auto -15% -15% auto;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(154, 99, 255, 0.35), transparent 60%);
}

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 40px 0 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

.hero {
  margin-top: 40px;
  padding: 50px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94, 49, 235, 0.3), rgba(10, 9, 13, 0.7));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 65ch;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  text-decoration: none;
  padding: 14px 28px;
  justify-content: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 15px 30px rgba(94, 49, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0px 30px rgba(94, 49, 235, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.section-title {
  margin: 70px 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: var(--muted);
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.wallet-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.wallet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(94, 49, 235, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wallet-card:hover::after {
  opacity: 1;
}

.wallet-card img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
}

.wallet-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.wallet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 12px;
}


.card-footer .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.ref-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card h4 {
  margin: 0 0 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.stat-card strong {
  font-size: 1.8rem;
}

.faq {
  margin-top: 60px;
  display: grid;
  gap: 18px;
}

.faq details {
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

footer {
  margin-top: 80px;
  padding: 30px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

form {
  display: grid;
  gap: 18px;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  appearance: none;
}

.select-control {
  position: relative;
  border-radius: 16px;
  background: rgba(94, 49, 235, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.select-control::after {
  content: '\25BC';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--text);
  pointer-events: none;
}

.select-control select {
  border: none;
  background: transparent;
  padding-right: 44px;
}

select option {
  background: var(--bg);
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

thead {
  background: rgba(94, 49, 235, 0.2);
}

td,
th {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  color: var(--muted);
}

th {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.comparison-controls {
  margin: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-controls p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(94, 49, 235, 0.35);
}

input {
    outline: none;
}

.wallet-table tr.highlight {
  background: rgba(94, 49, 235, 0.15);
}

.wallet-table tr.dim {
  opacity: 0.4;
}

.pros-cons-section {
  margin-top: 60px;
}

.pros-cons-section h2 {
  margin-bottom: 10px;
}

.pros-cons-section p {
  color: var(--muted);
  margin-top: 0;
}

.pros-cons-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.pros-cons-list {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-cons-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pros-cons-tab.active {
  border-color: rgba(94, 49, 235, 0.6);
  background: rgba(94, 49, 235, 0.15);
}

.pros-cons-panels {
  flex: 2 1 480px;
}

.pros-cons-panel {
  display: none;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(94, 49, 235, 0.08));
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.pros-cons-panel.active {
  display: block;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-head h3 {
  margin: 0;
  font-size: 1.6rem;
}

.panel-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}

.panel-body h4 {
  margin-top: 0;
}

.panel-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.6;
}

.audience-pill {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(94, 49, 235, 0.18);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .pros-cons-panel {
    padding: 24px;
  }

  .pros-cons-list {
    flex-basis: 100%;
  }

  .pros-cons-panels {
    flex-basis: 100%;
  }
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(94, 49, 235, 0.2);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.glow-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(94, 49, 235, 0.25), transparent 60%);
  opacity: 0.8;
  z-index: 0;
}

.glow-card > * {
  position: relative;
  z-index: 1;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.insight-grid article {
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card,
.blog-article {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.article-meta {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.article-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.article-list.ordered {
  list-style: decimal;
}

.article-list li {
  line-height: 1.5;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
  flex-wrap: wrap;
}

.read-time {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-hero {
  margin-bottom: 30px;
}

.post-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-banner {
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.post-banner img {
  width: 100%;
  display: block;
  height: auto;
}

.post-banner figcaption {
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.post-toc {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
}

.post-toc p {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.post-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.post-toc a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.post-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.post-section p {
  color: var(--muted);
  margin: 14px 0;
}

.post-section ul,
.post-section ol {
  margin: 14px 0 14px 20px;
  color: var(--text);
  line-height: 1.6;
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.post-table th,
.post-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

blockquote {
  margin: 20px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 0 18px 18px 0;
}

.post-section ol {
  counter-reset: custom;
}

.post-section ol li {
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding: 36px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .hero h1  {
    font-size: 1rem;
  }

  .hero .badge {
    font-size: 0.5rem;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }
}
