:root {
  --bg: #0a0a0a;
  --panel: #151515;
  --panel2: #1d1d1d;
  --gold: #d4af37;
  --goldSoft: #f2df9b;
  --text: #f5f0dc;
  --muted: #b6a98a;
  --border: rgba(212, 175, 55, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background: linear-gradient(180deg, #080808 0%, #111 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--goldSoft);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--goldSoft);
  background: rgba(212, 175, 55, 0.08);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--goldSoft);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

.hero {
  padding: 72px 0 48px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  color: var(--goldSoft);
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin: 0 0 32px;
}

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

.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.card h2 {
  margin: 0 0 10px;
  color: var(--goldSoft);
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--goldSoft);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: none;
}

.prophecy {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
}

.prophecy .pulse,
.pulse {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, #7d5b1d 55%, transparent 60%);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  animation: pulse 2s infinite;
  margin: 0 auto 20px;
}

.prophecy .pulse {
  margin: 0 auto 20px;
}

.pulse {
  margin-bottom: 18px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
  70% { box-shadow: 0 0 0 24px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.prophecy h2 {
  margin: 0 0 10px;
  color: var(--goldSoft);
  font-size: 1.8rem;
}

.prophecy p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.prophecy .btn.playing {
  background: #a88b2a;
}

.audio-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.4em;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  margin-top: 48px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-header {
  padding: 56px 0 24px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 12px;
  color: var(--goldSoft);
}

.form-card {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--goldSoft);
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.form-note a {
  color: var(--goldSoft);
}

.plan-card {
  text-align: center;
}

.plan-price {
  font-size: 2rem;
  color: var(--gold);
  margin: 12px 0;
  font-weight: 700;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.plan-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.content-page h2 {
  color: var(--goldSoft);
  margin-top: 32px;
}

.content-page p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .navbar .container {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

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