
.wl-page {
  --wl-black: #060B14;
  --wl-panel: #0E1728;
  --wl-panel-2: #101B30;
  --wl-blue-1: #2563EB;
  --wl-blue-2: #38BDF8;
  --wl-white: #F5F8FF;
  --wl-slate: #fff;
  --wl-line: rgba(148, 178, 230, 0.16);
  --wl-glass: rgba(16, 27, 48, 0.55);
  --wl-glass-light: rgba(245, 248, 255, 0.05);

  background: var(--wl-black);
  color: var(--wl-white);
  position: relative;
  overflow: hidden;

}
.wl-text-center {
  text-align: center;
}
.wl-page * {
  box-sizing: border-box;
}

.wl-page img {
  max-width: 100%;
  height: auto;
}

/* ambient blueprint grid backdrop */
.wl-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wl-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--wl-line) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.wl-page::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.wl-section {
  position: relative;
  z-index: 1;
  padding: 30px 0;
}

.wl-container {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------------------- */
/* Typography (weights/spacing only — no font-family per brief) */
/* ---------------------------------------------------------------------- */

.wl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wl-blue-2);
  margin-bottom: 14px;
}

.wl-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--wl-blue-2);
  display: inline-block;
}

.wl-h1 {
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.wl-h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.wl-h3 {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--wl-white);
}

.wl-gradient-text {
    font-size: 1rem;
  background-image: linear-gradient(90deg, var(--wl-blue-2), var(--wl-blue-1) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wl-lede {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 62ch;
}

.wl-p {
  color: var(--wl-slate);
  line-height: 1.75;
  font-size: 0.98rem;
}

.wl-section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.wl-section-head.wl-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------------------------------------------- */
/* Buttons */
/* ---------------------------------------------------------------------- */

.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.wl-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.wl-btn-primary {
  cursor: pointer;
  background: linear-gradient(120deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
  box-shadow: 0 12px 30px -10px rgba(37, 99, 235, 0.65);
}

.wl-btn-primary:hover {
  box-shadow: 0 16px 36px -8px rgba(56, 189, 248, 0.75);
  color: #06101F;
}

.wl-btn-ghost {
  cursor: pointer;
  background: var(--wl-glass-light);
  color: var(--wl-white);
  border-color: var(--wl-line);
  backdrop-filter: blur(10px);
}

.wl-btn-ghost:hover {
  background: rgba(245, 248, 255, 0.1);
  color: var(--wl-white);
  border-color: rgba(148, 178, 230, 0.4);
}

/* ---------------------------------------------------------------------- */
/* Glass card base */
/* ---------------------------------------------------------------------- */

.wl-glass {
  background: var(--wl-glass);
  border: 1px solid var(--wl-line);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}

.wl-corner {
  position: relative;
}

.wl-corner::before,
.wl-corner::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(56, 189, 248, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wl-corner::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.wl-corner::after {
  bottom: 8px;
  right: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.wl-corner:hover::before,
.wl-corner:hover::after {
  opacity: 1;
}

.wl-corner:hover::before { transform: translate(-3px, -3px); }
.wl-corner:hover::after { transform: translate(3px, 3px); }

.wl-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.wl-icon svg {
  width: 24px;
  height: 24px;
}

/* reveal-on-scroll (JS toggles .wl-in) */
.wl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wl-reveal.wl-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .wl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------------------- */
/* HERO */
/* ---------------------------------------------------------------------- */

.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--wl-line);
  background: var(--wl-glass-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wl-blue-2);
  margin-bottom: 22px;
}

.wl-hero-badge .wl-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wl-blue-2);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: wl-pulse 2s infinite;
}

@keyframes wl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.wl-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.wl-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--wl-line);
}

.wl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.wl-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--wl-blue-2);
  flex-shrink: 0;
}

.wl-handoff {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  min-height: 420px;
  padding: 20px;
}

.wl-handoff-backdrop {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 78%;
  height: 68%;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(37,99,235,0.35), rgba(14,23,40,0.85));
  border: 1px solid var(--wl-line);
  transform: rotate(4deg);
  z-index: 1;
}

.wl-handoff-pod {
  position: absolute;
  top: 10%;
  right: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 16, 31, 0.75);
  border: 1px solid rgba(56,189,248,0.35);
  backdrop-filter: blur(6px);
}

.wl-handoff-pod-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wl-blue-2);
  animation: wl-pulse 2s infinite;
  flex-shrink: 0;
}

.wl-handoff-pod-label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--wl-slate);
  font-weight: 600;
}

.wl-handoff-pod-label strong {
  color: var(--wl-white);
  font-weight: 800;
}

.wl-handoff-line {
  position: absolute;
  top: 28%;
  right: 20%;
  width: 2px;
  height: 22%;
  background: repeating-linear-gradient(180deg, rgba(56,189,248,0.5) 0 4px, transparent 4px 9px);
  z-index: 2;
}

.wl-handoff-pulse {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--wl-blue-2);
  box-shadow: 0 0 10px 2px rgba(56,189,248,0.8);
  animation: wl-flow 2.4s linear infinite;
}

@keyframes wl-flow {
  0% { top: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.wl-handoff-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 74px;
  margin-bottom: 16px;
  padding: 0 2px;
}

.wl-handoff-bar {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--wl-blue-2), var(--wl-blue-1));
  opacity: 0.9;
}

.wl-handoff-row-line { height: 8px; border-radius: 4px; background: rgba(245,248,255,0.1); margin-bottom: 8px; }
.wl-handoff-row-line.short { width: 55%; }

.wl-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--wl-white);
  background: var(--wl-panel-2);
  border: 1px solid var(--wl-line);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.55);
  z-index: 4;
  white-space: nowrap;
  animation: wl-float 5s ease-in-out infinite;
}

.wl-float-badge svg { width: 15px; height: 15px; color: var(--wl-blue-2); flex-shrink: 0; }

.wl-float-badge--1 { top: 4%; left: -2%; animation-delay: 0s; }
.wl-float-badge--3 { bottom: -2%; right: 6%; animation-delay: 2.4s; }

@keyframes wl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .wl-handoff-pulse, .wl-float-badge, .wl-handoff-pod-dot { animation: none; }
}

@media (max-width: 991px) {
  .wl-handoff { min-height: 380px; }
}
.wl-dash {
  position: relative;
  z-index: 3;
  margin-top: 14%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--wl-panel);
  border: 1px solid var(--wl-line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

.wl-dash-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--wl-panel-2);
  border-bottom: 1px solid var(--wl-line);
}

.wl-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,248,255,0.25);
}

.wl-dash-title {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--wl-white);
  flex: 1;
}

.wl-dash-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-dash-icons svg {
  width: 15px;
  height: 15px;
  color: var(--wl-slate);
}

.wl-dash-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
}

.wl-dash-body {
  display: flex;
}

.wl-dash-sidebar {
  width: 92px;
  flex-shrink: 0;
  padding: 12px 8px;
  border-right: 1px solid var(--wl-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wl-dash-nav {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--wl-slate);
  padding: 6px 8px;
  border-radius: 6px;
}

.wl-dash-nav.wl-active {
  background: rgba(56,189,248,0.15);
  color: var(--wl-blue-2);
  font-weight: 700;
}

.wl-dash-main {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
}

.wl-dash-chart-head,
.wl-dash-activity-head {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--wl-slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.wl-dash-chart {
  height: 56px;
  margin-bottom: 14px;
}

.wl-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.wl-dash-kpi {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(245,248,255,0.05);
  border: 1px solid var(--wl-line);
  text-align: center;
}

.wl-dash-kpi-label {
  font-size: 8px;
  color: var(--wl-slate);
  font-weight: 600;
  white-space: nowrap;
}

.wl-dash-kpi-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--wl-white);
}

.wl-dash-activity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wl-dash-activity li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--wl-slate);
}

.wl-dash-activity li svg {
  width: 14px;
  height: 14px;
  color: var(--wl-blue-2);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wl-dash-sidebar { width: 72px; }
  .wl-dash-kpis { grid-template-columns: repeat(2, 1fr); }
}
/* ---------------------------------------------------------------------- */
/* SECTION 1 — Problem (bento) */
/* ---------------------------------------------------------------------- */

.wl-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.wl-bento-item {
  grid-column: span 6;
  padding: 22px;
}

@media (min-width: 768px) {
  .wl-bento-item { grid-column: span 3; }
  .wl-bento-item.wl-span-2 { grid-column: span 2; }
  .wl-bento-item.wl-span-4 { grid-column: span 4; }
}

.wl-bento-item h3 {
  font-size: 1rem;
}

.wl-fix-panel {
  margin-top: 24px;
  padding: 28px;
  border-left: 3px solid var(--wl-blue-2);
}

/* ---------------------------------------------------------------------- */
/* SECTION 2 — feature grid + AI subsection */
/* ---------------------------------------------------------------------- */

.wl-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wl-line);
}

.wl-feature-row:last-child { border-bottom: none; }

.wl-ai-panel {
  padding: 30px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.wl-ai-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 65%);
}

.wl-ai-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .wl-ai-list { grid-template-columns: repeat(2, 1fr); }
}

.wl-ai-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wl-white);
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--wl-glass-light);
  border: 1px solid var(--wl-line);
}
.wl-ai-list li.wl-ai-item-full {
  grid-column: 1 / -1;
  justify-content: center;
}

.wl-ai-list li svg {
  width: 18px;
  height: 18px;
  color: var(--wl-blue-2);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* SECTION 3 — Why choose us: highlight blocks */
/* ---------------------------------------------------------------------- */

.wl-why-card {
  padding: 26px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.wl-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(20, 33, 58, 0.65);
}

.wl-why-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.75rem;
  color: var(--wl-slate);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ---------------------------------------------------------------------- */
/* SECTION 4 — Process: horizontal timeline */
/* ---------------------------------------------------------------------- */

.wl-timeline {
  position: relative;
  padding-top: 10px;
}

.wl-timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 992px) {
  .wl-timeline-track {
    flex-direction: row;
    align-items: stretch;
  }
  .wl-timeline-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wl-blue-2), transparent);
    opacity: 0.5;
  }
}

.wl-tl-step {
  flex: 1;
  padding: 0 12px 24px;
  position: relative;
}

.wl-tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.6);
}

.wl-tl-card {
  padding: 20px;
  min-height: 168px;
}

/* ---------------------------------------------------------------------- */
/* SECTION 5 — Industries: tag cloud / marquee */
/* ---------------------------------------------------------------------- */

.wl-marquee {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wl-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: wl-scroll 38s linear infinite;
}

.wl-marquee:hover .wl-marquee-track {
  animation-play-state: paused;
}

@keyframes wl-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.wl-tag svg {
  width: 16px;
  height: 16px;
  color: var(--wl-blue-2);
}
.wl-tag {
  text-decoration: none;
  color: var(--wl-white);
  cursor: default;
}

a.wl-tag {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

a.wl-tag:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
  text-decoration: none;
  color: var(--wl-white);
}

.wl-tag img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.wl-tag-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wl-white);
  white-space: nowrap;
}
/* ---------------------------------------------------------------------- */
/* SECTION 6 — Comparison */
/* ---------------------------------------------------------------------- */

.wl-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .wl-compare { grid-template-columns: 1fr 1fr; }
}

.wl-compare-col {
  padding: 8px 0;
}

.wl-compare-head {
  padding: 16px 22px;
  border-radius: 12px 12px 0 0;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.wl-compare-head--bad {
  background: rgba(148, 163, 184, 0.1);
  color: var(--wl-slate);
  border: 1px solid var(--wl-line);
  border-bottom: none;
}

.wl-compare-head--good {
  background: linear-gradient(120deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
}

.wl-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--wl-line);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.wl-compare-list li {
  padding: 16px 22px;
  border-top: 1px solid var(--wl-line);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-compare-list li:first-child { border-top: none; }

.wl-compare-col--bad .wl-compare-list { background: rgba(255,255,255,0.02); color: var(--wl-slate); }
.wl-compare-col--good .wl-compare-list { background: rgba(37, 99, 235, 0.08); color: var(--wl-white); }

.wl-compare-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.wl-compare-col--bad svg { color: #94A3B8; }
.wl-compare-col--good svg { color: var(--wl-blue-2); }

/* ---------------------------------------------------------------------- */
/* SECTION 7 — Tech stack tabs */
/* ---------------------------------------------------------------------- */

.wl-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.wl-tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--wl-line);
  background: var(--wl-glass-light);
  color: var(--wl-slate);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wl-tab-btn.wl-active,
.wl-tab-btn:hover {
  background: linear-gradient(120deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
  border-color: transparent;
}

.wl-tab-panel { display: none; }
.wl-tab-panel.wl-active { display: block; }

.wl-stack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.wl-stack-chip {
  flex: 0 1 calc(50% - 12px);
}

@media (min-width: 576px) {
  .wl-stack-chip { flex: 0 1 calc(33.333% - 12px); }
}

@media (min-width: 992px) {
  .wl-stack-chip { flex: 0 1 calc(20% - 12px); }
}

.wl-stack-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wl-stack-chip span {
  background-image: linear-gradient(90deg, var(--wl-blue-2), var(--wl-blue-1) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wl-stack-chip svg,
.wl-stack-chip img {
  width: 50px;
  height: 50px;
  color: var(--wl-blue-2);
  flex-shrink: 0;
  object-fit: contain;
}

/* ---------------------------------------------------------------------- */
/* SECTION 8 — Partnership models: sticky-feel cards */
/* ---------------------------------------------------------------------- */

.wl-model-card {
  padding: 28px;
  height: 100%;
  position: relative;
}

.wl-model-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--wl-blue-1), var(--wl-blue-2));
  color: #06101F;
}

/* ---------------------------------------------------------------------- */
/* SECTION 9 — Proof of work */
/* ---------------------------------------------------------------------- */

 #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }

  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  #CaseStudies .client-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }



  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }

  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }

  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }

  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }

  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }

  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }

  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }

  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }

  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }

  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }

  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }

  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }

  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }

  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }

  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }

  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }

  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }

  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }

  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }

  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }

  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }

  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}


/* ---------------------------------------------------------------------- */
/* FINAL CTA */
/* ---------------------------------------------------------------------- */

.wl-final-cta {
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(14,23,40,0.6));
}

.wl-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56,189,248,0.35) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.25;
}

.wl-final-cta > * {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------- */
/* FAQ accordion */
/* ---------------------------------------------------------------------- */

.wl-faq-item {
  border: 1px solid var(--wl-line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.wl-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  background: var(--wl-glass-light);
  border: none;
  text-align: left;
}
.wl-faq-q .wl-faq-plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--wl-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
}
.wl-faq-plus::before,
.wl-faq-plus::after {
  content: "";
  position: absolute;
  background: var(--wl-blue-2);
  transition: transform 0.3s ease;
}

.wl-faq-plus::before { width: 10px; height: 2px; }
.wl-faq-plus::after { width: 2px; height: 10px; }

.wl-faq-item.wl-open .wl-faq-plus::after { transform: rotate(90deg) scaleY(0); }

.wl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.wl-faq-a-inner {
  padding: 0 22px 20px;
  color: var(--wl-slate);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------------------- */
/* Counters */
/* ---------------------------------------------------------------------- */

.wl-counter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wl-counter {
  flex: 1;
  min-width: 130px;
  padding: 20px;
  text-align: center;
}

.wl-counter strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--wl-blue-2);
}

.wl-counter span {
  font-size: 0.8rem;
  color: var(--wl-slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}