:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5b6673;
  --line: #d7dde5;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --rose: #be123c;
  --warn: #9a3412;
  --code: #101827;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
nav,
main,
.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
nav a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 650;
}
.brand {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}
.brand a {
  color: inherit;
  text-decoration: none;
}
.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("ghidira-objdump-kaiju.png") center bottom / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.74);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 58px 0 44px;
  min-height: 560px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #f1c27d;
  background: #fff7ed;
  color: #73310b;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.86rem;
  font-weight: 800;
}
.badge.green {
  border-color: #99d5ca;
  background: #ecfdf5;
  color: var(--accent-strong);
}
h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.lede {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}
.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}
main {
  padding: 34px 0 60px;
}
section {
  margin-top: 26px;
}
.figure {
  margin: 18px 0 6px;
}
.figure img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.page-title {
  padding: 26px 0 0;
}
.page-title h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.page-title p {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 800px;
}
.showcase {
  margin-top: 10px;
}
.showcase .figure img {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.35);
}
h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: 0;
}
p {
  margin: 0 0 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.metric {
  color: var(--accent-strong);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 850;
}
.label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.pagelinks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pagelinks a {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 750;
}
.pagelinks a span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #edf3f4;
  font-size: 0.9rem;
  color: #34404d;
}
tr:last-child td {
  border-bottom: 0;
}
code,
pre {
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
pre {
  margin: 12px 0 0;
  padding: 14px;
  overflow: auto;
  color: #eef6ff;
  background: var(--code);
  border-radius: 8px;
  font-size: 0.88rem;
}
.note {
  border-left: 4px solid var(--warn);
  padding: 12px 14px;
  background: #fff7ed;
  color: #5f2b12;
}
.journal {
  display: grid;
  gap: 12px;
}
.entry {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.date {
  color: var(--rose);
  font-weight: 850;
}
.entry h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: 0;
}
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .links {
    justify-content: flex-start;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .pagelinks {
    grid-template-columns: 1fr 1fr;
  }
  .entry {
    grid-template-columns: 1fr;
  }
  th,
  td {
    padding: 10px;
  }
}
