:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f6f7f2;
  color: #17211f;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(72, 140, 125, 0.22), transparent 32rem),
    linear-gradient(135deg, #f6f7f2 0%, #e8eee8 52%, #dce9ef 100%);
}

.shell {
  width: min(920px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  align-content: center;
  gap: 24px;
}

.hero {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: #2f6f61;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 11vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  margin: 0;
  color: #40514d;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  background: rgba(23, 33, 31, 0.12);
  box-shadow: 0 24px 80px rgba(37, 54, 50, 0.16);
}

.panel > div {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.label {
  display: block;
  margin-bottom: 8px;
  color: #5b6d68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 920px);
    padding: 32px 0;
  }

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