:root {
  --bg: #ebefe9;
  --panel: #f9fbfa;
  --text: #13212f;
  --muted: #4b5e72;
  --brand: #007f3f;
  --brand-2: #0158a6;
  --stroke: #c7d3df;
  --shadow: 0 20px 50px rgba(18, 35, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 127, 63, 0.18), transparent 35%),
    radial-gradient(circle at 85% 5%, rgba(1, 88, 166, 0.18), transparent 28%),
    linear-gradient(160deg, #eef3ef 0%, #dfebf7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -1;
}

.bg-shape-a {
  background: rgba(0, 127, 63, 0.2);
  top: -110px;
  left: -110px;
}

.bg-shape-b {
  background: rgba(1, 88, 166, 0.2);
  bottom: -150px;
  right: -120px;
}

.page {
  width: min(1120px, 92%);
  margin: 40px auto 52px;
  display: grid;
  gap: 26px;
}

.hero {
  background: linear-gradient(120deg, #0c3b2a 0%, #0c4872 100%);
  color: #fff;
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 400;
}

.hero-copy {
  margin: 10px 0 0;
  max-width: 780px;
  line-height: 1.5;
  font-size: 1.02rem;
  opacity: 0.95;
}

.panel {
  background: rgba(249, 251, 250, 0.88);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2a3b4c;
}

input,
select {
  appearance: none;
  border: 1px solid var(--stroke);
  border-radius: 11px;
  background: #fff;
  color: #182839;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

input:focus,
select:focus {
  border-color: #1680b8;
  box-shadow: 0 0 0 3px rgba(22, 128, 184, 0.18);
}

select {
  cursor: pointer;
}

select:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  background: #eff4f7;
}

.col-2 {
  grid-column: span 2;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

button {
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s;
}

button:hover {
  transform: translateY(-1px);
  filter: saturate(1.1);
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status {
  margin: 2px 0 0;
  color: #2f4559;
  font-size: 0.9rem;
  min-height: 1.3rem;
}

.status.ok {
  color: #0f7c48;
}

.status.error {
  color: #b42323;
}

@media (max-width: 820px) {
  .page {
    width: min(1120px, 95%);
    margin-top: 20px;
  }

  .hero {
    padding: 24px 20px;
  }

  .panel {
    padding: 16px;
  }

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

  .col-2 {
    grid-column: auto;
  }
}
