:root {
  --frame-height: 1026px;
  --header-height: 84px;
  --header-shadow: 0 2.64921px 33.1152px #eae2d7;
  --stage-width: 354px;
  --stage-top: 43px;
  --stage-bottom: 22px;
  --stage-gap: 21px;
  --info-width: 354px;
  --info-height: 448px;
  --mosaic-width: 354px;
  --mosaic-height: 407.99px;
  --info-radius: 27.9856px;
  --mosaic-radius: 25.4676px;
  --paper: #fff5e6;
  --paper-speck: rgba(128, 98, 41, 0.12);
  --paper-speck-soft: rgba(128, 98, 41, 0.07);
  --accent: #030cef;
  --ink: #000000;
}

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

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

body {
  margin: 0;
  background: #000000;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
}

img {
  display: block;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  background: #ffffff;
  box-shadow: var(--header-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128.02px;
  line-height: 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(var(--frame-height) - var(--header-height));
  background: linear-gradient(180deg, #030cef 0%, #000000 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 18%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -90px;
  left: 50%;
  width: 520px;
  height: 160px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  width: min(var(--stage-width), calc(100% - 36px));
  margin: 0 auto;
  gap: var(--stage-gap);
  padding-top: var(--stage-top);
  padding-bottom: var(--stage-bottom);
}

.paper-surface {
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(var(--paper-speck) 0.75px, transparent 0.85px),
    radial-gradient(var(--paper-speck-soft) 0.75px, transparent 0.85px);
  background-position: 0 0, 2px 2px;
  background-size: 6px 6px, 8px 8px;
}

.info-card {
  width: var(--info-width);
  height: var(--info-height);
  border-radius: var(--info-radius);
}

.mosaic-card {
  width: var(--mosaic-width);
  height: var(--mosaic-height);
  border-radius: var(--mosaic-radius);
  overflow: hidden;
}

.mosaic-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.eyebrow {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 130.97px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
}

.cta-group {
  position: absolute;
  top: 235.18px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15.67px;
  transform: translateX(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7.88px;
  height: 53.17px;
  padding: 0 5.59712px;
  border-radius: 55.9712px;
  border: 1.39928px solid currentColor;
  font-family: "Bebas Neue", sans-serif;
  font-size: 29.6725px;
  line-height: 36px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.button--outline {
  width: 172.39px;
  color: var(--accent);
  background: transparent;
}

.button--solid {
  width: 319.04px;
  color: #ffffff;
  background: var(--accent);
}

.button__label {
  text-decoration: underline;
}

.button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 25.96px;
  height: 25.96px;
}

.button__arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.button__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-block {
  position: absolute;
  top: 387px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
}

.contact-block a {
  color: var(--accent);
}

@media (min-width: 744px) {
  :root {
    --frame-height: 1494px;
    --header-height: 113px;
    --header-shadow: 0 3.5463px 44.3287px #eae2d7;
    --stage-width: 515.03px;
    --stage-top: 74px;
    --stage-bottom: 85px;
    --stage-gap: 34.83px;
    --info-width: 515.03px;
    --info-height: 593.59px;
    --mosaic-width: 515.03px;
    --mosaic-height: 593.59px;
    --info-radius: 37.0528px;
    --mosaic-radius: 37.0528px;
  }

  .brand {
    width: 170.15px;
  }

  .hero__glow {
    top: -110px;
    width: 760px;
    height: 220px;
  }

  .eyebrow {
    top: 60.03px;
    left: 46.69px;
    width: 173.41px;
    transform: none;
    font-size: 14.8211px;
    line-height: 19px;
    text-align: left;
  }

  .cta-group {
    top: 311.98px;
    left: 46.69px;
    gap: 20.75px;
    transform: none;
    align-items: flex-start;
  }

  .button {
    gap: 10.44px;
    height: 70.4px;
    padding-inline: 7.41055px;
    border-radius: 74.1055px;
    border-width: 1.85264px;
    font-size: 39.2862px;
    line-height: 47px;
  }

  .button--outline {
    width: 228.24px;
  }

  .button--solid {
    width: 422.4px;
  }

  .button__arrow {
    width: 34.38px;
    height: 34.38px;
  }

  .contact-block {
    top: 508.36px;
    left: 46.69px;
    align-items: flex-start;
    width: 200.08px;
    transform: none;
    font-size: 16.3032px;
    line-height: 21px;
    text-align: left;
  }

}

@media (min-width: 1100px) and (any-hover: hover) and (any-pointer: fine) {
  :root {
    --frame-height: 1117px;
    --header-height: 127px;
    --header-shadow: 0 4px 50px #eae2d7;
    --stage-width: 1437px;
    --stage-top: 95px;
    --stage-bottom: 94px;
    --stage-gap: 47px;
    --info-width: 695px;
    --info-height: 801px;
    --mosaic-width: 695px;
    --mosaic-height: 801px;
    --info-radius: 50px;
    --mosaic-radius: 50px;
  }

  .brand {
    width: 192.88px;
  }

  .hero__glow {
    top: -130px;
    width: 1040px;
    height: 250px;
  }

  .stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: min(1437px, calc(100vw - 60px));
    gap: clamp(28px, 3vw, 47px);
    padding-top: 95px;
    padding-bottom: 94px;
  }

  .info-card,
  .mosaic-card {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 695 / 801;
  }

  .eyebrow {
    top: 10.112%;
    left: 9.065%;
    width: 33.669%;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.3;
    text-align: left;
    transform: none;
  }

  .cta-group {
    top: 52.559%;
    left: 9.065%;
    width: 82.014%;
    gap: clamp(18px, 2vw, 28px);
    align-items: flex-start;
    transform: none;
  }

  .button {
    gap: clamp(10px, 1vw, 14.08px);
    height: clamp(78px, 6.2vw, 95px);
    padding-inline: clamp(8px, 0.8vw, 10px);
    border-width: 2.5px;
    border-radius: 999px;
    font-size: clamp(44px, 3.8vw, 53.0139px);
    line-height: 1.2;
  }

  .button--outline {
    width: 54.035%;
    max-width: 308px;
  }

  .button--solid {
    width: 100%;
    max-width: 570px;
  }

  .button__arrow {
    width: clamp(38px, 3.2vw, 46.39px);
    height: clamp(38px, 3.2vw, 46.39px);
  }

  .contact-block {
    top: 85.643%;
    left: 9.065%;
    align-items: flex-start;
    width: 38.849%;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.27;
    text-align: left;
    transform: none;
  }
}
