:root {
  --bg: #0a0a0a;
  --panel: #0f1115;
  --text: #f0ede8;
  --muted: #9aa4af;
  --border: #1f2630;
  --orange: #ff5b00;
  --cyan: #00e5ff;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: min(920px, 92vw);
  margin: 40px auto 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  background: #000000;
}

.brand {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.4px;
  color: var(--orange);
  text-transform: uppercase;
}

.brand span {
  color: var(--cyan);
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--text);
  background: #000000;
  border: 1px solid #161616;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.home-link:hover,
.home-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  background: #0c0c0c;
}

.card {
  background: #000000;
  border: none;
  border-radius: 0;
  padding: 0;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.1;
}

.meta {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 14px;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 20px 0 8px;
  font-size: 20px;
  color: var(--text);
}

p,
li {
  color: var(--muted);
  font-size: 15px;
}

ul {
  margin-top: 8px;
  padding-left: 20px;
}

.contact {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.contact a {
  color: var(--cyan);
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--orange);
}

@media (max-width: 640px) {
  .wrap {
    width: min(94vw, 920px);
    margin: 24px auto 40px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-link {
    width: 100%;
  }

  h1 {
    font-size: 28px;
  }
}
