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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 192, 48, 0.09), transparent 30rem),
    #14181c;
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

header {
  padding-bottom: 24px;
  border-bottom: 1px solid #34434d;
}

h1,
h2 {
  color: #f7fafb;
}

h1 {
  margin: 3px 0 4px;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.08;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

p,
ul,
dl {
  margin: 0;
}

p + p,
p + ul {
  margin-top: 12px;
}

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

section {
  padding-top: 30px;
}

.eyebrow {
  color: #00c030;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

header > p:last-child,
section p,
section li,
dd {
  color: #adbec8;
}

code {
  color: #6dd3ff;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 12px;
}

dt {
  color: #e6edf1;
  font-weight: 700;
}

dd {
  margin: 0;
}

mark {
  padding: 2px 5px;
  border-radius: 3px;
  background: #604b00;
  color: #fff1a8;
}

@media (max-width: 520px) {
  main {
    padding-top: 32px;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}
