/* mylatinum — light theme (palette from the light Ferengi image) */
:root {
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --soft: #f7f5ef;
  --line: #e8e2d2;
  --card: #ffffff;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.brand-mark { color: var(--gold); }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav nav a:hover { color: var(--gold-dark); }

/* Buttons */
.btn {
  display: inline-block; padding: 10px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all 0.15s ease;
}
.btn-primary { background: var(--gold); color: #1a1a1a; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* Hero */
.hero { padding: 88px 0 72px; background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.hero-copy { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hero h1 { font-size: 48px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; font-weight: 800; }
.hero .tagline { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.hero-note { font-size: 14px; color: var(--muted); }
.hero-art { text-align: center; }
.hero-img { max-width: 100%; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.12); }

/* Sections */
section { padding: 80px 0; }
section h2 { font-size: 36px; text-align: center; letter-spacing: -0.02em; margin-bottom: 12px; font-weight: 800; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 48px; }

/* Social proof */
.proof { padding: 48px 0; background: #fff; border-bottom: 1px solid var(--line); }
.proof-label { text-align: center; color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 32px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-size: 40px; font-weight: 800; color: var(--gold-dark); }
.stat-cap { color: var(--muted); font-size: 14px; }

/* Features */
.features { background: #fff; border-bottom: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 28px; background: var(--card); transition: box-shadow 0.15s ease, transform 0.15s ease; }
.card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.card p { color: var(--muted); font-size: 15px; }

/* Testimonials */
.testimonials { background: var(--soft); border-bottom: 1px solid var(--line); }
.quote { border: 1px solid var(--line); border-radius: 12px; padding: 28px; background: #fff; }
.quote p { font-size: 16px; margin-bottom: 20px; }
.quote-by strong { display: block; font-size: 15px; }
.quote-by span { color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing { background: #fff; border-bottom: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: 12px; padding: 32px; background: var(--card); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--gold); box-shadow: 0 12px 32px rgba(212,175,55,0.15); }
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.price-per { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.price-card li { padding: 6px 0; color: var(--muted); font-size: 15px; }
.price-card li::before { content: "✓ "; color: var(--gold-dark); font-weight: 700; }
.price-card .btn { text-align: center; }

/* FAQ */
.faq { background: var(--soft); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 10px; background: #fff; margin-bottom: 12px; padding: 0 20px; }
.faq-list summary { cursor: pointer; font-weight: 600; padding: 18px 0; font-size: 16px; }
.faq-list details p { padding: 0 0 18px; color: var(--muted); }

/* Contact */
.contact { text-align: center; background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.contact p { color: var(--muted); margin-bottom: 24px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 24px 0; background: #fff; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; }
.muted { color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .grid, .pricing-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  .nav { flex-direction: column; gap: 12px; }
}
