/* Base Styles */
:root {
  --primary-color: #5d45ff;
  --primary-dark: #4933cc;
  --primary-light: #8e7cff;
  --secondary-color: #212130;
  --text-color: #0f0f1a;
  --text-light: #49495a;
  --background: #ffffff;
  --background-alt: #f5f5fa;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-speed);
}

a:hover {
  color: var(--primary-dark);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(93, 69, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(93, 69, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(93, 69, 255, 0.1);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(93, 69, 255, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(93, 69, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(93, 69, 255, 0);
  }
}

/* Navigation */
nav {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-cta {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5fa 0%, #ffffff 100%);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, var(--text-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2.5 rem;
  max-width: 600px;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.particle {
  position: absolute;
  border-radius: 50%;
  transition: transform 2s ease-in-out;
}

.particle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(142, 124, 255, 0.15) 0%, rgba(142, 124, 255, 0) 70%);
  top: 10%;
  right: 10%;
}

.particle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(93, 69, 255, 0.1) 0%, rgba(93, 69, 255, 0) 70%);
  bottom: -10%;
  left: 30%;
}

.particle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(93, 69, 255, 0.2) 0%, rgba(93, 69, 255, 0) 70%);
  top: 50%;
  left: 10%;
}

/* Trust Strip */
.trust-strip {
  padding: 4rem 0;
  background-color: var(--background-alt);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.trust-strip.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo-item {
  height: 40px;
  opacity: 0.7;
  transition: all var(--transition-speed);
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.logo-item img {
  height: 100%;
  filter: grayscale(100%);
  transition: filter var(--transition-speed);
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* The Shift Section */
.shift {
  padding: 6rem 0;
  background-color: var(--background);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

.timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.timeline:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #ddd, var(--primary-color));
  top: 30px;
  left: 10%;
  z-index: 1;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.timeline-item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.timeline-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1rem;
  color: var(--text-light);
}

.timeline-item.past h3 {
  color: var(--text-light);
}

.timeline-item.future h3, 
.timeline-item.future h4 {
  color: var(--primary-color);
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.quote:before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -1rem;
  left: 0;
  color: rgba(93, 69, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Elite Access Section */
.elite-access {
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.elite-access.visible {
  opacity: 1;
  transform: translateY(0);
}

.elite-access h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.elite-access p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.interviewer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.interviewer {
  text-align: center;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
  background-color: var(--background-alt);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-light);
}

.avatar svg {
  width: 100%;
  height: 100%;
}

.interviewer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.avatar:hover .interviewer-image {
  transform: scale(1.05);
}

.interviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.company {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* FOMO Stats Section */
.fomo-stats {
  padding: 6rem 0;
  text-align: center;
  background-color: var(--background-alt);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fomo-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat h2 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.stat p {
  font-size: 1.5rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.impact-statement {
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

/* Cost of Waiting Section */
.cost-waiting {
  padding: 6rem 0;
  text-align: center;
  background-color: var(--background);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.cost-waiting.visible {
  opacity: 1;
  transform: translateY(0);
}

.cost-waiting h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cost-waiting p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.subtle-urgency {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2rem;
}

/* Value Proposition Section */
.value-prop {
  padding: 6rem 0;
  background-color: var(--background-alt);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.value-prop.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.value-item h3 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.value-item h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.value-prop .section-title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.value-prop .value-item p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 250px;
  margin: 0.5rem auto 0;
}

.value-prop .bottom-cta {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 3rem auto 0;
}

.vibe-coding-explainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.explainer-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.explainer-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.explainer-text ul {
  list-style-type: none;
  padding: 0;
}

.explainer-text li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.explainer-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.video-container {
  flex: 1;
  min-width: 300px;
}

.video-container iframe {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta .btn {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

footer .logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

footer a {
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: inline-block;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Updated Modal Form Styles */
.modal-content {
  background-color: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(33, 33, 48, 0.3);
}

.modal-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  letter-spacing: -0.5px;
  line-height: 1.2;
  background: linear-gradient(45deg, var(--text-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(93, 69, 255, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(93, 69, 255, 0.1);
  outline: none;
}

.form-group input::placeholder {
  color: #a0a0b0;
}

#modal-form .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.success-message {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 2.5rem 0;
  line-height: 1.5;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--background-alt);
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-light);
}

.close-modal:hover {
  background-color: rgba(93, 69, 255, 0.1);
  color: var(--primary-color);
}

/* Animation for sections */
section {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .hero-title {
      font-size: 2.8rem;
  }
  
  .hero-subtitle {
      font-size: 1.3rem;
  }
  
  .shift-message,
  .impact-statement {
      font-size: 1.5rem;
  }
  
  .elite-access h2,
  .cost-waiting h2,
  .cta h2 {
      font-size: 2rem;
  }
  
  .value-item h3 {
      font-size: 2rem;
  }
  
  .stat h2 {
      font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 1.5rem;
  }
  .hero {
    height: auto;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-title {
      font-size: 2.2rem;
      margin-bottom: 3rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
  }
  
  .value-items {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .interviewer-grid {
      justify-content: center;
      gap: 2.5rem;
  }

  .interviewer {
    flex: 0 0 40%;
  }
  
  .timeline {
      flex-direction: column;
      gap: 3rem;
  }
  
  .timeline:after {
      width: 2px;
      height: 70%;
      left: 50%;
      top: 15%;
  }
  
  .vibe-coding-explainer {
      flex-direction: column;
  }
  
  .video-container {
      width: 100%;
  }
  
  .video-container iframe {
      height: 240px;
  }
  
  .quote-text {
      font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 70vh;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-title {
    margin-bottom: 3.5rem;  /* Even more space on smaller screens */
    font-size: 2.8rem;      /* Slightly smaller font but still impactful */
  }
  .hero-subtitle {
    margin-bottom: 2.5rem;  /* More space before the button on smaller screens */
  }
  .hero-content {
    margin-top: 0;
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .particle-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    right: 5%;
  }

  .particle-2 {
    width: 250px;
    height: 250px;
    bottom: -5%;
    left: 20%;
  }
  .particle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
  }

  .logo h1 {
      font-size: 1.5rem;
  }
  
  .nav-cta .btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
  }
  
  .hero-title {
      font-size: 1.8rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .stat h2 {
      font-size: 3rem;
  }
  
  .logo-container {
      gap: 1.5rem;
  }
  
  .logo-item {
      height: 30px;
  }

  .interviewer {
    flex: 0 0 80%;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }
}

/* Company Logo Styles */
.company-logo {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.7);
}

.logo-item:hover .company-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Update existing logo item styles */
.logo-item {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
  .logo-container {
      gap: 2rem;
  }
  .company-logo {
      height: 30px;
  }
}

@media (max-width: 576px) {
  .logo-container {
      gap: 1.5rem;
  }
  .company-logo {
      height: 24px;
  }
}