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

:root {
  --bg-dark: #0A0E1A;
  --bg-card: #131827;
  --bg-card-alt: #1a2035;
  --gold: #F5C842;
  --gold-dim: #c9a230;
  --red: #E8253A;
  --red-dim: #b51d2d;
  --text-primary: #F0EEE8;
  --text-secondary: #9da8c0;
  --text-muted: #6b7592;
  --border: #1f2d4a;
  --green: #2ecc71;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1100px;
  --section-gap: 72px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #F5C842 0%, #fff8d6 50%, #F5C842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 800;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
  max-width: 72ch;
}

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav-cta {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.bonus-banner {
  background: linear-gradient(90deg, #0d1428 0%, #1a0a00 40%, #0d1428 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
}

.mid-banner {
  margin: var(--section-gap) 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
  padding: 20px 24px;
}

.banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-badge {
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.mid-banner .banner-badge {
  background: var(--red);
  color: #fff;
}

.banner-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.banner-text strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--text-primary);
}

.banner-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn-cta {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.35);
}

.mid-banner .btn-cta {
  background: var(--red);
  color: #fff;
}

.mid-banner .btn-cta:hover {
  background: var(--red-dim);
  box-shadow: 0 6px 24px rgba(232, 37, 58, 0.35);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(245, 200, 66, 0); }
}

.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-section {
  position: relative;
  padding: 80px 20px 72px;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 200, 66, 0.06) 0%, transparent 60%);
}

.hero-bg-gfx {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
}

.lightning-deco {
  width: 100%;
  height: 100%;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-overline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 60ch;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.btn-hero {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg-dark);
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 200, 66, 0.4);
}

.info-table-section {
  padding: var(--section-gap) 20px;
  border-top: 1px solid var(--border);
}

.info-table-section h2 {
  margin-bottom: 8px;
}

.info-table-section p {
  margin-bottom: 28px;
}

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

.info-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

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

.info-table tbody tr:hover {
  background: rgba(245, 200, 66, 0.04);
}

.info-table th {
  background: var(--bg-card);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: left;
  width: 180px;
  vertical-align: top;
  white-space: nowrap;
}

.info-table td {
  background: var(--bg-card-alt);
  color: var(--text-secondary);
  padding: 14px 20px;
  vertical-align: top;
  line-height: 1.6;
}

.section {
  padding: var(--section-gap) 20px;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin-bottom: 10px;
}

.section > .container > p:first-of-type,
.section p {
  margin-bottom: 20px;
}

.section h3 {
  margin-top: 32px;
  margin-bottom: 10px;
}

.section h3:first-of-type {
  margin-top: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(245, 200, 66, 0.3);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: none;
  margin-bottom: 0;
}

.card-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.card-label.green {
  background: rgba(46, 204, 113, 0.15);
  color: var(--green);
}

.card-label.red {
  background: rgba(232, 37, 58, 0.15);
  color: var(--red);
}

.card-positive {
  border-color: rgba(46, 204, 113, 0.2);
}

.card-negative {
  border-color: rgba(232, 37, 58, 0.2);
}

.faq-section h2 {
  margin-bottom: 8px;
}

.faq-section > p {
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: background 0.15s;
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-card-alt);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-top: -4px;
}

.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--bg-dark);
  padding: 0 24px;
}

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

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: none;
  margin-bottom: 0;
}

.summary-section h2 {
  margin-bottom: 16px;
}

.final-cta {
  margin-top: 40px;
  text-align: center;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: none;
  text-align: center;
}

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: var(--section-gap);
  padding: 48px 20px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-links span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links span:hover {
  color: var(--gold);
}

.footer-disclaimer {
  max-width: 680px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  :root {
    --section-gap: 48px;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero-section {
    padding: 48px 20px 56px;
  }

  .hero-bg-gfx {
    opacity: 0.5;
  }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .stat-item {
    padding: 0 24px 0 0;
    margin-bottom: 16px;
  }

  .stat-divider {
    margin: 0 24px 0 0;
  }

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

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

  .info-table th {
    width: 130px;
    font-size: 0.75rem;
    padding: 12px 14px;
  }

  .info-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

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

  .faq-question {
    font-size: 0.88rem;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-toggle:checked ~ .faq-answer {
    padding: 16px 18px;
  }

  .mid-banner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .stat-item {
    padding: 0 16px 0 0;
  }

  .stat-divider {
    margin: 0 16px 0 0;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
