:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #1d2430;
  --muted: #626b7a;
  --line: #ded8cd;
  --accent: #0e7c7b;
  --accent-strong: #095d5c;
  --accent-soft: #d7f0ed;
  --warm: #d45d2f;
  --shadow: 0 18px 45px rgba(31, 36, 48, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a,
input,
select,
textarea {
  border-radius: 6px;
}

:focus-visible {
  outline: 3px solid rgba(14, 124, 123, 0.35);
  outline-offset: 2px;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.1rem;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.narrow {
  width: min(880px, calc(100% - 32px));
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.92;
}

.page-hero p {
  max-width: 740px;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.actions,
.inline-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
}

.button:hover {
  border-color: var(--accent);
}

.button.primary,
.button.is-success {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.status {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.status.ok {
  color: var(--accent-strong);
}

.status.error {
  color: #b42318;
}

.status.warn {
  color: #9a4b16;
}
