:root {
  --bg: #180c05;
  --bg-soft: #34190b;
  --panel: rgba(53, 27, 12, 0.9);
  --panel-strong: rgba(66, 33, 14, 0.95);
  --line: rgba(239, 198, 106, 0.18);
  --gold: #efc66a;
  --gold-strong: #f5d88f;
  --cream: #f8ecd0;
  --muted: #d9c4a0;
  --text: #fff6e6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(218, 150, 57, 0.16), transparent 28%),
    radial-gradient(circle at 30% 20%, rgba(165, 92, 38, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-strong);
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.hero-panel,
.page-panel {
  background:
    linear-gradient(180deg, rgba(88, 45, 19, 0.92), rgba(42, 20, 9, 0.96));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 216, 143, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(189, 124, 53, 0.12), transparent 28%);
  pointer-events: none;
}

.topbar,
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 198, 106, 0.1);
  border: 1px solid rgba(239, 198, 106, 0.16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-sub {
  color: rgba(248, 236, 208, 0.72);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(248, 236, 208, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(239, 198, 106, 0.16);
  background: rgba(239, 198, 106, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-title,
.page-title,
.section-heading h2,
.info-card h2,
.app-card h3,
.faq-item h3,
.feature-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-title {
  margin: 16px 0 8px;
  font-size: clamp(50px, 9vw, 84px);
  line-height: 0.92;
  color: var(--text);
}

.hero-lead,
.page-lead,
.info-card p,
.feature-list li,
.clean-list li,
.faq-item p,
.app-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.btn-primary {
  color: #261403;
  background: linear-gradient(135deg, #f4d688, #d49a44);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(27, 14, 6, 0.66);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stat-card,
.feature-panel,
.info-card,
.app-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(26, 13, 6, 0.38);
  border-radius: 24px;
}

.stat-card {
  padding: 16px;
}

.stat-label,
.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--text);
  font-size: 16px;
}

.feature-panel {
  padding: 22px;
  align-self: start;
}

.feature-panel h2,
.page-title {
  margin: 16px 0 12px;
  font-size: clamp(36px, 7vw, 54px);
  line-height: 0.96;
}

.feature-list,
.clean-list {
  margin: 0;
  padding-left: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.info-card {
  padding: 22px;
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 0.95;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 700;
}

.app-section,
.faq-block {
  margin-top: 28px;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 0.96;
}

.app-card {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 28px;
}

.faq-item {
  padding: 20px 22px;
  margin-bottom: 12px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.back-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.page-lead {
  max-width: 760px;
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .page-header,
  .topbar,
  .app-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 18px;
  }

  .hero-panel,
  .page-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-title {
    font-size: 46px;
  }

  .feature-panel h2,
  .page-title,
  .section-heading h2 {
    font-size: 34px;
  }

  .info-card h2 {
    font-size: 28px;
  }
}
