/* ==========================================================================
   COMING SOON - COMBINED STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #000000;
  --color-accent: #91FF00;
  --color-white: #ffffff;
  --color-black: #000000;
  
  /* Typography */
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-4xl: 2.25rem;
  --font-weight-light: 300;
  --font-weight-medium: 500;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Transitions */
  --transition-base: 300ms cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  
  /* Z-Index */
  --z-sticky: 1100;
  
  /* Hero */
  --hero-background: #000000;
  --hero-gradient: linear-gradient(
    180deg,
    hsl(0deg 0% 0%) 16%,
    hsl(120deg 100% 8%) 50%,
    hsl(120deg 100% 10%) 62%,
    hsl(120deg 100% 14%) 70%,
    hsl(120deg 100% 17%) 75%,
    hsl(120deg 100% 21%) 79%,
    hsl(120deg 100% 25%) 82%,
    hsl(120deg 100% 29%) 85%,
    hsl(106deg 100% 33%) 87%,
    hsl(98deg 100% 37%) 90%,
    hsl(92deg 100% 41%) 92%,
    hsl(89deg 100% 46%) 95%,
    hsl(86deg 100% 50%) 100%
  );
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: "Sizmo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--hero-gradient);
  color: var(--color-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Header Styles
   -------------------------------------------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-6) 0 var(--space-4) 0;
}

.nav-brand {
  display: flex;
  justify-content: center;
}

.brand-link {
  display: flex;
  align-items: center;
  transition: filter 200ms cubic-bezier(0.65, 0.01, 0.05, 0.99);
  mix-blend-mode: screen;
}

.brand-link:hover {
  filter: drop-shadow(0 0 20px rgba(145, 255, 0, 0.8)) drop-shadow(0 0 40px rgba(145, 255, 0, 0.4));
}

.logo {
  height: 80px;
  width: auto;
}

/* --------------------------------------------------------------------------
   Hero Styles
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
}

.starfield-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) 0;
  min-height: 100vh;
}

.hero-title {
  font-size: 6rem;
  font-family: "gothiks", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-accent);
}

.lineParent {
  overflow: hidden;
}

.lineChild {
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Copyright Section
   -------------------------------------------------------------------------- */
.copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--space-4) 0;
}

.copyright p {
  font-size: var(--font-size-sm);
  font-family: "Sizmo", sans-serif;
  font-weight: var(--font-weight-light);
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  margin: 0;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-family: "Sizmo", sans-serif;
  font-weight: var(--font-weight-light);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-4);
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 5.5rem;
    line-height: 1.0;
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
    max-width: none;
  }

  .hero-content {
    padding: var(--space-16) 0;
  }

  .logo {
    height: 50px;
  }

  .container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 4.5rem;
    line-height: 1.0;
  }
}