.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #0f172a;
  font-weight: 600;
  font-size: 14px;
}

.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.pill-pulse::before {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.08);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
    transform: scale(1);
  }
}

.pill-check::before {
  background: #22c55e;
}

.btn-primary {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(99, 102, 241, 0.45);
}

.btn-ghost {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.lab-selector .btn-primary,
.lab-selector .btn-ghost {
  border-radius: 999px;
}

.lab-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  padding: 22px 22px 24px;
  transition: transform 150ms ease, box-shadow 150ms ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.lab-card-header {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.lab-card-subtitle {
  font-weight: 700;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 6px;
}

.lab-card-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.lab-card-list li {
  position: relative;
  padding-left: 14px;
  list-style: none;
}

.lab-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35);
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    transform: translateY(-50%) scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    transform: translateY(-50%) scale(1);
  }
}

.lab-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ld-lab-page .nav-shell {
  background: #f8fafc;
  border-bottom: 1px solid #e6ebf5;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ld-lab-page .nav-links {
  padding: 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(15, 23, 42, 0.06);
  gap: 12px;
}

.ld-lab-page .menu-link {
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.ld-lab-page .menu-link.active {
  background: #ffffff;
  box-shadow: none;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.ld-lab-page .menu-link:hover {
  background: #f1f5f9;
  color: #111827;
}

.ld-lab-page .nav-inner {
  padding: 10px 0;
}

.ld-lab-page .logo-img {
  height: 40px;
}

.home-hero {
  background: #ffffff;
}

.lab-tiles .lab-card {
  border-radius: 22px;
  padding: 20px;
}

.lab-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e293b;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.lab-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #e2e8f0;
}

.lab-cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  align-self: flex-start;
}

.lab-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lab-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  padding-top: 14px;
}

.ld-subnav-shell {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 30px rgba(15, 23, 42, 0.05);
  overflow-x: auto;
  position: sticky;
  top: 76px;
  z-index: 25;
}

.ld-subnav-content {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 12px;
}

.ld-subnav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.ld-subnav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.ld-subnav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transition: transform 180ms ease, opacity 180ms ease;
}

.ld-subnav-toggle.open .ld-subnav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ld-subnav-toggle.open .ld-subnav-burger span:nth-child(2) {
  opacity: 0;
}

.ld-subnav-toggle.open .ld-subnav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ld-home-icon {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
}

.ld-home-icon svg {
  width: 16px;
  height: 16px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.store-icon svg {
  width: 18px;
  height: 18px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-dot 1.6s ease-in-out infinite;
  margin-top: 6px;
}

.outcome-board {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.outcome-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.outcome-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.outcome-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.outcome-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: #dbeafe;
}

.outcome-item.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(59, 130, 246, 0.12));
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
}

.outcome-radio {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.outcome-item.active .outcome-radio {
  border-color: #6366f1;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.16);
}

.outcome-item.active .outcome-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #4f46e5;
}

.outcome-tag {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-weight: 700;
  color: #0f172a;
  font-size: 12px;
}
.ld-subnav-toggle:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.ld-subnav-toggle-icon {
  font-size: 12px;
}

.ld-subnav-toggle.open {
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
  color: #0f172a;
  border-color: rgba(99, 102, 241, 0.35);
}

.ld-subnav-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ld-subnav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.ld-subnav-link:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.ld-subnav-link.active {
  background: transparent;
  color: #0f172a;
  border-color: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #3b82f6;
  text-underline-offset: 6px;
}

.ld-subnav-link.experience {
  background: none;
  border-color: transparent;
  box-shadow: none;
  background-image: linear-gradient(120deg, #1d4ed8, #7c3aed, #0ea5e9);
  background-size: 180% 180%;
  animation: experienceGradientFlow 8s ease-in-out infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ld-subnav-link.experience:hover {
  color: #0f172a;
  background-image: none;
  border-color: #e2e8f0;
  text-decoration: underline;
  text-decoration-color: #3b82f6;
  text-underline-offset: 6px;
}

.ld-subnav-link.experience.active {
  color: #1d4ed8;
  background-image: none;
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: #3b82f6;
  text-underline-offset: 6px;
  box-shadow: none;
}

@keyframes experienceGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Innovation Wall */
.innovation-wall {
  position: relative;
}

.innovation-wall::before {
  content: none;
}

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

.wall-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.wall-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.12);
}

.wall-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.filter-chip::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.filter-chip:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.filter-chip.active {
  border-color: #2563eb;
  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(120deg, #e0e7ff, #dbeafe);
}

.wall-card.hidden {
  display: none;
}

.wall-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wall-card-title {
  font-weight: 700;
  color: #0f172a;
}

.wall-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.wall-card-cta {
  font-weight: 700;
  color: #2563eb;
  font-size: 14px;
}

.wall-card:hover .wall-card-cta {
  text-decoration: underline;
}

.wall-card.tone-blue {
  background: linear-gradient(145deg, #ffffff 0%, #eef2ff 100%);
}

.wall-card.tone-amber {
  background: linear-gradient(145deg, #fffaf0 0%, #fef3c7 100%);
}

.wall-card.tone-emerald {
  background: linear-gradient(145deg, #f7fef9 0%, #dcfce7 100%);
}

.wall-card.tone-sky {
  background: linear-gradient(145deg, #f8feff 0%, #e0f2fe 100%);
}

.wall-card.tone-indigo {
  background: linear-gradient(145deg, #f7f8ff 0%, #e0e7ff 100%);
}

.wall-card.tone-rose {
  background: linear-gradient(145deg, #fff7f9 0%, #ffe4e6 100%);
}

.wall-card.tone-violet {
  background: linear-gradient(145deg, #faf7ff 0%, #ede9fe 100%);
}

.wall-card.tone-slate {
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
}

.wall-card.is-filtered-out,
.wall-card.is-collapsed {
  display: none;
}

.wall-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wall-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.load-more-btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(120deg, #e0e7ff, #dbeafe);
  font-weight: 700;
  color: #0f172a;
  box-shadow:
    0 10px 24px rgba(59, 130, 246, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.load-more-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
.ld-subnav-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 8px 0;
    gap: 8px;
    justify-content: center;
    display: none;
  }

  .ld-subnav-link {
    white-space: normal;
    flex: 1 1 45%;
    justify-content: center;
    text-align: center;
  }

  .ld-subnav-toggle {
    display: inline-flex;
  }

  .ld-subnav-inner.open {
    display: flex;
  }

  .ld-subnav-content {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 769px) {
  .ld-subnav-toggle {
    display: none;
  }

  .ld-subnav-inner {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .ld-subnav-inner::-webkit-scrollbar {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rollout-card {
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 30px rgba(15, 23, 42, 0.12);
}

.rollout-card.subtle {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 22px rgba(15, 23, 42, 0.08);
}

.rollout-title {
  font-weight: 700;
  color: #0f172a;
}

.rollout-desc {
  margin: 4px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
}

.chip-primary {
  background: #4f46e5;
  border-color: #4338ca;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.chip-ghost {
  background: #ffffff;
  color: #0f172a;
}

.radio,
.radio-active {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  margin-top: 4px;
}

.radio-active {
  border-color: #6366f1;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.18);
  position: relative;
}

.radio-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: #6366f1;
  border-radius: 999px;
}
.font-jakarta {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fbfdff;
  border: 1px solid #e6ebf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-weight: 600;
  font-size: 13px;
}

.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.pill-check::before {
  background: #22c55e;
}

.btn-primary {
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.45);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(99, 102, 241, 0.5);
}

.btn-ghost {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.rollout-card {
  border-radius: 18px;
  padding: 16px 16px 14px 16px;
  background: #f7f9ff;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.rollout-card.glow {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(59, 130, 246, 0.12));
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.22), 0 6px 18px rgba(59, 130, 246, 0.18);
  border-color: rgba(99, 102, 241, 0.3);
}

.rollout-card.subtle {
  background: #fbfdff;
  border: 1px solid #e6ebf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(15, 23, 42, 0.05);
}

.check-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.18);
}

.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rollout-title {
  font-weight: 800;
  color: #0f172a;
  font-size: 15px;
}

.rollout-desc {
  margin: 4px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
}

.chip-primary {
  background: #4f46e5;
  border-color: #4338ca;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.chip-ghost {
  background: #ffffff;
  color: #0f172a;
}

.radio,
.radio-active {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  margin-top: 4px;
  flex-shrink: 0;
}

.radio-active {
  border-color: #6366f1;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.18);
  position: relative;
}

.radio-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: #6366f1;
  border-radius: 999px;
}

.shadow-soft {
  box-shadow:
    0 25px 80px rgba(15, 23, 42, 0.10),
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 12px rgba(15, 23, 42, 0.04);
}

.gradient-text {
  background: linear-gradient(90deg, #4b8bff, #7b5bff, #f58b6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e7ecf3;
  padding: 16px 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.feature-card-7x {
  background: #3b82f6;
  border: 1px solid transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 160px;
}

.feature-7x-label,
.feature-7x-sub {
  color: #e0f2fe;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature-7x-value {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 36px rgba(15, 23, 42, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2fb;
  color: #4c5a74;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-title {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin: 0 0 8px;
}

.feature-desc {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tool-btn {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.tool-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}

.hiw-card {
  text-align: left;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #e7ecf3;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.hiw-flow {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hiw-flow .hiw-card {
  position: relative;
}

.hiw-flow .hiw-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.5), rgba(59, 130, 246, 0.35));
  transform: translateX(-50%);
}

.hiw-flow .hiw-card:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 12px;
  height: 6px;
  background: rgba(99, 102, 241, 0.45);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.hiw-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.hiw-card.active {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(59, 130, 246, 0.12));
}

.hiw-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2fb;
  color: #4c5a74;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
  width: 30px;
  height: 30px;
  justify-content: center;
}

.hiw-title {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
}

.hiw-sub {
  margin: 2px 0 0;
  color: #475569;
  font-size: 13px;
}

.hiw-panel {
  border-radius: 22px;
  border: 1px solid #e6ebf2;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  padding: 18px;
  min-height: 200px;
}

.hiw-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hiw-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
}

.hiw-steps .step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #eef2fb;
  color: #4c5a74;
  font-weight: 800;
  font-size: 12px;
}

.hiw-steps .step.active {
  border-color: rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.08));
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.12);
}

.hiw-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.nav-shell {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e7ecf5;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 8px;
  border-radius: 999px;
  gap: 4px;
}

.nav-toggle {
  display: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  box-shadow:
    0 12px 30px rgba(99, 102, 241, 0.32),
    0 0 0 12px rgba(99, 102, 241, 0.08);
}

.logo-dot {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(99, 102, 241, 0.32));
}

.footer-logo {
  background: #ffffff;
  border-radius: 12px;
  padding: 6px 10px;
  height: 40px;
  width: auto;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  filter: none;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  letter-spacing: -0.01em;
  transition: color 140ms ease, background-color 140ms ease;
}

.menu-link:hover {
  color: #111827;
  background: #f3f6fb;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-link:hover::after,
.menu-link.active::after {
  transform: scaleX(1);
}

.menu-link.active {
  color: #111827;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.menu-link.featured {
  color: #ffffff;
  background: linear-gradient(120deg, #2563eb, #7c3aed 65%, #22d3ee);
  box-shadow:
    0 14px 30px rgba(59, 130, 246, 0.28),
    0 6px 18px rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-link.featured:hover {
  color: #ffffff;
  background: linear-gradient(120deg, #1d4ed8, #6d28d9 60%, #0ea5e9);
  box-shadow:
    0 16px 34px rgba(59, 130, 246, 0.32),
    0 8px 20px rgba(109, 40, 217, 0.25);
}

.menu-link.featured::after {
  display: none;
}

.menu-link.featured.active {
  color: #ffffff;
  background: linear-gradient(120deg, #2563eb, #7c3aed 65%, #22d3ee);
  box-shadow:
    0 16px 34px rgba(59, 130, 246, 0.32),
    0 8px 20px rgba(109, 40, 217, 0.25);
}

@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0 12px;
    gap: 8px;
  }

  .logo-img {
    height: 34px;
    filter: none;
  }

  .nav-links {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 4px 6px;
    box-shadow: none;
  }

  .menu-link {
    padding: 10px 12px;
    width: auto;
    border-radius: 10px;
  }
}

.case-hero {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.18), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.16), transparent 36%),
    linear-gradient(135deg, #1d2b4f, #111827);
  overflow: hidden;
}

.case-hero-blob {
  position: absolute;
  filter: blur(70px);
  opacity: 0.45;
}

.case-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 18%;
  background: #8b5cf6;
}

.case-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 12%;
  background: #3b82f6;
}

.case-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.case-hero-metrics {
  display: grid;
  gap: 10px;
}

.case-hero-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.case-chip-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.filter-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  transition: all 160ms ease;
}

.filter-pill:hover {
  background: #e9eef7;
  border-color: #cbd5e1;
}

.filter-pill.active {
  background: #eef2fb;
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 10px 26px rgba(99, 102, 241, 0.18);
  color: #111827;
}

.case-grid {
  align-content: start;
}

.case-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease;
  cursor: pointer;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
}

.case-card:hover::after,
.case-card.active::after {
  opacity: 1;
}

.case-card.active {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.case-card-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 4px 6px;
}

.case-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.case-pill-ghost {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.case-score {
  font-weight: 800;
  font-size: 12px;
  color: #475569;
  background: #f8fafc;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.case-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.case-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.case-star {
  width: 14px;
  height: 14px;
}

.case-rating-text {
  font-size: 11px;
  font-weight: 800;
  color: #92400e;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #fde68a;
}

.case-feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.case-feedback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.case-feedback-label {
  font-size: 12px;
  font-weight: 800;
  color: #7c2d12;
}

.case-feedback-text {
  margin-top: 6px;
  font-size: 13px;
  color: #7c2d12;
  line-height: 1.5;
}

.case-card-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.case-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.case-card-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1f2937;
  font-weight: 700;
  font-size: 12px;
}

.case-detail {
  position: sticky;
  top: 80px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.case-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.case-detail-head #detail-sector {
  flex: 0 1 220px;
  min-width: 0;
  max-width: 220px;
  text-align: right;
  line-height: 1.4;
  text-wrap: balance;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.case-metric {
  padding: 12px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.case-metric-value {
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.case-metric-label {
  font-size: 12px;
  color: #475569;
  font-weight: 700;
}

.case-phases {
  display: grid;
  gap: 10px;
}

.case-phase {
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.case-phase-title {
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
}

.case-phase-desc {
  margin: 6px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .case-detail {
    position: relative;
    top: 0;
  }
}

@media (max-width: 640px) {
  .case-detail-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .case-detail-head #detail-sector {
    text-align: left;
    max-width: 100%;
    flex-basis: 100%;
  }
}

.approach-hero {
  position: relative;
  background: radial-gradient(circle at 12% 20%, rgba(59, 130, 246, 0.18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.16), transparent 36%),
    linear-gradient(135deg, #0f172a, #111827);
  overflow: hidden;
}

.approach-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.approach-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 6px 0 10px;
}

.approach-hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #cbd5e1;
}

.approach-hero-value {
  font-weight: 700;
  color: #ffffff;
}

.approach-hero-progress {
  position: relative;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 10px;
}

.approach-progress-bar {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.approach-progress-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 700;
}

.approach-step {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.approach-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.approach-step-title {
  margin-top: 10px;
  font-weight: 800;
  color: #0f172a;
}

.approach-step-desc {
  margin: 8px 0 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.approach-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1f2937;
  font-weight: 700;
  font-size: 12px;
}

.approach-slab {
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #f8fbff, #ffffff);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.approach-card {
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.approach-card-label {
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 8px;
}

.approach-list {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.stack-hero {
  position: relative;
  background: radial-gradient(circle at 16% 16%, rgba(59, 130, 246, 0.2), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(99, 102, 241, 0.18), transparent 34%),
    linear-gradient(135deg, #0f172a, #101525);
  overflow: hidden;
}

.stack-hero-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
}

.stack-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 10%;
  background: #8b5cf6;
}

.stack-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 8%;
  background: #3b82f6;
}

.stack-hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.stack-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 10px 0 14px;
}

.stack-hero-bar {
  position: relative;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  height: 14px;
}

.stack-bar {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

.stack-bar-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 700;
  text-align: center;
}

.stack-card {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.stack-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.stack-card-title {
  margin-top: 10px;
  font-weight: 800;
  color: #0f172a;
}

.stack-card-desc {
  margin: 8px 0 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.stack-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-integration {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.stack-integration-col {
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbff, #ffffff);
  border: 1px solid #e2e8f0;
}

.stack-integration-heading {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.stack-integration-copy {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.insights-hero {
  position: relative;
  background: radial-gradient(circle at 16% 16%, rgba(59, 130, 246, 0.18), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(14, 165, 233, 0.14), transparent 40%),
    linear-gradient(180deg, #f8fafc, #ffffff);
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.insights-hero-blob {
  position: absolute;
  filter: blur(90px);
  opacity: 0.22;
}

.insights-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 12%;
  background: #bfdbfe;
}

.insights-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 10%;
  background: #c7d2fe;
}

.insights-hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.insights-hero-metrics {
  display: grid;
  gap: 10px;
}

.insights-hero-metric {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.insight-grid {
  align-content: start;
}

.insight-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease;
  cursor: pointer;
}

.insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
}

.insight-card:hover::after,
.insight-card.active::after {
  opacity: 1;
}

.insight-card.active {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
}

.insight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.insight-time {
  font-weight: 800;
  font-size: 12px;
  color: #475569;
  background: #f8fafc;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.insight-card-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.insight-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.insight-detail {
  position: sticky;
  top: 80px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.insight-keys {
  display: grid;
  gap: 8px;
}

.insight-key {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  color: #1f2937;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .insight-detail {
    position: relative;
    top: 0;
  }
}

.site-footer {
  background: linear-gradient(135deg, #0f172a, #0d1530);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 34px rgba(15, 23, 42, 0.2);
  padding: 32px 0 28px;
}

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

.footer-grid {
  display: flex;
  gap: 24px;
  padding: 14px 0 10px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.footer-link {
  display: inline-flex;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 15px;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  transition: color 150ms ease;
}

.footer-social .footer-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: #e2e8f0;
  transition: fill 150ms ease;
}

.youtube-icon {
  fill: #ef4444 !important;
}

.footer-link:hover .footer-icon {
  fill: #ffffff;
}

.footer-link:hover .youtube-icon {
  fill: #ef4444 !important;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-inline-links {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-link-inline {
  color: #e2e8f0;
  font-weight: 600;
  transition: color 150ms ease;
}

.footer-link-inline:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.solutions-hero {
  position: relative;
  background: radial-gradient(circle at 16% 16%, rgba(59, 130, 246, 0.2), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(99, 102, 241, 0.18), transparent 34%),
    linear-gradient(135deg, #0f172a, #0d1122);
  overflow: hidden;
}

.solutions-hero-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
}

.solutions-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 12%;
  background: #8b5cf6;
}

.solutions-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 10%;
  background: #3b82f6;
}

.solutions-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.solutions-hero-metrics {
  display: grid;
  gap: 10px;
}

.solutions-hero-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-grid {
  align-content: start;
}

.solution-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease;
  cursor: pointer;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
}

.solution-card:hover::after,
.solution-card.active::after {
  opacity: 1;
}

.solution-card.active {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
}

.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.solution-time {
  font-weight: 800;
  font-size: 12px;
  color: #475569;
  background: #f8fafc;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.solution-card-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.solution-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.solution-detail {
  position: sticky;
  top: 80px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
  .solution-detail {
    position: relative;
    top: 0;
  }
}

.about-page {
  --about-accent: #2563eb;
  --about-accent-dark: #1d4ed8;
  --about-soft: #eff6ff;
  --about-soft-2: #f8fafc;
  --about-ink: #0f172a;
  --about-muted: #475569;
  --about-border: #e2e8f0;
}

.about-hero {
  position: relative;
  background: radial-gradient(circle at 16% 16%, rgba(37, 99, 235, 0.16), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

.about-hero-blob {
  position: absolute;
  filter: blur(90px);
  opacity: 0.5;
}

.about-hero-blob-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  right: 12%;
  background: #60a5fa;
}

.about-hero-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: 6%;
  background: #38bdf8;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.about-hero-copy {
  max-width: 560px;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.about-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--about-ink);
}

.about-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--about-muted);
}

.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-ethos-card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, #0ea5e9, #2563eb);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.28);
}

.about-ethos-head {
  margin-bottom: 18px;
}

.about-ethos-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.about-ethos-title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

.about-ethos-list {
  display: grid;
  gap: 16px;
}

.about-ethos-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-ethos-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.about-ethos-item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.about-ethos-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.about-ethos-icon svg {
  width: 20px;
  height: 20px;
}

.about-section-head h2 {
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--about-ink);
}

.about-section-head p {
  margin-top: 10px;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

.about-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.about-panels {
  display: grid;
  gap: 16px;
}

.about-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--about-border);
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.about-panel h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--about-ink);
}

.about-panel p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.6;
}

.about-team-card {
  background: var(--about-soft);
  border: 1px solid #c7d2fe;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

.about-team-head h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--about-ink);
}

.about-team-head p {
  margin: 0 0 14px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.6;
}

.about-team-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
}

.about-team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #1e293b;
  font-size: 14px;
}

.about-team-list li {
  position: relative;
  padding-left: 18px;
}

.about-team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--about-accent);
}

.about-journey {
  background: var(--about-soft-2);
  border-top: 1px solid var(--about-border);
  border-bottom: 1px solid var(--about-border);
}

.journey-track {
  position: relative;
}

.journey-line {
  position: absolute;
  top: 18px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(37, 99, 235, 0.2);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.journey-card {
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  font-size: 14px;
  color: var(--about-muted);
  line-height: 1.6;
}

.journey-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.journey-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--about-accent);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.journey-year {
  font-weight: 800;
  color: var(--about-ink);
  font-size: 14px;
}

.journey-card-highlight {
  border-color: rgba(37, 99, 235, 0.45);
  background: #e0f2fe;
  color: #1e3a8a;
}

@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .journey-line {
    display: none;
  }
}

.about-profile {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.about-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.32);
}

.about-profile-name {
  font-weight: 800;
  color: #0f172a;
}

.about-profile-role {
  font-weight: 700;
  font-size: 13px;
  color: #475569;
}

.about-profile-bio {
  margin: 6px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.contact-hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.contact-hero-blob {
  display: none;
}

.contact-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 12%;
  background: #8b5cf6;
}

.contact-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 10%;
  background: #3b82f6;
}

.contact-hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-hero .approach-hero-label {
  color: #64748b;
}

.contact-hero .approach-hero-value {
  color: #0f172a;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-hero-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-hero-label-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-hero-icon {
  width: 16px;
  height: 16px;
  color: #3b82f6;
  flex-shrink: 0;
}

.contact-cards {
  display: grid;
  gap: 8px;
}

.contact-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.contact-card-title {
  font-weight: 800;
  color: #0f172a;
}

.contact-card-desc {
  font-size: 13px;
  color: #475569;
}

.contact-form {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.contact-field {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 14px;
  color: #0f172a;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.industries-hero {
  position: relative;
  background: radial-gradient(circle at 16% 16%, rgba(59, 130, 246, 0.2), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(99, 102, 241, 0.18), transparent 34%),
    linear-gradient(135deg, #0f172a, #0d1122);
  overflow: hidden;
}

.industries-hero-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
}

.industries-hero-blob-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 12%;
  background: #8b5cf6;
}

.industries-hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 10%;
  background: #3b82f6;
}

.industries-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.industries-hero-metrics {
  display: grid;
  gap: 10px;
}

.industries-hero-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-grid {
  align-content: start;
}

.industry-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease;
  cursor: pointer;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
}

.industry-card:hover::after,
.industry-card.active::after {
  opacity: 1;
}

.industry-card.active {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
}

.industry-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.industry-card-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.industry-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.industry-detail {
  position: sticky;
  top: 80px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
  .industry-detail {
    position: relative;
    top: 0;
  }
}

/* Solutions page */
.solutions-page {
  --solution-ink: #0f172a;
  --solution-muted: #475569;
  --solution-border: #e2e8f0;
  --solution-panel: #ffffff;
  --solution-sheen: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.solutions-hero {
  padding: 64px 0 56px;
  background: #ffffff;
}

.solutions-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.solutions-hero-shell::before {
  content: none;
}

.solutions-hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
  z-index: 1;
}

.solutions-kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}

.solutions-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solutions-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.solutions-hero-principles {
  display: grid;
  gap: 12px;
}

.solutions-principle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.solutions-principle-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e2e8f0;
  border: 1px solid #cbd5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 6px #f8fafc;
}

.solutions-principle-title {
  font-weight: 700;
  color: var(--solution-ink);
  margin-bottom: 4px;
}

.solutions-principle-sub {
  margin: 0;
  color: var(--solution-muted);
  font-size: 13px;
  line-height: 1.5;
}

.solutions-section {
  padding-bottom: 72px;
}

.solutions-heading {
  max-width: 720px;
}

.solutions-switcher {
  --solution-accent: #2563eb;
  --solution-accent-strong: #1d4ed8;
  --solution-accent-soft: rgba(37, 99, 235, 0.16);
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.solutions-tabs {
  display: grid;
  gap: 10px;
}

.solution-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  text-align: left;
  color: var(--solution-ink);
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.solution-tab:hover {
  transform: translateY(-1px);
  border-color: #c7d2fe;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.solution-tab.active {
  border-color: var(--solution-accent);
  background: linear-gradient(135deg, var(--solution-accent-soft), rgba(255, 255, 255, 0.95));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.solution-tab:focus-visible {
  outline: 2px solid var(--solution-accent);
  outline-offset: 2px;
}

.solution-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--solution-accent-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-tab-label {
  font-size: 14px;
}

.solutions-panels {
  min-height: 190px;
  border-radius: 20px;
  border: 1px solid var(--solution-border);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.01));
  padding: 16px;
  height: 100%;
  display: flex;
}

.solution-panel {
  display: none;
  border-radius: 16px;
  border: 1px solid var(--solution-border);
  background: var(--solution-panel);
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  flex: 1;
  flex-direction: column;
  gap: 12px;
}

.solution-panel.active {
  display: flex;
  animation: solutionFade 180ms ease;
}

.solution-panel h3 {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--solution-ink);
  font-size: 18px;
}

.solution-panel p {
  margin: 0;
  color: var(--solution-muted);
  font-size: 14px;
  line-height: 1.6;
}

.solution-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--solution-muted);
}

.solution-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.solution-icon {
  width: 16px;
  height: 16px;
  color: var(--solution-accent-strong);
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-icon.star {
  color: #f59e0b;
}

.solution-highlight {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  color: var(--solution-muted);
  font-size: 14px;
  font-weight: 600;
}

.solutions-flip-grid {
  display: grid;
  gap: 16px;
}

.flip-card {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  perspective: 1200px;
}

.flip-card:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 18px;
}

.flip-card-inner {
  position: relative;
  min-height: 200px;
  transform-style: preserve-3d;
  transition: transform 360ms ease;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flip-card-front {
  transform: rotateY(0deg);
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #e0e7ff 0%, #f8fafc 100%);
  border-color: #a5b4fc;
}

.flip-card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748b;
  font-weight: 600;
}

.flip-card-front h3,
.flip-card-back h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--solution-ink);
}

.flip-card-front p,
.flip-card-back p {
  margin: 0;
  font-size: 14px;
  color: var(--solution-muted);
  line-height: 1.6;
}

.flip-card-hint {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  color: #64748b;
  background: #f8fafc;
}

.flip-card-hint svg {
  width: 14px;
  height: 14px;
}

.flip-card:hover .flip-card-face {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.solutions-accordion {
  display: grid;
  gap: 12px;
}

.solutions-accordion-item {
  border-radius: 18px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 0 16px;
}

.solutions-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  color: var(--solution-ink);
  font-weight: 700;
}

.solutions-accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-title {
  font-size: 15px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #64748b;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.solutions-accordion-item[open] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-body {
  padding: 0 0 16px;
  color: var(--solution-muted);
  font-size: 14px;
  line-height: 1.6;
}

.accordion-body p {
  margin: 0;
}

.solutions-system-grid {
  display: grid;
  gap: 14px;
}

.solutions-system-grid.diagonal-cards {
  --diag-step: 10px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 55%, #eff6ff 100%);
  padding: 18px;
  padding-bottom: calc(18px + (var(--diag-step) * 3));
  border-radius: 24px;
}

.system-card {
  border-radius: 18px;
  border: 1px solid var(--solution-border);
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.system-card:hover {
  transform: translateY(-2px);
  border-color: #86efac;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}


@media (min-width: 768px) {
  .solutions-system-grid.diagonal-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.system-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.system-card-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--solution-ink);
}

.system-card p {
  margin: 0;
  font-size: 14px;
  color: var(--solution-muted);
  line-height: 1.6;
}

.system-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0%, #16a34a 70%);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
}

.solutions-close {
  border-radius: 24px;
  border: 1px solid var(--solution-border);
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 22px 26px;
  text-align: center;
  color: var(--solution-muted);
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

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

@media (min-width: 768px) {
  .solutions-hero-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .solutions-hero-shell {
    padding: 38px;
  }

  .solutions-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .solutions-hero-principles {
    grid-template-columns: 1fr;
  }

  .solutions-switcher {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .solutions-flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .solutions-hero {
    padding: 48px 0 40px;
  }

  .solutions-section {
    padding-bottom: 56px;
  }

  .solutions-panels {
    min-height: auto;
  }
}
