* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #070b14;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}


/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(7, 11, 20, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  white-space: nowrap;
}

.header-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 7px;
}

.brand span {
  color: #c7a354;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #b9c0cc;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: 0.25s ease;
}

nav a:hover {
  color: #c7a354;
}


/* HERO */

.hero {
  width: 100%;
  background: #070b14;
}

.hero-background {
  width: 100%;
  height: auto;
  display: block;
}


/* SHARED */

.section-label {
  color: #c7a354;
  font-size: 12px;
  letter-spacing: 5px;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 2px;
}

p {
  color: #aab3c2;
}


/* ABOUT */

.about {
  min-height: 720px;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  background: #080d17;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-image img {
  width: 100%;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.about-content {
  max-width: 650px;
}

.about-content h2 {
  margin-bottom: 30px;
  font-size: clamp(32px, 3.4vw, 52px);
}

.about-content p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #c0c7d2;
}


/* VISION */

.vision {
  padding: 120px 7%;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(18, 49, 91, 0.22),
      transparent 55%
    ),
    #070b14;
}

.vision > p {
  max-width: 760px;
  margin: 30px auto 0;
  font-size: 16px;
}

.vision-grid {
  max-width: 1180px;
  margin: 75px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vision-item {
  padding: 45px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.vision-item:last-child {
  border-right: none;
}

.vision-item h3 {
  color: #c7a354;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
}

.vision-item p {
  font-size: 14px;
}


/* CONTACT / CLOSING */

.contact {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.contact-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.38);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  padding: 75px 30px;
}

.contact-content h2 {
  margin-bottom: 24px;
}

.contact-intro {
  margin: 0 0 38px;
  color: #c0c7d2;
  font-size: 16px;
}


/* MAIN CONTACT LINKS */

.contact-main-links {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-box {
  min-height: 105px;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;

  background: rgba(5, 10, 19, 0.72);
  border: 1px solid rgba(199, 163, 84, 0.38);

  color: #f5f5f5;
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-box:hover {
  border-color: #c7a354;
  background: rgba(199, 163, 84, 0.07);
  transform: translateY(-2px);
}


/* SMALL CONTACT ICON */

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.twitch-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9146ff;
}

.twitch-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-x {
  font-size: 16px;
}

.contact-box small {
  display: block;
  color: #c7a354;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 4px;
}

.contact-box strong {
  display: block;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 500;
  word-break: break-word;
}


/* TWITCH TITLE */

.twitch-title {
  margin: 42px auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  color: #c7a354;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
}

.twitch-title span {
  width: 100px;
  height: 1px;
  background: rgba(199, 163, 84, 0.6);
}


/* COMPACT TWITCH BUTTONS */

.twitch-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.twitch-links a {
  width: 108px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  background: rgba(5, 10, 19, 0.72);
  border: 1px solid rgba(145, 70, 255, 0.55);

  color: #f5f5f5;
  text-decoration: none;

  transition: 0.25s ease;
}

.twitch-links a:hover {
  border-color: #9146ff;
  background: rgba(145, 70, 255, 0.09);
  transform: translateY(-2px);
}

.twitch-icon {
  color: #9146ff;
  font-size: 15px;
  line-height: 1;
}

.twitch-links strong {
  color: #f5f5f5;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}


/* FOOTER */

footer {
  padding: 55px 7% 45px;
  text-align: center;
  background: #05080e;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wordmark {
  width: min(520px, 85%);
  display: block;
  margin: 0 auto 22px;
}

footer p {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

footer span {
  color: #626b79;
  font-size: 11px;
  letter-spacing: 1px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  header {
    padding: 0 24px;
  }

  nav {
    gap: 18px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 80px 7%;
  }

  .about-content {
    max-width: none;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .vision-item:last-child {
    border-bottom: none;
  }

  .contact-main-links {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .twitch-title span {
    width: 50px;
  }
}


@media (max-width: 650px) {

  header {
    height: 68px;
  }

  .brand-name {
    display: none;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .about,
  .vision {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .vision {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact {
    min-height: 620px;
  }

  .contact-content {
    padding: 65px 20px;
  }

  .contact-main-links {
    gap: 12px;
  }

  .contact-box {
    min-height: 90px;
    padding: 16px 18px;
  }

  .twitch-title {
    gap: 10px;
    letter-spacing: 2px;
    font-size: 9px;
  }

  .twitch-title span {
    width: 25px;
  }

  .twitch-links {
    gap: 8px;
  }

  .twitch-links a {
    width: 88px;
    height: 42px;
  }

  h2 {
    font-size: 34px;
  }
}
