:root {
  --bg-dark: #28282b;
  --bg-card: #333336;
  --bg-card-hover: #3d3d40;
  --accent-gold: #ffcc00;
  --accent-gold-hover: #e6b800;
  --text-white: #ffffff;
  --text-muted: #8e8e93;
  --border-color: #424245;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Nav */
header {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(40, 40, 43, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--text-white);
}

/* Hero Section */
.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(255, 204, 0, 0.12);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 204, 0, 0.3);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 12px;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.cta-button:hover {
  background-color: var(--accent-gold-hover);
  color: #000000;
  transform: translateY(-2px);
}

/* Feature Grid */
.features {
  padding: 64px 0 96px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Policy Content Layout */
.doc-content {
  padding: 64px 0;
  max-width: 800px;
  margin: 0 auto;
}

.doc-content h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.doc-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.doc-section {
  margin-bottom: 36px;
}

.doc-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.doc-section p, .doc-section ul {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.doc-section ul {
  padding-left: 24px;
}

.doc-section li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
  margin-top: 64px;
  background-color: #212124;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
