:root {
  --charge-yellow: #fff200;
  --cyber-mint: #00ffd5;
  --white: #f4f7f7;
  --smoke: rgba(244, 247, 247, 0.78);
  --black: #050606;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Verdana, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

.splash {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.42)),
    url("assets/BSS_temporary_landing_page_background_2048.png");
  background-size: cover;
  background-position: center;
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0 38%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}

.brand-mark {
  position: absolute;
  top: clamp(18px, 2.4vw, 28px);
  left: clamp(18px, 2.4vw, 28px);
  width: clamp(44px, 4vw, 64px);
  z-index: 2;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.top-strip {
  position: absolute;
  top: clamp(98px, 11.3vw, 158px);
  left: 0;
  right: 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  opacity: 0.96;
}

.top-strip__track {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  width: max-content;
  padding-left: clamp(16px, 1.8vw, 24px);
  font-family: Verdana, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f2f4f4;
}

.top-strip__track b {
  font-family: Verdana, Arial, sans-serif;
  font-weight: 400;
  color: #f2f4f4;
  font-size: 1.22em;
  letter-spacing: 0.08em;
}

.content {
  width: min(100%, 940px);
  padding: clamp(120px, 18vw, 220px) 24px 110px;
  text-align: center;
  transform: translateY(2vh);
}

h1 {
  margin: 0;
  color: var(--charge-yellow);
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7.1vw, 100px);
  text-wrap: balance;
}

p {
  margin: clamp(74px, 9.2vw, 150px) auto 0;
  max-width: 820px;
  color: var(--smoke);
  font-family: Verdana, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, , 20px);
  line-height: 1.45;
}

.actions {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4.5vw, 96px);
  margin-top: clamp(28px, 3.2vw, 48px);
  flex-wrap: wrap;
}

.button {
  min-width: min(100%, 320px);
  padding: 18px 34px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1;
  letter-spacing: -0.035em;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--charge-yellow);
  color: #131414;
}

.button--outline {
  background: rgba(0, 0, 0, 0.08);
  border-color: var(--cyber-mint);
  color: var(--cyber-mint);
}

.socials {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 7.6vw, 92px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 30px);
  z-index: 2;
}

.socials a {
  width: clamp(28px, 2.55vw, 42px);
  height: clamp(28px, 2.55vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.socials img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 800px) {
  .splash {
    background-position: center top;
  }

  .top-strip {
    top: 92px;
  }

  .content {
    padding-top: 154px;
    padding-bottom: 128px;
    transform: none;
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  p {
    margin-top: 64px;
  }

  .actions {
    gap: 16px;
  }

  .button {
    width: min(100%, 340px);
    min-height: 58px;
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 42px;
  }

  .content {
    padding-left: 18px;
    padding-right: 18px;
  }

  p {
    margin-top: 46px;
  }

  .socials {
    gap: 15px;
    bottom: 28px;
  }

  .socials a {
    width: 30px;
    height: 30px;
  }
}
