body.landing {
  overflow-x: hidden;
}

#bg3d {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

body.landing .site-nav {
  background: linear-gradient(180deg, rgba(13, 16, 23, 0.85), rgba(13, 16, 23, 0.35));
  border-bottom: none;
  position: fixed;
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.2rem;
  position: relative;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.hero-title {
  margin: 0;
  line-height: 0;
}

.hero-title img {
  width: min(480px, 78vw);
  height: auto;
  filter: drop-shadow(0 10px 38px rgba(0, 0, 0, 0.8));
}

.hero-sub {
  max-width: 56ch;
  margin: 1.2rem auto 2rem;
  color: #cfccc4;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn {
  backdrop-filter: blur(6px);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  font-size: 1.6rem;
  color: var(--gold-soft);
  animation: cue-bounce 2.2s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

.features-wrap {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(13, 16, 23, 0.78) 18%, rgba(13, 16, 23, 0.94));
}

.features {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
}

.features-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(24, 31, 45, 0.62);
  border: 1px solid rgba(212, 168, 71, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 20% 0%, rgba(212, 168, 71, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 71, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}

.feature-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.feature-go {
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

body.landing .site-footer {
  background: transparent;
}
