/* ============== SHARED SECTION SHELL ============== */
section { position: relative; z-index: 1; }
.shell {
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 7.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin-bottom: 20px;
}
.section-lede {
  font-size: clamp(15px, 4vw, 19px);
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Section dividers */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);
  margin: 0 24px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 24px calc(var(--safe-bottom) + 56px);
  background: var(--ink-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
  animation: slow-zoom 24s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.08) translateY(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.05) 30%, rgba(5,5,5,0.6) 78%, var(--ink-deep) 100%),
    radial-gradient(ellipse at 75% 30%, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold-glow);
  animation: float-up 12s linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(110vh) scale(0.6); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  background: rgba(5,5,5,0.4);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 11vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 18ch;
}
.hero-sub {
  font-size: clamp(16px, 4.2vw, 22px);
  color: var(--text-mute);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 40px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-cinematic), box-shadow 0.4s, background 0.4s, color 0.4s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--ink-deep);
  box-shadow: 0 8px 32px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover, .btn-gold:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4), 0 0 0 1px var(--gold-bright);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(201,166,104,0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn .arrow, .btn .search-icon {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease-cinematic);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover .search-icon { transform: rotate(15deg) scale(1.15); }

.scroll-indicator {
  position: absolute;
  bottom: calc(var(--safe-bottom) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
}
.scroll-indicator .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator .line::after {
  content: "";
  position: absolute;
  width: 100%; height: 12px;
  background: var(--gold-bright);
  animation: scroll-dot 2.4s var(--ease-cinematic) infinite;
}
@keyframes scroll-dot { 0% { top: -12px; } 100% { top: 36px; } }
