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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 1.1;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  cursor: crosshair;
}

/* ==================== CANVAS ==================== */
#canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* ==================== OVERLAY ==================== */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
}

.overlay a,
.overlay button {
  pointer-events: auto;
}

.overlay-header {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.overlay-link {
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.overlay-link:hover {
  color: #bc002d;
}

.overlay-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.overlay-logo {
  height: 42px;
  width: auto;
  filter: invert(1);
}

.overlay-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.7;
  text-align: center;
}

.overlay-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 1em;
}

.overlay-nav-link {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.overlay-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: #fff;
  transition: width 0.3s;
}

.overlay-nav-link:hover::after,
.overlay-nav-link.active::after {
  width: 100%;
}

.overlay-nav-link:hover {
  color: #bc002d;
}


/* ==================== PAGE PANELS ==================== */
.page-panel {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  background: #f0f0f0;
  color: #000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  text-transform: none;
}

.page-panel.active {
  transform: translateY(0);
}

.page-close {
  position: fixed;
  top: 20px; right: 24px;
  z-index: 20;
  background: none;
  border: none;
  font-size: 36px;
  color: #000;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.page-close:hover {
  color: #bc002d;
}

.page-content {
  padding: 80px 1.5em 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* ==================== ABOUT ==================== */
.about-article {
  line-height: 1.8;
}

.article-section {
  margin-bottom: 40px;
}

.article-body {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
}

.article-divider {
  width: 100%;
  height: 4px;
  background: #bc002d;
  margin: 48px 0;
}

/* ==================== COMING SOON ==================== */
.page-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 12px;
}

.page-coming-soon p {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.page-coming-soon span {
  font-size: 10px;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .overlay { padding: 1em; }
  .overlay-logo { height: 21px; }
  .overlay-tagline { letter-spacing: 2px; }
  .overlay-nav { gap: 24px; }
  .overlay-nav-link { font-size: 13px; }
  .page-content { padding: 70px 1em 40px; }
  .page-close { top: 14px; right: 16px; font-size: 30px; }
}
