/* MemoryForge AI Labs — Landing / Welcome Page */

/* ========== FULL-WIDTH SCROLL OVERRIDE ========== */
.landing-page {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  background: linear-gradient(
    168deg,
    #080820 0%,
    #0d0d2b 25%,
    #12103a 50%,
    #160e3d 75%,
    #0e0b28 100%
  );
  overflow: hidden;
}

/* Subtle radial glow behind headline */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(79, 195, 247, 0.06) 0%,
    rgba(186, 104, 200, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #ffffff 0%, #c8e6ff 50%, #e0c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
  margin: 0 auto var(--space-2xl);
}

.hero-cta {
  margin-top: var(--space-xl);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  transition: color var(--transition-base);
  z-index: 1;
}

.hero-scroll-hint:hover {
  color: var(--text-secondary);
}

.hero-scroll-hint .scroll-arrow {
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}


/* ========== DUAL-TRACK TOGGLE ========== */
.track-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.track-toggle-btn {
  padding: var(--space-sm) var(--space-xl);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.track-toggle-btn:hover {
  color: var(--text-primary);
}

.track-toggle-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-blue), #2196f3);
  box-shadow: 0 0 16px rgba(79, 195, 247, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========== FLOATING TRACK TOGGLE ========== */
.track-toggle-float {
    position: fixed;
    top: calc(var(--nav-height, 56px) + 20px);
    right: 24px;
    z-index: 50;
    display: inline-flex;
    background: rgba(12, 12, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.track-toggle-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.track-toggle-float .track-toggle-btn {
    padding: 6px 20px;
    font-size: 0.75rem;
}


/* ========== DUAL-TRACK CONTENT CROSSFADE ========== */
[data-track="business"],
[data-track="technical"] {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Business mode (default) */
body.track-business [data-track="business"] {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

body.track-business [data-track="technical"] {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* Technical mode */
body.track-technical [data-track="technical"] {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

body.track-technical [data-track="business"] {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* Track content wrapper — contains both versions stacked */
.track-content-wrap {
  position: relative;
  width: 100%;
}


/* ========== SECTION LAYOUT ========== */
.landing-section {
  padding: var(--space-3xl) var(--space-xl);
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.landing-section-full {
  padding: var(--space-3xl) var(--space-xl);
  width: 100%;
}

.landing-section-title {
  font-size: clamp(1.6rem, 3vw, var(--fs-2xl));
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.landing-section-subtitle {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  margin-bottom: var(--space-md);
  text-align: center;
  width: 100%;
}


/* ========== PROBLEM CARDS (3-COLUMN) ========== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.problem-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

.problem-card-icon.icon-data {
  background: rgba(79, 195, 247, 0.12);
  color: var(--accent-blue);
}

.problem-card-icon.icon-memory {
  background: rgba(186, 104, 200, 0.12);
  color: var(--accent-purple);
}

.problem-card-icon.icon-cost {
  background: rgba(129, 199, 132, 0.12);
  color: var(--accent-green);
}

.problem-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.problem-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ========== KEY IDEA — LAYER DIAGRAM ========== */
.layer-diagram-section {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    rgba(16, 14, 40, 1) 50%,
    var(--bg-primary) 100%
  );
}

.layer-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.layer-box {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.layer-box.visible {
  opacity: 1;
  transform: translateX(0) !important;
}

.layer-box.from-left {
  transform: translateX(-50px);
}

.layer-box.from-right {
  transform: translateX(50px);
}

.layer-box.from-center {
  transform: scale(0.9);
}

.layer-box.from-center.visible {
  transform: scale(1) !important;
}

/* Default / dimmed layer */
.layer-box.layer-dimmed {
  background: var(--bg-secondary);
  border-color: var(--border-subtle);
  opacity: 0;
}

.layer-box.layer-dimmed.visible {
  opacity: 0.65;
}

/* Highlighted MemoryForge layer */
.layer-box.layer-highlight {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(186, 104, 200, 0.08));
  border-color: var(--accent-blue);
  z-index: 2;
}

.layer-box.layer-highlight.visible {
  opacity: 1;
  animation: layer-glow 3s ease-in-out infinite;
}

@keyframes layer-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.15), 0 0 30px rgba(186, 104, 200, 0.08);
  }
  50% {
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.3), 0 0 60px rgba(186, 104, 200, 0.15);
  }
}

.layer-box-label {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-primary);
}

.layer-box-detail {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: var(--space-xs);
}

.layer-box.layer-highlight .layer-box-label {
  color: var(--accent-blue);
}

.layer-connector {
  width: 2px;
  height: 28px;
  background: var(--border-color);
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.layer-connector.visible {
  opacity: 0.5;
}

.layer-connector::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--border-color);
}

.layer-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.layer-tag.tag-new {
  background: rgba(79, 195, 247, 0.15);
  color: var(--accent-blue);
}

.layer-tag.tag-unchanged {
  background: rgba(102, 102, 136, 0.15);
  color: var(--text-muted);
}


/* ========== PILLAR CARDS (3-COLUMN) ========== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

.pillar-card:hover .pillar-card-arrow {
  transform: translateX(4px);
}

.pillar-card-number {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.pillar-card-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.pillar-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.pillar-card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent-blue);
}

.pillar-card-arrow {
  transition: transform var(--transition-fast);
}


/* ========== ECOSYSTEM JOURNEY (HORIZONTAL) ========== */
.ecosystem-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: var(--max-content-width);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: var(--space-md);
}

.ecosystem-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.ecosystem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  transition: all var(--transition-base);
}

.ecosystem-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.ecosystem-card-number {
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.ecosystem-card-name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.ecosystem-card-desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.ecosystem-card-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.ecosystem-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-sm);
  color: var(--text-muted);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  user-select: none;
}


/* ========== COMPARISON TABLES ========== */
.comparison-section {
  overflow-x: auto;
}

.comparison-table-wrap {
  max-width: var(--max-content-width);
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 700px;
}

.comparison-table thead th {
  padding: var(--space-md);
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  color: var(--text-secondary);
}

/* Highlight the MemoryForge column header */
.comparison-table thead th.col-highlight {
  color: var(--accent-blue);
  background: rgba(79, 195, 247, 0.04);
}

.comparison-table tbody td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  line-height: 1.5;
  vertical-align: top;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Highlight MemoryForge column */
.comparison-table tbody td.col-highlight {
  background: rgba(79, 195, 247, 0.04);
  color: var(--accent-blue);
  font-weight: 500;
}

.comparison-table tbody tr:hover td {
  background: rgba(79, 195, 247, 0.02);
}

.comparison-table tbody tr:hover td.col-highlight {
  background: rgba(79, 195, 247, 0.07);
}

.table-check {
  color: var(--accent-green);
  font-weight: 700;
}

.table-cross {
  color: var(--accent-red);
  font-weight: 700;
}

.table-partial {
  color: var(--accent-orange);
  font-weight: 700;
}


/* ========== DEPLOYMENT CARDS (3-COLUMN) ========== */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.deploy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.deploy-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.deploy-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.deploy-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.deploy-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.deploy-card .badge {
  margin-top: var(--space-md);
}


/* ========== ACCOUNTABILITY PROMISE ========== */
.accountability-section {
  background: linear-gradient(
    168deg,
    #0a0820 0%,
    #0f0d30 50%,
    #0a0820 100%
  );
  text-align: center;
}

.accountability-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: var(--space-2xl);
  background: linear-gradient(135deg, #ffffff 0%, #c8e6ff 60%, #e0c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accountability-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.accountability-col h4 {
  font-size: var(--fs-md);
  color: var(--accent-blue);
  margin-bottom: var(--space-sm);
}

.accountability-col p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin: var(--space-2xl) auto var(--space-xl);
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(79, 195, 247, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.compliance-badge .compliance-icon {
  color: var(--accent-green);
}


/* ========== CTA BUTTON (LARGE / GLOWING) ========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, var(--accent-blue), #2196f3);
  border: none;
  border-radius: var(--radius-lg);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.2), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #64d8ff, var(--accent-blue));
  box-shadow: 0 0 40px rgba(79, 195, 247, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.cta-btn:active {
  transform: translateY(0);
}


/* ========== SCROLL-DRIVEN FADE-IN ANIMATIONS ========== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.fade-in-section.stagger-children .problem-card,
.fade-in-section.stagger-children .pillar-card,
.fade-in-section.stagger-children .deploy-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-section.visible.stagger-children .problem-card,
.fade-in-section.visible.stagger-children .pillar-card,
.fade-in-section.visible.stagger-children .deploy-card {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-section.visible.stagger-children > :nth-child(1),
.fade-in-section.visible.stagger-children .problem-card:nth-child(1),
.fade-in-section.visible.stagger-children .pillar-card:nth-child(1),
.fade-in-section.visible.stagger-children .deploy-card:nth-child(1) {
  transition-delay: 0ms;
}

.fade-in-section.visible.stagger-children > :nth-child(2),
.fade-in-section.visible.stagger-children .problem-card:nth-child(2),
.fade-in-section.visible.stagger-children .pillar-card:nth-child(2),
.fade-in-section.visible.stagger-children .deploy-card:nth-child(2) {
  transition-delay: 120ms;
}

.fade-in-section.visible.stagger-children > :nth-child(3),
.fade-in-section.visible.stagger-children .problem-card:nth-child(3),
.fade-in-section.visible.stagger-children .pillar-card:nth-child(3),
.fade-in-section.visible.stagger-children .deploy-card:nth-child(3) {
  transition-delay: 240ms;
}

/* Ecosystem sequential fade */
.ecosystem-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ecosystem-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.ecosystem-arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ecosystem-arrow.visible {
  opacity: 1;
}


/* ========== FOOTER ========== */
.landing-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.landing-footer .footer-brand {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.landing-footer .footer-tagline {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.landing-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: var(--space-lg);
}

.landing-footer .footer-nav a {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.landing-footer .footer-nav a:hover {
  color: var(--accent-blue);
}

.landing-footer .footer-legal {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.8;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .problem-grid,
  .pillar-grid,
  .deploy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ecosystem-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .ecosystem-arrow {
    display: none;
  }

  .ecosystem-step {
    flex: 0 0 calc(33% - var(--space-md));
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .problem-grid,
  .pillar-grid,
  .deploy-grid,
  .accountability-columns {
    grid-template-columns: 1fr;
  }

  .ecosystem-step {
    flex: 0 0 calc(50% - var(--space-md));
  }

  .hero-headline {
    font-size: 2rem;
  }

  .landing-section,
  .landing-section-full {
    padding: var(--space-2xl) var(--space-md);
  }

  .comparison-table {
    font-size: var(--fs-xs);
  }

  .track-toggle-btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: var(--fs-xs);
  }
}

@media (max-width: 480px) {
  .ecosystem-step {
    flex: 0 0 100%;
  }
}
