/* ===== Reset & Variables ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a2e;
  --bg-light: #22223a;
  --bg-card: #2a2a44;
  --gold: #FFD700;
  --gold-dim: #d4a800;
  --text: #d0d0e0;
  --text-muted: #8888a8;
  --text-heading: #f0f0ff;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1080px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a2e;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.25);
}
.btn-primary:hover {
  background: var(--gold-dim);
  box-shadow: 0 6px 32px rgba(255, 215, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(255, 215, 0, 0.08);
}

.apple-icon { flex-shrink: 0; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  color: var(--gold);
  font-size: 1.2em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-heading);
  opacity: 1;
}

/* ===== Hero ===== */
.hero {
  padding: 160px 0 100px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
}

.hero-desc {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

/* ===== Sections ===== */
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 56px;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.15);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: rgba(255, 215, 0, 0.08);
  border-radius: var(--radius-sm);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}

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

/* ===== How It Works ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-light);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 12px;
  flex-shrink: 0;
}

/* ===== Pricing ===== */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.pricing-card-pro {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

.pro-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 20px;
  border-radius: 50px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-heading);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li::before {
  content: "\2713";
  color: var(--gold);
  margin-right: 10px;
  font-weight: 700;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--text);
  opacity: 1;
}

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

/* ===== Legal / Content Pages ===== */
.page-header {
  padding: 120px 0 40px;
  text-align: center;
}

.page-content {
  padding: 0 0 80px;
}

.page-content .container {
  max-width: 720px;
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-heading);
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin: 28px 0 12px;
}

.page-content p,
.page-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.page-content li {
  margin-bottom: 6px;
}

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

.effective-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
}

/* ===== Support / FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.5;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "\\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

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

.contact-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 520px;
  margin: 56px auto 0;
}

.contact-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .features,
  .how-it-works,
  .pricing {
    padding: 60px 0;
  }

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

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.8rem;
  }

  .nav-links {
    gap: 14px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

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