
:root {
  /* Brand Theme Variables - Light Mode */
  --primary: #4f46e5;         /* Indigo-600 for better contrast on light */
  --primary-light: #4338ca;   /* Indigo 700 */
  --secondary: #db2777;       /* Pink-600 */
  --secondary-light: #be185d; /* Pink 700 */
  --tertiary: #d97706;        /* Amber-600 */
  --tertiary-light: #b45309;  /* Amber 700 */
  
  --background: #f8fafc;      /* slate-50 - clean light gray-blue background */
  --background-alt: #f1f5f9;  /* slate-100 - slightly darker for alt sections */
  --surface: rgba(255, 255, 255, 0.75); /* Glassmorphic light surface */
  --surface-hover: rgba(255, 255, 255, 0.95);
  --border: rgba(15, 23, 42, 0.06); /* slate-900 with low opacity */
  --border-hover: rgba(15, 23, 42, 0.12);
  
  --text-primary: #0f172a;    /* slate-900 */
  --text-secondary: #334155;  /* slate-700 */
  --text-muted: #475569;      /* slate-600 */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.08);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.7; /* Refined line height for better readability */
  letter-spacing: -0.01em; /* Modern typography tightening */
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--secondary);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(236, 72, 153, 0.03) 50%, transparent 100%);
  top: -150px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.gradient-bg-glow-left {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.04) 0%, rgba(245, 158, 11, 0.02) 50%, transparent 100%);
  bottom: 20%;
  left: -200px;
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
}

/* Navigation Bar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.logo span {
  background: linear-gradient(to right, #4f46e5 0%, #c026d3 42%, #dc2626 58%, #ea580c 80%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-block;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
  color: white;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.value-statement {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a; /* Slate 900 - Premium dark badge */
  color: white;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  min-width: 185px; /* Ensure uniform size */
}

.store-btn:hover {
  background: #1e293b; /* Slate 800 */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-btn i {
  font-size: 1.75rem;
}

.store-btn-text {
  text-align: left;
}

.store-btn-text span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #cbd5e1; /* slate-300 */
}

.store-btn-text strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  width: 100%;
  perspective: 1200px;
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.multi-screen .screen-wrapper {
  position: absolute;
  width: 250px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.multi-screen .screen-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.multi-screen .screen-wrapper.left {
  transform: translateX(-55%) scale(0.85) rotateY(15deg);
  z-index: 1;
  opacity: 0.85;
}

.multi-screen .screen-wrapper.right {
  transform: translateX(55%) scale(0.85) rotateY(-15deg);
  z-index: 1;
  opacity: 0.85;
}

.multi-screen .screen-wrapper.center {
  transform: scale(1) translateZ(30px);
  z-index: 3;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-showcase.multi-screen:hover .left {
  transform: translateX(-65%) scale(0.88) rotateY(8deg);
  opacity: 1;
}

.hero-showcase.multi-screen:hover .right {
  transform: translateX(65%) scale(0.88) rotateY(-8deg);
  opacity: 1;
}

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

/* Features Section */
.features {
  background-color: var(--background-alt);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff; /* Clean white card */
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-lg), 0 10px 20px -10px rgba(99, 102, 241, 0.15);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.icon-primary {
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.icon-secondary {
  background: rgba(236, 72, 153, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(236, 72, 153, 0.15);
}

.icon-tertiary {
  background: rgba(245, 158, 11, 0.08);
  color: var(--tertiary);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.feature-header-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-header-row .feature-icon-wrapper {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-header-row h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

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

/* Detailed Feature Sections */
.detailed-features {
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-detail.reverse {
  direction: rtl;
}

.feature-detail.reverse > * {
  direction: ltr;
}

.feature-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-detail-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-detail-content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-detail-content li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-detail-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.feature-detail-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-detail-image-wrapper img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: var(--transition-slow);
}

.feature-detail-image-wrapper img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: var(--shadow-lg), 0 15px 30px -10px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Call to Action Section */
.cta-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

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

/* Privacy & Terms Pages Specific Styles */
.legal-page {
  padding: 3rem 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2.5rem;
  transition: var(--transition-fast);
}

.legal-back:hover {
  color: var(--text-primary);
  transform: translateX(-3px);
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Footer styling - Grounding Dark Slate */
footer {
  background-color: #0f172a; /* grounding dark slate-900 background */
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 320px;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4); /* Softer light modal backdrop */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(99, 102, 241, 0.05);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem auto;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Animations & Responsive Adjustments */
/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease;
}
.mobile-menu-btn:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .value-statement {
    justify-content: center;
  }
  
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .feature-detail.reverse {
    direction: ltr;
  }
  
  .feature-detail-content h2 {
    font-size: 2rem;
  }
  
  .feature-detail-content li {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .code-visual .code-snippet pre {
    font-size: 0.8rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .cta-box {
    padding: 3.5rem 2rem;
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
  
  .legal-card {
    padding: 2.5rem 1.5rem;
  }
  
  .legal-card h1 {
    font-size: 2.25rem;
  }

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

/* About Page Timeline */
.timeline-section {
  padding: 4rem 0;
}

.timeline-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.timeline-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.timeline-block.reverse .timeline-content {
  order: 2;
}

.timeline-block.reverse .timeline-visuals {
  order: 1;
}

.year-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.timeline-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.retro-logo {
  max-width: 150px;
  margin-top: 1.5rem;
}

.timeline-visuals {
  position: relative;
  width: 100%;
}

.retro-windows {
  height: 350px;
}

.retro-screenshot {
  position: absolute;
  width: 75%;
  border: 4px solid #c0c0c0;
  border-top: 24px solid #000080;
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.retro-screenshot.offset {
  right: 0;
  top: 60px;
  z-index: 2;
}

.code-visual .code-snippet {
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: monospace;
  color: #d4d4d4;
  overflow-x: auto;
}

.code-visual .code-snippet pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 0.9rem;
}

img.modern-screenshot {
  width: 55%;
  height: auto;
  border-radius: 40px;
  border: 14px solid #0f172a; /* Sleek dark premium device bezel */
  box-shadow: 
    0 30px 60px -12px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(99, 102, 241, 0.3), /* Subtle colored glowing ring */
    0 0 40px rgba(99, 102, 241, 0.15); /* Soft ambient glow */
  margin: 0 auto;
  display: block;
  background: #0f172a;
}

/* Founder Section */
.founder-section {
  padding: 4rem 0 6rem;
  background: var(--background-alt);
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.founder-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.founder-info .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.founder-info .bio {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-block, .timeline-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-block.reverse .timeline-content {
    order: 1;
  }
  .timeline-block.reverse .timeline-visuals {
    order: 2;
  }
  img.modern-screenshot {
    width: 80%;
    max-width: 300px;
  }
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

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

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem 1.2rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
  background: #ffffff;
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
}

.select-wrapper select option {
  background: #ffffff;
  color: var(--text-primary);
}

.select-wrapper .select-icon {
  position: absolute;
  right: 1.2rem;
  color: var(--text-secondary);
  pointer-events: none;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 900px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td {
  color: var(--text-secondary);
  font-size: 1rem;
}

.comparison-table .highlight-col {
  background: rgba(99, 102, 241, 0.05);
  position: relative;
}

.comparison-table th.highlight-col {
  color: var(--primary);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.comparison-table td.highlight-col {
  color: var(--text-primary);
  font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  opacity: 1;
}
