@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans Display";
  src: url("assets/fonts/NotoSansDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

:root {
  --bg: #120708;
  --bg-soft: #1b0d0f;
  --panel: rgba(24, 13, 15, 0.88);
  --panel-solid: #1b171c;
  --panel-soft: rgba(35, 21, 24, 0.94);
  --line: rgba(255, 239, 224, 0.12);
  --line-strong: rgba(255, 239, 224, 0.22);
  --text: #fff6eb;
  --text-soft: rgba(255, 246, 235, 0.72);
  --cream: #f2e1c8;
  --accent: #ef4d44;
  --accent-2: #8f151a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --discord: #5865f2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(145, 16, 21, 0.22), transparent 30%),
    linear-gradient(180deg, #170808 0%, #0d0607 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 48px 20px 82px;
  overflow: hidden;
  background: #140709;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  filter: saturate(0.96) contrast(1.12) brightness(0.6);
}

.hero-shade {
  background:
    linear-gradient(to bottom, rgba(10, 3, 4, 0.26), rgba(10, 3, 4, 0.5) 40%, rgba(10, 3, 4, 0.9) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62) 72%);
}

.hero-shell {
  width: min(1160px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}


h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Noto Sans Display", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.title-top,
.title-bottom {
  display: block;
}

.title-top {
  margin-bottom: 0.14em;
  font-size: clamp(3.2rem, 9vw, 7rem);
  color: var(--cream);
  letter-spacing: -0.04em;
}

.title-bottom {
  font-size: clamp(5.2rem, 14vw, 10rem);
  color: white;
}

.hero-actions {
  margin-top: 34px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(33, 41, 56, 0.96), rgba(20, 26, 37, 0.96));
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.big-button:hover,
.big-button:focus-visible,
.discord-card:hover,
.discord-card:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
}

.big-button:hover,
.big-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}


.hero-panels {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}


.community-panel {
  padding: 24px;
}

.single-panel {
  margin-inline: auto;
}

.panel-heading {
  margin-bottom: 16px;
}

.panel-heading h2,
.section-heading h2,
.faq h2 {
  margin: 6px 0 0;
  font-family: "Noto Sans Display", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}



.discord-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: white;
  background: rgba(47, 49, 54, 0.94);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 120ms ease;
}

.discord-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #141517;
  font-size: 0.82rem;
  font-weight: 700;
}

.discord-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discord-copy {
  min-width: 0;
}

.discord-copy strong,
.discord-copy small {
  display: block;
}

.discord-copy strong {
  overflow: hidden;
  font-size: 1.02rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-copy small {
  margin-top: 4px;
  color: #b9bbc1;
  font-size: 0.84rem;
}

.discord-copy small::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: #23a55a;
}

.discord-join {
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--discord);
  font-size: 0.86rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.page-column {
  width: min(920px, calc(100% - 28px));
  margin: 0 auto;
}

.feature-shot {
  padding: 34px 0 0;
}

.feature-shot img {
  width: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  object-position: center 32%;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #120708;
  box-shadow: var(--shadow);
}

.faq {
  padding: 48px 0 72px;
}

.section-heading {
  margin-bottom: 16px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 19px 34px 19px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--text-soft);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

.answer {
  max-width: 720px;
  padding: 0 0 22px;
  color: var(--text-soft);
}

.answer p {
  margin: 0;
}

.answer ul {
  margin: 10px 0 0;
  padding-left: 21px;
}

footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

footer p {
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links a,
.email {
  font-weight: 600;
  text-underline-offset: 3px;
}

.email {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--text);
}

.copyright {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

@media (max-width: 680px) {
  .hero {
    padding-inline: 14px;
    padding-bottom: 64px;
  }

  .title-top {
    margin-bottom: 0.18em;
  }

  .big-button {
    width: 100%;
    max-width: 420px;
  }

  .community-panel {
    padding: 16px;
  }

  .discord-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .discord-icon {
    width: 48px;
    height: 48px;
  }

  .discord-join {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 62px;
  }

  .feature-shot img {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
