:root {
  --bg: #08090c;
  --bg-card: #12141c;
  --bg-elevated: #1a1d28;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --blue: #3b82f6;
  --text: #f5f5f7;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

.container { width: min(1120px, 92vw); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 12, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo img { width: 40px; height: 40px; border-radius: 10px; }

.nav { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.nav a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--gold); opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #b8942e);
  color: #0a0b0e;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35); opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Sections */
section { padding: 56px 0; }

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Feature list */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.feature-visual .pill {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #93c5fd;
  width: fit-content;
}

.feature-content h2 { font-size: 1.5rem; margin-bottom: 12px; }
.feature-content p { color: var(--muted); margin-bottom: 16px; }
.feature-content ul { list-style: none; }
.feature-content li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}
.feature-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
}

.shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s;
}

.shot:hover { transform: translateY(-4px); }

.shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Legal / prose */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.page-hero h1 { font-size: 2rem; margin-bottom: 8px; }
.page-hero .meta { color: var(--muted); font-size: 0.9rem; }

.prose { max-width: 780px; margin: 0 auto; padding-bottom: 64px; }
.prose h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--gold);
  padding-top: 8px;
}
.prose h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 520px;
  margin: 24px auto;
}

.contact-box a { font-size: 1.1rem; font-weight: 600; }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 0 24px;
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 20px;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 { font-size: 0.85rem; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.05em; }
.footer-grid a, .footer-grid p { display: block; color: var(--muted); font-size: 0.88rem; margin-bottom: 8px; }

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

@media (max-width: 768px) {
  .nav { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
}
