@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #1f1f33;
  --secondary-color: #3b315f;
  --accent-color: #8867ff;
  --accent-light: #b297ff;
  --text-color: #f0f0f0;
  --text-dark: #1a1a2e;
  --background-color: #121212;
  --card-bg: #1e1e24;
  --gradient-dark: linear-gradient(135deg, #121212, #1a1a2a);
  --gradient-accent: linear-gradient(135deg, #3b315f, #8867ff);
  --border-radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

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

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(ellipse at center center, 
    transparent 0%, 
    transparent 35%,
    rgba(136, 103, 255, 0.008) 50%,
    rgba(136, 103, 255, 0.015) 70%,
    rgba(59, 49, 95, 0.02) 90%,
    rgba(59, 49, 95, 0.025) 100%
  );
  pointer-events: none;
  z-index: -1;
  transform: scale(1.5);
}

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

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  height: 80px;
}

.logo {
  height: 32px;
  filter: brightness(0) invert(1);
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-links a.nav-button {
  background-color: rgba(136, 103, 255, 0.1);
  border: 1px solid var(--accent-color);
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a.nav-button:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  background: var(--background-color);
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #b297ff, #8867ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero .tagline {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(240, 240, 240, 0.8);
  font-weight: 400;
  word-wrap: break-word;
  hyphens: auto;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(139, 103, 255, 0.3);
  max-width: 300px;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 103, 255, 0.4);
}

/* Press Release Link with Glow Animation */
.press-release-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  gap: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 24px;
  border: 1px solid rgba(201, 183, 255, 0.3);
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    #9b7dff 0%,
    #9b7dff 20%,
    #c9b7ff 35%,
    #e5dcff 50%,
    #c9b7ff 65%,
    #9b7dff 80%,
    #9b7dff 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-slide 3s linear infinite;
}

.press-release-link:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 220, 255, 0.5);
  background: linear-gradient(
    90deg,
    #b297ff 0%,
    #b297ff 20%,
    #e5dcff 35%,
    #ffffff 50%,
    #e5dcff 65%,
    #b297ff 80%,
    #b297ff 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-slide 1.5s linear infinite;
  filter: drop-shadow(0 0 20px rgba(201, 183, 255, 0.6));
}

@keyframes text-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

/* Backed By Section in Hero */
.backed-by {
  margin-top: 60px;
  text-align: center;
}

.backed-by p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.backer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.backer-logos a {
  text-decoration: none;
  display: inline-block;
}

.backer-logos a:first-child {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 0px;
}

.backer-logos img {
  height: 45px;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.3s ease;
  margin-bottom: 0px;
}

.backer-logos a:first-child img {
  height: 42px;
  margin-bottom: 18px;
  padding-top: 8px;
}

.backer-logos a:nth-child(2) {
  margin-right: 20px;
}

.backer-logos a:nth-child(3) img {
  height: 35px;
}

.backer-logos a:hover img {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .backed-by {
    margin-top: 60px;
  }

  .backer-logos {
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .backer-logos img {
    height: 32px;
    margin-bottom: 10px;
  }

  .backer-logos a:first-child img {
    height: 34px;
    margin-bottom: 15px;
    padding-top: 6px;
  }
  
  .backer-logos a:nth-child(2) {
    margin-right: 15px;
  }

  .backer-logos a:nth-child(3) img {
    height: 26px;
  }

  .press-release-link {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .backed-by {
    margin-top: 25px;
  }

  .backer-logos {
    gap: 15px;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 10px;
  }

  .backer-logos img {
    height: 28px;
    margin-bottom: 8px;
  }

  .backer-logos a:first-child img {
    height: 28px;
    margin-bottom: 12px;
    padding-top: 4px;
  }
  
  .backer-logos a:nth-child(2) {
    margin-right: 12px;
  }

  .backer-logos a:nth-child(3) img {
    height: 22px;
  }

  .press-release-link {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* Particle Network Effect */
.network-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: rgba(139, 103, 255, 0.5);
  border-radius: 50%;
}

.line {
  position: absolute;
  height: 1px;
  background-color: rgba(139, 103, 255, 0.2);
  transform-origin: left;
}

/* Features Section */
.features {
  padding: 20px 0 10px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Circuit Board Container */
.circuit-board-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  overflow: visible;
}

.circuit-board-container::before {
  content: '';
  position: absolute;
  inset: -150px;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(136, 103, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Circuit Grid Pattern */
.circuit-grid-pattern {
  position: absolute;
  inset: 10%;
  background-image: 
    repeating-linear-gradient(0deg, rgba(136, 103, 255, 0.015) 0px, transparent 1px, transparent 80px, rgba(136, 103, 255, 0.015) 81px),
    repeating-linear-gradient(90deg, rgba(136, 103, 255, 0.015) 0px, transparent 1px, transparent 80px, rgba(136, 103, 255, 0.015) 81px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Wire Connections SVG */
.wire-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.wire-path {
  fill: none;
  stroke: rgba(136, 103, 255, 0.25);
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 3px rgba(136, 103, 255, 0.3));
  position: relative;
}

/* Data flow animation */
@keyframes data-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -30;
  }
}

.wire-path {
  stroke-dasharray: 8 22;
  animation: data-flow 3s linear infinite;
}

.wire-node {
  fill: rgba(136, 103, 255, 0.6);
  stroke: rgba(178, 151, 255, 0.3);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(136, 103, 255, 0.4));
  animation: node-pulse 2s ease-in-out infinite;
}

.wire-node.center {
  fill: rgba(178, 151, 255, 0.8);
  stroke: rgba(136, 103, 255, 0.6);
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(178, 151, 255, 0.6));
  animation: center-pulse 1.5s ease-in-out infinite;
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes center-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Features Grid */
.features-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 3;
}

/* Feature Columns */
.feature-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-column.center {
  justify-content: center;
}

/* Feature Cards */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 30, 36, 0.7) 0%, rgba(26, 26, 38, 0.7) 100%);
  border: 1px solid rgba(136, 103, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 151, 255, 0.6), transparent);
  animation: scan-line 3s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 151, 255, 0.3);
  background: linear-gradient(135deg, rgba(30, 30, 36, 0.8) 0%, rgba(26, 26, 38, 0.8) 100%);
  box-shadow: 
    0 8px 32px rgba(136, 103, 255, 0.2),
    inset 0 0 20px rgba(136, 103, 255, 0.03);
}

/* Pulse Card (Center) */
.feature-card.pulse {
  background: linear-gradient(135deg, rgba(59, 49, 95, 0.75) 0%, rgba(40, 35, 60, 0.75) 100%);
  border: 2px solid rgba(136, 103, 255, 0.3);
  box-shadow: 
    0 0 30px rgba(136, 103, 255, 0.2),
    inset 0 0 30px rgba(136, 103, 255, 0.05);
  padding: 20px;
}

.pulse-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(178, 151, 255, 0.2) 0%, transparent 60%);
  animation: pulse-rotate 8s linear infinite;
  pointer-events: none;
}

@keyframes pulse-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Feature Card Content */
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(136, 103, 255, 0.2) 0%, rgba(178, 151, 255, 0.1) 100%);
  border: 1px solid rgba(136, 103, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(178, 151, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
  animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(0.8); }
  50% { transform: scale(1.2); }
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #b297ff;
  stroke-width: 2;
  fill: none;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(240, 240, 240, 0.75);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Pulse Card Specific Styles */
.feature-card.pulse .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(178, 151, 255, 0.3) 0%, rgba(136, 103, 255, 0.2) 100%);
  border: 2px solid rgba(178, 151, 255, 0.5);
}

.feature-card.pulse .feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: #d4c5ff;
}

.feature-card.pulse .feature-icon svg circle:nth-child(1) {
  animation: pulse-ring 2s ease-out infinite;
}

.feature-card.pulse .feature-icon svg circle:nth-child(2) {
  animation: pulse-ring 2s ease-out infinite 0.5s;
}

.feature-card.pulse .feature-icon svg circle:nth-child(3) {
  animation: pulse-ring 2s ease-out infinite 1s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

.feature-card.pulse h3 {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #b297ff, #8867ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
}

.feature-card.pulse p {
  text-align: center;
  color: rgba(240, 240, 240, 0.85);
}

/* Team Experience Section - Updated for scrolling carousel */
.team-experience {
  padding: 0px 0 40px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.experience-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-color);
}

/* New carousel container */
.logo-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* The actual carousel */
.logo-carousel {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}

/* Create two identical logo sections for smooth infinite scrolling */
.logo-section {
  display: inline-flex;
  align-items: center;
  animation: scrollLogos 50s linear infinite;
  padding-right: 60px; /* Gap between logo sets */
}

/* Pause animation on hover */
.logo-carousel:hover .logo-section {
  animation-play-state: paused;
}

/* Smoother animation for scrolling */
@keyframes scrollLogos {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.logo-section img {
  height: 80px;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.7; */
  transition: opacity 0.3s ease;
  margin-right: 60px; /* Space between logos */
}

.logo-section img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-experience {
    padding: 15px 0 30px;
  }

  .experience-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .logo-section img {
    height: 30px;
    margin-right: 40px;
  }
  
  .logo-section {
    animation-duration: 45s;
  }
}

@media (max-width: 480px) {
  .team-experience {
    padding: 10px 0 20px;
  }

  .experience-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .logo-section img {
    height: 25px;
    margin-right: 30px;
  }
  
  .logo-section {
    animation-duration: 40s;
  }
}

/* Waitlist Section */
.waitlist-section {
  padding: 100px 0;
  position: relative;
  overflow: visible;
  background: transparent;
  z-index: 1;
}

.waitlist-form {
  background: linear-gradient(135deg, rgba(30, 30, 36, 0.7) 0%, rgba(26, 26, 38, 0.7) 100%);
  padding: 50px;
  border-radius: var(--border-radius);
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(136, 103, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.waitlist-form h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
  color: var(--text-color);
  font-weight: 600;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: left;
  font-size: 14px;
  color: rgba(240, 240, 240, 0.8);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-color);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 103, 255, 0.2);
}

.form-group input::placeholder {
  color: rgba(240, 240, 240, 0.4);
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(139, 103, 255, 0.2);
  position: relative;
  z-index: 10;
}

.submit-button:hover {
  box-shadow: 0 8px 20px rgba(139, 103, 255, 0.3);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: rgba(240, 240, 240, 0.7);
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
}

.footer-copyright {
  margin-top: 40px;
  font-size: 14px;
}

/* Responsive styles for circuit board layout */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .circuit-board-container {
    padding: 0px 30px;
  }

  .features-grid {
    gap: 40px;
  }

  .feature-column {
    gap: 30px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card.pulse {
    padding: 28px;
  }
}

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

  .hero {
    padding: 70px 0 20px;
    min-height: 90vh;
  }

  .hero-content {
    padding: 0 16px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.2;
    hyphens: none;
  }

  .hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cta-wrapper {
    margin-top: 25px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
    max-width: 280px;
  }

  .backed-by p {
    font-size: 16px;
    
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .features {
    padding: 0px 0 0pxs;
  }

  /* Switch to vertical layout on mobile */
  .circuit-board-container {
    padding: 30px 20px;
  }

  .wire-connections {
    display: none;
  }

  .circuit-grid-pattern {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-column {
    gap: 20px;
  }

  .feature-column.center {
    order: -1;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card.pulse {
    margin-bottom: 10px;
  }

  .feature-card::before {
    display: none;
  }

  .pulse-glow {
    display: none;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .feature-icon {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .waitlist-section {
    padding: 60px 0;
  }

  .waitlist-form {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .waitlist-form h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-button {
    padding: 14px;
    font-size: 15px;
  }

  footer {
    padding: 40px 0 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
  }
}

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

  .hero {
    padding: 60px 0 15px;
    min-height: 85vh;
  }

  .hero-content {
    padding: 0 12px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.6rem;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.1;
    margin-bottom: 12px;
    hyphens: none;
  }

  .hero .tagline {
    font-size: 1rem;
    margin-bottom: 30px;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .cta-wrapper {
    margin-top: 30px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    max-width: 250px;
  }

  nav {
    padding: 12px 0;
    height: 60px;
  }

  .logo {
    height: 28px;
  }

  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .features {
    padding: 30px 0 40px;
  }



  .feature-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .feature-icon {
    height: 45px;
    width: 45px;
    margin-bottom: 16px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .waitlist-section {
    padding: 40px 0;
  }

  .waitlist-form {
    padding: 20px 16px;
    margin: 0 5px;
  }

  .waitlist-form h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 16px;
  }

  .submit-button {
    padding: 12px;
    font-size: 14px;
  }

  footer {
    padding: 30px 0 20px;
  }

  .footer-copyright {
    font-size: 13px;
    margin-top: 20px;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .hero-content {
    padding: 0 8px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.1;
    margin-bottom: 12px;
    hyphens: none;
  }

  .hero .tagline {
    font-size: 0.9rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 25px;
  }

  .cta-wrapper {
    margin-top: 25px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
    max-width: 220px;
  }

  .waitlist-form {
    margin: 0;
    border-radius: 8px;
  }

  .backer-logos {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
  button, .cta-button, .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
  }

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

  .nav-links a {
    margin: 15px 0;
    font-size: 18px;
    padding: 15px 20px;
    width: 80%;
    text-align: center;
    border-radius: 8px;
  }

  .nav-links a.nav-button {
    margin-top: 20px;
    background-color: var(--accent-color);
    border: none;
  }
}

 