@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --gold: #D6AA1D;
  --gold-dim: rgba(214,170,29,0.15);
  --gold-border: rgba(214,170,29,0.25);
  --black: #0A0A0A;
  --card: #141414;
  --card2: #1a1a1a;
  --text: #F5F1E8;
  --muted: #888;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 5%; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 3px; color: var(--gold); text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gold); color: var(--black); padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }
.nav-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ── HERO ── */
.hero { min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 5%; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(214,170,29,0.08) 0%, transparent 65%); pointer-events: none; }
.hero-badge { display: inline-block; border: 1px solid var(--gold-border); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; padding: 6px 16px; border-radius: 20px; margin-bottom: 28px; text-transform: uppercase; }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(52px, 8vw, 96px); line-height: 1.05; margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--black); padding: 16px 32px; border-radius: 8px; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--gold-border); color: var(--text); padding: 16px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-scroll::after { content: ''; width: 1px; height: 32px; background: linear-gradient(to bottom, var(--muted), transparent); }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.1; margin-bottom: 20px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.7; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial blockquote { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: 14px; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-handle { font-size: 12px; color: var(--muted); }

/* ── DOWNLOAD CTA ── */
.download-cta { background: var(--card); border: 1px solid var(--gold-border); border-radius: 24px; padding: 80px 40px; text-align: center; }
.download-cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.download-cta p { color: var(--muted); font-size: 17px; margin-bottom: 40px; }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badge { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 24px; display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); transition: border-color 0.2s; }
.store-badge:hover { border-color: var(--gold-border); }
.store-badge-icon { font-size: 26px; }
.store-badge-text small { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.store-badge-text strong { font-size: 16px; font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--card); border-top: 1px solid var(--border); padding: 60px 5% 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-weight: 800; font-size: 14px; letter-spacing: 3px; color: var(--gold); }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── PAGE HEADER ── */
.page-hero { padding: 100px 5% 64px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ── PROSE ── */
.prose { max-width: 800px; margin: 0 auto; padding: 64px 5%; }
.prose h2 { font-size: 24px; font-weight: 700; margin: 48px 0 16px; color: var(--gold); }
.prose h3 { font-size: 18px; font-weight: 600; margin: 32px 0 12px; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.prose a { color: var(--gold); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; text-decoration: none; transition: border-color 0.2s; }
.contact-card:hover { border-color: var(--gold-border); }
.contact-card-icon { width: 48px; height: 48px; background: var(--gold-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.contact-card p { font-size: 13px; color: var(--muted); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.contact-form h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--black); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 15px; font-family: 'Inter', sans-serif; padding: 12px 16px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-border); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 16px; border-radius: 8px; font-size: 14px; font-weight: 800; letter-spacing: 1px; cursor: pointer; transition: opacity 0.2s; }
.form-submit:hover { opacity: 0.88; }

/* ── ABOUT ── */
.about-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 48px 0; }
.about-stat { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; text-align: center; }
.about-stat .num { font-family: 'DM Serif Display', serif; font-size: 44px; color: var(--gold); display: block; }
.about-stat p { font-size: 13px; color: var(--muted); margin-top: 6px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar { border-left: 2px solid var(--gold); padding: 20px 24px; background: var(--card); border-radius: 0 12px 12px 0; }
.pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── DIVIDER ── */
.divider { width: 40px; height: 2px; background: var(--gold); margin: 20px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 5%; }
  .hero { min-height: 80vh; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
}
