:root {
  color-scheme: light;
  --ink: #18201b;
  --muted: #647067;
  --line: #d7ded5;
  --panel: #ffffff;
  --page: #f5f7f2;
  --accent: #145c49;
  --accent-2: #b6382f;
  --focus: #d9a441;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 24px;
  padding: 38px;
  background:
    linear-gradient(rgba(20, 92, 73, 0.72), rgba(20, 92, 73, 0.72)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
}

h2 {
  font-size: 1.1rem;
}

.lede {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

.boundary {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

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

.path {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
}

.path span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path strong {
  overflow-wrap: anywhere;
}

.support-path {
  border-left-color: var(--accent-2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  min-width: 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.panel > * {
  min-width: 0;
}

#downloadDashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  min-width: 0;
}

#downloadDashboard[hidden] {
  display: none;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 42px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid color-mix(in srgb, var(--focus) 35%, transparent);
  border-color: var(--focus);
}

button {
  border: 0;
  border-radius: 6px;
  min-height: 42px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  text-align: center;
  text-decoration: none;
}

button + button {
  background: var(--accent-2);
}

dl {
  display: grid;
  grid-template-columns: minmax(82px, 110px) minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  min-width: 0;
}

dt {
  color: var(--muted);
  font-weight: 750;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
}

pre {
  overflow: auto;
  min-width: 0;
  max-height: 360px;
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  background: #101612;
  color: #e9f1ea;
  font-size: 0.83rem;
  line-height: 1.45;
}

.result,
.muted {
  color: var(--muted);
  margin: 0;
  overflow-wrap: anywhere;
}

.support-panel {
  border-top: 4px solid var(--accent-2);
}

a {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero,
  .paths,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  dl {
    grid-template-columns: minmax(72px, 86px) minmax(0, 1fr);
  }

  button {
    width: 100%;
  }
}
