/* ============================================
   SETUP & VARIABLES (Technical Palette)
   ============================================ */
:root {
  --bg-dark: #09090b;
  --bg-light: #ffffff;
  --bg-subtle: #fafafa;

  --text-main: #18181b;
  --text-muted: #71717a;
  --text-light: #e4e4e7;

  --accent: #3b82f6;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);

  --font-ui: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ui);
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.5;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.mono {
  font-family: var(--font-mono);
}

/* ============================================
   NAVBAR & HERO
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white;
}
.logo-icon {
  background: white;
  color: black;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
}
.nav-links a:hover {
  color: white;
}
.btn-white {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: white;
  color: black;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  background-color: var(--bg-dark);
  color: white;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}
.grid-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 20px;
  align-items: center;
  z-index: 2;
  position: relative;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.highlight-gradient {
  background: linear-gradient(90deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: #a1a1aa;
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 30px;
  font-weight: 300;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  color: #e4e4e7;
  margin-bottom: 24px;
  font-family: var(--font-mono);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 3D CANVAS & HUD */
.hero-3d {
  position: relative;
  height: 600px;
  width: 100%;
}
.canvas-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hud-group {
  position: absolute;
  top: 15%;
  right: 40%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.hud-row {
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 4px;
  border-right: 2px solid var(--border-dark);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.hud-row .label {
  font-size: 0.7rem;
  color: #71717a;
}
.hud-row .value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e4e4e7;
}
.main-metric {
  position: absolute;
  bottom: 15%;
  right: 5%;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid var(--border-dark);
  padding: 24px;
  min-width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}
.label-sm {
  font-size: 0.75rem;
  color: #3b82f6;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.value-lg {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: block;
  color: white;
}
.metric-bar {
  width: 100%;
  height: 4px;
  background: #27272a;
  margin-top: 12px;
  border-radius: 2px;
}
.metric-bar .fill {
  width: 75%;
  height: 100%;
  background: #3b82f6;
  border-radius: 2px;
  animation: pulseBar 2s infinite ease-in-out;
}
@keyframes pulseBar {
  0% {
    width: 75%;
    opacity: 1;
  }
  50% {
    width: 78%;
    opacity: 0.8;
  }
  100% {
    width: 75%;
    opacity: 1;
  }
}

/* ============================================
   BENTO GRID (TECHNICAL POLISH)
   ============================================ */
.features {
  padding: 120px 0;
  background: #050505;
  color: white;
  position: relative;
}
.features .section-header h2 {
  color: white;
  letter-spacing: -1.5px;
}
.features .section-header p {
  color: #a1a1aa;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px); /* Fixed height for consistency */
  gap: 24px;
}

/* Card Base - Enhanced Depth */
.bento-card.text-only {
  background: linear-gradient(145deg, #0f0f11 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Technical Grid Texture Background */
.bento-card.text-only::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

/* Hover Glow */
.bento-card.text-only:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

/* Typography Enhancements */
.card-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.mono-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #60a5fa; /* Brighter Blue */
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.card-content-text {
  position: relative;
  z-index: 2;
}

.card-content-text h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: white;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.card-content-text p {
  font-size: 1rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Highlights inside text */
.highlight-text {
  color: white;
  font-weight: 600;
  border-bottom: 1px solid #3b82f6;
}

/* Metrics (Dashboard Card) */
.metric-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: auto;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-item .label {
  font-size: 0.7rem;
  color: #71717a;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.metric-item .value {
  font-family: "JetBrains Mono", monospace;
  color: #4ade80; /* Green for performance */
  font-size: 1.1rem;
  font-weight: 700;
}

/* Tags (Data Card) */
.tag-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.tech-tag {
  font-size: 0.85rem;
  background: #18181b;
  color: #e4e4e7;
  border: 1px solid #27272a;
  padding: 8px 14px;
  border-radius: 100px;
  font-weight: 500;
  font-family: var(--font-mono);
}

/* Checklist (Config Card) */
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e4e4e7;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "✓";
  color: #3b82f6;
  font-weight: 900;
  background: rgba(59, 130, 246, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Layout Classes */
.large {
  grid-column: span 2;
}
.medium {
  grid-column: span 1;
}

/* Mobile */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .large,
  .medium {
    grid-column: span 1;
  }
}

/* Update this specific class in your CSS */
.nav-logo-img {
  height: 32px; /* Adjust size to fit navbar */
  width: auto;
  margin-right: 10px;
  border-radius: 6px; /* Match the rounded aesthetic */
}

/* ============================================
   OTHER SECTIONS (Backers, Workflow, etc.)
   ============================================ */
/* Backed By */
.backed-by {
  padding: 60px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}
.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  transition: transform 0.2s;
  cursor: pointer;
  opacity: 0.7;
}
.logo-item:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.logo-img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.logo-item:hover .logo-img {
  filter: grayscale(0%);
}
.fix-white-logo {
  filter: invert(1) grayscale(100%);
}
.logo-item:hover .fix-white-logo {
  filter: invert(1) grayscale(0%);
}
.fix-faint-logo {
  filter: grayscale(100%) contrast(150%) brightness(0.7);
}
.logo-item:hover .fix-faint-logo {
  filter: grayscale(0%) contrast(100%) brightness(1);
}
.rounded-logo {
  border-radius: 4px;
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.problem-item {
  padding: 30px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  text-align: left;
  transition: transform 0.2s;
}
.problem-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.tech-icon-box {
  width: 48px;
  height: 48px;
  background: #f4f4f5; /* Very light grey */
  border: 1px solid #e4e4e7;
  border-radius: 8px; /* Technical rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.problem-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.problem-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.timeline-row:last-child {
  margin-bottom: 0;
}
.timeline-content {
  width: 45%;
  padding-right: 40px;
}
.timeline-visual {
  width: 45%;
}
.timeline-row.reverse {
  flex-direction: row-reverse;
}
.timeline-row.reverse .timeline-content {
  padding-right: 0;
  padding-left: 40px;
  text-align: right;
}
.timeline-row.reverse .feature-list-sm {
  align-items: flex-end;
}
.step-badge {
  display: inline-block;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.timeline-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.timeline-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}
.feature-list-sm {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list-sm li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}
.feature-list-sm li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.visual-card {
  background: white;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.timeline-row.reverse .visual-card {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
}
.visual-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.visual-card img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* Validation Section */
.validation-section {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-mark {
  font-size: 4rem;
  color: var(--border-light);
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}
.review-text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
}
.review-author strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
}
.review-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.stat-card-highlight {
  background: var(--bg-dark);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stat-val {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #4ade80, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.stat-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Validation Tiny (Hero) */
.validation-tiny {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 32px;
  height: 32px;
  background: #333;
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}
.avatar:first-child {
  margin-left: 0;
  background: #3b82f6;
}
.validation-tiny span {
  font-size: 0.85rem;
  color: #a1a1aa;
}
.validation-tiny strong {
  color: white;
}

/* CTA Section */
.cta-section {
  background: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 100px 0;
}
.cta-section h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.email-form {
  max-width: 400px;
  margin: 40px auto 0;
}
.form-group {
  display: flex;
  gap: 8px;
}
.form-group input {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-ui);
}
.footer-note {
  font-size: 0.8rem;
  color: #52525b;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #71717a;
  padding: 60px 0;
  border-top: 1px solid var(--border-dark);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand .logo-text {
  color: white;
  font-weight: 700;
}
.footer-links a {
  color: #71717a;
  margin-left: 24px;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-text {
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .validation-tiny {
    margin-left: 0;
  }
  .hero-3d {
    height: 400px;
  }
  .main-metric {
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    width: 90%;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .span-2,
  .span-1 {
    grid-column: span 1;
  }
  .logo-strip {
    gap: 30px;
  }
  .nav-right ul {
    display: none;
  }
  .problem-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .timeline-row,
  .timeline-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
  .timeline-content,
  .timeline-visual {
    width: 100%;
    padding: 0;
    text-align: left !important;
  }
  .feature-list-sm {
    align-items: flex-start !important;
  }
  .visual-card {
    transform: none !important;
  }
}

/* Animations */
.typing-cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  height: 1.2em;
}
@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-title {
  min-height: 160px;
}
.hero-subtitle {
  min-height: 80px;
}
@media (max-width: 900px) {
  .hero-title {
    min-height: 120px;
  }
  .hero-subtitle {
    min-height: 120px;
  }
}

/* ============================================
   VISION SECTION (New)
   ============================================ */
.vision-section {
  padding: 120px 0;
  background: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vision-text h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-align: left;
}
.vision-text p {
  font-size: 1.1rem;
  color: #a1a1aa;
  margin-bottom: 24px;
  line-height: 1.6;
}
.vision-note {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  color: white !important;
  font-weight: 500;
  font-style: italic;
}

/* Generative Abstract Visual */
.generative-grid-visual {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.gen-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
  animation: floatNode 6s infinite ease-in-out;
}
.node-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}
.node-2 {
  top: 60%;
  left: 70%;
  animation-delay: 1s;
}
.node-3 {
  top: 80%;
  left: 20%;
  animation-delay: 2s;
}
.node-4 {
  top: 30%;
  left: 80%;
  animation-delay: 3s;
}
@keyframes floatNode {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, -20px);
    opacity: 1;
  }
}

/* ============================================
   ROADMAP SECTION (New)
   ============================================ */
.roadmap-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.roadmap-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Horizontal Connector Line */
.roadmap-container::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 33%, #e4e4e7 33%);
  z-index: 0;
}

.roadmap-item {
  position: relative;
  z-index: 1;
  width: 30%;
  text-align: center;
}
.roadmap-marker {
  width: 34px;
  height: 34px;
  background: white;
  border: 4px solid #e4e4e7;
  border-radius: 50%;
  margin: 0 auto 24px;
  transition: all 0.3s;
}
.roadmap-item.completed .roadmap-marker {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.roadmap-item.future .roadmap-marker {
  border-color: #d4d4d8;
}

.roadmap-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.roadmap-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.roadmap-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ... [KEEP ALL VARIABLES, NAVBAR, HERO, BENTO, ROADMAP CSS FROM PREVIOUS STEPS] ... */

/* ============================================
   TEAM SECTION (UPDATED FOR 2 MEMBERS)
   ============================================ */
.team-section {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.team-grid {
  display: grid;
  /* Use 2 columns explicitly */
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  /* Constrain width so they aren't huge */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-main);
}
.team-card .role {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.linkedin-link {
  font-size: 0.85rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #d4d4d8;
}

/* Responsive: Stack vertically */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* NEW IMAGE CONTAINER STYLE */
.team-avatar-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto; /* Centers the circle */
  border-radius: 50%; /* Makes it a perfect circle */
  overflow: hidden; /* Crops the image to the circle */
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #f4f4f5; /* Fallback background */
}

.team-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures face is centered and covers the circle */
  object-position: center top; /* Focuses on the face (top of image) */
  display: block;
}

/* Hover Effect */
.team-card:hover .team-avatar-img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15); /* Blue glow on hover */
  border-color: var(--accent);
}
