:root {
  color-scheme: light;
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #16202c;
  --muted: #657282;
  --line: #dce4ec;
  --line-strong: #c8d2dd;
  --primary: #0e6b58;
  --primary-dark: #0b4635;
  --primary-soft: #dff4ed;
  --accent: #b45a22;
  --accent-soft: #f8e8df;
  --blue: #2363a5;
  --blue-soft: #e2edf8;
  --violet: #6e4aa8;
  --violet-soft: #ede6f7;
  --ink: #101820;
  --shadow: 0 18px 45px rgb(27 39 51 / 10%);
  --soft-shadow: 0 8px 24px rgb(27 39 51 / 7%);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgb(235 246 243 / 90%) 0 24%, transparent 24%),
    linear-gradient(180deg, #f2f7f5 0, transparent 340px),
    var(--bg);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

select,
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  outline: none;
}

select:focus,
input:focus,
button:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(17 97 73 / 16%);
  outline: none;
}

input {
  height: 46px;
  padding: 0 14px;
}

select {
  height: 42px;
  padding: 0 34px 0 12px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-subtitle {
  max-width: 520px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
