:root {
  color-scheme: light;
  --blue: #12345a;
  --blue-2: #1f4f7d;
  --green: #3f9a43;
  --bg: #f3f7fb;
  --text: #102033;
  --muted: #65758a;
  --card: #ffffff;
  --line: #dbe5ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(63, 154, 67, 0.18), transparent 34rem),
    linear-gradient(180deg, #eaf2fa 0%, var(--bg) 100%);
  color: var(--text);
}

.app {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 22px 16px calc(24px + env(safe-area-inset-bottom));
}

.hero {
  padding: 24px 18px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 18px 44px rgba(18, 52, 90, 0.24);
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 18px 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1.05;
}

.lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.45;
}

.card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.08);
}

label {
  display: block;
  margin: 0 0 8px;
  font-weight: 750;
}

textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdff;
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
  padding: 14px;
}

select {
  margin-bottom: 14px;
  padding: 13px 14px;
}

textarea:focus,
select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(31, 79, 125, 0.12);
}

button {
  border: 0;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

#submit {
  width: 100%;
  padding: 15px 18px;
}

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

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

.quick button {
  padding: 13px 12px;
  background: #e8f0f7;
  color: var(--blue);
}
