:root {
  color-scheme: light dark;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #0f1e2f;
  color: #0f1e2f;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

main {
  width: 100%;
}

.split-landing {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.split-panel {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.split-panel:hover,
.split-panel:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 32px 60px rgba(15, 30, 47, 0.25);
  outline: none;
}

.split-panel:hover::after,
.split-panel:focus-visible::after {
  opacity: 1;
}

.panel-content {
  max-width: 420px;
  position: relative;
  z-index: 1;
  color: inherit;
}

.panel-content img {
  width: 160px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 18px 30px rgba(15, 30, 47, 0.25));
}

.panel-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.panel-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.92;
}

.music-panel {
  background: linear-gradient(135deg, #f2dcb7, #d9b278);
  color: #0f1e2f;
}

.engineering-panel {
  background: linear-gradient(135deg, #0b1d33, #1c5fb8);
  color: #f5f9ff;
}

.engineering-panel .panel-content img {
  filter: drop-shadow(0 18px 36px rgba(10, 30, 58, 0.45));
}

.footer-note {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  body {
    background: #0f1e2f;
  }
  .split-landing {
    flex-direction: column;
  }
  .split-panel {
    min-height: 50vh;
  }
  .footer-note {
    position: static;
    transform: none;
    text-align: center;
    margin: 1.5rem 0;
  }
}
