:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #61656f;
  --paper: #fbfaf6;
  --line: #d9d5cc;
  --blue: #2458d3;
  --red: #c74332;
  --green: #327a4b;
  --gold: #d8a328;
  --shadow: 0 18px 50px rgba(32, 33, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(rgba(32, 33, 36, 0.52), rgba(32, 33, 36, 0));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 0.82rem;
}

.site-header nav a {
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 6vw, 80px) 72px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 20, 25, 0.84) 0%, rgba(18, 20, 25, 0.55) 42%, rgba(18, 20, 25, 0.08) 78%),
    linear-gradient(0deg, rgba(18, 20, 25, 0.42), rgba(18, 20, 25, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: white;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.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-radius: 6px;
  padding: 0 18px;
  font-weight: 850;
}

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

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: #f1eee6;
}

.ticker span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.intro h2,
.measure-copy h2,
.kevin-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.intro p,
.measure-copy p,
.kevin-copy p,
.panel p,
blockquote p {
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.panel {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  background: white;
  box-shadow: var(--shadow);
}

.panel-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 6px;
  color: white;
  font-size: 1.7rem;
  font-weight: 950;
}

.good .panel-icon {
  background: var(--green);
}

.gripe .panel-icon {
  background: var(--red);
}

.panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.panel p:last-child {
  margin-bottom: 0;
}

.outcome-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.outcome-chips span {
  border: 1px solid #b9df9b;
  border-radius: 6px;
  padding: 8px 10px;
  background: #d9f6b5;
  font-size: 0.86rem;
  font-weight: 850;
}

.gripe-chips span {
  border-color: #f0b0a7;
  background: #ffd8d3;
}

.measures {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.checklist label {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 780;
}

.checklist label:last-child {
  border-bottom: 0;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.kevin-office {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.task-board article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff0b8;
  box-shadow: var(--shadow);
}

.task-board article:nth-child(2) {
  background: #ffd5f1;
}

.task-board article:nth-child(3) {
  background: #ffe26e;
}

.task-board article:nth-child(4) {
  background: #d6e7ff;
}

.task-status {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-board h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.task-board p {
  margin: 14px 0 0;
  line-height: 1.45;
  font-weight: 700;
}

.quote-band {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 6vw, 80px);
  background: #202124;
  color: white;
}

blockquote {
  width: min(940px, 100%);
  margin: 0 auto;
}

blockquote p {
  margin: 0;
}

blockquote > p {
  font-size: clamp(1.05rem, 2vw, 1.95rem);
  line-height: 1.34;
  font-weight: 900;
}

blockquote footer {
  margin-top: 24px;
  color: #d9d5cc;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 20, 25, 0.9), rgba(18, 20, 25, 0.55)),
      linear-gradient(0deg, rgba(18, 20, 25, 0.5), rgba(18, 20, 25, 0));
  }

  .intro,
  .columns,
  .measures,
  .kevin-office,
  .task-board {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
  }

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