:root {
  color-scheme: dark;
  --bg: #1a1a1b;
  --panel: #272729;
  --panel-soft: #202022;
  --text: #f4f4f5;
  --muted: #b8b9bb;
  --line: rgba(255, 255, 255, .14);
  --accent: #ff4500;
}

* { box-sizing: border-box; }

html {
  min-width: 300px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(255, 69, 0, .16), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(48px, 9vw, 96px);
}

.back,
.privacy-settings {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 8, .58);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.privacy-settings {
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff8a5c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 9vw, 86px);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: #dedee0;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
}

.content {
  margin-top: clamp(48px, 8vw, 84px);
}

.section {
  padding: clamp(22px, 4vw, 38px);
  border-top: 3px solid var(--bg);
  background: var(--panel);
}

.section:first-child { border-top: 0; }

h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 29px);
}

h3 {
  margin: 22px 0 8px;
  font-size: 17px;
}

p,
li {
  color: #d7d7d9;
  line-height: 1.7;
}

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

ul {
  margin: 0;
  padding-left: 20px;
}

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

.callout {
  border-left: 4px solid var(--accent);
  background: var(--panel-soft);
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

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

.link-grid a {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--panel);
  font-weight: 850;
  text-decoration: none;
}

.link-grid a:hover { color: #ff8a5c; }

.email {
  word-break: break-word;
  color: #ff9a73;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 16px);
    padding-top: 10px;
  }

  .topline { margin-bottom: 54px; }
  .link-grid { grid-template-columns: 1fr; }
}
