:root {
  color-scheme: dark;
  --bg: #1b1717;
  --bg-soft: #241f1f;
  --bg-card: #2b2424;
  --gold: #caa24a;
  --gold-bright: #f2d27a;
  --red: #c2352b;
  --red-dark: #7f1410;
  --text: #f6f2ea;
  --muted: #c2b7a6;
  --line: #3b3232;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #2f2626, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(24, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-text span:first-child {
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.brand-text span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #241b0a;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 34px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 999px;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1.6rem, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.button.primary {
  background: linear-gradient(120deg, var(--red), var(--gold));
  color: #160f0f;
}

.button.ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: linear-gradient(160deg, #2c2525, #1f1a1a);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.card-header p {
  color: var(--muted);
  margin-bottom: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

input {
  background: #191515;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}

.fine-print {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-header {
  max-width: 620px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(2rem, 1.5vw + 1.4rem, 2.8rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--gold-bright);
}

.card ul {
  list-style: none;
  margin-top: 16px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.card ul li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.highlight {
  background: linear-gradient(140deg, rgba(202, 162, 74, 0.08), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.rate-grid > div {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
}

.rate {
  font-size: 1.6rem;
  color: var(--gold-bright);
}

.rate span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.rate-note {
  grid-column: 1 / -1;
  padding: 14px 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 22px;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
}

.step span {
  color: var(--gold);
  font-weight: 600;
}

.step h3 {
  margin-top: 6px;
  margin-bottom: 8px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.insight-grid article {
  background: linear-gradient(160deg, #2d2626, #1d1717);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
}

.insight-grid a {
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-top: 14px;
}

.proof-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
}

.proof-card h2 {
  margin-bottom: 14px;
}

.attribution {
  margin-top: 16px;
  color: var(--muted);
}

.proof-stats {
  display: grid;
  gap: 16px;
}

.proof-stats strong {
  font-size: 1.5rem;
  color: var(--gold-bright);
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.media-tile {
  background: linear-gradient(130deg, #2b2424, #1b1616);
  border: 1px dashed var(--line);
  border-radius: 20px;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.media-tile.wide {
  min-height: 220px;
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bio-photo {
  background: linear-gradient(145deg, #2a2222, #171212);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  border: 1px dashed var(--line);
  min-height: 200px;
}

.bio-title {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.bio-actions {
  margin-top: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.review-quote {
  font-size: 1rem;
  color: var(--text);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

details {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.cta {
  padding-bottom: 100px;
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  background: linear-gradient(140deg, #2e2525, #1b1616);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-form {
  display: grid;
  gap: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 24px;
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--muted);
}

.footer h3,
.footer h4 {
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: #8b7f6d;
}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-direction: column;
    background: var(--bg-soft);
    padding: 16px;
    border-radius: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 72px;
  }

  .nav-cta {
    display: none;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }
}
