/* ================================================================
   DESIGN THEATRE — LANDING & CHOICE CSS
================================================================ */

body {
  background-color: #000000 !important;
  color: #ffffff !important;
}

#landing-wrapper {
  --bg: #000000;
  --accent: #d4a81a;
  --accent-glow: rgba(212, 168, 26, 0.28);
  --font-heading: var(--font-primary);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

#sticky-canvas-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

#frame-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* Will be faded in by JS */
  transition: opacity 0.5s ease;
}

#landing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
}

.landing-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--accent); /* Changed to yellow as requested */
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(212, 168, 26, 0.35), 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  transition: opacity 0.6s ease;
}

.landing-subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  max-width: 560px;
  line-height: 1.7;
  transition: opacity 0.6s ease;
}

#scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  transition: opacity 0.5s ease;
}

#scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(212, 168, 26, 0.5);
  border-bottom: 2px solid rgba(212, 168, 26, 0.5);
  transform: rotate(45deg);
  animation: chevronBounce 1.6s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ================================================================
   CHOICE SECTION
================================================================ */
#choice-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 20;
  padding: 60px 24px 60px;
  pointer-events: auto;
}

#choice-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.choice-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.choice-cards {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.choice-card {
  position: relative;
  width: 300px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 168, 26, 0.2);
  border-radius: 16px;
  padding: 36px 32px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  text-align: center;
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
}

.choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 26, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.choice-card:hover {
  border-color: var(--accent);
  background: rgba(212, 168, 26, 0.04);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 168, 26, 0.12);
  color: inherit;
}

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

.choice-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(212, 168, 26, 0.07);
  transition: all 0.35s ease;
  font-size: 24px;
  color: var(--accent);
}

.choice-card:hover .choice-card-icon {
  background: rgba(212, 168, 26, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 168, 26, 0.2);
}

.choice-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.choice-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}

.choice-card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.choice-card:hover .choice-card-btn {
  transform: scale(1.05);
  color: #fff;
}

.choice-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -2;
  box-shadow: 
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 3px 3px 0.5px -3.5px rgba(255,255,255,0.09),
    inset -3px -3px 0.5px -3.5px rgba(212,168,26,0.5),
    inset 1px 1px 1px -0.5px rgba(212,168,26,0.6),
    inset -1px -1px 1px -0.5px rgba(212,168,26,0.6),
    inset 0 0 6px 6px rgba(212,168,26,0.12),
    inset 0 0 2px 2px rgba(212,168,26,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.choice-card:hover .choice-card-btn::before {
  box-shadow: 
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 3px 3px 0.5px -3.5px rgba(255,255,255,0.09),
    inset -3px -3px 0.5px -3.5px rgba(255,255,255,0.85),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
}

.choice-card-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
  backdrop-filter: url("#container-glass");
  -webkit-backdrop-filter: url("#container-glass");
}

.choice-card-btn span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
