:root {
  --bg: #07111f;
  --bg2: #0b1b31;
  --surface: #fff;
  --ink: #0a1020;
  --muted: #667085;
  --line: #dce3ee;
  --blue: #0052ff;
  --blue2: #2e6bff;
  --green: #00c785;
  --yellow: #ffcc4d;
  --danger: #e23b4a;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(8, 20, 40, 0.16);
}
[hidden] {
  display: none !important;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: #f5f8fc;
  padding-bottom: 92px;
}
a {
  color: inherit;
  text-decoration: none;
}
code {
  background: #eef4ff;
  border-radius: 8px;
  padding: 0.1rem 0.35rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 82, 255, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #0052ff;
  color: white;
  font-weight: 900;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.top-nav {
  display: flex;
  gap: 8px;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #344054;
  font-weight: 700;
}
.nav-link:hover,
.nav-link.active {
  background: #eef4ff;
  color: #0052ff;
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  min-height: 46px;
  padding: 13px 22px;
  cursor: pointer;
}
.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #0052ff, #003dbf);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 82, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0, 82, 255, 0.32);
}
.btn-secondary {
  background: white;
  color: #0052ff;
  border: 1px solid rgba(0, 82, 255, 0.25);
}
.btn-ghost {
  background: #eef4ff;
  color: #13315f;
}
.btn-light {
  background: white;
  color: #07111f;
}
.btn-xl {
  font-size: 18px;
  padding: 16px 28px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  gap: 40px;
  padding: 76px clamp(18px, 5vw, 72px);
  background: radial-gradient(
      circle at 80% 10%,
      rgba(0, 199, 133, 0.25),
      transparent 28%
    ),
    linear-gradient(135deg, #07111f 0%, #0b1b31 50%, #041122 100%);
  color: white;
  overflow: hidden;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 14px 0 18px;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(0, 82, 255, 0.24);
  background: rgba(0, 82, 255, 0.1);
  color: #2e6bff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #b7cdfd;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #c7d3e5;
  font-weight: 700;
}
.hero-panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 22px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}
.panel-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.platform-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}
.platform-mini span {
  grid-row: span 2;
  color: #00c785;
  font-weight: 900;
}
.platform-mini em {
  color: #c7d3e5;
  font-style: normal;
  font-size: 14px;
}
.panel-cta {
  display: flex;
  justify-content: center;
  margin: 16px 0 10px;
  padding: 14px;
  border-radius: 18px;
  background: #00c785;
  color: #041122;
  font-weight: 900;
}
.section {
  padding: 64px clamp(18px, 5vw, 72px);
}
.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}
.section-head h2,
.split h2,
.callout h2,
.content h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 12px 0;
}
.section-head p {
  color: #5d6b82;
  font-size: 18px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feature-card,
.callout,
.risk-card,
.blog-card,
.platform-card,
.score-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(18, 32, 56, 0.06);
}
.feature-card.hot,
.aggressive {
  border-color: rgba(0, 82, 255, 0.35);
  background: linear-gradient(180deg, #fff, #eef4ff);
}
.feature-card span,
.tag {
  font-family: "JetBrains Mono", monospace;
  color: #0052ff;
  font-weight: 900;
}
.dark {
  background: #07111f;
  color: white;
}
.dark p {
  color: #c7d3e5;
}
.score-card {
  background: #10233d;
  border-color: rgba(255, 255, 255, 0.12);
}
.score-card li {
  margin: 10px 0;
}
.table-wrap {
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.compare-table th {
  background: #07111f;
  color: white;
  text-align: left;
  padding: 18px;
}
.compare-table td {
  padding: 18px;
  border-top: 1px solid #edf2f7;
  vertical-align: top;
}
.compare-table small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.btn-table {
  background: #07111f;
  color: white;
  white-space: nowrap;
}
.platform-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.platform-card ul {
  padding-left: 18px;
  color: #506078;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.page-hero {
  padding: 70px clamp(18px, 5vw, 72px);
  background: white;
}
.page-hero.compact {
  background: linear-gradient(135deg, #fff, #eef4ff);
}
.page-hero.danger {
  background: linear-gradient(135deg, #fff1f2, #eef4ff);
}
.page-hero p {
  max-width: 820px;
  font-size: 20px;
  line-height: 1.55;
  color: #526070;
}
.content,
.article {
  max-width: 920px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
}
.article {
  background: white;
  border-radius: 32px;
  padding: 54px;
  margin-top: 34px;
  box-shadow: var(--shadow);
}
.article h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.article .lead {
  color: #344054;
}
.article-summary {
  background: #eef4ff;
  border-radius: 24px;
  padding: 22px;
  margin: 26px 0;
}
.risk-card {
  border-color: #ffd0d5;
}
.warning {
  background: #fff8e5;
  border-color: #ffe099;
}
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 980px;
  margin: auto;
  padding: 13px 52px 13px 16px;
  background: linear-gradient(
    135deg,
    rgba(7, 17, 31, 0.96),
    rgba(0, 82, 255, 0.92)
  );
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.sticky-cta strong {
  letter-spacing: -0.02em;
}
.sticky-cta-copy {
  min-width: 0;
}
.sticky-cta span {
  display: block;
  color: #dbe7ff;
  font-size: 14px;
}
.sticky-cta-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.trust-toast {
  position: fixed;
  left: 18px;
  bottom: 108px;
  z-index: 55;
  width: min(360px, calc(100vw - 36px));
  background: white;
  border: 1px solid rgba(0, 82, 255, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px 42px 14px 16px;
  animation: pop 0.25s ease-out;
}
.trust-toast a {
  display: grid;
  gap: 4px;
}
.trust-toast strong {
  color: #0052ff;
}
.trust-toast span {
  color: #526070;
  font-size: 14px;
}
.trust-toast button,
.exit-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: #eef4ff;
  border-radius: 999px;
  width: 28px;
  height: 28px;
}
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.62);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.exit-modal {
  position: relative;
  width: min(560px, 100%);
  background: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background: #07111f;
  color: white;
  padding: 46px clamp(18px, 5vw, 72px) 128px;
}
.site-footer p,
.footer-links {
  color: #c7d3e5;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 14px;
  line-height: 1.65;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 860px) {
  .top-nav,
  .header-cta {
    display: none;
  }
  .top-nav.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .menu-toggle {
    display: block;
    border: 0;
    background: #eef4ff;
    border-radius: 12px;
    padding: 10px;
  }
  .hero,
  .grid-2,
  .grid-3,
  .split,
  .platform-grid,
  .blog-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 42px;
  }
  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .sticky-cta .btn {
    width: 100%;
  }
  .article {
    padding: 28px;
    margin: 18px;
  }
  .compare-table {
    min-width: 760px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.article-long {
  max-width: 980px;
}
.article-long .lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #26364d;
}
.article-long section {
  scroll-margin-top: 110px;
}
.article-long h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  letter-spacing: -0.03em;
}
.article-long p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: #314158;
}
.article-long p + p {
  margin-top: 14px;
}
.article-summary {
  background: linear-gradient(135deg, #eef6ff, #fff);
  border: 1px solid #d8e6fb;
  border-radius: 24px;
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 18px 46px rgba(16, 42, 86, 0.08);
}
.article-summary strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.article-summary ul {
  margin: 0;
  padding-left: 20px;
}
.article-summary li {
  margin: 8px 0;
  line-height: 1.65;
}
.article-affiliate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #07111f, #0d2a4d);
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  margin: 30px 0;
  box-shadow: 0 28px 70px rgba(2, 12, 28, 0.28);
  overflow: hidden;
  position: relative;
}
.article-affiliate:before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 199, 133, 0.35), transparent 68%);
}
.article-affiliate h2 {
  margin: 4px 0 8px;
  color: #fff;
  font-size: 1.45rem;
}
.article-affiliate p {
  margin: 0;
  color: #d8e7ff;
}
.article-affiliate .btn {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.article-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  margin: 28px 0;
  box-shadow: 0 18px 48px rgba(16, 42, 86, 0.08);
}
.article-toc strong {
  display: block;
  margin-bottom: 10px;
}
.article-toc ol {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  padding-left: 20px;
}
.article-toc a {
  color: #0b4de3;
  font-weight: 700;
}
.article-toc a:hover {
  text-decoration: underline;
}
@media (max-width: 760px) {
  .article-affiliate {
    grid-template-columns: 1fr;
  }
  .article-affiliate .btn {
    width: 100%;
    text-align: center;
  }
  .article-toc ol {
    grid-template-columns: 1fr;
  }
  .article-long p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 14px 48px 14px 14px;
  }
  .sticky-cta .btn {
    width: fit-content;
  }
  .trust-toast {
    bottom: 150px;
  }
}

/* === SEO additions: breadcrumbs, byline, FAQ, cookie banner === */
.breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 54px) 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--blue);
  font-weight: 600;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: var(--muted);
}
.breadcrumbs span[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 20, 40, 0.04);
  font-size: 14px;
  color: var(--muted);
  max-width: 880px;
}
.byline strong {
  color: var(--ink);
}
.byline-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0052ff, #2e6bff);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.byline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.byline-meta span::before {
  content: "·";
  margin-right: 14px;
  color: var(--line);
}
.byline-meta span:first-child::before {
  content: "";
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(8, 20, 40, 0.04);
}
.faq details + details {
  margin-top: 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--blue);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 12px 0 0;
  color: #2c3a52;
  line-height: 1.65;
}
.faq details p + p {
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: #07111f;
  color: #e8eefc;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.45);
  max-width: 980px;
  margin-inline: auto;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner a {
  color: #ffcc4d;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner .btn {
  white-space: nowrap;
}
.cookie-banner .btn-ghost-light {
  color: #e8eefc;
  background: transparent;
  border: 1px solid rgba(232, 238, 252, 0.35);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner .btn-accept {
  background: var(--blue);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cookie-banner .btn-accept,
  .cookie-banner .btn-ghost-light {
    width: 100%;
    text-align: center;
  }
}
