:root {
  --bg: #14100c;
  --bg-alt: #1e1811;
  --card: #201a13;
  --border: #3a2a18;
  --gold: #e8a33d;
  --gold-soft: #f4c065;
  --terracotta: #c1652f;
  --text: #f5efe6;
  --sub: #b3a28a;
  --success: #8fb56a;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1207;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 16, 12, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  color: var(--text);
}
.brand img {
  border-radius: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links a {
  text-decoration: none;
  color: var(--sub);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  white-space: nowrap;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--sub);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--gold);
  color: #1a1207;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}

/* ---- Hero ---- */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 20px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
}

.hero-sub {
  color: var(--sub);
  font-size: 17px;
  margin: 0 0 26px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--sub);
}
.hero-trust li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 800;
}

.hero-visual img {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}

/* ---- Section shared ---- */
main section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 20px;
}

h2 {
  font-size: 30px;
  margin: 0 0 32px;
  font-weight: 800;
  text-align: center;
}

/* ---- Features ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.feature-card p {
  margin: 0;
  color: var(--sub);
  font-size: 14px;
}

/* ---- Screenshots ---- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.screenshot-grid figure {
  margin: 0;
}
.screenshot-grid img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.screenshot-grid figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--sub);
  text-align: center;
}

/* ---- Pricing ---- */
.pricing-sub {
  text-align: center;
  color: var(--sub);
  margin: -20px 0 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.price-badge {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.price-card h3 {
  margin: 0;
  font-size: 18px;
}
.price {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--gold-soft);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--sub);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-card ul li::before {
  content: "✓ ";
  color: var(--success);
}

/* ---- FAQ ---- */
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq p {
  color: var(--sub);
  margin: 10px 0 0;
}

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, #241c14, #1a1410);
  border-radius: 24px;
  padding: 56px 20px;
}
.cta-band h2 {
  margin-bottom: 24px;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  color: var(--sub);
  font-size: 13px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-copy {
  margin-top: 16px;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  h1 {
    font-size: 32px;
  }
  .nav-links {
    display: none;
  }
}
