* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Geist';
  src: local('Geist');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Geist';
  src: local('Geist');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  z-index: 0;
}

.header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  padding: 0 40px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-feature-settings: 'dlig' 1;
  z-index: 1;
}

.header-left {
  grid-column: 3;
}

.header-right {
  grid-column: 12;
  text-align: right;
  font-weight: 500;
}

.header a {
  color: #fff;
  text-decoration: none;
}

.side-number {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 500;
  font-feature-settings: 'dlig' 1;
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.info-block {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  font-feature-settings: 'dlig' 1;
}

.info-block p {
  margin: 0;
}

.tagline {
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-feature-settings: 'dlig' 1;
  margin-top: 8px;
}

.tagline p {
  margin: 0;
}

.tagline em {
  font-style: italic;
}

/* Reveal animation */
.reveal-mask {
  overflow: hidden;
}

.reveal-mask p {
  transform: translateY(0);
  opacity: 1;
  /* animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; */
}

/* Staggered delays for info-block */
.info-block .reveal-mask:nth-child(1) p {
  animation-delay: 0.1s;
}

.info-block .reveal-mask:nth-child(2) p {
  animation-delay: 0.2s;
}

.info-block .reveal-mask:nth-child(3) p {
  animation-delay: 0.3s;
}

.info-block .reveal-mask:nth-child(4) p {
  animation-delay: 0.4s;
}

@keyframes revealUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.footer {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  align-items: center;
  padding: 0 40px;
  font-size: 9px;
  font-weight: 500;
  font-feature-settings: 'dlig' 1;
  z-index: 1;
}

.footer-left {
  grid-column: 3;
}

.footer-email {
  grid-column: 9;
}

.footer-right {
  grid-column: 12;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }

  .header-left,
  .header-right {
    grid-column: auto;
  }

  .footer {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }

  .footer-left,
  .footer-right {
    grid-column: auto;
  }

  /* 
  .footer-email {
    display: none;
  } */

  /* .side-number {
    display: none;
  } */

  .info-block {
    font-size: 14px;
    line-height: 16px;
  }

  .tagline {
    font-size: 14px;
    line-height: 18px;
  }

  .signature {
    width: 200px;
  }
}