:root {
  --cream: #eaf0fa;
  --navy: #073d5b;
  --orange: #ff5a00;
  --gold: #f6ad00;
  --black: #050505;
  --white: #ffffff;
  --ink: #101010;
  --muted: rgba(16, 16, 16, .68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: #031928;
  font-family: Montserrat, Arial, sans-serif;
}

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

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

.menu-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(7, 61, 91, .14);
  background: rgb(0, 0, 0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.header-brand:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.header-brand-image {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.header-brand-name {
  color: var(--orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.menu-button,
.drawer-close {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.menu-button:hover,
.drawer-close:hover {
  background: var(--orange);
  transform: scale(1.04);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: min(350px, 86vw);
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 24px 0 70px rgba(0, 0, 0, .32);
  transform: translateX(-110%);
  transition: transform .28s ease;
}

.menu-toggle:checked ~ .drawer {
  transform: translateX(0);
}

.drawer strong {
  display: block;
  margin: 18px 0 24px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.drawer nav {
  display: grid;
  gap: 12px;
}

.drawer a {
  padding: 13px 16px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  background: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}

.drawer a:hover,
.drawer a.active {
  background: var(--orange);
  transform: translateX(4px);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.menu-toggle:checked ~ .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

main {
  flex: 1;
  display: flex;
}

.forlog-hero {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: start;
  gap: 34px;
  padding: 58px 6vw 72px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 90, 0, .18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #123f53 0%,
      #0e374b 46%,
      #031928 100%
    );
}

.forlog-hero > *:not(.forlog-background) {
  position: relative;
  z-index: 1;
}

.forlog-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  background: url("assets/trailer.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: min(88vw, 1040px) auto;
  opacity: .72;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 20%,
    rgba(0, 0, 0, .22) 38%,
    rgba(0, 0, 0, .72) 58%,
    #000 76%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 20%,
    rgba(0, 0, 0, .22) 38%,
    rgba(0, 0, 0, .72) 58%,
    #000 76%
  );
  pointer-events: none;
}

.forlog-copy {
  align-self: start;
  max-width: 720px;
  padding-top: 10px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin-top: 12px;
  margin-bottom: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 700;
  line-height: .95;
  color: var(--white);
}
h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  color: var(--orange)
}

.forlog-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--orange);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 90, 0, .25);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, .58);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.secondary-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.forlog-card {
  max-width: 560px;
  margin-top: 28px;
  padding: 30px;
  border-radius: 26px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.forlog-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.forlog-card strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.forlog-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding: 8px 18px;
  }

  .header-brand-image {
    width: 50px;
    height: 50px;
  }

  .forlog-hero {
    grid-template-columns: 1fr;
    padding: 70px 6vw;
  }

  .forlog-background {
    width: 100%;
    background-size: min(86%, 520px) auto;
    opacity: .24;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 66px;
    gap: 11px;
    padding: 7px 12px;
  }

  .menu-button,
  .drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
  }

  .header-brand {
    gap: 7px;
  }

  .header-brand-image {
    width: 43px;
    height: 43px;
  }

  .header-brand-name {
    font-size: clamp(13px, 4vw, 18px);
    white-space: normal;
  }

  .forlog-hero {
    min-height: calc(100vh - 66px);
    gap: 28px;
    padding: 58px 22px;
  }

  h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
