:root {
  --bg: #f5f7f8;
  --panel: #ffffff;
  --ink: #172026;
  --muted: #5e6a72;
  --line: #dbe3e7;
  --accent: #176b6f;
  --accent-strong: #0d4649;
  --soft: #edf5f5;
  --shadow: 0 24px 70px rgba(23, 32, 38, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(23, 107, 111, 0.1), transparent 34%),
    linear-gradient(300deg, rgba(202, 130, 73, 0.12), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
}

.hero {
  width: min(1040px, 100%);
  min-height: min(540px, calc(100vh - 72px));
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 227, 231, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  text-align: center;
  max-width: 790px;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-strong);
  border-radius: 6px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary {
  background: var(--accent-strong);
  color: #ffffff;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

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