:root {
  --bg: #e6dbc9;
  --card: #f4eadd;
  --card-strong: #fff8ed;
  --charcoal: #241d16;
  --charcoal-soft: #43372c;
  --muted: #5c4f44;
  --clay: #b19a84;
  --blue: #2563d9;
  --blue-soft: #5ea8ff;
  --gold: #ffc43d;
  --gold-deep: #b66f13;
  --coral: #f28c78;
  --green: #4b9c65;
  --ring: rgba(92, 68, 46, 0.14);
  --body-bg:
    linear-gradient(115deg, rgba(255, 196, 61, 0.16) 0%, transparent 34%),
    linear-gradient(180deg, #efe4d4 0%, var(--bg) 46%, #dbcebc 100%);
  --topbar-bg: rgba(244, 234, 221, 0.92);
  --topbar-border: rgba(92, 68, 46, 0.12);
  --surface-border: rgba(92, 68, 46, 0.14);
  --surface-bg: linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(244, 234, 221, 0.82));
  --hero-proof-bg:
    linear-gradient(145deg, rgba(36, 29, 22, 0.98) 0%, rgba(30, 25, 20, 0.98) 62%, rgba(56, 43, 31, 0.98) 100%),
    var(--charcoal);
  --hero-proof-border: rgba(255, 248, 237, 0.08);
  --hero-proof-text: #fff8ed;
  --hero-proof-muted: rgba(255, 248, 237, 0.84);
  --hero-proof-glow: linear-gradient(135deg, rgba(255, 196, 61, 0.15), transparent 42%);
  --cta-bg:
    linear-gradient(145deg, rgba(255, 196, 61, 0.35), rgba(94, 168, 255, 0.15) 58%, rgba(255, 248, 237, 0.62)),
    var(--card);
  --button-secondary-bg: rgba(255, 248, 237, 0.78);
  --footer-border: rgba(92, 68, 46, 0.16);
  --shadow: 0 24px 48px rgba(67, 47, 28, 0.13), 0 7px 16px rgba(67, 47, 28, 0.07), inset 1px 1px 0 rgba(255, 255, 255, 0.42);
  --shadow-soft: 0 12px 28px rgba(92, 68, 46, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.34);
  --shadow-pressed: inset 3px 3px 8px rgba(92, 68, 46, 0.09), inset -2px -2px 6px rgba(255, 250, 242, 0.44);
  color-scheme: light;
}

.dark {
  --bg: #171613;
  --card: #24221d;
  --card-strong: #2d2a24;
  --charcoal: #f7f1e3;
  --charcoal-soft: #d8d0c0;
  --muted: #a8a095;
  --clay: #3a352c;
  --blue: #5ea8ff;
  --blue-soft: #5ea8ff;
  --gold: #ffc43d;
  --gold-deep: #ffd75a;
  --coral: #f28c78;
  --green: #7acb8a;
  --ring: rgba(255, 255, 255, 0.08);
  --body-bg:
    linear-gradient(115deg, rgba(255, 196, 61, 0.08) 0%, transparent 36%),
    linear-gradient(180deg, #1f1d19 0%, #171613 48%, #12110f 100%);
  --topbar-bg: rgba(36, 34, 29, 0.9);
  --topbar-border: rgba(255, 255, 255, 0.07);
  --surface-border: rgba(255, 255, 255, 0.07);
  --surface-bg: linear-gradient(145deg, rgba(42, 39, 33, 0.94), rgba(31, 29, 25, 0.92));
  --hero-proof-bg:
    linear-gradient(145deg, rgba(18, 17, 15, 0.98) 0%, rgba(36, 34, 29, 0.98) 64%, rgba(23, 22, 19, 0.98) 100%),
    #171613;
  --hero-proof-border: rgba(255, 255, 255, 0.08);
  --hero-proof-text: #fff7ea;
  --hero-proof-muted: rgba(255, 247, 234, 0.78);
  --hero-proof-glow: linear-gradient(135deg, rgba(255, 196, 61, 0.12), transparent 44%);
  --cta-bg:
    linear-gradient(145deg, rgba(255, 196, 61, 0.16), rgba(94, 168, 255, 0.12) 58%, rgba(255, 255, 255, 0.03)),
    var(--card);
  --button-secondary-bg: rgba(255, 255, 255, 0.05);
  --footer-border: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.38), 0 7px 16px rgba(0, 0, 0, 0.2), inset 1px 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.28), inset 1px 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-pressed: inset 3px 3px 8px rgba(0, 0, 0, 0.34), inset -2px -2px 6px rgba(255, 255, 255, 0.03);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--body-bg);
  color: var(--charcoal);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--topbar-border);
  background: var(--topbar-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(67, 47, 28, 0.05);
}

.topbar-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links a {
  border-radius: 999px;
  padding: 6px 2px;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.hero {
  padding: 68px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.eyebrow,
.meta-label {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Outfit, Poppins, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 6.2vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
}

.lead {
  max-width: 710px;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 600;
}

.answer-card,
.proof-card,
.faq-card,
.link-card {
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface-bg);
  box-shadow: var(--shadow);
}

.hero-proof {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--hero-proof-border);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--hero-proof-bg);
  color: var(--hero-proof-text);
  box-shadow: 0 28px 56px rgba(36, 29, 22, 0.22), inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--hero-proof-glow);
}

.hero-proof img {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.hero-proof strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  color: var(--gold);
  font-family: Outfit, Poppins, sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.hero-proof p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--hero-proof-muted);
  font-size: 1.02rem;
  font-weight: 700;
}

.section {
  padding: 30px 0;
}

.answer-card {
  padding: clamp(24px, 5vw, 42px);
}

.answer-card p,
.answer-card li {
  color: var(--charcoal-soft);
  font-weight: 500;
}

.answer-card p:first-of-type {
  color: var(--charcoal);
  font-size: 1.14rem;
  font-weight: 700;
}

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

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

.proof-card,
.faq-card,
.link-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.proof-card::before,
.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue-soft));
}

.proof-card .stat {
  position: relative;
  display: block;
  color: var(--gold-deep);
  font-family: Outfit, Poppins, sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.proof-card p,
.faq-card p,
.link-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card dt {
  color: var(--charcoal);
  font-weight: 900;
}

.faq-card dd {
  margin: 10px 0 0;
  color: var(--charcoal-soft);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 38px auto 58px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  background: var(--cta-bg);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  margin: 0;
  color: var(--charcoal-soft);
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 24px rgba(37, 99, 217, 0.22), inset 1px 1px 0 rgba(255, 255, 255, 0.2);
}

.button.secondary {
  border: 1px solid var(--surface-border);
  background: var(--button-secondary-bg);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-pressed);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.link-card {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--footer-border);
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer a {
  font-weight: 900;
}

@media (max-width: 820px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .related-links,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: stretch;
    margin-top: 28px;
  }

  .button-row,
  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .link-card {
    transition: none;
  }

  .link-card:hover {
    transform: none;
  }
}
