:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --accent-cyan: #0284c7;
  --accent-purple: #4f46e5;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border-color: rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.8);
  
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
  top: 10%; left: 20%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.blob-2 {
  top: 40%; right: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Components */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: all 0.3s ease;
  cursor: pointer; font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #ffffff; border: none;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
  transform: translateY(-2px);
}

.btn-glow {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(2, 132, 199, 0.3);
  box-shadow: inset 0 0 10px rgba(2, 132, 199, 0.1);
}

.btn-glow:hover {
  background: rgba(2, 132, 199, 0.1);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.3);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.btn-glass:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Nav */
.navbar { position: fixed; top: 0; width: 100%; z-index: 100; border-bottom: 1px solid var(--border-color); }
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.text-accent { color: var(--accent-cyan); }
.nav-links { display: flex; gap: 2.5rem; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  stroke-width: 2;
  stroke-linecap: round;
}

/* Hero */
.hero { padding: 12rem 0 8rem; text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 100px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan); font-family: var(--font-mono); font-size: 0.8rem;
  margin-bottom: 2rem;
}
.badge-dot { width: 8px; height: 8px; background: var(--accent-cyan); border-radius: 50%; box-shadow: 0 0 8px var(--accent-cyan); }
.hero-title { font-size: 5rem; font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 3rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }

/* Sections */
.section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-title { font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); }

/* Bento Grid */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  grid-auto-rows: minmax(250px, auto);
}
.bento-grid.grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.bento-card {
  padding: 2.5rem; border-radius: 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover { transform: translateY(-5px); border-color: rgba(0,0,0,0.1); }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }
.card-icon { font-size: 2.5rem; margin-bottom: auto; }
.bento-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700; }
.bento-card p { color: var(--text-secondary); font-size: 0.95rem; }
.card-wrap { display: flex; align-items: center; gap: 2rem; }
.card-wrap .card-icon { margin-bottom: 0; font-size: 3.5rem; }

/* Timeline */
.timeline {
  display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 0 auto;
}
.timeline-item {
  display: flex; gap: 2rem; align-items: center;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.timeline-dot {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); border: 2px solid var(--accent-purple);
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700;
  color: var(--accent-purple); box-shadow: 0 0 20px rgba(79, 172, 254, 0.2);
}
.timeline-content { padding: 2rem; border-radius: 16px; flex-grow: 1; }
.timeline-content h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.timeline-content p { color: var(--text-secondary); }

/* CTA */
.cta-container { text-align: center; padding: 5rem 2rem; border-radius: 24px; }
.cta-container h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-container p { color: var(--text-secondary); margin-bottom: 3rem; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-glow-pulse { animation: neon-pulse 2s infinite; }

@keyframes neon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 198, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0); }
}

/* Footer */
.footer { padding: 4rem 0 2rem; margin-top: 4rem; }
.border-top { border-top: 1px solid var(--border-color); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.footer .brand { font-size: 1.5rem; font-weight: 800; }
.footer .links { display: flex; gap: 1.5rem; }
.footer .links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.footer .links a:hover { color: var(--text-primary); }
.crypto-text { text-align: center; color: var(--text-secondary); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; }

/* Animations */
.animate-on-scroll { filter: blur(10px); opacity: 0; transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform, filter; }
.animate-on-scroll.visible { opacity: 1; filter: blur(0); transform: translate(0) scale(1) !important; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
.delay-9 { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }
.delay-11 { transition-delay: 1.1s; }
.delay-12 { transition-delay: 1.2s; }

/* Initial animation states based on element type */
.hero-title, .hero-subtitle, .bento-card, .section-header, .pain-point, .workflow-card { transform: translateY(40px); }
.tech-item.animate-on-scroll { transform: translateY(20px); }
.slide-left { transform: translateX(50px); }
.slide-right { transform: translateX(-50px); }
.zoom-in { transform: scale(0.9); }

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .hero-title { font-size: 3rem; }
  .hide-mobile { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid.grid-2x2 { grid-template-columns: 1fr; }
  .bento-card { padding: 1.5rem; }
  .tall, .wide { grid-row: auto; grid-column: auto; }
  .card-wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .timeline-item { flex-direction: column !important; text-align: left !important; align-items: flex-start; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; margin: 0; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-150%);
    gap: 2rem;
    z-index: 99;
  }
  .nav-links a { color: #111827; font-weight: 600; font-size: 1.1rem; }
  .nav-links a:hover { color: var(--accent-purple); }
  .nav-links.active {
    transform: translateY(0);
  }
  .mobile-menu-btn { display: block; }
  .mobile-only { display: inline-flex !important; }
  .navbar .btn-glow { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
}

/* --- Content Additions --- */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.02);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.feature-item {
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-item .check {
  color: var(--accent-cyan);
  font-weight: bold;
}

.card-list {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
}
.card-list li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
}

.card-target {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
}
.mt-top { margin-top: auto; }

.practice-box {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}
.practice-box h4 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.practice-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.practice-tag {
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.muted-phone {
  font-family: var(--font-mono);
  color: var(--text-primary);
  display: inline-block;
  margin-top: 0.5rem;
}

.about-image.glass { display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* About Section Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.about-content h3 {
  font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-primary);
}
.about-content p {
  color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.05rem;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2.25rem; font-weight: 800; color: var(--accent-cyan);
  line-height: 1; margin-bottom: 0.5rem; font-family: var(--font-mono);
}
.stat-label { font-size: 0.85rem; color: var(--text-primary); letter-spacing: 1px; }

/* --- Contact Section & Form --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch;
}
.contact-card {
  padding: 3rem; border-radius: 16px; display: flex; flex-direction: column;
}
.contact-card h3 {
  font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--text-primary); line-height: 1.2;
}
.contact-card > p {
  color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.05rem;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem; margin-top: auto;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.5rem; text-align: left;
}
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.5px;
}
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(0,0,0,0.03); border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  color: var(--text-primary); padding: 1rem; border-radius: 8px; font-family: var(--font-sans); font-size: 1rem;
  transition: all 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent-cyan); box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.2); background: rgba(0,0,0,0.05);
}
.btn-full { width: 100%; margin-top: 0.5rem; }

/* Calendar Mockup */
.calendar-mockup {
  background: var(--bg-primary); border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); border-radius: 12px;
  padding: 1.5rem; text-align: left; margin-top: auto;
}
.cal-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem;
}
.cal-avatar {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--text-primary);
}
.cal-name { color: var(--text-primary); font-weight: 700; font-size: 1.1rem; }
.cal-title { color: var(--text-secondary); font-size: 0.85rem; }
.cal-text { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 1rem; font-weight: 600; }
.cal-dates { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.cal-date {
  background: var(--glass-bg); border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); padding: 0.5rem;
  border-radius: 8px; font-size: 0.8rem; flex: 1; text-align: center; color: var(--text-secondary);
  font-weight: 600; font-family: var(--font-mono);
}
.cal-date.active {
  background: rgba(2, 132, 199, 0.1); border-color: var(--accent-cyan); color: var(--accent-cyan);
}
.cal-times { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.cal-time {
  background: transparent; border: 1px solid var(--accent-purple); color: var(--accent-purple);
  padding: 0.75rem; border-radius: 8px; font-size: 0.85rem; text-align: center; font-weight: 600;
  transition: all 0.2s; font-family: var(--font-mono); cursor: pointer;
}
.cal-time:hover { background: var(--accent-purple); color: #ffffff; }

@media (max-width: 768px) {
  .hero-features { flex-direction: column; align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card { padding: 2rem 1.5rem; }
}
/* --- Calculator Section --- */
.calculator-card {
  padding: 4rem;
  border-radius: 24px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-label-row label {
  font-weight: 600;
  color: var(--text-primary);
}

.input-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(2, 132, 199, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 5px;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent-cyan);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
}

.calculator-result {
  background: rgba(0, 0, 0, 0.03);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.result-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.glow-text {
  text-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
}

.result-meta {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.result-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 2.5rem 1.5rem;
  }
  .input-label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .input-value {
    align-self: flex-start;
  }
  .result-value {
    font-size: 2.75rem;
    letter-spacing: -1px;
  }
  .result-label {
    letter-spacing: 1px;
  }
  .section-title {
    font-size: 2.25rem;
  }
}
/* --- Tech Stack Ribbon --- */
.tech-ribbon {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.01);
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.ribbon-tag {
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  display: block;
}


.ribbon-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.tech-item img {
  width: 24px;
  height: 24px;
}

.tech-item span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.tech-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.tech-item:hover img {
  filter: drop-shadow(0 0 8px var(--accent-cyan));
}

@media (max-width: 768px) {
  .ribbon-inner {
    gap: 2rem;
    justify-content: center;
  }
}
/* --- Reality Check Section --- */
.reality-check {
  padding: 6rem 0;
}

.reality-card {
  padding: 4rem;
  border-radius: 24px;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pain-point {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pain-point:hover {
  transform: translateY(-5px);
  background: rgba(2, 132, 199, 0.05);
  border-color: var(--accent-cyan);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon .lucide-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}

.pain-point:hover .lucide-icon {
  stroke: var(--accent-purple);
  filter: drop-shadow(0 0 12px rgba(79, 70, 229, 0.3));
}


.pain-point p {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

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

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.1);
  background: rgba(2, 132, 199, 0.02);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

@media (max-width: 768px) {
  .reality-card { padding: 3rem 1.5rem; }
  .pain-points-grid { grid-template-columns: 1fr; }
}

/* --- Onboarding Workflow --- */
.workflow-30 {
  background: rgba(0, 0, 0, 0.01);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.workflow-card {
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-color);
}

.workflow-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  background: rgba(2, 132, 199, 0.03);
}

.workflow-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.1;
  color: var(--accent-cyan);
}

.workflow-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.workflow-icon .lucide-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}


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

.workflow-card p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.workflow-list {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.workflow-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.workflow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

@media (max-width: 768px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { padding: 2.5rem; }
}
/* Lucide-style SVG Icons */
.lucide-icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--accent-cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-bottom: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(2, 132, 199, 0.2));
}

.bento-card:hover .lucide-icon,
.workflow-card:hover .lucide-icon {
  transform: scale(1.1) rotate(-5deg);
  stroke: var(--accent-purple);
  filter: drop-shadow(0 0 15px rgba(79, 70, 229, 0.4));
}

.glow-icon svg {
  width: 100%;
  height: 100%;
}

.glow-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .lucide-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* About Page Specific Styles */
.founder-card {
  display: flex;
  gap: 3rem;
  padding: 3rem;
  text-align: left;
  margin-top: 2rem;
  align-items: center;
}

.founder-photo {
  flex: 0 0 250px;
  height: 250px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.timeline-section {
  position: relative;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan), var(--accent-purple), transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.timeline-row {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding: 0 3rem;
}

.timeline-node {
  width: 60px;
  height: 60px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}

.timeline-node::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), transparent);
  z-index: -1;
  opacity: 0.5;
}

.node-year {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .founder-photo {
    flex: 0 0 150px;
    height: 150px;
  }
  
  .founder-content.text-left {
    text-align: center;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 60px;
  }
  
  .timeline-content {
    padding: 0;
    text-align: left !important;
  }
  
  .timeline-node {
    position: absolute;
    left: 0;
    top: 0;
  }
}
