:root {
  --white: #ffffff;
  --ink: #111216;
  --red: #b3192a;
  --blue: #153e8f;
  --deep: #071844;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--deep);
}

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

.home-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(90deg, rgba(8, 25, 66, 0.82), rgba(15, 52, 126, 0.64)),
    url("https://static.wixstatic.com/media/cf8a14_9cf88d2eb6e24bef901a8912da55dd9f~mv2.jpg/v1/fill/w_1920,h_700,al_c,q_85,enc_avif,quality_auto/cf8a14_9cf88d2eb6e24bef901a8912da55dd9f~mv2.jpg") center top / cover no-repeat,
    radial-gradient(circle at 50% 20%, #245bb7, #071844 62%);
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  min-height: 74px;
  padding: 18px;
  background: rgba(8, 24, 68, 0.74);
  border-bottom: 3px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-nav a {
  opacity: 0.92;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-nav a:hover {
  color: #ff4b5f;
  opacity: 1;
  transform: translateY(-2px);
}

.hero-brand {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(54px, 8vw, 110px) 18px;
}

.logo-stage {
  display: grid;
  justify-items: center;
  gap: 24px;
  animation: fade-up 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-stage img {
  width: min(520px, 78vw);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.32));
  transform-origin: center;
  animation: logo-float 6s ease-in-out infinite;
}

.brand-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    background 240ms ease,
    color 240ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms ease;
}

.brand-links a:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 20px 38px rgba(179, 25, 42, 0.24);
}

.access-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(8, 25, 66, 0.88), rgba(15, 52, 126, 0.72)),
    url("https://static.wixstatic.com/media/cf8a14_9cf88d2eb6e24bef901a8912da55dd9f~mv2.jpg/v1/fill/w_1920,h_700,al_c,q_85,enc_avif,quality_auto/cf8a14_9cf88d2eb6e24bef901a8912da55dd9f~mv2.jpg") center top / cover no-repeat;
}

.access-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(720px, 100%);
  padding: clamp(22px, 5vw, 42px);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.access-card img {
  width: min(250px, 66vw);
  object-fit: contain;
}

.access-eyebrow,
.access-status {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 0;
  font-weight: 800;
}

.login-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(7, 24, 68, 0.88);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 24, 68, 0.12);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease;
}

.login-switch a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(179, 25, 42, 0.18);
}

.access-card h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
}

.access-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.access-options button {
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 18px;
  text-align: left;
  background: #f7f7f4;
  border: 1px solid #e5e7ec;
  border-radius: 8px;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.access-options button:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(179, 25, 42, 0.32);
}

.access-options strong {
  font-size: 17px;
}

.access-options span {
  color: #666a73;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@media (max-width: 720px) {
  .home-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .access-options {
    grid-template-columns: 1fr;
  }
}
