:root {
  color-scheme: dark;
  --bg: #080a0f;
  --surface: #10131a;
  --surface-2: #161a22;
  --line: #2a303b;
  --text: #f5f7fb;
  --muted: #a8afbc;
  --blue: #36a7ff;
  --cyan: #29d4d4;
  --green: #48d578;
  --orange: #ff9b42;
  --purple: #a875ff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,10,15,.9);
  backdrop-filter: blur(18px);
}
.nav {
  max-width: var(--max);
  min-height: 70px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  font-size: 20px;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { margin-left: 4px; }
.nav-links .nav-cta,
.nav-links .nav-cta:hover { color: #fff; }
.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--blue);
  color: #04111b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}
.button:hover { filter: brightness(1.08); }
.button.secondary { background: transparent; border-color: var(--line); color: var(--text); }
.button.small { min-height: 38px; padding: 0 15px; }

.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.compact { padding: 64px 0; }
.section-band { background: var(--surface); border-block: 1px solid rgba(255,255,255,.07); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(44px, 6vw, 78px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: 21px; }
.lede { max-width: 760px; margin: 22px auto 0; color: var(--muted); font-size: 21px; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading p { color: var(--muted); font-size: 19px; margin: 16px 0 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 76px 0 0;
  overflow: hidden;
  text-align: center;
}
.hero-copy { position: relative; z-index: 2; max-width: 950px; margin: auto; }
.hero h1 span { color: var(--blue); }
.hero-actions { margin-top: 30px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin: 14px 0 0; color: #7f8794; font-size: 14px; }
.hero-visual {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  margin: 58px auto -90px;
}
.hero-visual img {
  width: 100%;
  border: 1px solid #303744;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}

.trust-strip { padding: 30px 0; border-block: 1px solid rgba(255,255,255,.07); background: #0c0f15; }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-item { color: var(--muted); text-align: center; font-size: 14px; font-weight: 650; }
.trust-item strong { display: block; margin-bottom: 2px; color: var(--text); font-size: 19px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.feature-card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-weight: 850;
}
.feature-card p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.feature-card:nth-child(1) { --accent: var(--blue); }
.feature-card:nth-child(2) { --accent: var(--green); }
.feature-card:nth-child(3) { --accent: var(--orange); }
.feature-card:nth-child(4) { --accent: var(--purple); }
.feature-card:nth-child(5) { --accent: var(--cyan); }
.feature-card:nth-child(6) { --accent: #ff5f79; }

.showcase { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.showcase + .showcase { margin-top: 100px; }
.showcase.reverse { grid-template-columns: 1.18fr .82fr; }
.showcase.reverse .showcase-copy { order: 2; }
.showcase img { border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 25px 65px rgba(0,0,0,.35); }
.showcase-copy p { color: var(--muted); margin: 16px 0 0; }
.check-list { list-style: none; margin: 25px 0 0; padding: 0; }
.check-list li { position: relative; padding: 7px 0 7px 28px; color: #d9dde5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.quote {
  max-width: 850px;
  margin: auto;
  text-align: center;
}
.quote blockquote { margin: 0; font-size: clamp(26px, 4vw, 43px); line-height: 1.28; font-weight: 700; }
.quote p { color: var(--muted); }

.cta-band { padding: 80px 0; text-align: center; border-top: 1px solid var(--line); }
.cta-band p { max-width: 680px; margin: 16px auto 28px; color: var(--muted); }

.page-hero { padding: 90px 0 70px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .lede { max-width: 720px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.price-card.featured { border-color: var(--blue); background: #101923; }
.badge { display: inline-flex; padding: 5px 9px; border-radius: 4px; background: var(--blue); color: #04111b; font-size: 11px; font-weight: 850; }
.price { margin: 20px 0 2px; font-size: 46px; font-weight: 800; line-height: 1; }
.price-period { color: var(--muted); font-size: 14px; }
.price-card .check-list { min-height: 300px; }
.fine-print { color: #7f8794; font-size: 13px; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.comparison { width: 100%; min-width: 900px; border-collapse: collapse; background: var(--surface); }
.comparison th, .comparison td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { background: var(--surface-2); font-size: 14px; }
.comparison td { color: var(--muted); font-size: 15px; }
.comparison td:first-child { color: var(--text); font-weight: 700; }
.comparison tr:last-child td { border-bottom: 0; }
.good { color: var(--green); }
.tradeoff { color: var(--orange); }
.comparison-note { margin-top: 20px; color: var(--muted); font-size: 14px; }

.prose { max-width: 800px; }
.prose h2 { margin: 48px 0 14px; font-size: 28px; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--blue); }
.prose .updated { color: #7f8794; font-size: 14px; }

.article-hero { padding: 90px 0 64px; text-align: center; border-bottom: 1px solid var(--line); }
.article-heading { max-width: 940px; }
.article-meta, .article-updated { color: #7f8794; font-size: 14px; }
.article-layout { padding: 72px 0 96px; }
.article-body { max-width: 850px; margin: 0 auto; }
.article-body h2 { margin: 58px 0 16px; font-size: clamp(28px, 4vw, 38px); }
.article-body h3 { margin: 28px 0 10px; font-size: 20px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body a { color: var(--blue); }
.article-body li + li { margin-top: 8px; }
.disclosure { padding: 24px; border: 1px solid var(--line); border-left: 4px solid var(--cyan); border-radius: 6px; background: var(--surface); }
.disclosure p { margin: 8px 0 0; }
.article-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 8px; }
.article-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--surface); }
.article-table th, .article-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table th { background: var(--surface-2); font-size: 14px; }
.article-table td { color: var(--muted); font-size: 14px; }
.article-table td:first-child { color: var(--text); font-weight: 750; }
.article-table tr:last-child td { border-bottom: 0; }
.tool-review { margin-top: 64px; padding-top: 8px; border-top: 1px solid var(--line); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 12px 0 0; color: var(--muted); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.support-box { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.support-box p { color: var(--muted); }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); background: #07090d; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 28px; }
.footer-brand p { max-width: 360px; color: var(--muted); font-size: 14px; }
.footer-column h3 { margin-bottom: 14px; font-size: 14px; }
.footer-column a { display: block; margin: 9px 0; color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-column a:hover { color: var(--text); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: #737b89; font-size: 13px; }

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #0a0d12;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-cta { margin: 10px 0 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .showcase, .showcase.reverse { grid-template-columns: 1fr; gap: 34px; }
  .showcase.reverse .showcase-copy { order: 0; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-visual { margin-top: 42px; margin-bottom: -18px; width: calc(100% - 12px); }
  .feature-grid, .pricing-grid, .support-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 28px 10px; }
  .trust-item strong { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 68px 0 52px; }
  .price-card .check-list { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
