:root {
  color-scheme: light;
  --ink: #13201d;
  --muted: #5d6964;
  --line: #d8e0dc;
  --paper: #f8faf8;
  --card: #ffffff;
  --accent: #0d7c66;
  --accent-ink: #ffffff;
  --warm: #f4b44d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(13, 124, 102, 0.1), transparent 38%),
    linear-gradient(315deg, rgba(244, 180, 77, 0.16), transparent 34%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: stretch;
  min-height: min(680px, calc(100vh - 112px));
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(13, 124, 102, 0.2);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 10vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
}

.panel,
.grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(19, 32, 29, 0.08);
}

.panel {
  align-self: center;
  padding: 28px;
}

.panel-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.status-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.status-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 740;
}

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

.grid article {
  padding: 24px;
}

.grid h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 560px);
    padding: 28px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 0 18px;
  }

  h1 {
    max-width: 10ch;
  }

  .panel {
    padding: 22px;
  }

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