*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2e7d6b;
  --green-dark: #22604f;
  --green-soft: #eaf3f1;
  --ink: #1d2c28;
  --muted: #5f736d;
  --white: #ffffff;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--white) 0%, var(--green-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.page {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.logo {
  display: block;
  margin-bottom: 2.5rem;
}

.logo__img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(46, 125, 107, 0.1);
  border: 1px solid rgba(46, 125, 107, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto;
}

.footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer__line {
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.footer__hint {
  font-size: 0.9rem;
  color: var(--muted);
}
