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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Parallax Background Layers */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: -3;
  transform: translateZ(0);
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -2;
  animation: glow 8s ease-in-out infinite alternate;
  transform: translateZ(0);
}

/* Parallax Container */
.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.parallax-layer-1 {
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
  transform: translateY(0);
}

.parallax-layer-2 {
  background: linear-gradient(
    -45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.01) 50%,
    transparent 100%
  );
  transform: translateY(0);
}

.parallax-layer-3 {
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.01) 0%,
    transparent 50%
  );
  transform: translateY(0);
}

@keyframes glow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-logo a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo a:hover {
  color: #a8c8e8;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a8c8e8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2 {
  font-family: 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  margin-top: 60px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 2rem;
  line-height: 0.9;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.gradient-text {
  background: linear-gradient(90deg, #a8c8e8 0%, #f0e8a0 50%, #e8c8d0 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  display: inline-block;
  opacity: 1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
  color: #e5e5e5;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-button:hover::before {
  left: 100%;
}

/* Definition Section */
.definition {
  padding: 2rem 0;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2s forwards;
}

.definition-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.definition-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 1rem;
  color: #e5e5e5;
}

.definition-text em {
  color: #ffffff;
  font-style: italic;
}

.definition-context {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cccccc;
  max-width: 500px;
  margin: 0 auto;
}

/* Manifesto Section */
.manifesto {
  padding: 2rem 0;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.5s forwards;
}

.manifesto-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #e5e5e5;
}

/* Proof Stripe */
.proof-stripe {
  padding: 2rem 0;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 3s forwards;
}

.proof-text {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo-placeholders {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 120px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Closing CTA */
.closing-cta {
  padding: 3rem 0;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 3.5s forwards;
}

.closing-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: #ffffff;
}

/* Footer */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 1s ease-out 4s forwards;
}

.footer-text {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 2rem 0;
    min-height: 80vh;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }

  .definition {
    padding: 1.5rem 0;
  }

  .manifesto {
    padding: 1.5rem 0;
  }

  .proof-stripe {
    padding: 1.5rem 0;
  }

  .closing-cta {
    padding: 2rem 0;
  }

  .logo-placeholders {
    gap: 1rem;
  }

  .logo-placeholder {
    width: 100px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .logo-placeholders {
    flex-direction: column;
    align-items: center;
  }

  .logo-placeholder {
    width: 80px;
    height: 30px;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cta-button:focus,
.footer-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  position: relative;
  margin-top: 60px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-label {
  font-size: 1rem;
  font-weight: 400;
  color: #999999;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.about-title {
  font-family: 'Times New Roman', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.1;
  color: #ffffff;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.about-content {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.about-text {
  font-family: 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: #e5e5e5;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.about-text:nth-child(2) {
  animation-delay: 2s;
}

.about-text:nth-child(3) {
  animation-delay: 2.5s;
}

.initial-cap {
  font-family: 'Times New Roman', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  float: left;
  margin: 0.1em 0.1em 0 0;
  color: #ffffff;
}

.about-signature {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 3rem;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 3s forwards;
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 3.5s forwards;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before {
    animation: none;
  }
}
