:root {
  --panel-blue: #1B3D5B;
  --text: #f4f7fb;
  --text-soft: rgba(244, 247, 251, 0.72);
  --text-muted: rgba(244, 247, 251, 0.52);
  --divider: rgba(255, 255, 255, 0.08);
  --transition: 520ms cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  background: #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.48;
  overflow: hidden;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.reel-panel {
  position: relative;
  min-height: 100vh;
  background: #02080e;
  overflow: hidden;
}

.reel-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 88%, rgba(0,0,0,.08));
  pointer-events: none;
}

.showreel {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1200ms ease;
}

body.is-loaded .showreel {
  opacity: 1;
  transform: scale(1);
}

.info-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 80px);
  background: var(--panel-blue);
  border-left: 1px solid var(--divider);
}

.content-wrap {
  width: min(100%, 500px);
  text-align: center;
}

.brand-block {
  margin-bottom: clamp(40px, 5vw, 58px);
}

.brand-logo {
  width: min(100%, 430px);
  height: auto;
  display: inline-block;
}

.copy-block {
  max-width: 470px;
  margin: 0 auto;
}

p {
  margin: 0 auto 22px;
  color: var(--text-soft);
}

p.intro {
  color: var(--text);
  margin-bottom: 24px;
}

p.spaced {
  margin-top: 58px;
}

strong {
  color: var(--text);
  font-weight: 750;
}

a {
  color: var(--text);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255,255,255,.42);
  transition: color 180ms ease, text-decoration-color 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 54px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  opacity: .96;
  transition: transform 220ms ease, opacity 220ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

body.is-loaded .reveal {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .reveal-1 { transition-delay: 180ms; }
body.is-loaded .reveal-2 { transition-delay: 340ms; }
body.is-loaded .reveal-3 { transition-delay: 500ms; }

@media (max-width: 900px) {
  body { overflow: auto; }

  .site-shell {
    min-height: 100vh;
    grid-template-columns: 1fr;
  }

  .reel-panel,
  .showreel {
    min-height: 48vh;
  }

  .info-panel {
    min-height: auto;
    padding: 54px 24px 64px;
    border-left: 0;
    border-top: 1px solid var(--divider);
  }

  .brand-block {
    margin-bottom: 36px;
  }

  .brand-logo {
    max-width: 390px;
  }

  p.spaced {
    margin-top: 42px;
  }
}

@media (max-width: 520px) {
  body { font-size: 14px; }

  .reel-panel,
  .showreel {
    min-height: 42vh;
  }

  .info-panel {
    padding: 42px 22px 56px;
  }

  .brand-logo {
    max-width: 300px;
  }

  p {
    margin-bottom: 19px;
  }

  .social-links {
    margin-top: 42px;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .showreel,
  .reveal {
    transform: none;
  }
}
