:root {
  --bg-body: #0d0c1d;
  --bg-section: rgba(16, 14, 25, 0.85);
  --color-text: #e6ecff;
  --color-muted: rgba(210, 222, 247, 0.72);
  --color-soft: rgba(255, 255, 255, 0.06);
  --border-soft: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(0, 246, 255, 0.45);
  --cyan: #00f6ff;
  --gold: #ffd700;
  --cta-bg: linear-gradient(90deg, #00f6ff 0%, #ffd700 100%);
  --rad: 22px;
  --shadow: 0 24px 60px rgba(0, 246, 255, 0.16);
  --max-width: 1200px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  background: radial-gradient(circle at top, rgba(0, 246, 255, 0.06) 0%, rgba(13, 12, 29, 0.95) 45%), var(--bg-body);
  color: var(--color-text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  background: #0b0f16;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

section {
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative;
}

.section-title {
  font-size: clamp(30px, 5vw, 48px);
  margin: 0 0 16px;
  line-height: 1.1;
}

.section-lead {
  color: var(--color-muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(95deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: #c8f7ff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card {
  background: var(--bg-section);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(20px, 3vw, 24px);
}

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

.grid {
  display: grid;
  gap: clamp(16px, 2.8vw, 28px);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.stats {
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat {
  flex: 1;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 20px;
}

.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.stat span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.hero {
  padding-top: clamp(64px, 8vw, 140px);
  padding-bottom: clamp(56px, 6vw, 120px);
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--color-muted);
  margin: 0 0 24px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  color: #0b0f18;
  background: var(--cta-bg);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  color: var(--cyan);
  border: 1px solid rgba(0, 246, 255, 0.35);
  background: rgba(0, 246, 255, 0.08);
}

.btn-outline {
  color: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

.traders {
  display: grid;
  gap: 18px;
}

.trader-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trader-card img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: 2px solid rgba(0, 246, 255, 0.3);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
}

.timeline-step {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 246, 255, 0.12);
  border: 1px solid rgba(0, 246, 255, 0.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0f18;
}

.price-comparison {
  display: grid;
  gap: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.compare-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.testimonials {
  display: grid;
  gap: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-author {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color-muted);
}

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

.faq details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
}

.feature-table {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px 20px;
}

.feature-row strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.blog-highlight {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card a:hover {
  text-decoration: none;
}

.blog-meta {
  color: var(--color-muted);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.toc-item a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.toc-item a:hover {
  text-decoration: underline;
}

.toc-h3 {
  margin-left: 16px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.breadcrumbs {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--color-text);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0 54px;
  text-align: center;
  color: rgba(198, 210, 236, 0.8);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sticky-cta {
  position: fixed;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 60;
}

.sticky-cta .btn {
  padding: 16px 30px;
  font-size: 1.05rem;
}

@media (max-width: 780px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
  }

  .timeline-step {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 96px;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 18px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    width: 100%;
  }

  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

.exit-intent {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 14, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.exit-intent.is-visible {
  display: flex;
}

.exit-card {
  width: min(100%, 440px);
  background: var(--bg-section);
  border: 1px solid rgba(0, 246, 255, 0.35);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.exit-card h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.exit-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
}

.table-compare {
  width: 100%;
  border-spacing: 0 14px;
  border-collapse: separate;
}

.table-compare th,
.table-compare td {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-compare th:first-child,
.table-compare td:first-child {
  border-radius: 16px 0 0 16px;
}

.table-compare th:last-child,
.table-compare td:last-child {
  border-radius: 0 16px 16px 0;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  background: radial-gradient(circle at center, rgba(0, 246, 255, 0.14) 0%, rgba(11, 14, 22, 0.9) 70%);
  border: 1px solid rgba(0, 246, 255, 0.14);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.85;
}

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.table-bullets li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
