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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 4rem 1.5rem 3rem;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  animation: fade-up 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tag span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}

.main p {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  animation: fade-up 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fade-up 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn .icon-enter,
.btn .text-enter {
  display: none;
}

.btn:hover .icon-explore,
.btn:hover .text-explore {
  display: none;
}

.btn:hover .icon-enter,
.btn:hover .text-enter {
  display: inline;
}

.meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
