body {
  background-color: #050505;
  color: #f5f5f5;
  overflow-x: hidden;
  margin: 0;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Scale Control */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #222;
}

/* No Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.font-display {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.01em;
}

/* Fluid Typographic Scale - Refined for Elegance */
h1.font-display {
  font-size: clamp(2.5rem, 9vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

h2.font-display {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.0;
}

.text-editorial-lg {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  font-weight: 300;
}

.editorial-body {
  font-size: clamp(0.875rem, 0.9vw, 1rem);
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.text-meta {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
}

/* Tab & Pillar Interaction */
.tab-btn {
  position: relative;
  transition: all 0.4s ease;
}

.tab-btn-active {
  color: #fff;
}

.tab-content-enter {
  opacity: 0;
  transform: translateY(15px);
  animation: tab-enter 0.6s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes tab-enter {
  to { opacity: 1; transform: translateY(0); }
}

.interactive-panel {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text-reveal-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
}

.text-reveal-container.is-open {
  max-height: 2000px;
  opacity: 1;
}

/* Global Reveals */
.split-reveal {
  overflow: hidden;
  display: block;
}

.split-reveal span {
  display: block;
  transform: translateY(110%);
  animation: split-reveal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes split-reveal {
  to { transform: translateY(0); }
}

.reveal-mask {
  clip-path: inset(0 100% 0 0);
  animation: reveal-mask 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes reveal-mask {
  to { clip-path: inset(0 0 0 0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

.blur-reveal {
  animation: blur-reveal 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes blur-reveal {
  from { filter: blur(15px); opacity: 0; transform: scale(1.02); }
  to { filter: blur(0); opacity: 1; transform: scale(1); }
}

/* Ensure images never break containers and keep scale */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}