:root {
  color-scheme: dark;
  --bg: #050505;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f0;
  --muted: #b4b4af;
  --red: #f2372c;
  --max-width: 980px;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.07), transparent 24%),
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.05), transparent 20%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0 58px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.66);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: auto;
}

.home-link {
  color: var(--muted);
  font-weight: 700;
}

main {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.copy {
  display: grid;
  gap: 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.copy h2 {
  margin: 18px 0 -8px;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.copy p {
  margin: 0;
}

footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, var(--max-width));
  }

  .nav {
    border-radius: 28px;
  }
}
