@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --bg: #1A1208;
  --bg-deep: #120D06;
  --surface: #2A2015;
  --amber: #E8A838;
  --amber-glow: #FF9F1C;
  --amber-soft: rgba(232, 168, 56, 0.25);
  --text-light: #D4C8B0;
  --text-muted: #8A7E6E;
  --text-whisper: #6B6259;
  --divider: rgba(255, 255, 255, 0.03);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-light);
  font-family: var(--font-serif);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--amber-glow);
}

/* ─── Navigation ─── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-light);
}

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

.nav-brand span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

/* ─── Layout ─── */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid var(--divider);
}

/* ─── Hero ─── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-flame {
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 24px rgba(232, 168, 56, 0.35));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.hero .description {
  max-width: 480px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── Features ─── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(232, 168, 56, 0.15);
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Privacy Callout ─── */

.privacy-callout {
  text-align: center;
  padding: 3rem 2rem;
}

.privacy-callout .highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.privacy-callout p {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ─── CTA ─── */

.cta-section {
  text-align: center;
  padding: 3rem 0 5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--amber-glow);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(232, 168, 56, 0.4);
}

.btn-outline:hover {
  border-color: var(--amber);
  background: rgba(232, 168, 56, 0.08);
  transform: translateY(-1px);
}

/* ─── Page Header ─── */

.page-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

/* ─── Content Sections (Support / Privacy) ─── */

.content-section {
  padding: 2rem 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--divider);
}

.content-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.content-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

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

.content-section p,
.content-section li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-section ul {
  list-style: none;
  padding-left: 1rem;
}

.content-section ul li::before {
  content: '·';
  color: var(--amber);
  font-weight: 700;
  margin-right: 0.6rem;
}

.content-section p + p {
  margin-top: 0.75rem;
}

/* ─── FAQ ─── */

.faq-item {
  padding: 1.5rem 0;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--divider);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── Contact Box ─── */

.contact-box {
  background: var(--surface);
  border: 1px solid rgba(232, 168, 56, 0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.contact-box h2 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.contact-box a {
  font-size: 1.05rem;
  font-weight: 700;
}

/* ─── Footer ─── */

.footer {
  border-top: 1px solid var(--divider);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.footer-brand {
  font-size: 0.82rem;
  color: var(--text-whisper);
  letter-spacing: 1px;
}

/* ─── Responsive ─── */

@media (max-width: 640px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero {
    padding: 4rem 1.25rem 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .hero .tagline {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  .page-header {
    padding: 3rem 1.25rem 1.5rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }
}
