:root {
  --ink: #17201d;
  --ink-soft: #3d4a44;
  --paper: #f7f4ef;
  --paper-strong: #fffdf8;
  --sage: #dce8df;
  --forest: #21483d;
  --cedar: #9f5a43;
  --brass: #c6933c;
  --clay: #e4b29d;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 18px 48px rgba(23, 32, 29, 0.16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  background: linear-gradient(180deg, rgba(12, 18, 16, 0.72), rgba(12, 18, 16, 0));
}

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

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.16);
}

.nav {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.92rem;
  color: rgba(255, 253, 248, 0.86);
}

.nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #13211d;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hosted-hero.png");
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.9) 0%, rgba(12, 18, 16, 0.75) 34%, rgba(12, 18, 16, 0.28) 67%, rgba(12, 18, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 18, 16, 0.35), rgba(12, 18, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 96px);
  padding-top: 78px;
  color: var(--paper-strong);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.subtitle {
  margin: 26px 0 0;
  max-width: 610px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.42;
  color: rgba(255, 253, 248, 0.92);
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--brass);
  color: #1b1710;
}

.button-secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.08);
}

.intro-band {
  background: var(--forest);
  color: var(--paper-strong);
  padding: clamp(32px, 6vw, 76px) clamp(18px, 6vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.75;
  font-size: 1.04rem;
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 6vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.section-copy p:not(.section-kicker),
.checklist-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.stat-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-panel > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 110px;
  padding: 24px;
  background: var(--paper-strong);
}

.stat {
  color: var(--cedar);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.stat-label {
  color: var(--ink-soft);
  line-height: 1.45;
}

.muted-section {
  background: var(--sage);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.module-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.module,
.proof-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(23, 32, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.module span {
  display: block;
  margin-bottom: 22px;
  color: var(--cedar);
  font-weight: 820;
}

.module p,
.proof-grid p,
.faq-list p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.checklist-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.checklist-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cedar);
  background: var(--clay);
}

.signup-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.signup-form h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.signup-form label {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 740;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 32, 29, 0.22);
  border-radius: 6px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.signup-form input:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(33, 72, 61, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note,
.form-success {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-success {
  min-height: 22px;
  color: var(--forest);
  font-weight: 760;
}

.proof-section {
  background: #f0e8dc;
}

.proof-grid article {
  min-height: 178px;
  background: rgba(255, 253, 248, 0.88);
}

.faq-section {
  max-width: 960px;
  margin: 0 auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 780;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 72px);
  color: rgba(255, 253, 248, 0.76);
  background: #13211d;
}

.site-footer p {
  margin: 4px 0 0;
  line-height: 1.5;
}

.article-header {
  padding: 138px clamp(18px, 6vw, 72px) 70px;
  color: var(--paper-strong);
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.92), rgba(12, 18, 16, 0.74)),
    url("assets/hosted-hero.png") center / cover;
}

.article-header-inner,
.article-body {
  max-width: 900px;
  margin: 0 auto;
}

.article-header h1 {
  max-width: 860px;
}

.article-header p {
  max-width: 740px;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.72;
  font-size: 1.08rem;
}

.article-body {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 42px);
  color: var(--ink-soft);
  line-height: 1.74;
}

.article-body h2 {
  margin-top: 48px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-body h3 {
  margin-top: 32px;
  color: var(--ink);
}

.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
}

.article-body li {
  margin: 10px 0;
}

.callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 5px solid var(--cedar);
  background: var(--paper-strong);
}

.checklist-doc {
  max-width: 980px;
}

.checklist-doc section {
  margin-top: 44px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.checklist-doc h2 {
  margin-top: 0;
}

.checklist-doc li {
  list-style: square;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 18, 16, 0.91) 0%, rgba(12, 18, 16, 0.73) 56%, rgba(12, 18, 16, 0.18) 100%),
      linear-gradient(0deg, rgba(12, 18, 16, 0.42), rgba(12, 18, 16, 0));
  }

  .hero-content {
    width: min(680px, calc(100% - 32px));
    margin: 0 auto;
  }

  .intro-grid,
  .split-section,
  .checklist-section {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding: 126px 0 76px;
  }

  h1 {
    font-size: clamp(2.58rem, 15vw, 4.3rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stat-panel > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }
}
