:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #5f6368;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --accent: #0b6b5b;
  --line: #ded8ce;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(11, 107, 91, 0.12), transparent 42%),
    var(--paper);
}

.page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 88px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 80px rgba(32, 33, 36, 0.08);
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 640px) {
  .page {
    align-items: stretch;
    padding: 18px;
  }

  .hero {
    display: flex;
    min-height: calc(100vh - 36px);
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
  }
}
