body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: white;
  text-align: center;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation Styles */
nav.topnav {
  background: linear-gradient(135deg, #6a2c70 0%, #4a2c5a 50%, #2d1b3e 100%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(166, 75, 244, 0.3);
  box-shadow: 0 2px 20px rgba(166, 75, 244, 0.1);
}

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

.nav-logo a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo-text {
  background: linear-gradient(45deg, #a64bf4, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
  border: 2px solid #a64bf4;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}

.logo-full {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.nav-logo a:hover .logo-text {
  border-color: #ff6b9d;
  transform: scale(1.05);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-menu li a:hover {
  color: #ff6b9d;
  background-color: rgba(166, 75, 244, 0.2);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-full {
    display: none;
  }
  
  .logo-text {
    font-size: 1.5rem;
    min-width: 50px;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #6a2c70 0%, #4a2c5a 50%, #2d1b3e 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Add top margin to body to account for fixed nav */
body {
  padding-top: 70px;
}

/* Homepage styles */
.homepage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -70px;
  position: relative;
  z-index: 1;
}

.homepage .hero-buttons {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0;
  width: 100%;
}

/* Button styles */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.cta-button {
  padding: 1rem 2rem;
  border: none;
  background-color: #a64bf4;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 75, 244, 0.3);
  min-width: 160px;
}

.cta-button:hover {
  background-color: #8a2be2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive design for hero buttons */
@media (max-width: 768px) {
  .hero-buttons {
    padding-bottom: 3rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    padding-bottom: 2rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    max-width: 250px;
  }
}

/* Homepage Section */
.homepage {
  margin: 0;
  width: 100%;
}

.homepage img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2d1b3e 0%, #4a2c5a 50%, #6a2c70 100%);
  padding: 2rem 0;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #a64bf4, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
  text-align: left;
}

.contact-info h3,
.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #a64bf4;
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-label {
  font-weight: bold;
  color: #ff6b9d;
  min-width: 60px;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #a64bf4;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(166, 75, 244, 0.2);
  border: 2px solid #a64bf4;
  border-radius: 50%;
  color: #a64bf4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #a64bf4;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
}

.social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.social-icon.facebook:hover {
  background: #4267b2;
  border-color: #4267b2;
}

/* Newsletter Signup */
.newsletter-signup {
  text-align: left;
}

.newsletter-signup h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #a64bf4;
}

.newsletter-signup p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-signup input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(166, 75, 244, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-signup input[type="email"]:focus {
  outline: none;
  border-color: #a64bf4;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(166, 75, 244, 0.2);
}

.newsletter-signup input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.signup-btn {
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(45deg, #a64bf4, #ff6b9d);
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 75, 244, 0.3);
  white-space: nowrap;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
  background: linear-gradient(45deg, #8a2be2, #e55a8a);
}

.signup-btn:active {
  transform: translateY(0);
}

.form-message {
  padding: 0.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  font-weight: 500;
  min-height: 1.5rem;
}

.form-message.success {
  background: rgba(46, 160, 67, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

.form-message.info {
  background: rgba(166, 75, 244, 0.2);
  color: #a64bf4;
  border: 1px solid #a64bf4;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-content {
    gap: 2rem;
  }
  
  .newsletter-signup h3 {
    font-size: 1.4rem;
  }
  
  .newsletter-signup p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 1.5rem 0;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .newsletter-signup {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .newsletter-signup {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  
  .newsletter-signup h3 {
    font-size: 1.5rem;
  }
  
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .signup-btn {
    width: 100%;
    padding: 1rem;
  }
}

.hero, .features, .insights, .press, .about {
  padding: 4rem 0;
  position: relative;
}

.features h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* About Section */
.about img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.about-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #000;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.learn-more-btn {
  padding: 1rem 2.5rem;
  border: none;
  background: linear-gradient(45deg, #a64bf4, #ff6b9d);
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 75, 244, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
  background: linear-gradient(45deg, #8a2be2, #e55a8a);
}

.learn-more-btn:active {
  transform: translateY(-1px);
}

/* About Page Styles */
.about-page {
  margin-top: 70px;
  min-height: 100vh;
  background: linear-gradient(135deg, #2d1b3e 0%, #4a2c5a 50%, #6a2c70 100%);
}

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

.about-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.back-to-home {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.back-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(166, 75, 244, 0.2);
  color: #a64bf4;
  text-decoration: none;
  border: 2px solid #a64bf4;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.back-btn:hover {
  background: #a64bf4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
}

/* Active navigation link */
.nav-menu a.active {
  color: #ff6b9d;
  background-color: rgba(166, 75, 244, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-cta {
    padding: 2rem 1rem;
  }
  
  .learn-more-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .about-container {
    padding: 1rem;
  }
  
  .back-to-home {
    margin-top: 2rem;
  }
}

.intro-statement {
  padding: 2rem;
}

.intro-statement h1 {
  font-size: 1.8rem;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-buttons button {
  padding: 1rem 2rem;
  border: none;
  background-color: #a64bf4;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}

/* Press Section Article Grid */
.press h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-tile {
  background: linear-gradient(135deg, #4a2c5a 0%, #2d1b3e 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.article-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(166, 75, 244, 0.2);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-content {
  padding: 1.5rem;
  position: relative;
}

.article-tag {
  background-color: rgba(166, 75, 244, 0.2);
  color: #a64bf4;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
  line-height: 1.3;
}

.article-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #a64bf4;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 75, 244, 0.3);
}

.read-more-btn:hover {
  background-color: #8a2be2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 75, 244, 0.4);
}

.read-more-btn:active {
  transform: translateY(0);
}

/* Responsive Design for Article Grid */
@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .press h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .article-tile {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .article-content {
    padding-bottom: 4rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .article-grid {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .article-content {
    padding: 1rem;
    padding-bottom: 3.5rem;
  }
  
  .read-more-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Mailchimp Form Styling Overrides */
#mc_embed_signup {
  background: transparent !important;
  clear: left !important;
  font: inherit !important;
  width: 100% !important;
  max-width: none !important;
}

#mc_embed_signup .clear {
  /* Reverting to original state */
}

#mc_embed_signup h2 {
  display: none !important;
}

#mc_embed_signup .indicates-required {
  display: none !important;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 1rem !important;
}

#mc_embed_signup .mc-field-group label {
  display: none !important;
}

#mc_embed_signup input[type="email"] {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 2px solid rgba(166, 75, 244, 0.3) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

#mc_embed_signup input[type="email"]:focus {
  outline: none !important;
  border-color: #a64bf4 !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(166, 75, 244, 0.2) !important;
}

#mc_embed_signup input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

#mc_embed_signup input[type="submit"] {
  width: 100% !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #a64bf4 0%, #ff6b9d 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: 0.5rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  height: auto;
  line-height: normal;
}

#mc_embed_signup input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(166, 75, 244, 0.3) !important;
}

#mc_embed_signup input[type="submit"]:active {
  transform: translateY(0) !important;
}

#mc_embed_signup .response {
  margin-top: 1rem !important;
  padding: 0.75rem !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
}

#mc_embed_signup #mce-error-response {
  background: rgba(255, 107, 157, 0.2) !important;
  color: #ff6b9d !important;
  border: 1px solid rgba(255, 107, 157, 0.3) !important;
}

#mc_embed_signup #mce-success-response {
  background: rgba(166, 75, 244, 0.2) !important;
  color: #a64bf4 !important;
  border: 1px solid rgba(166, 75, 244, 0.3) !important;
}

/* Mobile responsiveness for Mailchimp form */
@media (max-width: 768px) {
  #mc_embed_signup input[type="email"],
  #mc_embed_signup input[type="submit"] {
    font-size: 0.9rem !important;
    padding: 10px 14px !important;
  }
}

#mc-embedded-subscribe {
  padding: 1rem 2rem;
  border: none;
  background-color: #a64bf4;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.clear {
  display: flex;
  justify-content: center;
  align-items: center;
}
