/* ── Flame Pro DJ marketing site ─────────────────────────────────────────── */
:root {
  --bg:           #0b0d12;
  --bg-elev:      #11141b;
  --bg-card:      #161a23;
  --border:       #232936;
  --border-soft:  #1c212c;
  --text:         #e7eaf0;
  --text-muted:   #98a0ad;
  --text-dim:     #6b7280;
  --accent:       #a855f7;        /* Flame purple */
  --accent-soft:  #2b1850;
  --cyan:         #22d3ee;
  --pink:         #ec4899;
  --green:        #34d399;
  --amber:        #fbbf24;
  --red:          #f87171;
  --shadow:       0 1px 2px rgba(0,0,0,0.4), 0 4px 24px rgba(0,0,0,0.3);
  --radius:       12px;
  --radius-sm:    8px;
  --max-w:        1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga", "kern";
  font-size: 16px;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-soft);
}

.section:last-child { border-bottom: 0; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.site-logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 50% 0%, rgba(168,85,247,0.12), transparent 70%),
    radial-gradient(600px 240px at 50% 100%, rgba(34,211,238,0.06), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #c5cad4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15), 0 8px 24px rgba(168,85,247,0.25);
}
.btn-primary:hover { background: #b770f8; transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-elev); border-color: #313947; }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

/* ── Eyebrow / pills ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pill-green { background: rgba(52,211,153,0.12); color: var(--green); }
.pill-amber { background: rgba(251,191,36,0.12); color: var(--amber); }
.pill-cyan  { background: rgba(34,211,238,0.12); color: var(--cyan); }

/* ── Section heads ───────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  font-weight: 700;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Feature grid ────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s, transform 0.1s;
}
.feature:hover {
  border-color: #313947;
  transform: translateY(-2px);
}
.feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(34,211,238,0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(168,85,247,0.18);
}
.price-card .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price-card .price {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.price-card .price .currency {
  font-size: 24px;
  vertical-align: top;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 2px;
}
.price-card .price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}
.price-card li {
  font-size: 14px;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-card li.dim { color: var(--text-muted); }
.price-card li.dim::before { color: var(--text-dim); }

/* ── Doc page styling (Terms / Privacy / Refund) ─────────────────────────── */
.doc-page {
  max-width: 760px;
  padding: 64px 0 96px;
}
.doc-page h1 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 8px;
}
.doc-page .doc-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.doc-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.doc-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 8px;
  color: var(--text);
}
.doc-page p {
  margin-bottom: 14px;
  color: var(--text);
}
.doc-page ul, .doc-page ol {
  margin: 0 0 14px 24px;
  color: var(--text);
}
.doc-page li { margin-bottom: 6px; }
.doc-page a { color: var(--cyan); }
.doc-page a:hover { text-decoration: underline; }
.doc-page strong { color: #fff; }
.doc-page code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.92em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}
.doc-page hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.doc-page .draft {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 32px;
  color: var(--amber);
  font-size: 14px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 48px 0 32px;
  background: var(--bg-elev);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; }
.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
.site-footer a:hover { color: var(--accent); }
.site-footer .legal {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Misc ────────────────────────────────────────────────────────────────── */
.kbd {
  font-family: "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--cyan);
}
.callout {
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: rgba(168,85,247,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 15px;
  color: var(--text);
}
