/* ==========================================================================
   ZEUS - MINIMALIST DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-dark: hsl(240, 25%, 5%);
  --gold: hsl(43, 100%, 45%);
  --gold-glow: hsla(43, 100%, 45%, 0.3);
  --gold-bright: hsl(45, 100%, 50%);
  --silver: hsl(228, 24%, 80%);
  --white: hsl(228, 100%, 97%);
  
  /* Deity Theme Background Glows */
  --athena-blue-glow: hsla(184, 100%, 50%, 0.15);
  --ares-red-glow: hsla(345, 100%, 59%, 0.15);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-cursive: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--silver);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* --- Atmospheric Backgrounds --- */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.sky-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  transition: background var(--transition-slow), opacity var(--transition-slow);
}

#sky-glow-left {
  top: -10vw;
  left: -10vw;
  background: radial-gradient(circle, var(--athena-blue-glow) 0%, transparent 70%);
}

#sky-glow-right {
  bottom: -10vw;
  right: -10vw;
  background: radial-gradient(circle, var(--ares-red-glow) 0%, transparent 70%);
}

/* --- Hero Layout --- */
.hero-container {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.hero-container.minimal-layout {
  height: 100%;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: clamp(140px, 18vh, 190px); /* 2x size, height-bound clamp */
  height: auto;
  margin-block-end: 1rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(212, 154, 0, 0.15));
  animation: fade-in-up 0.8s ease-out;
}

.coming-soon-badge {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1vh, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid rgba(212, 154, 0, 0.15);
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  background: hsla(43, 100%, 45%, 0.04);
  margin-block-end: 1rem;
  box-shadow: inset 0 0 8px rgba(212, 154, 0, 0.05);
  animation: fade-in-up 0.8s ease-out;
}

/* --- Precise Headline Styling --- */
.main-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.75rem); /* Extremely responsive size fitting perfectly in 100vh */
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in-up 1.2s ease-out;
}

.headline-part-1 {
  display: block;
  opacity: 0.95;
}

.headline-part-2 {
  display: block;
}

.highlight-you {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  color: var(--gold-bright);
  text-shadow: 
    0 0 20px rgba(212, 154, 0, 0.25),
    0 0 40px rgba(212, 154, 0, 0.1);
  display: inline-block;
  padding-inline-end: 0.08em; /* accounts for script slant */
  position: relative;
}

/* --- Keyframes & Utility Animations --- */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    transition-duration: 0.1s !important;
  }
}
