:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5e6b73;
  --line: #d8e0e3;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #27624c;
  --green-dark: #173f33;
  --gold: #b58a45;
  --blue: #365f77;
  --shadow: 0 22px 60px rgba(27, 41, 49, 0.12);
}

* {
  box-sizing: border-box;
}

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;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("data:image/svg+xml,%3Csvg width='960' height='540' viewBox='0 0 960 540' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='960' height='540' fill='%23edf0ec'/%3E%3Cg fill='none' stroke='%23c9d2d4' stroke-width='2'%3E%3Cpath d='M0 415h960M0 355h960M0 295h960M80 540V230M170 540V190M265 540V250M390 540V165M520 540V205M640 540V150M790 540V220M895 540V180'/%3E%3C/g%3E%3Cg fill='%23ffffff' stroke='%23b7c3c5'%3E%3Crect x='86' y='255' width='64' height='285'/%3E%3Crect x='177' y='215' width='72' height='325'/%3E%3Crect x='398' y='192' width='94' height='348'/%3E%3Crect x='651' y='176' width='112' height='364'/%3E%3Crect x='802' y='248' width='64' height='292'/%3E%3C/g%3E%3Cg fill='%23dce5e2'%3E%3Ccircle cx='112' cy='287' r='7'/%3E%3Ccircle cx='112' cy='324' r='7'/%3E%3Ccircle cx='112' cy='361' r='7'/%3E%3Ccircle cx='214' cy='249' r='7'/%3E%3Ccircle cx='214' cy='286' r='7'/%3E%3Ccircle cx='214' cy='323' r='7'/%3E%3Ccircle cx='444' cy='230' r='7'/%3E%3Ccircle cx='444' cy='268' r='7'/%3E%3Ccircle cx='444' cy='306' r='7'/%3E%3Ccircle cx='707' cy='216' r='7'/%3E%3Ccircle cx='707' cy='256' r='7'/%3E%3Ccircle cx='707' cy='296' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.12;
}

.lede {
  max-width: 640px;
  color: #35444c;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid var(--green);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
}

.readiness-panel {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(23, 63, 51, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0deg, #e3e9e6 0deg);
}

.progress-ring span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.intro,
.disclaimer {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
}

.intro p,
.disclaimer p,
.section-heading p,
.next-steps p,
.readiness-panel p {
  color: var(--muted);
}

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

.section-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.section-card:nth-child(3),
.section-card:nth-child(5),
.next-steps {
  grid-column: 1 / -1;
}

.section-heading {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.section-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf1ee;
  color: var(--green);
  font-weight: 900;
}

.checklist-group {
  display: grid;
  gap: 10px;
}

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

.check-row,
.tag-grid label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid #e2e8e9;
  border-radius: 8px;
  background: #fbfcfb;
  cursor: pointer;
}

input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.check-row:has(input:checked),
.tag-grid label:has(input:checked) {
  border-color: rgba(39, 98, 76, 0.45);
  background: #eef6f2;
}

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

.tag-grid label {
  min-height: 54px;
  align-items: center;
  color: #25343c;
  font-weight: 700;
}

.next-steps {
  background: linear-gradient(135deg, #ffffff, #eef4f1);
}

.disclaimer h2 {
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 40px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero,
  .checklist-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section-card:nth-child(3),
  .section-card:nth-child(5),
  .next-steps {
    grid-column: auto;
  }

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

  .readiness-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 20px;
    align-items: center;
  }

  .panel-label {
    grid-column: 1 / -1;
  }

  .progress-ring {
    width: 112px;
    height: 112px;
    margin-bottom: 0;
  }

  .progress-ring span {
    width: 82px;
    height: 82px;
    font-size: 1.35rem;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    padding: 16px 0;
  }

  .brand small {
    display: none;
  }

  .header-link {
    padding-top: 10px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .readiness-panel,
  .intro,
  .section-card,
  .disclaimer {
    padding: 20px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-number {
    width: 30px;
    height: 30px;
  }

  .tag-grid {
    grid-template-columns: 1fr;
  }
}
