:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ec-ink: #071d2b;
  --ec-muted: #5a6a73;
  --ec-bg: #fff4e8;
  --ec-bg-soft: #fffaf4;
  --ec-surface: #ffffff;
  --ec-line: #eadbc8;
  --ec-line-strong: #d7c3ab;
  --ec-primary: #0d4a3a;
  --ec-primary-dark: #07362b;
  --ec-primary-soft: #e8f4ed;
  --ec-accent: #ff6b2b;
  --ec-accent-dark: #d94d16;
  --ec-accent-soft: #ffe1cf;
  --ec-warning: #f3b43f;
  --ec-danger: #a63a2a;
  --ec-danger-soft: #ffe6df;
  --ec-radius: 7px;
  --ec-shadow: 0 16px 36px rgba(7, 29, 43, 0.08);
  --ec-focus: 0 0 0 3px rgba(255, 107, 43, 0.28);
  background: var(--ec-bg);
  color: var(--ec-ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 232, 0)),
    var(--ec-bg);
}

main {
  min-height: 100vh;
}

a {
  color: var(--ec-primary);
}

a:hover {
  color: var(--ec-accent-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.tab {
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

button:hover:not(:disabled),
.tab:hover {
  transform: translateY(-1px);
}

button:focus-visible,
.tab:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 0;
  box-shadow: var(--ec-focus);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 48px clamp(24px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(7, 29, 43, 0.84), rgba(13, 74, 58, 0.32)),
    url("https://images.unsplash.com/photo-1526676037777-05a232554f77?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero > div {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ec-accent-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--ec-ink);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1,
.hero .eyebrow {
  color: #fff;
}

.lede {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.status {
  padding: 36px clamp(24px, 6vw, 88px) 64px;
}

.status h2 {
  margin-top: 0;
}

.status li {
  margin: 10px 0;
}
