:root {
  color-scheme: dark;
  --white: #f8fbff;
  --muted: rgba(248, 251, 255, 0.78);
  --line: rgba(248, 251, 255, 0.34);
  --navy: #05101f;
  --red: #c8333d;
  --gold: #f4c56a;
  --blue: #58b7ff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--navy);
  font-family:
    Optima, Candara, "Avenir Next", Avenir, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.poster {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.poster__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.66) 0%, rgba(4, 12, 24, 0.18) 47%, rgba(4, 12, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.02) 56%, rgba(2, 8, 18, 0.42) 100%);
}

.poster__content {
  width: min(760px, calc(100% - 64px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 96px 40px;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family:
    Copperplate, "Copperplate Gothic Light", "Gill Sans", "Avenir Next",
    ui-sans-serif, system-ui, sans-serif;
  font-size: 92px;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.46);
}

.poster__line {
  max-width: 560px;
  margin: 26px 0 34px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.52);
}

.poster__action {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(248, 251, 255, 0.58);
  border-radius: 4px;
  color: var(--white);
  background: rgba(6, 18, 34, 0.42);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.poster__action:hover,
.poster__action:focus-visible {
  border-color: var(--white);
  background: rgba(200, 51, 61, 0.86);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 900px) {
  .poster__content {
    width: min(660px, calc(100% - 48px));
    padding-left: 24px;
  }

  h1 {
    max-width: 600px;
    font-size: 70px;
  }

  .poster__line {
    max-width: 500px;
    font-size: 24px;
  }
}

@media (max-width: 620px) {
  .poster__image {
    object-position: 78% center;
  }

  .poster::after {
    background:
      linear-gradient(180deg, rgba(3, 10, 22, 0.72) 0%, rgba(3, 10, 22, 0.32) 54%, rgba(3, 10, 22, 0.68) 100%),
      linear-gradient(90deg, rgba(3, 10, 22, 0.36) 0%, rgba(3, 10, 22, 0.08) 100%);
  }

  .poster__content {
    width: min(100%, calc(100% - 36px));
    min-height: 100svh;
    justify-content: flex-start;
    padding: 56px 0 150px 18px;
  }

  h1 {
    max-width: 360px;
    font-size: 48px;
    line-height: 1;
  }

  .poster__line {
    max-width: 330px;
    margin-top: 20px;
    margin-bottom: 26px;
    font-size: 21px;
  }

  .poster__action {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }
}

.document-page {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(88, 183, 255, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(200, 51, 61, 0.12), transparent 34%),
    #07111f;
  color: var(--white);
}

.document {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.document__back {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.document h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 64px;
}

.document p {
  margin: 0 0 22px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .document {
    width: min(100%, calc(100% - 32px));
    padding: 42px 0;
  }

  .document__back {
    margin-bottom: 42px;
  }

  .document h1 {
    font-size: 46px;
  }

  .document p {
    font-size: 16px;
  }
}
