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

:root {
  --bg: #0d1b2a;
  --bg-alt: #10233a;
  --text: #e9edf2;
  --text-secondary: #9fb0c3;
  --text-muted: #8a9bb0;
  --accent: #d4af37;
  --accent-hover: #e6c564;
  --cta: #d4af37;
  --cta-hover: #e6c564;
  --border: #24394f;
  --card-bg: #14263d;
  --radius: 16px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h2 { text-align: center; font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 12px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(13,27,42,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em; color: #005090; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent); overflow: hidden; flex-shrink: 0; background: var(--bg); }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-accent { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link { font-size: 0.85rem; font-weight: 600; color: var(--text); padding: 7px 14px; border: 1px solid var(--border); border-radius: 8px; }
.nav-link:hover { border-color: var(--accent); color: var(--accent); }
.currency { display: flex; align-items: center; gap: 6px; }
.currency-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-right: 2px; }
.curr-btn { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; }
.curr-btn.active { background: var(--accent); border-color: var(--accent); color: #0d1b2a; }

/* hero */
.hero { text-align: center; padding: 96px 24px 72px; background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.14), transparent 55%), #0d1b2a; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.2rem); max-width: 720px; margin: 0 auto 16px; }
.hl { color: var(--accent); }
.hero-sub { font-size: 1.12rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 14px 30px; border-radius: 12px; background: var(--cta); color: #0d1b2a; font-weight: 700; }
.btn-primary:hover { background: var(--cta-hover); }
.btn-ghost { display: inline-block; padding: 14px 30px; border-radius: 12px; border: 1px solid var(--border); color: var(--text); font-weight: 700; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* grid */
.sub { text-align: center; color: var(--text-secondary); margin-bottom: 32px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card img { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: top; border-bottom: 1px solid var(--border); }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 14px; }
.price { font-size: 1.8rem; font-weight: 900; margin-bottom: 14px; }
.curr-sym { font-size: 1rem; vertical-align: super; }
.paypal-container { margin-top: auto; min-height: 42px; }

/* bundle */
.bundle { text-align: center; max-width: 600px; margin: 0 auto; background: var(--card-bg); border: 2px solid var(--accent); border-radius: var(--radius); padding: 40px 30px; }
.bundle h2 { margin-bottom: 8px; }
.bundle p { color: var(--text-secondary); margin-bottom: 16px; }
.bundle-price { font-size: 2.4rem; }
.bundle .note { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; margin-bottom: 0; }

/* FAQ */
.faq { max-width: 720px; margin: 24px auto 0; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 18px 22px; }
.faq-item p { padding: 0 22px 18px; color: var(--text-secondary); font-size: 0.92rem; }

/* footer */
.footer { text-align: center; padding: 28px 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 640px) {
  .nav-link { display: none; }
  .currency-label { display: none; }
}
