:root {
  --bg: #fff9f1;
  --bg-soft: #f7efe4;
  --ink: #141312;
  --ink-soft: #5d574f;
  --line: #d7c8b4;
  --brand: #c19a58;
  --brand-ink: #20160a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(28, 20, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(1200px 550px at 90% -15%, #f2d8a8 0%, transparent 60%),
    radial-gradient(800px 460px at -15% 0%, #f8e7c9 0%, transparent 65%),
    var(--bg);
  color: var(--ink);
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(20, 19, 18, 0.12);
  background: rgba(255, 249, 241, 0.88);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.hero {
  padding: 56px 0 30px;
}

.hero.compact {
  padding-top: 48px;
}

.kicker {
  margin: 0;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 12px;
  max-width: 17ch;
  font-size: clamp(2rem, 8vw, 4rem);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

h3 {
  font-size: 1.12rem;
}

.subtitle {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
}

.section,
.proof,
.visual-proof,
.reality-block,
.cta-repeat {
  padding: 28px 0;
}

.soft {
  background: rgba(255, 255, 255, 0.55);
}

.danger-zone {
  background: linear-gradient(180deg, #f8ece9 0%, #f4d8d2 100%);
}

.tension {
  background: linear-gradient(135deg, #1b1917 0%, #2f2a23 100%);
  color: #fff2df;
}

.tension .btn-line {
  border-color: #f6debb;
  color: #f6debb;
}

.cta-stack {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cta-stack.small-gap {
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid #2d78ff;
  outline-offset: 2px;
}

.btn-xl {
  min-height: 56px;
  font-size: 1.04rem;
}

.btn-primary {
  color: var(--brand-ink);
  background: linear-gradient(180deg, #e1bb77 0%, var(--brand) 100%);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border-color: rgba(20, 19, 18, 0.6);
  background: rgba(255, 255, 255, 0.6);
}

.btn-line {
  border-color: rgba(20, 19, 18, 0.28);
  background: transparent;
}

.stats-grid,
.cards-grid,
.two-col,
.form-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.stat-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.stat-card.hot {
  border-color: #bc8d3f;
  background: #fff5e6;
}

.stat-card.muted {
  opacity: 0.9;
}

.stat-number {
  margin: 8px 0 6px;
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.proof-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-figure figcaption {
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.reality-block {
  background: linear-gradient(90deg, #1f1b17 0%, #373028 100%);
  color: #f6e6cc;
}

.model {
  margin: 12px 0;
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.list-tight {
  margin: 10px 0 0;
  padding-left: 20px;
}

.list-tight li {
  margin: 4px 0;
}

.lead-form {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-grid input {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #c8b9a4;
  padding: 10px 12px;
  font: inherit;
  background: #fffefb;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 10px 0 0;
  font-size: 0.94rem;
  color: #184d1f;
}

.site-footer {
  margin-top: 24px;
  background: #191613;
  color: #ecdbc0;
  padding: 22px 0;
}

.footer-row {
  display: grid;
  gap: 6px;
}

@media (min-width: 760px) {
  .section,
  .proof,
  .visual-proof,
  .reality-block,
  .cta-repeat {
    padding: 42px 0;
  }

  .cta-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
