:root {
  --bg: #f7f6f2;
  --surface: #fbfbf9;
  --surface-strong: #ffffff;
  --text: #28251d;
  --muted: #706f69;
  --border: #d8d3c8;
  --primary: #01696f;
  --primary-dark: #0c4e54;
  --warm: #7a2018;
  --shadow: 0 24px 60px rgba(40, 37, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(1, 105, 111, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 88%, rgba(122, 32, 24, 0.13), transparent 24rem),
    var(--bg);
}

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

.shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 36px;
}

.hero {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 38px;
}

.mark {
  width: 56px;
  height: 56px;
  color: var(--surface);
}

.mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mark rect {
  fill: var(--primary);
}

.mark path {
  fill: currentColor;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.lede {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

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

.card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(1, 105, 111, 0.34);
  box-shadow: var(--shadow);
  outline: none;
}

.card.primary {
  color: var(--surface);
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.76;
}

.title {
  max-width: 11ch;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.copy {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.primary .copy {
  color: rgba(247, 246, 242, 0.78);
}

.action {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}

.action::after {
  content: "→";
  transition: transform 180ms ease;
}

.card:hover .action::after,
.card:focus-visible .action::after {
  transform: translateX(3px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 540px);
    padding-top: 38px;
  }

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

  .card {
    min-height: 230px;
    padding: 22px;
    border-radius: 24px;
  }

  footer {
    flex-direction: column;
  }
}
