@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

/* 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, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(to bottom, #0A0A0A, #121212);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 1.5rem 2rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Vignette Effect */
.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Grid Pattern */
.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,100,100,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,100,100,0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  z-index: 2;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background-color: #FFD54F;
  filter: blur(180px);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite;
  z-index: 3;
}

@keyframes breathe {
  0%, 100% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Floating Particles */
.floating-particle {
  position: absolute;
  background-color: #FFD54F;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatParticle 8s ease-in-out infinite;
  z-index: 4;
}

.particle-1 { top: 25%; left: 25%; width: 8px; height: 8px; animation-delay: 0s; }
.particle-2 { top: 33%; right: 33%; width: 12px; height: 12px; animation-delay: 2s; }
.particle-3 { bottom: 33%; left: 33%; width: 8px; height: 8px; animation-delay: 4s; }
.particle-4 { top: 66%; right: 25%; width: 8px; height: 8px; animation-delay: 1s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -30px); }
  50% { transform: translate(-15px, -60px); }
  75% { transform: translate(10px, -40px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.logo-container {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  animation: fadeIn 0.6s ease-out forwards;
}

.logo-wrapper {
  position: relative;
  width: 13rem;
  height: 13rem;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background-color: #FFD54F;
  opacity: 0.3;
  filter: blur(2rem);
  border-radius: 50%;
}

.logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(255,213,79,0.6)) drop-shadow(0 0 30px rgba(255,213,79,0.4));
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #C6C6C6;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  animation: fadeIn 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
    justify-content: center;
  }

  .logo-wrapper {
    width: 14rem;
    height: 14rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  width: 100%;
  min-width: 200px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #FFD54F;
  color: #000000;
  box-shadow: inset 0 0 0 rgba(255,213,79,0.5);
}

.btn-primary:hover {
  box-shadow: inset 0 0 20px rgba(255,213,79,0.5);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #FFD54F;
}

.btn-secondary:hover {
  border-color: #FFD54F;
  box-shadow: 0 0 15px rgba(255,213,79,0.4);
  color: #FFD54F;
  transform: scale(1.02);
}

.btn-tertiary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255,213,79,0.5);
}

.btn-tertiary:hover {
  border-color: #FFD54F;
  box-shadow: 0 0 12px rgba(255,213,79,0.3);
  color: #FFD54F;
  transform: scale(1.02);
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.6;
}

.scroll-line {
  height: 1px;
  width: 6rem;
  background: linear-gradient(to right, transparent, #FFD54F, transparent);
}

.icon-triangle {
  width: 1rem;
  height: 1rem;
  color: #FFD54F;
  animation: bounceSlow 2s ease-in-out infinite;
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Section Styles */
.section {
  padding: 6rem 1.5rem;
}

.section-content {
  max-w-4xl;
  margin: 0 auto;
  text-align: center;
}

.section-title-large {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.section-text-large {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.75;
}

.icon-center {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.icon-pulse {
  width: 2rem;
  height: 2rem;
  color: #FFD54F;
  animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

.divider {
  margin-top: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #FFD54F, transparent);
}

/* Features Grid */
.features-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-image-container {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image {
  width: 16rem;
  height: 16rem;
  object-fit: contain;
  border-radius: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description {
  color: #9ca3af;
}

/* USP Banner */
.section-no-padding {
  padding: 6rem 0;
}

.usp-banner {
  width: 100%;
  background: linear-gradient(to right, rgba(255,213,79,0.1), rgba(255,213,79,0.2), rgba(255,213,79,0.1));
  border-top: 1px solid rgba(255,213,79,0.5);
  border-bottom: 1px solid rgba(255,213,79,0.5);
  padding: 4rem 2rem;
  text-align: center;
}

.usp-quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.75;
  color: #FFD54F;
}

/* Founders Section */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.icon-small {
  width: 1.5rem;
  height: 1.5rem;
  color: #FFD54F;
}

.founders-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.founder-card {
  text-align: center;
}

.founder-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.founder-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(255,213,79,0.2);
  filter: blur(1rem);
  border-radius: 50%;
}

.founder-image {
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 4px solid rgba(255,213,79,0.3);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.founder-role {
  color: #FFD54F;
  margin-bottom: 1rem;
}

.founder-bio {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.founder-link {
  color: #FFD54F;
  text-decoration: none;
}

.founder-link:hover {
  text-decoration: underline;
}

/* Form Section */
.form-container {
  max-width: 42rem;
  margin: 0 auto;
}

.form-wrapper {
  background-color: #1a1a1a;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #2d2d2d;
}

.form-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.submit-message {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  display: none;
}

.submit-message.success {
  background-color: rgba(22, 101, 52, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

.submit-message.error {
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #121212;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: white;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FFD54F;
}

.form-textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #FFD54F;
  color: #121212;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
  background-color: #FFC107;
  box-shadow: 0 0 30px rgba(255,213,79,0.5);
  transform: scale(1.05);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid #2d2d2d;
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  color: #9ca3af;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  color: #6b7280;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* Section Fade In Animation */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.promo-video {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 200, 100, 0.1);
}

.promo-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}