:root {
  --bg: #f0c05c;
  --panel: #f7e6b4;
  --field: #fff4d8;
  --gold: #ffe27a;
  --surface: var(--gold);
  --ink: #17120f;
  --muted: #665947;
  --line: #17120f;
  --accent: #ef6b2a;
  --shadow: 8px 8px 0 rgba(23, 18, 15, .96);
  font-family: "Courier New", "SF Mono", ui-monospace, "PingFang SC", monospace;
}

* {
  box-sizing: border-box;
}

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

button,
input,
select {
  font: inherit;
}

header {
  background: var(--panel);
  border-bottom: 3px solid var(--line);
  padding: 10px 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand > span:last-child {
  min-width: 0;
}

.brandMark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 5px 5px 0 var(--accent);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
}

.brandName {
  display: block;
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(239, 107, 42, .22);
  overflow-wrap: anywhere;
}

.brandSub {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.langPicker {
  display: grid;
  gap: 5px;
  min-width: 150px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--field);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}

select:focus {
  outline: none;
  border-color: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 20px 34px;
}

article {
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 0;
  padding: 26px;
  box-shadow: var(--shadow);
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(239, 107, 42, .20);
  overflow-wrap: anywhere;
}

h2 {
  margin: 26px 0 10px;
  padding-top: 14px;
  border-top: 2px solid var(--line);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

p,
li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 6px;
}

a {
  color: var(--ink);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pageLinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.pageLinks a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--field);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
}

.pageLinks a.primary {
  background: var(--accent);
  color: #fff;
}

.pageCopyright {
  margin-left: auto;
  color: rgba(23, 18, 15, .58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.useCaseCtas {
  margin-bottom: 22px;
}

.useCaseGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 8px;
}

.useCaseCard {
  border: 1px solid var(--line);
  background: var(--field);
  padding: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}

.useCaseCard strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
}

.useCaseCard p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 620px) {
  header {
    padding: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  main {
    padding: 16px 12px 28px;
  }

  article {
    padding: 18px;
    box-shadow: 4px 4px 0 rgba(23, 18, 15, .96);
  }

  .brandName {
    font-size: 20px;
    line-height: 1.08;
  }

  .brandSub {
    font-size: 12px;
    line-height: 1.45;
  }

  .brandMark {
    width: 38px;
    height: 38px;
    box-shadow: 4px 4px 0 var(--accent);
  }

  .pageCopyright {
    flex-basis: 100%;
    margin-left: 0;
    text-align: left;
  }

  .useCaseGrid {
    grid-template-columns: 1fr;
  }
}
