:root {
  color-scheme: light;
  --ink: #241f1a;
  --muted: #6d625a;
  --surface: #fffaf4;
  --paper: #ffffff;
  --line: #ded6cd;
  --green: #1f6f5b;
  --green-dark: #164f41;
  --clay: #a59081;
  --clay-soft: #e4dfd9;
  --blue: #245d78;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vh, 92px) 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--clay);
}

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

.button.dark:hover {
  background: var(--blue);
}

.status-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgb(36 31 26 / 0.08);
  overflow: hidden;
}

.status-panel > div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.status-panel > div:last-child {
  border-bottom: 0;
}

.status-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  font-size: 1.08rem;
}

.shopper-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: var(--clay-soft);
}

.shopper-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: 0;
}

.shopper-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 820px) {
  .page-shell {
    display: block;
  }

  .hero {
    width: min(100% - 32px, 560px);
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .status-panel {
    order: -1;
  }

  .shopper-band {
    display: grid;
    padding: 24px 16px;
  }

  .button {
    width: 100%;
  }
}
