:root {
  --text: #D0CCC6;
  --muted: #A3BAD1;
  --primary: #BF7839;
  --soft: #fff7ec;
  --border: #2A3248;
  --max-width: 1100px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #181A1B;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

h1,
h2 {
  margin: 0 0 12px;
  line-height: 1.2;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero {
  padding: 47.5px 0 10px;
  background: #181A1B;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 8px;
  color: #9E967C;
}

.hero-copy .lead {
  text-align: justify;
  text-justify: inter-word;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.1rem);
}

.hero-visual img {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: none;
}

.cta {
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 1.5vw + 1rem, 2.4rem);
}

.cta .lead {
  text-align: justify;
  text-justify: inter-word;
  max-width: 820px;
  margin: 0 auto 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--primary);
  color: #E8E6E3;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(242, 168, 102, 0.35);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(242, 168, 102, 0.4);
}

.button:active {
  transform: translateY(0);
}

.footer {
  padding: 42px 0 48px;
  border-top: 1px solid var(--border);
  background: #1B1D1E;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-size: 1.05rem;
  color: var(--text);
}

.footer-brand span {
  display: block;
  color: #6f7a8f;
  font-size: 0.95rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: #D0CCC6;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-discord,
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 1px;
}

.footer-discord img,
.footer-mail img {
  height: 18px;
  width: auto;
  display: block;
}

.copyright {
  margin: 0;
  color: #7b8699;
  font-size: 0.95rem;
}

#year {
  display: inline;
  font-weight: inherit;
  color: inherit;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-visual img {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}