/* Bundled below-the-fold homepage styles */
/* ===== home-services.css ===== */
/* ==========================================================================
   Homepage — Engineering Capabilities
   ========================================================================== */
.hsv {
  --hsv-ink: #0f1f3d;
  --hsv-muted: #5f6b82;
  --hsv-border: #e3e8f0;
  --hsv-blue: #0b66c3;
  --hsv-purple: #6d28d9;
  --hsv-cyan: #0891b2;
  --hsv-blend: #4f46e5;
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 4.8vw, 58px) 0 clamp(56px, 7vw, 80px);
  color: var(--hsv-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  background-color: #ffffff;
}

.hsv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 50% 42% at 50% 42%, rgba(11, 102, 195, 0.04), transparent 72%),
    radial-gradient(ellipse 34% 28% at 88% 12%, rgba(109, 40, 217, 0.03), transparent 70%),
    linear-gradient(rgba(15, 31, 61, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 31, 61, 0.012) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 100%);
}

.hsv-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hsv-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 28px 40px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.hsv-eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(11, 102, 195, 0.08);
  color: var(--hsv-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hsv-head h2 {
  margin: 0 0 16px;
  max-width: 26ch;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800 !important;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--hsv-ink);
}

.hsv-head h2 span {
  display: block;
  background: linear-gradient(100deg, #0b66c3 5%, #8fc5ff 52%, #c9a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hsv-lede {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.7;
  color: var(--hsv-muted);
}

.hsv-intro-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hsv-intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hsv-intro-btn.is-outline {
  border: 1px solid #c9d4e3;
  background: #fff;
  color: var(--hsv-ink);
}

.hsv-intro-btn.is-primary {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #0b66c3 0%, #0854a0 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 102, 195, 0.22);
}

.hsv-intro-btn:hover {
  transform: translateY(-2px);
}

.hsv-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hsv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 28px 24px;
  border: 1px solid var(--hsv-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 31, 61, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hsv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--hsv-accent, var(--hsv-blue));
}

.hsv-card--build { --hsv-accent: var(--hsv-blue); --hsv-accent-soft: rgba(11, 102, 195, 0.1); --hsv-accent-ink: #0b66c3; }
.hsv-card--ai { --hsv-accent: var(--hsv-purple); --hsv-accent-soft: rgba(109, 40, 217, 0.1); --hsv-accent-ink: #6d28d9; }
.hsv-card--cloud { --hsv-accent: var(--hsv-cyan); --hsv-accent-soft: rgba(8, 145, 178, 0.1); --hsv-accent-ink: #0891b2; }
.hsv-card--modernise { --hsv-accent: var(--hsv-blend); --hsv-accent-soft: rgba(79, 70, 229, 0.1); --hsv-accent-ink: #4f46e5; }

.hsv-card:hover,
.hsv-card:focus-within {
  transform: translateY(-5px);
  border-color: #c7d4e8;
  box-shadow: 0 16px 36px rgba(11, 102, 195, 0.1);
}

.hsv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hsv-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hsv-category {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--hsv-accent-soft);
  color: var(--hsv-accent-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hsv-number {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hsv-number span {
  color: #cbd5e1;
  font-weight: 600;
}

.hsv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hsv-accent-soft);
  color: var(--hsv-accent-ink);
  transition: background 0.22s ease;
}

.hsv-card:hover .hsv-icon,
.hsv-card:focus-within .hsv-icon {
  background: color-mix(in srgb, var(--hsv-accent-soft) 70%, white);
}

.hsv-icon svg {
  width: 26px;
  height: 26px;
}

.hsv-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  font-weight: 750 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--hsv-ink);
}

.hsv-block {
  margin-bottom: 18px;
}

.hsv-label {
  margin: 0 0 8px;
  color: #7b8798;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hsv-outcome,
.hsv-best-for {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--hsv-muted);
}

.hsv-capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hsv-capabilities li {
  position: relative;
  padding-left: 16px;
  color: var(--hsv-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.hsv-capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hsv-accent, var(--hsv-blue));
}

.hsv-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--hsv-accent-ink, var(--hsv-blue));
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.hsv-card-cta:hover {
  gap: 12px;
  color: var(--hsv-ink);
}

.hsv-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 44px);
  padding: clamp(24px, 4vw, 32px) clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(0, 119, 200, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(109, 94, 247, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 212, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #001018 0%, #001f2b 42%, #0a2f4a 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 16, 27, 0.28);
}

.hsv-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 119, 200, 0.16), transparent 42%);
}

.hsv-strip-copy,
.hsv-strip-actions {
  position: relative;
  z-index: 1;
}

.hsv-strip h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 750 !important;
  letter-spacing: -0.02em;
}

.hsv-strip p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hsv-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hsv-strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hsv-strip-btn.is-primary {
  background: #fff;
  color: #061b2c;
}

.hsv-strip-btn.is-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hsv-strip-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .hsv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hsv-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hsv-intro-ctas {
    justify-content: flex-start;
  }

  .hsv-head h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hsv-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .hsv-grid {
    grid-template-columns: 1fr;
  }

  .hsv-card {
    padding: 24px 20px 20px;
  }

  .hsv-intro-btn,
  .hsv-strip-btn {
    width: 100%;
  }

  .hsv-strip {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ===== home-what-we-do.css ===== */
/* ==========================================================================
   Homepage — How We Engage (engagement models)
   ========================================================================== */
.wwd {
  --wwd-ink: #061b2c;
  --wwd-muted: #5a7086;
  --wwd-border: #e8edf3;
  --wwd-accent: #4f46e5;
  --wwd-accent-soft: rgba(79, 70, 229, 0.1);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124, 58, 237, 0.06), transparent 65%),
    #fafbff;
  color: var(--wwd-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding-block: clamp(48px, 7vw, 80px);
  padding-inline: 0;
}

.wwd-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.wwd-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.wwd-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(11, 102, 195, 0.1), rgba(124, 58, 237, 0.12));
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wwd-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 750 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--wwd-ink);
}

.wwd-head h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wwd-lede {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: var(--wwd-muted);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wwd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid var(--wwd-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.wwd-card--model-1::after,
.wwd-card--model-2::after,
.wwd-card--model-3::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
}

.wwd-card--model-1::after {
  background: linear-gradient(90deg, #0b66c3 0%, #4f46e5 55%, #7c3aed 100%);
}

.wwd-card--model-2::after {
  background: linear-gradient(90deg, #0891b2 0%, #0b66c3 55%, #38bdf8 100%);
}

.wwd-card--model-3::after {
  background: linear-gradient(90deg, #059669 0%, #10b981 55%, #34d399 100%);
}

.wwd-model-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--wwd-accent-soft);
  color: var(--wwd-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wwd-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 750 !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--wwd-ink);
}

.wwd-hook {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--wwd-ink);
}

.wwd-desc {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--wwd-muted);
  flex: 1 1 auto;
}

.wwd-points {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid #eef2f7;
  display: grid;
  gap: 12px;
}

.wwd-points li {
  position: relative;
  padding-left: 18px;
  color: var(--wwd-muted);
  font-size: 0.92rem;
  font-weight: 550;
  line-height: 1.45;
}

.wwd-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b66c3, #7c3aed);
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.28);
}

@media (max-width: 960px) {
  .wwd-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wwd-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .wwd-card {
    padding: 22px 18px 20px;
  }
}


/* ===== home-why-choose.css ===== */
/* ==========================================================================
   Homepage — Why Choose CoderLyft
   ========================================================================== */
.hwc {
  --hwc-blue: #0b66c3;
  --hwc-blue-soft: rgba(11, 102, 195, 0.1);
  --hwc-ink: #111827;
  --hwc-muted: #4b5563;
  --hwc-border: #e5e7eb;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(11, 102, 195, 0.06), transparent 58%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(99, 102, 241, 0.05), transparent 55%),
    #f3f7fb;
  color: #1f2937;
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(48px, 6vw, 72px) 0;
}

.hwc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11, 102, 195, 0.09) 1px, transparent 0);
  background-size: 24px 24px;
}

.hwc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(125deg, rgba(79, 70, 229, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(55deg, rgba(11, 102, 195, 0.04) 0 1px, transparent 1px 100%);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hwc-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hwc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
}

.hwc-copy h2 {
  margin: 0 0 18px;
  color: var(--hwc-ink);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hwc-copy h2 span {
  background: linear-gradient(100deg, #0b66c3 5%, #8fc5ff 52%, #c9a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hwc-lead {
  margin: 0 0 24px;
  max-width: 54ch;
  color: var(--hwc-muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.72;
}

.hwc-advantages {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.hwc-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hwc-check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--hwc-blue);
  color: #fff;
}

.hwc-check svg {
  width: 14px;
  height: 14px;
}

.hwc-advantage-text {
  display: grid;
  gap: 3px;
}

.hwc-advantage-text strong {
  color: var(--hwc-ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

.hwc-advantage-text span {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.hwc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 20px;
}

.hwc-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 102, 195, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.hwc-trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hwc-blue);
  flex-shrink: 0;
}

.hwc-quote {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--hwc-blue);
  border-radius: 0 10px 10px 0;
  background: #f8fafc;
}

.hwc-quote p {
  margin: 0 0 8px;
  color: var(--hwc-ink);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.hwc-quote cite {
  color: #6b7280;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 600;
}

.hwc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.hwc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hwc-cta--primary {
  background: var(--hwc-blue);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(11, 102, 195, 0.22);
}

.hwc-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 102, 195, 0.28);
}

.hwc-cta--secondary {
  padding: 0;
  min-height: auto;
  color: var(--hwc-blue) !important;
  background: transparent;
}

.hwc-cta--secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hwc-cta--secondary:hover {
  color: #094f98 !important;
}

.hwc-cta--secondary:hover svg {
  transform: translateX(3px);
}

.hwc-cta-note {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hwc-panel {
  display: grid;
  gap: 16px;
  width: 100%;
  align-self: center;
}

.hwc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hwc-stat {
  position: relative;
  min-height: 132px;
  padding: 22px 20px 18px;
  border: 1px solid var(--hwc-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hwc-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 102, 195, 0.1);
}

.hwc-stat-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--hwc-blue-soft);
  color: var(--hwc-blue);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}

.hwc-stat:hover .hwc-stat-icon {
  background: rgba(11, 102, 195, 0.16);
  box-shadow: 0 0 0 6px rgba(11, 102, 195, 0.08);
}

.hwc-stat-icon svg {
  width: 22px;
  height: 22px;
}

.hwc-stat-value {
  margin: 0 0 8px;
  color: var(--hwc-blue);
  font-size: clamp(1.65rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hwc-stat-label {
  margin: 0;
  max-width: 14ch;
  color: var(--hwc-ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}

.hwc-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 102, 195, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 102, 195, 0.06) 0%, rgba(11, 102, 195, 0.02) 100%);
  box-shadow: 0 10px 28px rgba(11, 102, 195, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hwc-partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 102, 195, 0.12);
}

.hwc-partner-eyebrow {
  margin: 0 0 6px;
  color: var(--hwc-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hwc-partner h3 {
  margin: 0 0 8px;
  color: var(--hwc-ink);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}

.hwc-partner-copy p:last-child {
  margin: 0;
  color: var(--hwc-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 36ch;
}

.hwc-partner-badge {
  display: block;
  width: auto;
  max-width: min(200px, 38vw);
  height: auto;
  flex-shrink: 0;
}

[data-hwc-reveal] {
  opacity: 1;
  transform: none;
}

.hwc:not(.hwc--ready) [data-hwc-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.hwc.hwc--visible [data-hwc-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease var(--hwc-delay, 0ms),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--hwc-delay, 0ms);
}

@media (max-width: 960px) {
  .hwc-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hwc-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .hwc-stats-grid {
    grid-template-columns: 1fr;
  }

  .hwc-partner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hwc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hwc-cta--primary {
    width: 100%;
  }

  .hwc-cta--secondary {
    justify-content: center;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwc:not(.hwc--ready) [data-hwc-reveal],
  .hwc.hwc--visible [data-hwc-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hwc-stat,
  .hwc-partner,
  .hwc-cta,
  .hwc-stat-icon {
    transition: none;
  }

  .hwc-stat:hover,
  .hwc-partner:hover,
  .hwc-cta--primary:hover {
    transform: none;
  }
}


/* ===== home-case-studies.css ===== */
/* ==========================================================================
   Homepage — Featured Work / Case Studies
   ========================================================================== */
.hcs {
  --hcs-ink: #0f1f3d;
  --hcs-muted: #5f6b82;
  --hcs-line: #e3e8f0;
  --hcs-pink: #ec4899;
  --hcs-pink-soft: rgba(236, 72, 153, 0.12);
  --hcs-blue: #0b66c3;
  padding: clamp(52px, 6.5vw, 76px) 0;
  color: var(--hcs-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  background: #fff;
}

.hcs-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hcs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.hcs-head-copy {
  flex: 1 1 560px;
  max-width: 680px;
}

.hcs-head-side {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-left: auto;
}

.hcs-view-all {
  flex-shrink: 0;
  white-space: nowrap;
}

.hcs-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--hcs-pink-soft);
  color: #be185d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hcs-head h2 {
  margin: 0;
  max-width: 24ch;
  color: var(--hcs-ink);
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  font-weight: 800 !important;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hcs-head h2 span {
  background: linear-gradient(100deg, #0b66c3 5%, #8fc5ff 52%, #c9a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hcs-intro {
  margin: 0;
  max-width: 34ch;
  color: var(--hcs-muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  text-align: right;
}

.hcs-card {
  border: 1px solid var(--hcs-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 31, 61, 0.06);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hcs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 31, 61, 0.09);
}

.hcs-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  margin-bottom: 22px;
}

.hcs-card--compact {
  display: grid;
  grid-template-rows: auto 1fr;
}

.hcs-visual {
  position: relative;
  min-height: 280px;
  background: linear-gradient(180deg, #f3f5f8 0%, #e9edf3 100%);
}

.hcs-visual--cover {
  display: flex;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.hcs-visual-cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hcs-card--featured .hcs-visual--cover {
  aspect-ratio: 5 / 4;
  min-height: 0;
}

.hcs-card--compact .hcs-visual--cover {
  min-height: 220px;
}

.hcs-card--featured .hcs-visual {
  min-height: 100%;
  border-right: 1px solid var(--hcs-line);
}

.hcs-card--compact .hcs-visual {
  min-height: 220px;
  border-bottom: 1px solid var(--hcs-line);
}

.hcs-card--compact .hcs-device--desktop {
  width: min(54%, 300px);
  transform: translate(-10%, -4%);
}

.hcs-card--compact .hcs-device--laptop {
  width: min(38%, 220px);
  transform: translate(20%, 12%);
}

.hcs-card--compact .hcs-device--tablet {
  width: min(16%, 92px);
  transform: translate(-30%, 20%);
}

.hcs-card--compact .hcs-device--phone {
  width: min(11%, 64px);
  transform: translate(34%, -12%);
}

.hcs-devices {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}

.hcs-device {
  position: absolute;
  border-radius: 12px;
  background: #1f2937;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.hcs-device-screen {
  overflow: hidden;
  border-radius: inherit;
  background: #fff;
}

.hcs-device-screen img,
.hcs-device-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcs-device-fallback {
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
}

.hcs-device--desktop {
  width: min(58%, 360px);
  aspect-ratio: 16 / 10;
  padding: 8px;
  border-radius: 14px;
  transform: translate(-8%, -6%);
  z-index: 1;
}

.hcs-device--laptop {
  width: min(42%, 260px);
  aspect-ratio: 16 / 10;
  padding: 6px 6px 10px;
  border-radius: 12px;
  transform: translate(24%, 10%);
  z-index: 2;
}

.hcs-device--tablet {
  width: min(18%, 110px);
  aspect-ratio: 3 / 4;
  padding: 5px;
  border-radius: 10px;
  transform: translate(-34%, 18%);
  z-index: 3;
}

.hcs-device--phone {
  width: min(12%, 72px);
  aspect-ratio: 9 / 19;
  padding: 4px;
  border-radius: 12px;
  transform: translate(38%, -16%);
  z-index: 4;
}

.hcs-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.hcs-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hcs-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.hcs-tag--accent {
  background: var(--hcs-pink-soft);
  color: #be185d;
}

.hcs-card-title {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hcs-card-title a {
  color: var(--hcs-ink);
  text-decoration: none;
}

.hcs-card-title a:hover {
  color: var(--hcs-blue);
}

.hcs-card-summary {
  margin: 0 0 18px;
  color: var(--hcs-muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.hcs-card--compact .hcs-metrics--quad {
  margin-bottom: 16px;
}

.hcs-card--compact .hcs-metrics--quad .hcs-metric strong {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

.hcs-card--compact .hcs-metrics--quad .hcs-metric span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.hcs-metrics {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.hcs-metrics--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hcs-metrics--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.hcs-metrics--quad .hcs-metric strong {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.15;
}

.hcs-metrics--quad .hcs-metric span {
  font-size: 0.84rem;
}

.hcs-metric strong {
  display: block;
  color: var(--hcs-ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hcs-metric span {
  display: block;
  margin-top: 6px;
  color: var(--hcs-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.hcs-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hcs-line);
}

.hcs-card-tech-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hcs-card-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.hcs-card-tech-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hcs-card-tech {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.hcs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hcs-blue);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hcs-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.hcs-card-link:hover svg {
  transform: translate(2px, -2px);
}

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

[data-hcs-reveal] {
  opacity: 1;
  transform: none;
}

.hcs:not(.hcs--ready) [data-hcs-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.hcs.hcs--visible [data-hcs-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hcs.hcs--visible .hcs-grid [data-hcs-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

@media (max-width: 960px) {
  .hcs-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .hcs-head-copy {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }

  .hcs-head-side {
    flex: 0 0 auto;
    width: 100%;
    align-items: flex-start;
    margin-left: 0;
  }

  .hcs-intro {
    max-width: none;
    text-align: left;
  }

  .hcs-head h2 {
    max-width: none;
  }

  .hcs-card--featured {
    grid-template-columns: 1fr;
  }

  .hcs-card--featured .hcs-visual {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--hcs-line);
  }

  .hcs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hcs-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .hcs-metrics--duo,
  .hcs-metrics--quad {
    grid-template-columns: 1fr;
  }

  .hcs-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hcs:not(.hcs--ready) [data-hcs-reveal],
  .hcs.hcs--visible [data-hcs-reveal],
  .hcs-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hcs-card:hover {
    transform: none;
  }
}


/* ===== home-workflow.css ===== */
/* ==========================================================================
   Homepage — Premium animated development journey
   ========================================================================== */
.home-journey {
  --hj-ink: #061b2c;
  --hj-muted: #5a7086;
  --hj-line: #d5dee8;
  --hj-brand-a: #0b66c3;
  --hj-brand-b: #4f46e5;
  --hj-brand-c: #7c3aed;
  --hj-grad: linear-gradient(110deg, #0b66c3 0%, #4f46e5 52%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
  background: #f5f8fc;
  color: var(--hj-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(28px, 4vw, 40px) 0 clamp(56px, 8vw, 88px);
}

.home-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(11, 102, 195, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.home-journey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -32deg,
    transparent 0,
    transparent 11px,
    rgba(124, 58, 237, 0.035) 11px,
    rgba(124, 58, 237, 0.035) 12px
  );
}

.home-journey-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  will-change: transform;
}

.home-journey-glow--a {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(11, 102, 195, 0.22), transparent 68%);
}

.home-journey-glow--b {
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  right: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
}

.home-journey-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.home-journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(220px, 0.7fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.home-journey-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(11, 102, 195, 0.12), rgba(124, 58, 237, 0.14));
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-journey-head-main h2 {
  margin: 0;
  max-width: min(100%, 22em);
  color: var(--hj-ink);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800 !important;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-journey-head-main h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-journey-lede {
  margin: 0;
  padding-bottom: 6px;
  color: var(--hj-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  max-width: 34ch;
}

/* Map / SVG journey — full-bleed edge to edge */
.home-journey-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 28vw, 300px);
  margin: 8px 0 clamp(28px, 4vw, 40px);
  overflow: visible;
}

.home-journey-map-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.home-journey-svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.home-journey-path-progress {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-journey.is-drawn .home-journey-path-progress {
  stroke-dashoffset: calc(100 - var(--hj-progress, 0));
}

.home-journey-particle {
  transition: opacity 0.3s ease;
}

.home-journey.is-drawn .home-journey-particle {
  opacity: 1;
}

/* Milestones overlaid on SVG */
.home-journey-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-journey-milestone {
  position: absolute;
  left: var(--hj-x);
  top: var(--hj-y);
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: auto;
  z-index: 2;
}

.home-journey.is-revealed .home-journey-milestone {
  animation: hjMilestoneIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.12s + var(--hj-i) * 0.1s);
}

/* Exact path extrema (viewBox 1200×320) */
.home-journey-milestone:nth-child(1) { --hj-x: 16.667%; --hj-y: 35.938%; }
.home-journey-milestone:nth-child(2) { --hj-x: 33.333%; --hj-y: 64.063%; }
.home-journey-milestone:nth-child(3) { --hj-x: 50%; --hj-y: 35.938%; }
.home-journey-milestone:nth-child(4) { --hj-x: 66.667%; --hj-y: 64.063%; }
.home-journey-milestone:nth-child(5) { --hj-x: 83.333%; --hj-y: 35.938%; }

.home-journey-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
  text-align: center;
}

.home-journey-node:focus-visible {
  outline: 2px solid var(--hj-brand-b);
  outline-offset: 10px;
  border-radius: 12px;
}

.home-journey-node-core {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid #b7c5d6;
  background: #fff;
  color: #fff;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    margin 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.home-journey-node-dot,
.home-journey-node-check {
  grid-area: 1 / 1;
}

.home-journey-node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fa3b8;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-journey-node-check {
  display: none;
}

.home-journey-pulse {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 1.5px solid rgba(79, 70, 229, 0.45);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
}

.home-journey-node-copy {
  position: absolute;
  left: 0;
  display: grid;
  gap: 4px;
  width: 168px;
  margin-left: -84px;
  pointer-events: auto;
}

.home-journey-milestone--above .home-journey-node-copy {
  bottom: 22px;
}

.home-journey-milestone--below .home-journey-node-copy {
  top: 22px;
}

.home-journey-node-title {
  color: #334155;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.home-journey-node-label {
  color: #7b8ea3;
  font-size: 0.78rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* Completed */
.home-journey-milestone.is-complete .home-journey-node-core {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-color: transparent;
  background: var(--hj-grad);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.home-journey-milestone.is-complete .home-journey-node-dot {
  display: none;
}

.home-journey-milestone.is-complete .home-journey-node-check {
  display: grid;
  place-items: center;
}

.home-journey-milestone.is-complete .home-journey-node-title {
  color: var(--hj-ink);
}

/* Active */
.home-journey-milestone.is-active .home-journey-node-core {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-color: transparent;
  background: var(--hj-grad);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.95),
    0 0 28px rgba(79, 70, 229, 0.4);
}

.home-journey-milestone.is-active .home-journey-pulse {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}

.home-journey-milestone--above.is-active .home-journey-node-copy {
  bottom: 28px;
}

.home-journey-milestone--below.is-active .home-journey-node-copy {
  top: 28px;
}

.home-journey-milestone.is-active .home-journey-node-dot {
  width: 8px;
  height: 8px;
  background: #061b2c;
}

.home-journey-milestone.is-active .home-journey-node-check {
  display: none;
}

.home-journey-milestone.is-active .home-journey-pulse {
  opacity: 1;
  animation: hjPulse 2.2s ease-out infinite;
}

.home-journey-milestone.is-active .home-journey-pulse--delay {
  animation-delay: 0.7s;
}

.home-journey-milestone.is-active .home-journey-node-title {
  background: var(--hj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-journey-milestone.is-active .home-journey-node-label {
  color: #4f46e5;
}

.home-journey-milestone.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Details panel */
.home-journey-panel {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.2fr) minmax(220px, 0.9fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  padding-top: 8px;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.home-journey-panel.is-switching {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}

.home-journey-stage {
  position: relative;
  min-height: 110px;
}

.home-journey-stage-label {
  display: block;
  margin-bottom: 4px;
  background: var(--hj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-journey-stage-num {
  display: block;
  color: rgba(6, 27, 44, 0.08);
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  user-select: none;
}

.home-journey-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.home-journey-detail h3 {
  margin: 0;
  color: var(--hj-ink);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-journey-detail-arrow {
  color: var(--hj-brand-b);
  flex: 0 0 auto;
  animation: hjArrowNudge 1.8s ease-in-out infinite;
}

.home-journey-detail p {
  margin: 0;
  max-width: 42ch;
  color: var(--hj-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-journey-gets {
  position: relative;
  padding-left: clamp(18px, 2.5vw, 28px);
}

.home-journey-gets::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #dbe4ef;
}

.home-journey-gets-label {
  margin: 0 0 14px;
  background: var(--hj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-journey-gets ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.home-journey-gets li {
  position: relative;
  padding-left: 18px;
  color: var(--hj-ink);
  font-size: 0.95rem;
  font-weight: 560;
  line-height: 1.45;
}

.home-journey-gets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hj-grad);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.35);
}

@keyframes hjMilestoneIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.home-journey.is-revealed .home-journey-node-copy {
  animation: hjMilestoneCopyIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.18s + var(--hj-i) * 0.1s);
}

.home-journey.is-revealed .home-journey-milestone--above .home-journey-node-copy {
  animation-name: hjMilestoneCopyInAbove;
}

@keyframes hjMilestoneCopyInAbove {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hjPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

@keyframes hjArrowNudge {
  0%,
  100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .home-journey-path-progress,
  .home-journey-panel,
  .home-journey-node-core,
  .home-journey-detail-arrow {
    transition: none !important;
    animation: none !important;
  }

  .home-journey.is-revealed .home-journey-milestone {
    animation: none;
    opacity: 1;
  }

  .home-journey-milestone.is-active .home-journey-pulse {
    animation: none;
    opacity: 0;
  }

  .home-journey-glow {
    display: none;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .home-journey-head {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .home-journey-lede {
    max-width: 48ch;
  }

  .home-journey-map {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    height: 280px;
  }

  .home-journey-map-track {
    position: relative;
    width: 100%;
    min-width: 720px;
    height: 100%;
  }

  .home-journey-svg,
  .home-journey-milestones {
    min-width: 0;
    width: 100%;
  }

  .home-journey-milestones {
    width: 100%;
  }

  .home-journey-panel {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-areas:
      "stage detail"
      "gets gets";
  }

  .home-journey-stage { grid-area: stage; }
  .home-journey-detail { grid-area: detail; }
  .home-journey-gets {
    grid-area: gets;
    padding-left: 0;
    padding-top: 8px;
  }

  .home-journey-gets::before {
    display: none;
  }
}

/* Mobile: vertical journey */
@media (max-width: 700px) {
  .home-journey-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .home-journey-head-main h2 {
    max-width: none;
  }

  .home-journey-map {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .home-journey-svg {
    display: none;
  }

  .home-journey-milestones {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .home-journey-milestones::before,
  .home-journey-milestones::after {
    display: none;
  }

  .home-journey-milestone {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 0 22px;
    opacity: 1;
  }

  .home-journey-milestone:last-child {
    padding-bottom: 0;
  }

  .home-journey-milestone:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #d5dee8;
    z-index: 0;
    pointer-events: none;
  }

  .home-journey-milestone.is-complete:not(:last-child)::after {
    background: linear-gradient(180deg, #0b66c3 0%, #4f46e5 52%, #7c3aed 100%);
  }

  .home-journey-milestone.is-active:not(:last-child)::after {
    background: linear-gradient(
      180deg,
      #0b66c3 0%,
      #4f46e5 42%,
      #d5dee8 42%,
      #d5dee8 100%
    );
  }

  .home-journey.is-revealed .home-journey-milestone,
  .home-journey.is-revealed .home-journey-node-copy {
    animation: none;
    opacity: 1;
  }

  .home-journey-node {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    text-align: left;
  }

  .home-journey-node-core,
  .home-journey-pulse {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: start;
    margin: 2px 0 0;
    flex: none;
  }

  .home-journey-pulse {
    display: none;
  }

  .home-journey-node-copy {
    position: relative;
    left: auto;
    top: auto !important;
    bottom: auto !important;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    margin-left: 0;
    padding-top: 2px;
    max-width: none;
  }

  .home-journey-milestone.is-complete .home-journey-node-core,
  .home-journey-milestone.is-active .home-journey-node-core {
    margin: 2px 0 0;
  }

  .home-journey-milestone.is-active::after {
    display: none;
  }

  .home-journey-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 8px;
    padding: 18px 16px;
    border: 1px solid #e4ebf3;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
  }

  .home-journey-stage {
    min-height: 0;
  }

  .home-journey-stage-num {
    font-size: 3.5rem;
  }
}

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


/* ===== home-ai-models.css ===== */
/* ==========================================================================
   Homepage — AI models expertise grid
   ========================================================================== */
.home-ai-models {
  background: #ffffff;
  color: #111827;
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(40px, 6vw, 64px) 0 clamp(36px, 5vw, 56px);
}

.home-ai-models-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.home-ai-models-inner > h2 {
  margin: 0 0 clamp(28px, 4vw, 40px);
  color: #1f2937;
  text-align: left;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 750 !important;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.home-ai-models-inner > h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-ai-models-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-ai-models-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.home-ai-models-card:hover {
  border-color: #d5def0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.home-ai-models-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-ai-models-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.home-ai-models-logo img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-ai-models-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.home-ai-models-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .home-ai-models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-ai-models-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .home-ai-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .home-ai-models-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-ai-models-card {
    transition: none;
  }

  .home-ai-models-card:hover {
    transform: none;
  }
}


/* ===== home-industries-carousel.css ===== */
/* ==========================================================================
   Homepage — Industries stacked carousel
   ========================================================================== */
.home-industries {
  --hi-ink: #ffffff;
  --hi-muted: rgba(255, 255, 255, 0.72);
  --hi-border: rgba(255, 255, 255, 0.14);
  --hi-blue: #4db3ff;
  --hi-text-carousel-gap: 5px;
  --hi-card-h: clamp(238px, 34vw, 408px);
  --hi-carousel-bottom-space: clamp(44px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(0, 119, 200, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(109, 94, 247, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 212, 255, 0.22), transparent 55%),
    linear-gradient(160deg, #001018 0%, #001F2B 42%, #0A2F4A 100%);
  color: var(--hi-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(48px, 7vw, 80px) 0 20px;
}

.home-industries::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 70% 80%, rgba(0, 119, 200, 0.2), transparent 42%);
  opacity: 0.92;
  z-index: 0;
}

.home-industries::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 180px 180px, 56px 56px, 56px 56px;
  mix-blend-mode: soft-light;
}

.home-industries-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.home-industries-head {
  margin-bottom: var(--hi-text-carousel-gap);
}

.home-industries-head-copy {
  max-width: 70%;
}

.home-industries-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px 7px 10px;
  border: 1px solid var(--hi-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-industries-badge svg path {
  stroke: #7ec8ff;
}

.home-industries-badge svg {
  display: block;
  flex: 0 0 auto;
}

.home-industries-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-industries-head h2 span {
  background: linear-gradient(100deg, #fff 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-industries-head p {
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--hi-muted);
  max-width: none;
}

.home-industries-view-all {
  display: none;
}

.home-industries-carousel-wrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  padding-bottom: 20px;
  overflow: visible;
  box-sizing: border-box;
}

.home-industries-carousel-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  height: calc(var(--hi-card-h) + var(--hi-carousel-bottom-space));
  min-height: calc(var(--hi-card-h) + var(--hi-carousel-bottom-space));
  padding-top: 0;
  padding-bottom: var(--hi-carousel-bottom-space);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  user-select: none;
  touch-action: pan-y;
}

.home-industries.has-drag-cursor .home-industries-carousel-drag,
.home-industries.has-drag-cursor .home-industries-carousel-stage {
  cursor: none;
}

.home-industries-drag-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(63, 135, 215, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
  box-shadow: 0 10px 28px rgba(0, 24, 48, 0.35);
}

.home-industries-drag-cursor.is-visible {
  opacity: 1;
  transform: scale(1);
}

.home-industries-drag-cursor.is-dragging {
  background: rgba(11, 102, 195, 0.96);
  transform: scale(0.88);
}

.home-industries-carousel-drag {
  position: absolute;
  inset: 0;
  z-index: 50;
  cursor: grab;
}

.home-industries-carousel-drag.is-dragging {
  cursor: grabbing;
}

.home-industries-cta-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  padding: 0 16px 4px;
}

.home-industries-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.97);
  color: #0b66c3;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-industries-cta svg {
  flex: 0 0 auto;
  color: #3f87d7;
  stroke: #3f87d7;
}

.home-industries-cta:hover {
  background: #fff;
  color: #0956a8;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.55);
  transform: scale(1.03);
}

.home-industries-cta:hover svg {
  color: #2563eb;
  stroke: #2563eb;
}

.home-industries-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(190px, 18vw, 272px);
  height: var(--hi-card-h);
  margin-left: calc(clamp(190px, 18vw, 272px) / -2);
  margin-top: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e8f2fc;
  text-decoration: none;
  color: #fff;
  will-change: transform, opacity;
  transform-origin: center center;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.home-industries-card.is-active {
  pointer-events: auto;
}

.home-industries-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.home-industries-card.is-active:hover img {
  transform: scale(1.08);
}

.home-industries-card-shade,
.home-industries-card-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-industries-card-shade {
  background: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.home-industries-card-gradient {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.82) 100%);
}

.home-industries-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #061b2c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-industries-card-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  text-align: center;
}

.home-industries-card-title {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-industries-card-desc {
  display: none;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

@media (min-width: 640px) {
  .home-industries-card-copy {
    text-align: left;
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .home-industries-card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home-industries-card-badge {
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }
}

@media (min-width: 1024px) {
  .home-industries-card-copy {
    left: 24px;
    right: 24px;
    bottom: 36px;
  }

  .home-industries-card-badge {
    top: 22px;
    right: 22px;
  }
}

@media (pointer: coarse) {
  .home-industries-drag-cursor {
    display: none !important;
  }

  .home-industries.has-drag-cursor .home-industries-carousel-drag,
  .home-industries.has-drag-cursor .home-industries-carousel-stage {
    cursor: grab;
  }
}

@media (max-width: 767px) {
  .home-industries-head-copy {
    max-width: none;
  }

  .home-industries-cta {
    gap: 8px;
    min-height: 48px;
    padding: 10px 16px 10px 18px;
    font-size: 0.68rem;
  }

  .home-industries-cta svg {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-industries-carousel-drag {
    display: none;
  }

  .home-industries-carousel-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: auto;
    overflow: visible;
  }

  .home-industries-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 260px;
    margin: 0;
    pointer-events: auto;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ===== home-tech-stack.css ===== */
/* ==========================================================================
   Homepage — Technologies We Use (animated stack)
   ========================================================================== */
.home-tech-stack {
  --hts-ink: #061b2c;
  --hts-muted: #5a7086;
  --hts-border: #e6ebf2;
  --hts-pad: clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 0% 0%, rgba(11, 102, 195, 0.05), transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(124, 58, 237, 0.04), transparent 55%),
    #f8fafc;
  color: var(--hts-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(48px, 7vw, 80px) 0;
}

.home-tech-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 32%);
}

.home-tech-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(rgba(6, 27, 44, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 44, 0.028) 1px, transparent 1px);
  background-size: 180px 180px, 52px 52px, 52px 52px;
  mix-blend-mode: multiply;
}

.home-tech-stack-glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(124, 58, 237, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 20%, rgba(11, 102, 195, 0.06), transparent 65%);
}

.home-tech-stack-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.home-tech-stack-head {
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 720px;
}

.home-tech-stack-eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 102, 195, 0.08);
  color: #0b66c3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-tech-stack-head h2 {
  margin: 0 0 12px;
  color: var(--hts-ink);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 750 !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-tech-stack-head h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-tech-stack-lede {
  margin: 0;
  max-width: 54ch;
  color: var(--hts-muted);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.home-tech-stack-rows {
  display: grid;
  gap: 0;
}

.home-tech-stack-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  align-items: center;
  gap: 12px 18px;
  min-height: 56px;
  padding: 18px 0;
  border-bottom: 1px dotted #c5d2e0;
}

.home-tech-stack-row:first-child {
  padding-top: 0;
}

.home-tech-stack-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-tech-stack-label {
  margin: 0;
  color: var(--hts-ink);
  font-size: 0.95rem;
  font-weight: 750 !important;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
}

.home-tech-stack-marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
}

.home-tech-stack-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: htsMarquee 42s linear infinite;
  will-change: transform;
}

.home-tech-stack-row--reverse .home-tech-stack-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

.home-tech-stack-row:nth-child(3) .home-tech-stack-track {
  animation-duration: 50s;
}

.home-tech-stack-row:nth-child(5) .home-tech-stack-track {
  animation-duration: 38s;
}

.home-tech-stack-marquee:hover .home-tech-stack-track {
  animation-play-state: paused;
}

.home-tech-stack-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.home-tech-stack-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--hts-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  color: var(--hts-ink);
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.home-tech-stack-pill img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes htsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .home-tech-stack-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .home-tech-stack-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .home-tech-stack-row:first-child {
    padding-top: 0;
  }

  .home-tech-stack-row:last-child {
    padding-bottom: 0;
  }

  .home-tech-stack-label {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hts-muted);
  }

  .home-tech-stack-marquee {
    margin-inline: -16px;
    padding-inline: 16px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-tech-stack-track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
  }

  .home-tech-stack-group[aria-hidden="true"] {
    display: none;
  }

  .home-tech-stack-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
}


/* ===== home-testimonials.css ===== */
/* ==========================================================================
   Homepage — Client testimonials
   ========================================================================== */
.home-testimonials {
  --ht-ink: #061b2c;
  --ht-muted: #5a7086;
  --ht-border: #dde5ee;
  --ht-soft: #f4f8fc;
  --ht-blue: #0b66c3;
  --ht-blue-soft: #e8f2fc;
  background: #fff;
  color: var(--ht-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(52px, calc(4vw + 20px), 68px) 0 clamp(16px, 2vw, 24px);
}

.home-testimonials-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  background: none;
}

.home-testimonials-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.home-testimonials-head-copy {
  max-width: 720px;
}

.home-testimonials-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-testimonials-head h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-testimonials-head p {
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--ht-muted);
  max-width: 62ch;
}

.home-testimonials-view-all {
  flex-shrink: 0;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  background: var(--ht-blue) !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  white-space: nowrap;
}

.home-testimonials-view-all:hover {
  background: #0956a8 !important;
  color: #fff !important;
}

.home-testimonials-featured-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.home-testimonials-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 220px;
  border: 0;
  border-radius: 0;
  background: none;
  overflow: hidden;
}

.home-testimonials-featured-media {
  display: block;
  min-height: 100%;
  background: none;
  border-radius: 14px;
  overflow: hidden;
}

.home-testimonials-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.home-testimonials-featured-body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.home-testimonials-quote-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #d5e0ec;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.home-testimonials-person {
  margin-bottom: 12px;
}

.home-testimonials-person strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-testimonials-person span {
  display: block;
  margin-top: 4px;
  color: var(--ht-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.home-testimonials-featured blockquote,
.home-testimonials-review blockquote {
  margin: 0;
}

.home-testimonials-featured blockquote p {
  margin: 0 0 auto;
  padding-bottom: 16px;
  color: var(--ht-ink);
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.6;
}

.home-testimonials-video-btn {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--ht-blue);
  border-radius: 8px;
  background: transparent;
  color: var(--ht-blue);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-testimonials-video-btn:hover {
  color: #0956a8;
}

.home-testimonials-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-testimonials-review,
.home-testimonials-summary {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--ht-border);
  border-radius: 14px;
  background: none;
}

.home-testimonials-video-btn svg {
  flex-shrink: 0;
}

.home-testimonials-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.home-testimonials-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--ht-border);
  color: var(--ht-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-testimonials-review-head strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-testimonials-review blockquote p {
  margin: 0 0 16px;
  flex: 1 1 auto;
  color: var(--ht-ink);
  font-size: clamp(0.9rem, 1vw, 0.96rem);
  line-height: 1.6;
}

.home-testimonials-review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.home-testimonials-platform-logo {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-testimonials-platform-logo--summary {
  width: 28px;
  height: 28px;
}

.home-testimonials-review-foot picture,
.home-testimonials-summary-box picture {
  display: inline-flex;
  flex-shrink: 0;
}

.home-testimonials-stars {
  display: inline-flex;
  gap: 2px;
}

.home-testimonials-stars span {
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.home-testimonials-stars--clutch span {
  background: #e74c3c;
}

.home-testimonials-stars--google span {
  background: #fbbc04;
}

.home-testimonials-summary {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-testimonials-summary h3 {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 700 !important;
  line-height: 1.35;
}

.home-testimonials-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.home-testimonials-summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid var(--ht-border);
  border-radius: 10px;
  background: none;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.home-testimonials-summary-box:hover {
  border-color: #c5d5e8;
}

.home-testimonials-summary-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ht-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .home-testimonials-featured-row,
  .home-testimonials-bottom-row {
    grid-template-columns: 1fr;
  }

  .home-testimonials-featured {
    grid-template-columns: 1fr;
  }

  .home-testimonials-featured-media img {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .home-testimonials-head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-testimonials-view-all {
    align-self: flex-start;
  }

  .home-testimonials-summary-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== home-dev-partner-cta.css ===== */
/* ==========================================================================
   Homepage — Trusted Development Partner CTA
   ========================================================================== */
.home-dev-partner {
  --hdp-bg: #001F2B;
  --hdp-accent: #0077C8;
  background: #fff;
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(28px, 4vw, 48px) 0 0;
}

.home-dev-partner-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4.5vw, 48px);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(0, 119, 200, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(109, 94, 247, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 212, 255, 0.22), transparent 55%),
    linear-gradient(160deg, #001018 0%, #001F2B 42%, #0A2F4A 100%);
  box-shadow: 0 18px 50px rgba(0, 16, 24, 0.28);
}

.home-dev-partner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Crect x='2' y='2' width='10' height='10' rx='2.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}

.home-dev-partner-copy,
.home-dev-partner-btn {
  position: relative;
  z-index: 1;
}

.home-dev-partner-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.home-dev-partner-copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}

.home-dev-partner-action {
  display: none;
}

.home-dev-partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #001F2B;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-dev-partner-btn:hover {
  background: #f4fbfd;
  color: #0077C8;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .home-dev-partner-inner {
    grid-template-columns: minmax(0, 1fr) 1px auto;
  }

  .home-dev-partner-action {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: 72px;
    background-image: linear-gradient(
      to bottom,
      transparent 0,
      transparent 4px,
      rgba(255, 255, 255, 0.55) 4px,
      rgba(255, 255, 255, 0.55) 10px
    );
    background-size: 1px 14px;
    background-repeat: repeat-y;
    opacity: 0.9;
  }
}

@media (max-width: 899px) {
  .home-dev-partner-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .home-dev-partner-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ===== home-insights-preview.css ===== */
/* ==========================================================================
   Homepage — Insights preview (Resources from Tech Experts)
   ========================================================================== */
.home-insights {
  --hi-ink: #061b2c;
  --hi-muted: #5a7086;
  --hi-border: #dde5ee;
  --hi-soft: #f4f8fc;
  --hi-blue: #0b66c3;
  --hi-blue-soft: #e8f2fc;
  background: #fff;
  color: var(--hi-ink);
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  padding: clamp(52px, calc(4vw + 20px), 68px) 0 clamp(52px, calc(4vw + 20px), 68px);
}

.home-insights-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.home-insights-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.home-insights-head-copy {
  max-width: 720px;
}

.home-insights-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--hi-ink);
}

.home-insights-head h2 span {
  background: linear-gradient(100deg, #0a2744 8%, #8fc5ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-insights-head p {
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--hi-muted);
  max-width: 62ch;
}

.home-insights-view-all {
  flex-shrink: 0;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  background: var(--hi-blue) !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-insights-view-all:hover {
  background: #0956a8 !important;
  color: #fff !important;
}

.home-insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
}

.home-insights-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--hi-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.home-insights-featured-visual {
  display: block;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: var(--hi-soft);
}

.home-insights-featured-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-insights-visual-mark {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(6, 27, 44, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-insights-featured-body {
  flex: 0 0 auto;
  padding: 20px 22px 24px;
}

.home-insights-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 0;
}

.home-insights-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  flex: 1 1 0;
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--hi-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.home-insights-card:hover {
  border-color: #c5d5e8;
}

.home-insights-card-thumb {
  display: block;
  height: 100%;
  min-height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--hi-soft);
}

.home-insights-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-insights-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.home-insights-category {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--hi-blue-soft);
  color: var(--hi-blue);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-insights-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hi-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.home-insights-author svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.home-insights-featured h3,
.home-insights-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 700 !important;
  line-height: 1.35;
}

.home-insights-featured h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.home-insights-featured h3 a,
.home-insights-card h3 a {
  color: var(--hi-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-insights-featured h3 a:hover,
.home-insights-card h3 a:hover {
  color: var(--hi-blue);
}

.home-insights-excerpt {
  margin: 10px 0 0;
  color: var(--hi-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-insights-excerpt--compact {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Insight art backgrounds (match insights page) */
.home-insights-featured-visual.insight-art-ai,
.home-insights-card-thumb.insight-art-ai {
  background: linear-gradient(135deg, #e8f4ff 0%, #dbeafe 100%);
}

.home-insights-featured-visual.insight-art-code,
.home-insights-card-thumb.insight-art-code {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.home-insights-featured-visual.insight-art-commerce,
.home-insights-card-thumb.insight-art-commerce {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

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

  .home-insights-featured {
    height: auto;
  }

  .home-insights-featured-visual {
    aspect-ratio: 16 / 10;
    flex: none;
  }

  .home-insights-side {
    height: auto;
    gap: 14px;
  }

  .home-insights-card {
    flex: none;
  }

  .home-insights-card-thumb {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (max-width: 640px) {
  .home-insights-head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-insights-view-all {
    align-self: flex-start;
  }

  .home-insights-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .home-insights-featured-body {
    padding: 16px 16px 20px;
  }
}

