:root {
  --bg: #0B0F1A;
  --bg-elev: #131A2B;
  --bg-elev-2: #1A2238;
  --border: #232C44;
  --primary: #00E08A;
  --primary-hover: #00C97A;
  --primary-soft: rgba(0, 224, 138, 0.12);
  --accent: #FFD23F;
  --text: #E8EEF7;
  --text-muted: #8B95A7;
  --danger: #FF5C7A;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 96px;
}

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

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #06120A; padding: 10px 14px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-logo { border-radius: 8px; }
.brand-name { font-weight: 700; letter-spacing: -0.01em; }
.brand-accent { color: var(--primary); }
.site-nav { display: flex; gap: 22px; }
.site-nav a { color: var(--text-muted); font-size: 0.95rem; }
.site-nav a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-xl { padding: 18px 32px; font-size: 1.1rem; }
.btn-primary {
  background: var(--primary); color: #06120A;
  box-shadow: 0 6px 24px rgba(0, 224, 138, 0.25);
}
.btn-primary:hover { background: var(--primary-hover); color: #06120A; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0, 224, 138, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 224, 138, 0.08), transparent 60%),
    linear-gradient(180deg, #0E1525 0%, var(--bg) 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid rgba(0, 224, 138, 0.25);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #c9d2e3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--text-muted); font-size: 1.05rem; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.hero-stats li {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-stats strong { color: var(--primary); font-size: 1.15rem; }
.hero-stats span { color: var(--text-muted); font-size: 0.8rem; }

.hero-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-elev); border: 1px solid var(--border);
  aspect-ratio: 3 / 2; box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.media-fallback img { display: none; }
.media-fallback-text {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem;
}
.media-fallback .media-fallback-text { display: flex; }

/* Sections */
.section { padding: 56px 0; border-bottom: 1px solid var(--border); }
h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.25;
  margin: 0 0 18px; letter-spacing: -0.01em;
}
h3 {
  font-size: 1.2rem; line-height: 1.35; margin: 28px 0 10px;
  color: var(--text);
}
p { margin: 0 0 16px; color: #cdd5e3; }

/* Inline CTA */
.cta-inline {
  margin: 32px 0 8px;
  display: flex; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 224, 138, 0.08), rgba(0, 224, 138, 0.02));
  border: 1px solid rgba(0, 224, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* Rules table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0 8px; border-radius: var(--radius); border: 1px solid var(--border); }
.rules-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--bg-elev); }
.rules-table th, .rules-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.rules-table thead th {
  background: var(--bg-elev-2); color: var(--text); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.78rem;
}
.rules-table tbody th { color: var(--text); font-weight: 500; }
.rules-table tbody td { color: var(--text-muted); }
.rules-table tbody tr:last-child th, .rules-table tbody tr:last-child td { border-bottom: 0; }
.rules-table tbody tr:hover { background: rgba(0, 224, 138, 0.04); }

/* Pros & Cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.pros, .cons {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.pros { border-top: 3px solid var(--primary); }
.cons { border-top: 3px solid var(--danger); }
.pros h3, .cons h3 { margin-top: 0; }

/* Screenshot figure */
.screenshot {
  margin: 28px 0; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  background: var(--bg-elev);
}
.screenshot img { width: 100%; height: auto; }
.screenshot figcaption {
  padding: 12px 16px; color: var(--text-muted); font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
.screenshot.media-fallback img { display: none; }
.screenshot.media-fallback::before {
  content: "Screenshot placeholder";
  display: flex; align-items: center; justify-content: center;
  height: 280px; color: var(--text-muted);
}

/* FAQ */
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px 18px; margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer; padding: 14px 0;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 1.05rem; display: inline; }
.faq-item summary::after {
  content: "+"; color: var(--primary); font-size: 1.5rem; line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 16px; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, rgba(0, 224, 138, 0.12), rgba(0, 224, 138, 0.02));
  border-top: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { max-width: 640px; margin: 0 auto 24px; color: var(--text-muted); }
.disclosure { font-size: 0.8rem; opacity: 0.7; margin-top: 18px; }

/* Footer */
.site-footer {
  padding: 32px 0;
  color: var(--text-muted); font-size: 0.85rem; text-align: center;
}
.site-footer p { color: var(--text-muted); margin-bottom: 6px; }
.site-footer .risk { font-size: 0.78rem; opacity: 0.7; }

/* Sticky CTA */
.sticky-cta {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #06120A;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 224, 138, 0.35), 0 0 0 4px rgba(0, 224, 138, 0.15);
  z-index: 100; max-width: calc(100vw - 24px);
  transition: transform 0.15s, box-shadow 0.15s;
}
.sticky-cta:hover {
  color: #06120A; background: var(--primary-hover);
  transform: translateX(-50%) translateY(-2px);
}
.sticky-cta-arrow { font-size: 1.1rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 44px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-nav { display: none; }
  .proscons { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .header-cta { padding: 8px 14px; font-size: 0.85rem; }
}

@media (max-width: 600px) {
  body { padding-bottom: 84px; }
  .hero h1 { font-size: 1.85rem; }
  .section { padding: 40px 0; }
  .sticky-cta { font-size: 0.85rem; padding: 12px 16px; gap: 6px; }
  .sticky-cta-text {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    max-width: 230px;
  }
  .cta-inline { padding: 18px; }
  .cta-inline .btn { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .header-inner { padding: 12px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto; }
}
