:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5d6972;
  --line: #d9e1e7;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --surface: #f7faf9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  color: var(--ink);
}

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

.hero {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 420px;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 56px;
  line-height: 1.02;
}

.lead {
  max-width: 660px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facts span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(23, 32, 38, 0.08);
}

h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
}

.check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 400;
  line-height: 1.35;
}

.check input {
  width: 18px;
  margin-top: 1px;
}

button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  font-size: 17px;
  font-weight: 700;
  padding: 13px 16px;
  cursor: pointer;
}

button:hover {
  background: var(--brand-dark);
}

.status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
}

@media (max-width: 880px) {
  .page {
    padding: 20px;
  }

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

  h1 {
    font-size: 40px;
  }
}

