:root {
  --blue: #073f7c;
  --blue-deep: #052f5f;
  --white: #ffffff;
  --yellow: #ffcb05;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--blue);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.splash {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgb(255 255 255 / 7%), transparent 28rem),
    linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 100%);
}

.splash::before,
.splash::after {
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgb(255 255 255 / 7%);
  content: "";
  transform: rotate(35deg);
}

.splash::before {
  top: -20rem;
  right: -10rem;
}

.splash::after {
  bottom: -23rem;
  left: -8rem;
}

.card {
  width: min(100%, 46rem);
}

.logo {
  display: block;
  width: min(100%, 27rem);
  height: auto;
  margin-bottom: clamp(2rem, 6vh, 4rem);
}

.accent {
  width: 4.5rem;
  height: 0.3rem;
  margin-bottom: 1.8rem;
  background: var(--yellow);
}

.content {
  max-width: 41rem;
}

h1 {
  max-width: 40rem;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.contact {
  margin-top: clamp(2rem, 5vh, 3rem);
  font-size: 1rem;
}

a {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

a:hover,
a:focus-visible {
  color: var(--yellow);
}

a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 0.45rem;
}

@media (max-width: 34rem) {
  .splash {
    place-items: start center;
    padding-top: clamp(2.5rem, 10vh, 5rem);
  }

  .logo {
    width: min(100%, 20rem);
    margin-bottom: 2.5rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
}

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