:root {
  --bg: #0c0e10;
  --bg-glow: #1a1410;
  --fg: #f4f1ec;
  --muted: #9a938a;
  --accent: #c45c2a;
  --accent-soft: rgba(196, 92, 42, 0.18);
  --line: rgba(244, 241, 236, 0.1);
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--fg);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--bg-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, var(--accent-soft), transparent 50%),
    var(--bg);
  display: flex;
  flex-direction: column;
}

.page {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.brand__logo {
  width: min(220px, 48vw);
  height: auto;
  display: block;
}

.brand__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}

.brand__tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.brand__tag {
  margin: 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff8f3;
}

.btn--primary:hover {
  background: #d46935;
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: rgba(244, 241, 236, 0.28);
}

.meta {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.contact:hover {
  color: var(--fg);
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 1;
}

.site-footer {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .contact {
    transition: none;
  }
}
