:root {
  /* Clean minimal color scheme - Updated 2025-09-24 */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  --gradient-secondary: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
  --gradient-bg: #FAF9F6;
  --orange-primary: #FF6B35;
  --orange-secondary: #E55A25;
  --red-accent: #E74C3C;
  --yellow-accent: #F1C40F;
  --text-primary: #000000;
  --text-secondary: #000000;
  --text-muted: #6C757D;
  --white: #FFFFFF;
  --offwhite: #FAF9F6;
  --light-gray-bg: #FAF9F6;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 107, 53, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #FAF9F6 !important;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

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

/* Modern Header */
header {
  position: sticky;
  top: 0;
  background: #FAF9F6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  left: 0;
  right: 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

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

nav a.active {
  color: var(--orange-primary);
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Modern Typography */
h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -1px;
  white-space: nowrap;
  text-align: center;
  display: block;
  width: 100%;
}

h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 60px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.7;
}

/* Hero Card */
.hero-card {
  border-radius: 32px;
  padding: 80px 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--text-primary);
  color: var(--text-primary);
  margin-bottom: 40px;
}

.hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
}

/* Modern Buttons */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(248, 111, 78, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-secondary);
  color: white;
  box-shadow: 0 8px 24px rgba(248, 111, 78, 0.4);
}

/* Wider button in waitlist form */
.waitlist-form .btn-primary {
  width: 90%;
  max-width: none;
  margin-top: 32px;
}

.btn-secondary {
  background: var(--white);
  color: var(--orange-primary);
  border: 2px solid var(--orange-primary);
  background-clip: padding-box;
  position: relative;
}

.btn-secondary::before {
  display: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--orange-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(248, 111, 78, 0.2);
}

/* Modern Info Box */
.info-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange-primary);
}

.info-box p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.info-box strong {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--orange-primary);
  font-weight: 500;
}

/* Modern Pullquote - Minimalist Design */
.pullquote {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
  position: relative;
  text-align: center;
}

.pullquote p {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.pullquote p strong {
  color: #FF6B35;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.pullquote p strong::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #F7931E);
  border-radius: 2px;
}

/* About Page Sections */
.about-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 40px;
}

.about-section:last-of-type {
  margin-bottom: 80px;
}

.about-intro {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.about-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

/* About Images Section */
.about-images-section {
  margin: 80px 0 60px 0;
}

/* Links */
a {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--orange-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--red-accent);
}

section a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Modern Tables */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

thead {
  background: var(--orange-primary);
}

th {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 16px 20px;
  text-align: left;
  font-weight: 500;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(248, 111, 78, 0.05);
}

/* Warning Box */
.warning {
  background: rgba(248, 111, 78, 0.1);
  border: 2px solid rgba(248, 111, 78, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  position: relative;
}

.warning::before {
  content: '⚠️';
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 24px;
}

.warning p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-left: 40px;
}

.warning strong {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--orange-primary);
}

/* Modern Footer */
footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  margin-top: 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

footer .footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  align-items: center;
  text-align: center;
  position: relative;
}

footer .footer-links a,
footer .footer-links .footer-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease !important;
  position: relative;
  margin: 0 15px;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 999 !important;
}

footer .footer-links a:hover,
footer .footer-links .footer-link:hover {
  color: #FF6B35 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* Ensure footer links work properly */
footer .footer-links {
  position: relative;
  z-index: 100;
}


.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  transform: scale(1.1);
}

.footer-icon {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.footer-icon:hover {
  opacity: 0.8;
}

.footer-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-muted);
  font-size: 14px;
}

/* Lists */
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.7;
}

/* Blockquotes */
blockquote {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--orange-primary);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 12px;
  font-style: italic;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }
  
  .header-container {
    padding: 8px 20px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero-card {
    padding: 48px 32px;
    border-radius: 24px;
  }
  
  nav {
    gap: 24px;
  }
  
  nav a {
    font-size: 14px;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px;
  }
}

/* Emoji Support */
.emoji {
  font-size: 1.2em;
  margin-right: 8px;
}

/* Hero Section */
.hero-section {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  width: 100%;
}

.hero-content-centered {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 24px;
}

.location-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-icon {
  font-size: 16px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}


.hero-section h1 {
  font-family: "Kalam", cursive;
  font-size: 64px;
  font-weight: 700;
  color: white;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: white;
  margin-bottom: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-section h1 .highlight {
  color: white;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  font-size: 16px;
  padding: 18px 40px;
  margin-bottom: 60px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--orange-primary);
  border: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-cta:hover {
  background: var(--orange-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: var(--white);
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary);
}

.btn-outline:hover {
  background: var(--orange-primary);
  color: white;
}

.social-section {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-link {
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.linkedin-logo {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-link:hover .linkedin-logo {
  transform: scale(1.1);
}

.email-icon {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-link:hover .email-icon {
  transform: scale(1.1);
}

/* Hero Right Side - Circular Image and Shapes */
.hero-image-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.circular-image-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin: 50px auto;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

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

.abstract-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  top: 20px;
  right: 20px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #F7931E, #FF6B35);
  bottom: 40px;
  left: 20px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  top: 60px;
  left: 40px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.countdown-section {
  margin-top: 40px;
}

.countdown-label {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 16px;
  min-width: 80px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.countdown-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.countdown-unit {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}


/* Parallel Layout Section */
.parallel-section {
  margin: 40px 0 20px 0;
  position: relative;
  z-index: 1;
  background: none;
  padding: 30px 0;
  text-align: center;
}

.parallel-section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.2;
  scroll-margin-top: 120px;
}

.parallel-section-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #9CA3AF;
  margin: 0 0 60px 0;
  line-height: 1.4;
}

.parallel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: stretch;
}

.parallel-left {
  text-align: center;
  background-color: #FAF9F6;
  padding: 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background-color: #FAF9F6;
  mix-blend-mode: multiply;
}

.parallel-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.waitlist-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Features Section */
.features-section {
  margin: 80px 0 60px 0;
  position: relative;
  z-index: 2;
  background: var(--offwhite);
  padding: 40px 0;
  text-align: center;
}

.features-section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 60px 0;
  line-height: 1.2;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.features-left {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.feature-card {
  background: var(--offwhite);
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: none;
  height: 15px !important;
}

/* More specific rule for features section */
.features-right .feature-card {
  height: 175px !important;
  min-height: 175px !important;
  max-height: 175px !important;
  padding: 30px 16px !important;
  background-color: var(--offwhite) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.features-right .feature-card:nth-child(1) {
  animation-delay: 0.2s;
}

.features-right .feature-card:nth-child(2) {
  animation-delay: 0.4s;
}

.features-right .feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover h3 {
  color: var(--orange-primary);
  transform: translateX(8px);
}

.feature-card:hover p {
  color: var(--text-primary);
}

.feature-card h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.1;
  transition: all 0.3s ease;
  margin: 0;
  text-align: center;
}

.section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 80px;
  font-weight: 400;
  line-height: 1.6;
}

.steps-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.step-card {
  flex: 1 1 200px;
  max-width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: var(--offwhite);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.step-image {
  height: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.step-icon {
  font-size: 48px;
}

.step-content {
  padding: 24px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: white;
  line-height: 1.3;
}

.step-content p {
  font-size: 14px;
  margin: 0;
  color: white;
  line-height: 1.5;
  opacity: 0.9;
}

.step-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.step-teal {
  background: linear-gradient(135deg, #20B2AA 0%, #17A2B8 100%);
}

.step-pink {
  background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
}

.steps-cta {
  margin-top: 60px;
}

.steps-cta .btn {
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Gradient Cards */
.features-gradient {
  display: flex;
  gap: 32px;
  margin-bottom: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 380px;
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

.feature-card h3 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.feature-card p {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.5;
  max-width: 280px;
}

/* Gradient Backgrounds for Cards */
.card-coral {
  background: linear-gradient(135deg, #FFA07A 0%, #FF7F50 100%) !important;
}

.card-blue {
  background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%) !important;
}

.card-pink {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFA07A 50%, #FFD700 100%) !important;
}

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

/* Waitlist Section */
.waitlist-section {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 80px 0 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 60px 0 60px 0;
  text-align: center;
}

.waitlist-section .waitlist-card {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: inline-block;
  margin: 0 auto;
}

.waitlist-card {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  min-width: 550px;
  max-width: none;
  width: 100%;
  position: relative;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  opacity: 0;
  border-radius: 50%;
}

.waitlist-card h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.waitlist-card > p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Form Styles */
.waitlist-form {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  position: relative;
  z-index: 1;
}

.form-group {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 24px;
}

.form-group label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 15px;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  transform: scale(1.2);
  accent-color: var(--orange-primary);
  flex-shrink: 0;
}

.checkbox-group label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.checkbox-group label a {
  color: var(--orange-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-group label a:hover {
  color: var(--orange-secondary);
}

/* Button Loading States */
.btn {
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-loading {
  display: none;
}

/* Success and Error Messages */
.success-message,
.error-message {
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.success-message h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 12px 0;
  color: #059669;
  font-size: 24px;
  font-weight: 700;
}

.success-message p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 16px 0;
  color: #065f46;
  font-size: 16px;
}

.waitlist-position {
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.waitlist-position p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-weight: 500;
  color: #059669;
  font-size: 18px;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.error-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.error-message p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  color: #dc2626;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-card {
    max-width: 300px;
    width: 100%;
  }

  .step-content {
    min-height: 120px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .waitlist-card {
    padding: 40px 32px;
    margin: 0 20px;
  }

  .waitlist-card h2 {
    font-size: 28px;
  }

  .hero-section h1 {
    font-size: 48px;
  }
  
  .hero-description {
    font-size: 16px;
    margin: 0 auto 40px;
  }
  
  .hero-content-centered {
    padding: 0 20px;
  }
  
  .parallel-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .parallel-right {
    order: -1;
  }
  
  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .countdown-timer {
    gap: 12px;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 16px 12px;
  }
  
  .countdown-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .waitlist-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
  }

  .checkbox-group {
    align-items: center;
  }

  .pullquote {
    padding: 0 20px;
    margin: 60px auto;
  }

  .pullquote p {
    font-size: 24px;
  }

  .about-section {
    padding: 0 20px;
    margin-bottom: 48px;
  }

  .about-section:last-of-type {
    margin-bottom: 60px;
  }

  .about-intro {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .about-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-section p {
    font-size: 17px;
  }

  .about-images-section {
    margin: 60px 0 40px 0;
  }

  .about-images-section > div {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  header, footer {
    display: none;
  }

  .container {
    max-width: 100%;
  }

  .hero-card {
    background: var(--offwhite);
    border: 1px solid #ddd;
  }
}