/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, sans-serif;
}

:root {
  --lion-gold: #d4af37;
  --lion-gold-light: #f4d03f;
  --wizard-purple: #6a0dad;
  --wizard-purple-light: #9b4dca;
  --tech-blue: #1a237e;
  --tech-blue-light: #283593;
  --dark-bg: #0a0a0f;
  --dark-card: #151522;
  --darker-card: #101018;
  --light-text: #f5f5f7;
  --gray-text: #8e8e93;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(106, 13, 173, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 20%
    );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-text);
}

.highlight {
  background: linear-gradient(
    120deg,
    var(--lion-gold) 0%,
    var(--wizard-purple-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Header & Navigation */
header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lion {
  color: var(--lion-gold);
  font-size: 0.9em;
}

.wizard {
  color: var(--wizard-purple-light);
  font-size: 1.1em;
}

.tech {
  color: var(--light-text);
  font-size: 0.9em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.nav-links a:hover {
  color: var(--lion-gold);
  background-color: rgba(212, 175, 55, 0.1);
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--lion-gold) 0%,
    var(--wizard-purple) 100%
  );
  color: white !important;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.primary-button {
  background: linear-gradient(
    135deg,
    var(--lion-gold) 0%,
    var(--wizard-purple) 100%
  );
  color: white;
}

.secondary-button {
  background-color: transparent;
  color: var(--lion-gold);
  border: 2px solid var(--lion-gold);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.orbital-system {
  position: relative;
  width: 100%;
  height: 100%;
}

.central-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    var(--lion-gold) 0%,
    var(--wizard-purple) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: pulse 4s infinite ease-in-out;
}

.orbit {
  position: absolute;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  animation: spin 20s linear infinite;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  top: 50px;
  left: 50px;
  animation: spin 30s linear infinite reverse;
}

.orbit-3 {
  width: 400px;
  height: 400px;
  top: 0;
  left: 0;
  animation: spin 40s linear infinite;
}

.satellite {
  position: absolute;
  font-size: 1.5rem;
  background-color: var(--dark-card);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.orbit-1 .satellite {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 .satellite {
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}

.orbit-3 .satellite {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

/* Featured Project */
.featured-project {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--gray-text);
  font-size: 1.2rem;
}

.project-card {
  background: linear-gradient(
    145deg,
    var(--dark-card) 0%,
    var(--darker-card) 100%
  );
  border-radius: var(--border-radius);
  padding: 3rem;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--lion-gold) 0%,
    var(--wizard-purple) 100%
  );
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-content {
  text-align: center;
}

.project-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.project-tagline {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.project-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.project-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.demo-before,
.demo-after {
  flex: 1;
  min-width: 300px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-before h4,
.demo-after h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.demo-before h4 {
  color: var(--error);
}

.demo-after h4 {
  color: var(--success);
}

.demo-content {
  text-align: left;
}

.demo-content p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green {
  color: var(--success);
}

.yellow {
  color: var(--warning);
}

.red {
  color: var(--error);
}

.demo-arrow {
  font-size: 2rem;
  color: var(--lion-gold);
  animation: bounce 2s infinite;
}

.project-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--tech-blue) 0%,
    var(--wizard-purple) 100%
  );
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  margin: 1.5rem 0;
  transition: var(--transition);
}

.project-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
}

.project-note {
  font-size: 0.9rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Waitlist Section */
.waitlist {
  padding: 5rem 0;
}

.waitlist-card {
  background: linear-gradient(
    145deg,
    var(--dark-card) 0%,
    rgba(26, 35, 126, 0.2) 100%
  );
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(106, 13, 173, 0.3);
}

.waitlist-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.waitlist-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

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

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--light-text);
}

.form-group input {
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--lion-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.form-checkbox input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--lion-gold);
}

.form-checkbox label {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.submit-button {
  background: linear-gradient(
    135deg,
    var(--lion-gold) 0%,
    var(--wizard-purple) 100%
  );
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.thank-you-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.thank-you-message h3 {
  color: var(--lion-gold);
  margin-bottom: 1rem;
}

.bonus-offer {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--lion-gold);
  padding: 1rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-top: 1.5rem;
  text-align: left;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--lion-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--lion-gold);
  margin-bottom: 1rem;
}

.mission-statement {
  margin-top: 4rem;
  text-align: center;
}

.mission-statement blockquote {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-left: 4px solid var(--lion-gold);
  background-color: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.mission-statement footer {
  text-align: right;
  font-size: 1rem;
  color: var(--gray-text);
  margin-top: 1rem;
  font-style: normal;
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-tagline {
  margin-top: 1rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-group h4 {
  color: var(--lion-gold);
  margin-bottom: 0.5rem;
}

.link-group a {
  color: var(--gray-text);
  text-decoration: none;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--lion-gold);
  transform: translateX(5px);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--lion-gold);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-visual {
    position: relative;
    margin: 3rem auto 0;
    transform: none;
    top: auto;
    right: auto;
    width: 300px;
    height: 300px;
  }

  .hero {
    text-align: center;
    padding: 4rem 0;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .project-demo {
    flex-direction: column;
  }

  .demo-arrow {
    transform: rotate(90deg);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .project-card,
  .waitlist-card {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
  }
}
