:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --panel: #10100f;
  --text: #f7f3ec;
  --muted: #d8d0c4;
  --dim: rgba(216, 208, 196, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --amber: #c8aa82;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: "Courier New", monospace;
  letter-spacing: 0;
}

.brand img {
  width: 32px;
  height: 28px;
  border-radius: 6px;
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.link {
  color: var(--dim);
  text-decoration: none;
  font-size: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--amber);
  color: #0a0a0a;
  text-decoration: none;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero,
.section,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 92px 0 80px;
}

.eyebrow {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
}

p {
  color: var(--dim);
  font-size: 17px;
  line-height: 1.8;
}

.lede {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 19px;
}

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

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 8px;
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 14px;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.form {
  max-width: 620px;
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 110px;
}

.form-status {
  min-height: 24px;
  color: var(--amber);
  font-size: 14px;
}

.footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  color: rgba(216, 208, 196, 0.55);
  font-size: 13px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

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

  .nav-actions {
    flex-wrap: wrap;
  }
}
