:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090b10;
  color: #f5f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(42, 157, 143, 0.22), transparent 32rem),
    linear-gradient(135deg, #090b10 0%, #111827 48%, #101014 100%);
}

a {
  color: #7dd3fc;
}

header,
main,
footer {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
}

main {
  padding: 56px 0 70px;
}

.hero {
  max-width: 720px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 9vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 12px;
  font-size: 24px;
}

p,
li {
  color: #d4d9e4;
  font-size: 17px;
  line-height: 1.65;
}

.lede {
  font-size: 21px;
  color: #e5eaf4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  background: #f5f7fb;
  color: #0b1020;
}

.panel {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4d9e4;
  text-align: left;
  vertical-align: top;
}

footer {
  padding: 24px 0 38px;
  color: #94a3b8;
  font-size: 14px;
}
