:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text-soft: #a1a1aa;
  --primary: #ff6a00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: rgba(0,0,0,0.8);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  height: 40px;
}

.site-nav {
  display: flex;
  gap: 25px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: bold;
}

.site-nav a:hover {
  color: var(--primary);
}

/* HERO */

.hero-premium {
  padding: 100px 0;
  text-align: center;
}

.hero-premium h1 {
  font-size: 48px;
}

.hero-premium span {
  color: var(--primary);
}

.hero-premium p {
  color: var(--text-soft);
  margin-top: 10px;
}

/* PRODUCTS */

.products-premium {
  padding: 80px 0;
  text-align: center;
}

/* TRUST */

.trust-section {
  padding: 80px 0;
  text-align: center;
}

/* VIDEO */

.content-hub-section {
  padding: 80px 0;
  text-align: center;
}

/* FAQ + NEWS */

.faq-news-section {
  padding: 80px 0;
  text-align: center;
}

/* CTA */

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

/* FOOTER */

.site-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}