:root {
  --ink: #171411;
  --ink-soft: #413a34;
  --paper: #faf7ef;
  --paper-2: #f0eadf;
  --line: #d8d0c2;
  --red: #cf452b;
  --green: #77983b;
  --blue: #2f6688;
  --gold: #e7b84c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 20, 17, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
  background: rgba(250, 247, 239, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  font-style: italic;
}

.brand-dot {
  color: var(--red);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-nav nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 136px) 0 clamp(56px, 8vw, 96px);
  background:
    linear-gradient(rgba(23, 20, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.eyebrow,
.panel-kicker,
.microcopy,
.artifact-tag {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.1rem;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button.large {
  min-height: 56px;
  margin-top: 28px;
  padding-inline: 24px;
}

.microcopy {
  margin-top: 18px;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.stat-list div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.stat-list dt {
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.stat-list dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.two-col,
.support-grid,
.pricing-grid,
.fit-grid,
.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.plain-copy p,
.day-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.pain-section {
  background: var(--ink);
  color: var(--paper);
}

.pain-section .plain-copy p,
.pain-section .eyebrow,
.learning-section .plain-copy p,
.learning-section .eyebrow {
  color: rgba(250, 247, 239, 0.78);
}

.learning-section {
  background: #263f46;
  color: var(--paper);
}

.learning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.wide-asset,
.day-asset {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.asset-band {
  background: var(--paper-2);
}

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

.artifact-card,
.week,
.fit-list,
.included {
  border: 1px solid var(--line);
  background: var(--white);
}

.artifact-card {
  min-height: 236px;
  padding: 24px;
}

.artifact-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.artifact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.day-section {
  background: #e9f0eb;
}

.day-copy {
  align-self: center;
}

.curriculum-section {
  background: var(--ink);
  color: var(--paper);
}

.curriculum-section .eyebrow {
  color: var(--gold);
}

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

.week {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-color: rgba(250, 247, 239, 0.16);
  background: rgba(250, 247, 239, 0.06);
}

.week span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 800;
}

.week h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.week p {
  margin: 0 0 10px;
  color: rgba(250, 247, 239, 0.72);
}

.week strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.compact-asset {
  margin-top: 28px;
  border-color: rgba(250, 247, 239, 0.16);
}

.support-section {
  background: var(--blue);
  color: var(--white);
}

.support-section .eyebrow,
.support-section .plain-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.level-section {
  background: var(--paper-2);
}

.level-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.fit-list {
  padding: 26px;
}

.fit-list h3,
.included h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.fit-list ul,
.included ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li,
.included li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.fit-list li::before,
.included li::before {
  position: absolute;
  left: 0;
  content: "->";
  color: var(--green);
  font-weight: 800;
}

.muted-list li::before {
  color: var(--red);
}

.pricing-section {
  background: var(--gold);
}

.pricing-grid {
  align-items: center;
}

.pricing-grid h2 {
  font-size: clamp(4rem, 9vw, 8rem);
}

.price-sub {
  max-width: 470px;
  color: var(--ink-soft);
  font-weight: 700;
}

.included {
  padding: clamp(24px, 4vw, 36px);
}

.site-footer {
  padding: 32px 0;
  background: var(--ink);
  color: rgba(250, 247, 239, 0.76);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 900px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-grid,
  .two-col,
  .learning-grid,
  .level-card,
  .support-grid,
  .pricing-grid,
  .fit-grid,
  .day-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  .artifact-grid,
  .fit-lists {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-nav nav a:not(.nav-cta) {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-list div,
  .week {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }
}
