:root {
  color-scheme: dark;
  --ink: #f6fbff;
  --void: #020509;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--void);
}

body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07130b 0%, #020509 64%, #010306 100%);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 2rem;
  isolation: isolate;
}

.hero::before,
.hero::after,
.hero__content::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background-image: url("/europe-compute.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01);
}

.hero::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(2, 5, 9, 0.18) 0 10rem, rgba(2, 5, 9, 0.34) 32rem, rgba(2, 5, 9, 0.68) 72rem),
    linear-gradient(180deg, rgba(2, 5, 9, 0.64), rgba(2, 5, 9, 0.2) 42%, rgba(2, 5, 9, 0.84)),
    linear-gradient(90deg, rgba(2, 5, 9, 0.58), transparent 34%, transparent 66%, rgba(2, 5, 9, 0.58));
}

.hero__content::before {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(92, 255, 128, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 255, 128, 0.1) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

.hero__content {
  --hero-description-size: 0.86rem;

  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92rem, calc(100% - 4rem));
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__logo {
  position: fixed;
  top: max(1.5rem, 4svh);
  left: 50%;
  z-index: 2;
  width: clamp(3.75rem, 5vw, 4.75rem);
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 0.85rem 2rem rgba(0, 0, 0, 0.45));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999rem;
  background: #fff;
  color: #071018;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow:
    0 0.65rem 2rem rgba(0, 0, 0, 0.22),
    0 0 1.25rem rgba(255, 255, 255, 0.16);
}

h1 {
  max-width: min(52rem, 90vw);
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0 1.25rem rgba(76, 255, 120, 0.14),
    0 1.25rem 3.5rem rgba(0, 0, 0, 0.68);
}

.hero__description {
  max-width: 40rem;
  margin: 1.15rem auto 0;
  color: #fff;
  font-family: var(--sans);
  font-size: var(--hero-description-size);
  font-weight: 400;
  line-height: 1.42;
  text-wrap: balance;
  text-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.8);
}

.hero__email,
.hero__email:visited,
.hero__email:hover,
.hero__email:focus {
  display: inline-block;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: calc(var(--hero-description-size) - 2px);
  font-weight: 300;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.8);
  pointer-events: auto;
}

.hero__email .__cf_email__ {
  color: inherit;
  text-decoration: inherit;
}

@media (min-width: 48rem) {
  .hero {
    padding: 4rem;
  }

  .hero__content {
    --hero-description-size: 0.95rem;

    width: min(92rem, calc(100% - 8rem));
  }

  .hero__description {
    font-size: var(--hero-description-size);
  }
}

@media (min-width: 80rem) {
  h1 {
    max-width: 58rem;
    font-size: 5.1rem;
  }
}

@media (max-width: 24rem) {
  .hero {
    padding: 1.25rem;
  }

  .hero__content {
    width: min(92rem, calc(100% - 2.5rem));
  }

  h1 {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
