@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;900&display=swap');

:root {
  --bg-color: #F0F9FF;
  --text-color: #0C4A6E;
  --primary-color: #0EA5E9;
  --secondary-color: #38BDF8;
  --cta-color: #F97316;
}

body.landing-body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3; /* Subtle 3D background */
}

/* Exaggerated Minimalism Typography */
h1, h2, h3, .massive-text {
  font-family: 'Cormorant', serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0;
  line-height: 1;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 15rem);
  color: var(--text-color);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 3rem;
  color: #0f172a;
}

.cta-btn {
  background-color: var(--cta-color);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
  background-color: #ea580c;
}

/* Scroll Story Chapters */
.story-chapter {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 10vw;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-chapter.visible {
  opacity: 1;
  transform: translateY(0);
}

.chapter-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chapter-title {
  font-size: clamp(3rem, 8vw, 8rem);
  margin-bottom: 2rem;
}

.chapter-desc {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.6;
  max-width: 800px;
  font-weight: 400;
}

.align-right {
  align-items: flex-end;
  text-align: right;
}

.align-center {
  align-items: center;
  text-align: center;
}

/* Nav */
.minimal-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-brand {
  font-family: 'Cormorant', serif;
  font-weight: 900;
  font-size: 2rem;
  color: white; /* Difference mode makes it dark on light bg */
  text-decoration: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2rem;
  font-size: 1.1rem;
}
