:root {
  --Valhallr: linear-gradient(91deg, #3c29e3 -1.49%, #4392f3 33.58%, #4cd2e4 67.16%, #10f9ab 102.23%);
  --Obsidian: #1c1c24;
  --White: #fff;
  --panel-gap: 16px;
  --content-start: 344px;
  --content-end: 343px;

  --font-family-base: "Work Sans", sans-serif;

  --hero-title-size: 70px;
  --hero-title-line-height: 74px;
  --hero-body-size: 20px;
  --hero-body-line-height: 38px;

  --panel-title-size: 28px;
  --panel-title-line-height: 36px;
  --panel-body-size: 16px;
  --panel-body-line-height: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #000;
  color: var(--White);
  font-family: var(--font-family-base);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Scroll indicator ──────────────────────────────────────────────────── */

.scroll-indicator {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  opacity: 0.85;
  color: transparent;
  font-size: 0;
  background-image: url('https://valhallrassets.blob.core.windows.net/assets/Home/Icon_Arrow_Down.png');
  background-size: 16px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.scroll-indicator:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.08);
}

.site-shell {
  width: 100%;
  margin: 0;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: var(--panel-gap);
  padding-bottom: 16px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.panel--gradient {
  background: linear-gradient(271deg, rgb(60, 41, 227) -1.49%, rgb(67, 146, 243) 33.58%, rgb(76, 210, 228) 67.16%, rgb(16, 249, 171) 102.23%);
}

.panel--obsidian {
  background: var(--Obsidian);
}

.panel__title {
  margin: 0;
  color: var(--White);
  font-family: var(--font-family-base);
  font-size: var(--panel-title-size);
  font-style: normal;
  font-weight: 700;
  line-height: var(--panel-title-line-height);
}

.panel__body {
  margin: 0;
  color: var(--White);
  font-family: var(--font-family-base);
  font-size: var(--panel-body-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--panel-body-line-height);
}

.hero__title {
  margin: 0;
  color: var(--White);
  font-family: var(--font-family-base);
  font-size: var(--hero-title-size);
  font-style: normal;
  font-weight: 700;
  line-height: var(--hero-title-line-height);
}

.hero__body {
  margin: 0;
  color: var(--White);
  font-family: var(--font-family-base);
  font-size: var(--hero-body-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--hero-body-line-height);
}

@media (max-width: 1280px) {

  .hero__title {
    margin: 0;
    color: var(--White);
    font-family: var(--font-family-base);
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--hero-title-line-height);
  }

  .hero__body {
    margin: 0;
    color: var(--White);
    font-family: var(--font-family-base);
    font-size: var(--panel-body-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--panel-body-line-height);
  }

}

@media (max-width: 960px) {
  :root {
    --hero-title-size: 54px;
    --hero-body-size: 22px;
    --hero-body-line-height: 32px;
  }

}

@media (max-width: 640px) {
  :root {
    --hero-title-size: 40px;
    --hero-body-size: 18px;
    --hero-body-line-height: 28px;
    --panel-title-size: 24px;
    --panel-body-size: 14px;
    --panel-body-line-height: 22px;
  }

}