/* --------------- No-scroll globals --------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;        /* Prevent page scrolling */
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
  }
  
  :root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --accent: #ffffff;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.1);
  }
  
  /* Base body */
  body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Background animation */
  .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    background:
      linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
  }
  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  
  /* Logo */
  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo-image {
    height: 32px;
    width: auto;
    display: block;
  }
  .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
  }
  .logo-text::after {
    content: '™';
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
  }
  
  /* HERO - single full screen */
  .hero {
    position: relative;
    height: 100vh;                /* exactly the viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;              /* narrow side padding only */
    overflow: hidden;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
  }
  
  /* Tagline and title */
  .tagline {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease;
  }
  
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 200;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease 0.4s both;
  }
  
  /* Countdown */
  .countdown-wrapper {
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease 0.6s both;
  }
  .countdown-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  .countdown {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
  }
  .countdown-item {
    text-align: center;
    min-width: 80px;
  }
  .countdown-value {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .countdown-label-small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
  }
  
  /* Social links (centered) */
  .social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 6px;
  }
  .social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-4px);
  }
  
  /* Images: make sure they never overflow */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Footer hidden but set style if enabled later */
  footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Small screens adjustments */
  @media (max-width: 768px) {
    nav { padding: 0.8rem 1rem; }
    .hero { padding: 0 1.25rem; }
    .hero-title { font-size: clamp(1.8rem, 12vw, 4.2rem); }
    .countdown { gap: 0.7rem; }
    .countdown-item { min-width: 60px; }
    .countdown-value { font-size: clamp(1.6rem, 12vw, 2.5rem); }
    .social-link { width: 42px; height: 42px; }
  }
  
  /* Utility: hidden (for elements toggled later) */
  .u-hidden { display: none !important; }
  