*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg: #0a0e1a;
  --clr-surface: #111827;
  --clr-surface2: #1a2237;
  --clr-border: #1e2d45;
  --clr-accent: #ff6b1a;
  --clr-accent-hover: #ff8c42;
  --clr-accent-glow: rgba(255, 107, 26, 0.25);
  --clr-gold: #f5c518;
  --clr-gold-dim: rgba(245, 197, 24, 0.15);
  --clr-text: #e8edf5;
  --clr-text-muted: #8a9bb5;
  --clr-text-faint: #4a5a72;
  --clr-green: #22c55e;
  --clr-red: #f87171;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 20px var(--clr-accent-glow);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

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

a:hover {
  color: var(--clr-accent-hover);
}

img {
  display: none;
}

.top-banner,
.mid-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2d1f00 40%, #1a0800 100%);
  border-bottom: 2px solid var(--clr-accent);
  padding: 14px 20px;
  position: relative;
  overflow: hidden;
}

.top-banner::before,
.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,107,26,0.04) 40px,
    rgba(255,107,26,0.04) 41px
  );
  pointer-events: none;
}

.mid-banner {
  border-top: 2px solid var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
  margin: 48px 0;
}

.banner-inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner-tag {
  background: var(--clr-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.banner-headline {
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 400;
}

.banner-headline strong {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 17px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--clr-accent), #e55500);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow-accent);
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,107,26,0.45);
  background: linear-gradient(135deg, var(--clr-accent-hover), var(--clr-accent));
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-large {
  padding: 15px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.site-header {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-rocket {
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.logo-badge {
  background: var(--clr-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--clr-accent);
}

.main-content {
  padding: 0 0 60px;
}

.hero-section {
  padding: 56px 0 40px;
  text-align: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.stars {
  color: var(--clr-gold);
  font-size: 15px;
  letter-spacing: 1px;
}

.rating-num {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 15px;
}

.rating-label {
  color: var(--clr-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 60px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-subtitle {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}

.section,
.intro-section {
  padding: 48px 0;
  border-top: 1px solid var(--clr-border);
}

.intro-section {
  border-top: none;
}

p {
  color: var(--clr-text);
  margin-bottom: 16px;
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 400px;
}

.info-table thead {
  background: var(--clr-surface2);
}

.info-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--clr-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}

.info-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(30, 45, 69, 0.6);
  color: var(--clr-text);
  vertical-align: top;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:nth-child(even) {
  background: rgba(26, 34, 55, 0.5);
}

.info-table tbody tr:hover {
  background: rgba(255, 107, 26, 0.05);
}

.cards-section {
  padding: 48px 0;
  border-top: 1px solid var(--clr-border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(255,107,26,0.4);
  box-shadow: 0 4px 24px rgba(255,107,26,0.1);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 17px;
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.feature-card ul li {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 7px;
  line-height: 1.5;
}

.pros-card {
  border-color: rgba(34, 197, 94, 0.2);
}

.pros-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 24px rgba(34,197,94,0.08);
}

.pros-card .card-icon {
  color: var(--clr-green);
}

.pros-card h3 {
  color: var(--clr-green);
}

.cons-card {
  border-color: rgba(248, 113, 113, 0.2);
}

.cons-card:hover {
  border-color: rgba(248, 113, 113, 0.35);
  box-shadow: 0 4px 24px rgba(248,113,113,0.08);
}

.cons-card .card-icon {
  color: var(--clr-red);
}

.cons-card h3 {
  color: var(--clr-red);
}

.pros-cons-section {
  padding: 48px 0;
  border-top: 1px solid var(--clr-border);
}

.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-surface);
  transition: border-color 0.2s;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-text);
  user-select: none;
  transition: background 0.15s;
  gap: 12px;
}

.faq-question:hover {
  background: var(--clr-surface2);
  color: #fff;
}

.faq-arrow {
  color: var(--clr-accent);
  font-size: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.faq-toggle:checked ~ .faq-question {
  background: var(--clr-surface2);
  color: var(--clr-accent);
  border-bottom: 1px solid var(--clr-border);
}

.faq-toggle:checked ~ .faq-question .faq-arrow {
  transform: rotate(180deg);
  color: var(--clr-accent);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding: 18px 22px;
}

.faq-item:has(.faq-toggle:checked) {
  border-color: rgba(255,107,26,0.35);
}

.final-section {
  text-align: center;
}

.final-cta {
  margin-top: 36px;
  padding: 40px 32px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}

.cta-text {
  font-size: 17px;
  color: var(--clr-text);
  margin-bottom: 20px;
  font-weight: 500;
}

.disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--clr-text-faint);
}

.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 28px;
}

.footer-top {
  margin-bottom: 24px;
}

.footer-top .logo {
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  max-width: 480px;
  line-height: 1.6;
}

.footer-rg {
  background: rgba(255,107,26,0.06);
  border: 1px solid rgba(255,107,26,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.rg-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rg-badge {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-rg p {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.footer-rg strong {
  color: var(--clr-text);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--clr-text-faint);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .banner-headline {
    font-size: 13px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    max-width: 100%;
  }

  .stat-item {
    min-width: 80px;
    padding: 14px 10px;
  }

  .stat-num {
    font-size: 18px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 22px;
  }

  .final-cta {
    padding: 24px 18px;
  }

  .faq-question {
    font-size: 14px;
    padding: 15px 16px;
  }

  .info-table th,
  .info-table td {
    padding: 10px 12px;
  }
}

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

  .quick-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 45%;
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
