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

:root {
  --bg: #000000;
  --surface: #0e0e0e;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-secondary: #a8a8a8;
  --primary: #ffffff;
  --primary-hover: #cccccc;
  --accent: #ffffff;
  --danger: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* Disclaimer banner */
.disclaimer {
  max-width: 960px;
  margin: 0 auto 32px;
  padding: 0 24px;
}

.disclaimer-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid #ffffff;
  border-radius: 10px;
  padding: 18px 22px;
}

.disclaimer-inner h3 {
  color: var(--danger);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-inner p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.disclaimer-inner p + p {
  margin-top: 10px;
}

/* Navigation */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: none;
  color: var(--text);
}

.nav-brand img {
  height: 32px;
  width: 32px;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--border);
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #1c1c1c 0%, #0c0c0c 55%, var(--bg) 100%);
  color: #ffffff;
}

.hero h1,
.hero .subtitle,
.hero .tagline {
  color: #ffffff;
}

.hero img {
  height: 72px;
  width: 72px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero .tagline {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero .badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 20px;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.hero .badge svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

/* Features */
.features {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.feature-card .icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Store copy section */
.store-copy {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.store-copy-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.store-copy h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.store-copy .store-note {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.copy-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 16px;
}

.copy-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.copy-text {
  color: var(--text);
  line-height: 1.7;
}

.copy-text + .copy-text,
.copy-block + .copy-text {
  margin-top: 12px;
}

.copy-list {
  padding-left: 20px;
  margin: 10px 0 0;
}

.copy-list li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Page content */
.page-header {
  text-align: center;
  padding: 56px 24px 32px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0c0c0c 60%, var(--bg) 100%);
  color: #ffffff;
}

.page-header h1 {
  color: #ffffff;
}

.page-header .updated {
  color: rgba(255, 255, 255, 0.78);
}

.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header .updated {
  font-size: 14px;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 8px;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.content p {
  margin-bottom: 16px;
}

.content ul,
.content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 8px;
}

.content strong {
  color: var(--text);
}

.content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  margin-bottom: 0;
}

/* Contact form / info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Footer */
.footer {
  margin-top: auto;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08);
  padding: 42px 24px 24px;
  font-size: 15px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 0;
  text-align: left;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 400;
  color: #c4ccdb;
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer-section li {
  margin-bottom: 0;
}

.footer-section a {
  color: #c4ccdb;
  font-size: 1em;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(196, 204, 219, 0.6);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-section a:hover {
  color: #f2f6ff;
  text-decoration-color: rgba(242, 246, 255, 0.85);
}

.footer-note {
  border-top: 1px solid rgba(138, 148, 168, 0.25);
  padding-top: 10px;
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer p {
  text-align: left;
  color: var(--text-secondary);
  font-size: 1em;
}

/* Mobile */
@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 8px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero h1 {
    font-size: 30px;
  }

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

  .footer {
    padding: 44px 20px 24px;
  }

  .footer-sections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
  }

  .footer-section h4 {
    font-size: 1em;
    margin-bottom: 6px;
  }
}

@media (max-width: 420px) {
  .footer-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }
}
