:root {
  --ek-surface: rgba(255, 255, 255, 0.04);
  --ek-surface-strong: rgba(255, 255, 255, 0.08);
  --ek-surface-soft: rgba(255, 255, 255, 0.02);
  --ek-line: rgba(255, 255, 255, 0.1);
  --ek-text-soft: rgba(255, 255, 255, 0.72);
  --ek-accent: #6ee7cf;
  --ek-accent-2: #ff8b62;
  --ek-accent-3: #7aa2ff;
  --ek-radius-lg: 30px;
  --ek-radius-md: 20px;
  --ek-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

#tt-header .tt-header-inner {
  margin-top: 0;
  padding: 16px 40px;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(10, 14, 16, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
}

body.tt-boxed #tt-header .tt-header-inner.tt-wrap {
  max-width: none;
  width: 100%;
  padding-left: 110px;
  padding-right: 110px;
}

body.ek-header-scrolled #tt-header .tt-header-inner {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 16, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.ek-header-scrolled.tt-ol-menu-open #tt-header .tt-header-inner {
  background: rgba(10, 14, 16, 0.42);
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1024px) {
  #tt-header .tt-header-inner {
    padding: 14px 24px;
    border-radius: 0;
  }

  body.tt-boxed #tt-header .tt-header-inner.tt-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.ek-page-header .ph-caption,
.ek-home-header .ph-caption {
  max-width: 920px;
}

.ek-home-header .ph-caption {
  max-width: min(1040px, calc(100vw - 120px));
  padding-top: 8px;
}

.ek-home-header .ph-caption-title,
.ek-page-header .ph-caption-title {
  max-width: 18ch;
}

.ek-home-header .ph-caption-title {
  max-width: none;
  font-size: clamp(32px, 4vw, 68px);
  line-height: 1.08;
}

.ek-home-header .ph-caption-title .ek-title-line {
  display: block;
  white-space: nowrap;
}

.ek-home-header .ph-caption-subtitle,
.ek-page-header .ph-caption-subtitle {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
}

.ek-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ek-header-actions .ek-hero-btn,
.ek-header-actions .ek-hero-btn > a {
  width: 260px !important;
}

.ek-header-actions .ek-hero-btn {
  flex: 0 0 260px;
}

.ek-header-actions .ek-services-btn,
.ek-header-actions .ek-services-btn > a {
  width: 200px !important;
}

.ek-header-actions .ek-services-btn {
  flex: 0 0 200px;
}

.ek-header-actions .ek-hero-btn > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 0;
}

.ek-header-actions .ek-hero-btn > a::after {
  content: none;
}

.ek-header-actions .ek-hero-btn > a::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateY(101%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.ek-header-actions .ek-hero-btn:hover > a {
  transform: none;
}

.ek-header-actions .ek-hero-btn:hover > a::before {
  transform: translateY(0);
}

.ek-logo-band {
  position: relative;
  padding: 34px 0 18px;
  z-index: 3;
}

.ek-logo-band-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.ek-logo-band-head p {
  max-width: 760px;
  margin: 0;
  color: var(--ek-text-soft);
}

.ek-customer-ticker {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: var(--ek-radius-lg);
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--ek-shadow);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.ek-customer-track {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: max-content;
  animation: ek-customer-scroll 34s linear infinite;
}

.ek-customer-ticker:hover .ek-customer-track {
  animation-play-state: paused;
}

.ek-customer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 92px;
  padding: 14px 18px;
  border-radius: 24px;
  /* background: rgba(255, 255, 255, 0.04); */
  /* border: 1px solid rgba(255, 255, 255, 0.06); */
}

.ek-customer-logo img {
  display: block;
  max-width: 118px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ek-customer-logo:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes ek-customer-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.ek-brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}

.ek-brand-logo-link span {
  display: inline-flex;
  align-items: center;
}

.ek-brand-logo-link img {
  display: block;
  width: min(118px, 100%);
  height: auto;
  padding-bottom: 4px;
}

.ek-logo-btn {
  flex: 0 0 260px;
}

.ek-pill-row,
.ek-mini-list,
.ek-module-tags,
.ek-subscription-pills,
.ek-cta-actions,
.ek-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ek-pill,
.ek-mini-pill,
.ek-tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--ek-line);
  background: var(--ek-surface);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.ek-marquee {
  position: relative;
  display: flex;
  gap: 12px;
  overflow: hidden;
  width: min(100%, 1520px);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.ek-marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  animation: ek-marquee-scroll 26s linear infinite reverse;
  will-change: transform;
}

.ek-marquee:hover .ek-marquee-track {
  animation-play-state: paused;
}

.ek-marquee-item {
  white-space: nowrap;
  position: relative;
  font-weight: 520;
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  will-change: transform, opacity;
}

.ek-marquee:hover .ek-marquee-item {
  opacity: 0.5;
}

.ek-marquee-item:hover,
.ek-marquee-item:focus-visible {
  opacity: 1;
  transform: translate3d(0, -2px, 0);
  color: var(--ek-accent);
}

@keyframes ek-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 12px));
  }
}

.ek-mini-pill {
  color: var(--ek-text-soft);
}

.ek-tier-pill.is-accent {
  background: rgba(110, 231, 207, 0.12);
  border-color: rgba(110, 231, 207, 0.28);
  color: var(--ek-accent);
}

.ek-section {
  padding: 120px 0;
}

.anim-fadeinup {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.anim-fadeinup.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ek-section.tight {
  padding-top: 90px;
}

/* Builds section — parallax decorations */
.ek-builds-section {
  position: relative;
  overflow: hidden;
}

.ek-parallax-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  opacity: 0.08;
}

.ek-deco-1 {
  width: 340px;
  height: 340px;
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, var(--ek-accent) 0%, transparent 70%);
}

.ek-deco-2 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: -60px;
  background: radial-gradient(circle, #ff8b62 0%, transparent 70%);
  border-radius: 30%;
}

.ek-deco-3 {
  width: 160px;
  height: 160px;
  bottom: -40px;
  right: 18%;
  background: radial-gradient(circle, var(--ek-accent) 0%, transparent 70%);
  border-radius: 38%;
}

/* Scroll card initial hidden state (GSAP will animate from this) */
.ek-scroll-card {
  will-change: transform, opacity;
}

.ek-builds-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.18fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.ek-builds-column {
  display: grid;
  gap: 22px;
}

.ek-builds-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 164px;
  padding: 22px;
}

.ek-builds-service h3 {
  margin: 14px 0 0;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.1;
}

.ek-builds-service p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.58;
}

.ek-builds-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(110, 231, 207, 0.22);
  background: rgba(110, 231, 207, 0.09);
  color: var(--ek-accent);
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(110, 231, 207, 0.12);
}

.ek-builds-visual-wrap {
  min-width: 0;
}

.ek-builds-visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid var(--ek-line);
  border-radius: calc(var(--ek-radius-md) + 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--ek-shadow);
  overflow: hidden;
}

.ek-builds-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(110, 231, 207, 0.14), transparent 30%), radial-gradient(circle at bottom right, rgba(122, 162, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.ek-builds-visual-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 500px;
  border-radius: calc(var(--ek-radius-md) - 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 16, 0.9);
}

.ek-builds-visual-frame img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ek-builds-footline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  grid-column: 1 / -1;
  min-height: 76px;
  padding: 22px 26px;
  border-radius: 30px;
  border: 1px solid rgba(110, 231, 207, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ek-builds-footline-copy {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.ek-builds-footline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 207, 0.24);
  background: rgba(110, 231, 207, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ek-builds-footline-action:hover,
.ek-builds-footline-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 207, 0.42);
  background: rgba(110, 231, 207, 0.14);
  color: var(--ek-accent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.ek-builds-footline-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(110, 231, 207, 0.1);
}

.ek-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.ek-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.ek-section-head p,
.ek-intro-copy p,
.ek-card p,
.ek-story-card p,
.ek-work-card p,
.ek-module-card p,
.ek-spotlight-card p,
.ek-process-card p,
.ek-contact-card p,
.ek-market-card p,
.ek-service-card p,
.ek-subscription-card p,
.ek-industry-card p,
.ek-proof-item p,
.ek-slab p,
.ek-platform-metric p {
  color: var(--ek-text-soft);
}

.ek-section-head > p {
  max-width: 52ch;
}

.ek-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--ek-accent);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ek-grid-2,
.ek-grid-3,
.ek-grid-4,
.ek-proof-grid,
.ek-work-grid,
.ek-service-grid,
.ek-industry-grid,
.ek-module-grid,
.ek-market-grid,
.ek-subscription-grid,
.ek-story-grid,
.ek-process-grid,
.ek-contact-grid,
.ek-spotlight-grid,
.ek-stack-grid,
.ek-category-grid {
  display: grid;
  gap: 22px;
}

.ek-grid-2,
.ek-contact-grid,
.ek-spotlight-grid,
.ek-story-grid,
.ek-stack-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ek-grid-3,
.ek-proof-grid,
.ek-service-grid,
.ek-industry-grid,
.ek-module-grid,
.ek-process-grid,
.ek-market-grid,
.ek-subscription-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ek-grid-4,
.ek-work-grid,
.ek-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ek-card,
.ek-story-card,
.ek-work-card,
.ek-module-card,
.ek-spotlight-card,
.ek-process-card,
.ek-contact-card,
.ek-market-card,
.ek-service-card,
.ek-subscription-card,
.ek-proof-item,
.ek-slab,
.ek-platform-metric,
.ek-category-block {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--ek-shadow);
}

.ek-card::before,
.ek-story-card::before,
.ek-work-card::before,
.ek-module-card::before,
.ek-spotlight-card::before,
.ek-process-card::before,
.ek-contact-card::before,
.ek-market-card::before,
.ek-service-card::before,
.ek-subscription-card::before,
.ek-proof-item::before,
.ek-slab::before,
.ek-category-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(110, 231, 207, 0.12), transparent 26%), radial-gradient(circle at bottom left, rgba(255, 139, 98, 0.09), transparent 20%);
  pointer-events: none;
}

.ek-card > *,
.ek-story-card > *,
.ek-work-card > *,
.ek-module-card > *,
.ek-spotlight-card > *,
.ek-process-card > *,
.ek-contact-card > *,
.ek-market-card > *,
.ek-service-card > *,
.ek-subscription-card > *,
.ek-proof-item > *,
.ek-slab > *,
.ek-category-block > * {
  position: relative;
}

.ek-card h3,
.ek-story-card h3,
.ek-work-card h3,
.ek-module-card h3,
.ek-spotlight-card h3,
.ek-process-card h3,
.ek-contact-card h3,
.ek-market-card h3,
.ek-service-card h3,
.ek-subscription-card h3,
.ek-proof-item h3,
.ek-slab h3,
.ek-category-block h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.ek-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ek-accent-2);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ek-list,
.ek-checklist,
.ek-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ek-list li,
.ek-checklist li,
.ek-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--ek-text-soft);
}

.ek-list li::before,
.ek-checklist li::before,
.ek-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ek-accent);
}

.ek-hero-overview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 26px;
}

.ek-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.ek-stat {
  padding: 22px;
  border: 1px solid var(--ek-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ek-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 28px;
}

.ek-work-card .ek-tag,
.ek-category-tag,
.ek-module-label,
.ek-service-label,
.ek-industry-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122, 162, 255, 0.12);
  border: 1px solid rgba(122, 162, 255, 0.25);
  color: var(--ek-accent-3);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Work showcase section */
.ek-work-section {
  position: relative;
  overflow: hidden;
}

.ek-deco-work-1 {
  width: 280px;
  height: 280px;
  top: -40px;
  left: -70px;
  background: radial-gradient(circle, #ff8b62 0%, transparent 70%);
}

.ek-deco-work-2 {
  width: 220px;
  height: 220px;
  bottom: 60px;
  right: -60px;
  background: radial-gradient(circle, var(--ek-accent) 0%, transparent 70%);
  border-radius: 36%;
}

.ek-work-showcase {
  padding-top: 56px !important;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 24px 16px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 231, 207, 0.45) rgba(255, 255, 255, 0.04);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.ek-work-showcase::-webkit-scrollbar {
  height: 10px;
}

.ek-work-showcase::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.ek-work-showcase::-webkit-scrollbar-thumb {
  background: rgba(110, 231, 207, 0.38);
  border-radius: 999px;
}

.ek-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 clamp(320px, 34vw, 430px);
  min-height: 340px;
  padding: 28px;
  margin-left: clamp(-250px, -14vw, -150px);
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.96), rgba(8, 12, 16, 0.94));
  box-shadow: var(--ek-shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  z-index: var(--ek-stack, 1);
  scroll-snap-align: start;
  transform-origin: left center;
  transform: translate3d(0, 0, 0);
  contain: layout paint;
  --ek-media-blur: 0px;
  --ek-media-grayscale: 0;
  --ek-media-saturate: 1;
  --ek-media-brightness: 1;
}

.ek-showcase-card:first-child {
  margin-left: 0;
}

.ek-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
              linear-gradient(180deg, rgba(4, 7, 10, 0.08) 0%, rgba(4, 7, 10, 0.34) 38%, rgba(4, 7, 10, 0.9) 100%),
              radial-gradient(circle at top right, rgba(110, 231, 207, 0.12), transparent 24%),
              radial-gradient(circle at bottom left, rgba(255, 139, 98, 0.09), transparent 18%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Accent glow layer revealed on hover */
.ek-showcase-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(110, 231, 207, 0.18), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(122, 162, 255, 0.10), transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.ek-showcase-card:hover,
.ek-showcase-card.is-active {
  border-color: rgba(110, 231, 207, 0.42);
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(110, 231, 207, 0.12),
    0 0 80px -20px rgba(110, 231, 207, 0.15);
  z-index: 20;
  opacity: 1;
  --ek-media-blur: 0px;
  --ek-media-grayscale: 0;
  --ek-media-saturate: 1.04;
  --ek-media-brightness: 1.04;
}

.ek-showcase-card:hover::after,
.ek-showcase-card.is-active::after {
  opacity: 1;
}

.ek-showcase-card.is-depth-1 {
  transform: translateX(-14px) scale(0.93);
  opacity: 0.72;
  z-index: 16;
  --ek-media-blur: 1.8px;
  --ek-media-grayscale: 0.68;
  --ek-media-saturate: 0.34;
  --ek-media-brightness: 0.92;
}

.ek-showcase-card.is-depth-2 {
  transform: translateX(-28px) scale(0.85);
  opacity: 0.55;
  z-index: 13;
  --ek-media-blur: 4.2px;
  --ek-media-grayscale: 0.86;
  --ek-media-saturate: 0.22;
  --ek-media-brightness: 0.84;
}

.ek-showcase-card.is-depth-3 {
  transform: translateX(-42px) scale(0.78);
  opacity: 0.4;
  z-index: 10;
  --ek-media-blur: 6.6px;
  --ek-media-grayscale: 0.96;
  --ek-media-saturate: 0.14;
  --ek-media-brightness: 0.76;
}

.ek-showcase-card.is-depth-4 {
  transform: translateX(-56px) scale(0.72);
  opacity: 0.28;
  z-index: 7;
  --ek-media-blur: 8.8px;
  --ek-media-grayscale: 1;
  --ek-media-saturate: 0.1;
  --ek-media-brightness: 0.68;
}

.ek-showcase-card.is-depth-far {
  transform: translateX(-70px) scale(0.67);
  opacity: 0.18;
  z-index: 4;
  --ek-media-blur: 11.5px;
  --ek-media-grayscale: 1;
  --ek-media-saturate: 0.08;
  --ek-media-brightness: 0.58;
}

.ek-showcase-card:hover::before,
.ek-showcase-card.is-active::before {
  opacity: 1.4;
}

.ek-showcase-card > * {
  position: relative;
  z-index: 2;
}

.ek-showcase-media {
  position: absolute;
  inset: 0;
  margin: 0;
  height: auto;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.ek-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 14, 0.04), rgba(7, 11, 14, 0.22));
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-showcase-card:hover .ek-showcase-media::after,
.ek-showcase-card.is-active .ek-showcase-media::after {
  background: linear-gradient(180deg, rgba(7, 11, 14, 0.0), rgba(7, 11, 14, 0.14));
}

.ek-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  filter: grayscale(var(--ek-media-grayscale)) saturate(var(--ek-media-saturate)) brightness(var(--ek-media-brightness)) blur(var(--ek-media-blur));
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ek-showcase-card:hover .ek-showcase-media img,
.ek-showcase-card.is-active .ek-showcase-media img {
  transform: scale(1.08);
}

.ek-showcase-card .ek-tag {
  display: inline-flex;
  margin-top: auto;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.6);
  border: 1px solid rgba(122, 162, 255, 0.32);
  color: var(--ek-accent-3);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-showcase-card:hover .ek-tag,
.ek-showcase-card.is-active .ek-tag {
  transform: translateY(-3px);
  border-color: rgba(122, 162, 255, 0.52);
  background: rgba(8, 12, 18, 0.72);
}

.ek-showcase-card h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  color: #fff;
  max-width: 12ch;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-showcase-card:hover h3,
.ek-showcase-card.is-active h3 {
  transform: translateY(-2px);
}

.ek-showcase-card p {
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  max-width: 18ch;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.03s,
    color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-showcase-card:hover p,
.ek-showcase-card.is-active p {
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.92);
}

.ek-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 16px;
  border-radius: 50%;
  border: 1px solid var(--ek-line);
  color: var(--ek-text-soft);
  font-size: 13px;
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-end;
}

.ek-showcase-card:hover .ek-card-arrow,
.ek-showcase-card.is-active .ek-card-arrow {
  background: var(--ek-accent);
  border-color: var(--ek-accent);
  color: #111;
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(110, 231, 207, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .anim-fadeinup {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ek-marquee-track {
    animation-duration: 40s;
  }

  .ek-showcase-card,
  .ek-showcase-media img,
  .ek-card-arrow,
  .ek-showcase-card .ek-tag,
  .ek-showcase-card h3,
  .ek-showcase-card p {
    transition-duration: 0.01ms;
  }
}

.ek-work-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: linear-gradient(135deg, rgba(110, 231, 207, 0.06), rgba(255, 255, 255, 0.02));
}

.ek-work-cta-text {
  color: var(--ek-text-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  margin: 0;
}

.ek-spotlight {
  padding: 36px;
  border: 1px solid rgba(110, 231, 207, 0.18);
  border-radius: var(--ek-radius-lg);
  background: linear-gradient(145deg, rgba(110, 231, 207, 0.08), rgba(255, 255, 255, 0.03));
}

.ek-subscription-card.is-featured,
.ek-platform-metric,
.ek-spotlight-card.is-product {
  border-color: rgba(110, 231, 207, 0.28);
  background: linear-gradient(180deg, rgba(110, 231, 207, 0.09), rgba(255, 255, 255, 0.04));
}

.ek-subscription-price {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.ek-process-card strong,
.ek-platform-metric strong,
.ek-contact-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.ek-contact-card a,
.ek-inline-link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.ek-form-shell {
  padding: 34px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.ek-form-shell .tt-form-control,
.ek-form-shell .tt-form-minimal .tt-form-control,
.ek-form-shell .tt-form-minimal select,
.ek-form-shell .tt-form-minimal textarea {
  border-color: rgba(255, 255, 255, 0.14);
}

.ek-note {
  margin-top: 14px;
  color: var(--ek-text-soft);
  font-size: 15px;
}

.ek-footer-note {
  max-width: 54ch;
}

.ek-next-banner {
  padding: 36px;
}

.ek-next-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.ek-next-banner-copy p {
  max-width: 54ch;
}

.ek-next-banner-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.ek-next-banner-media img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  display: block;
}

.ek-site-footer {
  margin-top: 34px;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--ek-shadow);
}

.ek-footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ek-footer-brand img {
  width: 158px;
  max-width: 100%;
  margin-bottom: 14px;
}

.ek-footer-brand p {
  margin: 0;
  max-width: 44ch;
  color: var(--ek-text-soft);
}

.ek-footer-links-group h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.ek-footer-links-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ek-footer-links-group a {
  color: var(--ek-text-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ek-footer-links-group a:hover {
  color: var(--ek-accent);
}

.ek-footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ek-footer-bottom p {
  margin: 0;
  color: var(--ek-text-soft);
}

.ek-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ek-footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.ek-footer-bottom-links a:hover {
  color: var(--ek-accent);
  border-color: var(--ek-accent);
}

.ek-work-hero-grid,
.ek-product-hero-grid,
.ek-service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.ek-feature-grid,
.ek-full-project-grid {
  display: grid;
  gap: 22px;
}

.ek-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ek-full-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ek-feature-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding-top: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -180px 160px rgba(7, 10, 18, 0.92), var(--ek-shadow);
}

.ek-feature-grid > .ek-feature-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-1.jpg");
}

.ek-feature-grid > .ek-feature-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-2.jpg");
}

.ek-feature-grid > .ek-feature-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-3.jpg");
}

.ek-feature-grid > .ek-feature-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-4.jpg");
}

.ek-feature-grid > .ek-feature-card:nth-child(5) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-5.jpg");
}

.ek-feature-grid > .ek-feature-card:nth-child(6) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.9)), url("../img/portfolio/carousel/portf-carousel-6.jpg");
}

.ek-category-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.ek-category-block--dense h3 {
  font-size: clamp(24px, 1.8vw, 30px);
}

.ek-project-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ek-project-list li {
  display: flex;
  align-items: flex-end;
  min-height: 182px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -110px 110px rgba(7, 10, 18, 0.9);
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
}

.ek-project-list li:nth-child(8n + 1) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-1.jpg");
}

.ek-project-list li:nth-child(8n + 2) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-2.jpg");
}

.ek-project-list li:nth-child(8n + 3) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-3.jpg");
}

.ek-project-list li:nth-child(8n + 4) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-4.jpg");
}

.ek-project-list li:nth-child(8n + 5) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-5.jpg");
}

.ek-project-list li:nth-child(8n + 6) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-6.jpg");
}

.ek-project-list li:nth-child(8n + 7) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-7.jpg");
}

.ek-project-list li:nth-child(8n + 8) {
  background-image: linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.92)), url("../img/portfolio/small/portfolio-8.jpg");
}

.ek-highlight-panel {
  padding: 28px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.ek-case-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ek-case-header-inner,
.ek-case-footer-inner,
.ek-case-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ek-case-header-inner {
  align-items: center;
  padding: 18px 0;
}

.ek-case-brand img {
  width: 146px;
  height: auto;
}

.ek-simple-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.ek-simple-nav a,
.ek-project-link,
.ek-project-link-inline {
  color: #fff;
}

.ek-simple-nav a {
  opacity: 0.76;
}

.ek-simple-nav a.is-active,
.ek-simple-nav a:hover {
  opacity: 1;
}

.ek-case-shell {
  position: relative;
  z-index: 1;
}

.ek-case-hero {
  min-height: 540px;
  padding: 64px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--ek-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ek-case-hero h1 {
  max-width: 12ch;
  margin-bottom: 16px;
}

.ek-case-hero p {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.82);
}

.ek-case-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ek-case-footer-inner {
  color: var(--ek-text-soft);
}

.ek-project-link {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100%;
  padding: 14px 16px;
}

.ek-project-link-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.ek-project-link-inline.is-secondary {
  background: transparent;
}

.ek-project-link-inline.is-icon-only {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
}

.ek-project-link-inline.is-icon-only span {
  transform: rotate(-45deg) translateX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.ek-project-link-inline.is-icon-only:hover span,
.ek-project-link-inline.is-icon-only:focus-visible span {
  transform: rotate(-45deg) translateX(2px);
}

.ek-feature-cta {
  margin-top: 22px;
}

.ek-platform-metric {
  min-height: 100%;
}

.ek-compact-copy {
  max-width: 64ch;
}

.ek-divider-top {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .ek-grid-4,
  .ek-work-grid,
  .ek-category-grid,
  .ek-feature-grid,
  .ek-full-project-grid,
  .ek-grid-3,
  .ek-proof-grid,
  .ek-service-grid,
  .ek-industry-grid,
  .ek-module-grid,
  .ek-market-grid,
  .ek-subscription-grid,
  .ek-process-grid,
  .ek-stats-grid,
  .ek-grid-2,
  .ek-contact-grid,
  .ek-spotlight-grid,
  .ek-story-grid,
  .ek-stack-grid,
  .ek-hero-overview,
  .ek-work-hero-grid,
  .ek-product-hero-grid,
  .ek-service-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ek-work-showcase {
    padding-right: 8px;
    mask-image: none;
  }

  .ek-case-header-inner,
  .ek-case-footer-inner,
  .ek-case-meta-grid {
    grid-template-columns: 1fr;
  }

  .ek-section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .ek-logo-band {
    padding: 26px 0 12px;
  }

  .ek-logo-band-head {
    flex-direction: column;
    align-items: start;
    margin-bottom: 18px;
  }

  .ek-customer-logo {
    width: 132px;
    height: 66px;
    padding: 12px 14px;
  }

  .ek-customer-logo img {
    max-width: 102px;
    max-height: 34px;
  }

  .ek-home-header .ph-caption {
    max-width: none;
    padding-top: 34px;
  }

  .ek-section {
    padding: 84px 0;
  }

  .ek-wrap {
    width: min(1320px, calc(100% - 28px));
  }

  .ek-grid-4,
  .ek-work-grid,
  .ek-category-grid,
  .ek-feature-grid,
  .ek-full-project-grid,
  .ek-grid-3,
  .ek-proof-grid,
  .ek-service-grid,
  .ek-industry-grid,
  .ek-module-grid,
  .ek-market-grid,
  .ek-subscription-grid,
  .ek-process-grid,
  .ek-stats-grid,
  .ek-grid-2,
  .ek-contact-grid,
  .ek-spotlight-grid,
  .ek-story-grid,
  .ek-stack-grid,
  .ek-hero-overview,
  .ek-work-hero-grid,
  .ek-product-hero-grid,
  .ek-service-hero-grid {
    grid-template-columns: 1fr;
  }

  .ek-work-showcase {
    padding-bottom: 12px;
  }

  .ek-showcase-card {
    flex-basis: min(86vw, 320px);
    min-height: 250px;
    margin-left: -72px;
    padding: 24px;
  }

  .ek-builds-column {
    grid-template-columns: 1fr;
  }

  .ek-builds-service {
    min-height: 150px;
  }

  .ek-builds-service h3 {
    font-size: 24px;
  }

  .ek-builds-visual {
    padding: 0;
  }

  .ek-builds-visual-frame {
    min-height: 420px;
  }

  .ek-builds-footline {
    min-height: auto;
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ek-builds-footline-copy {
    font-size: 14px;
  }

  .ek-builds-footline-action {
    width: 100%;
    padding: 0 18px;
  }

  .ek-work-cta {
    flex-direction: column;
    text-align: center;
  }

  .ek-card,
  .ek-story-card,
  .ek-work-card,
  .ek-module-card,
  .ek-spotlight-card,
  .ek-process-card,
  .ek-contact-card,
  .ek-market-card,
  .ek-service-card,
  .ek-subscription-card,
  .ek-proof-item,
  .ek-slab,
  .ek-platform-metric,
  .ek-category-block,
  .ek-spotlight,
  .ek-form-shell {
    padding: 22px;
  }

  .ek-home-header .ph-caption-title,
  .ek-page-header .ph-caption-title {
    max-width: none;
  }

  .ek-home-header .ph-caption-title .ek-title-line {
    white-space: normal;
  }

  .ek-case-hero {
    min-height: 420px;
    padding: 28px;
  }

  .ek-simple-nav {
    justify-content: flex-start;
  }

  .ek-feature-card {
    min-height: 340px;
    padding-top: 120px;
  }

  .ek-project-list li {
    min-height: 148px;
  }
}

@media (max-width: 980px) {
  .ek-next-banner-grid {
    grid-template-columns: 1fr;
  }

  .ek-footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .ek-builds-layout {
    grid-template-columns: 1fr;
  }

  .ek-builds-column {
    grid-template-columns: 1fr 1fr;
  }

  .ek-builds-visual-frame {
    min-height: 480px;
  }
}

/* ============================
   Flowchart – Delivery Model
   ============================ */
.ek-flow-section {
  position: relative;
  overflow: hidden;
}

.ek-deco-flow-1 {
  width: 280px;
  height: 280px;
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, var(--ek-accent), transparent 70%);
  border-radius: 50%;
}

.ek-deco-flow-2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -60px;
  background: radial-gradient(circle, var(--ek-accent-2), transparent 70%);
  border-radius: 36%;
}

.ek-flowchart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 10px;
}

/* Horizontal spine line */
.ek-flow-spine {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ek-line);
  z-index: 0;
}

.ek-flow-spine-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ek-accent), var(--ek-accent-3), var(--ek-accent-2));
  transform-origin: left center;
}

/* Each step */
.ek-flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  will-change: transform, opacity;
}

/* Arrow connector between steps */
.ek-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -7px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--ek-accent);
  border-right: 2px solid var(--ek-accent);
  transform: rotate(45deg);
  z-index: 3;
}

/* Numbered circle */
.ek-flow-dot {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ek-accent);
  background: #111118;
  flex-shrink: 0;
  z-index: 2;
  margin-bottom: 28px;
  box-shadow: 0 0 30px rgba(110, 231, 207, 0.15), inset 0 0 12px rgba(110, 231, 207, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ek-flow-step:hover .ek-flow-dot {
  box-shadow: 0 0 48px rgba(110, 231, 207, 0.3), inset 0 0 18px rgba(110, 231, 207, 0.1);
  transform: scale(1.08);
}

.ek-flow-dot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--ek-accent);
  line-height: 1;
}

/* Outer glow ring */
.ek-flow-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(110, 231, 207, 0.15);
  pointer-events: none;
}

/* Ripple ring spawned by JS on dot reveal */
.ek-dot-ripple {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--ek-accent);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Card body */
.ek-flow-body {
  flex: 1;
  padding: 24px 20px;
  border: 1px solid var(--ek-line);
  border-radius: var(--ek-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: var(--ek-shadow);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ek-flow-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(110, 231, 207, 0.08), transparent 50%);
  pointer-events: none;
}

.ek-flow-step:hover .ek-flow-body {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 207, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), 0 0 40px rgba(110, 231, 207, 0.06);
}

/* Vertical connector line from dot to card */
.ek-flow-step .ek-flow-dot::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--ek-accent), transparent);
  transform: translateX(-50%);
}

.ek-flow-body h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
}

.ek-flow-body p {
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ek-text-soft);
  margin-bottom: 14px;
}

/* Small tags */
.ek-flow-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.ek-flow-tags span {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ek-accent);
  border: 1px solid rgba(110, 231, 207, 0.2);
  border-radius: 20px;
  background: rgba(110, 231, 207, 0.06);
}

/* ---- Flowchart responsive ---- */
@media (max-width: 1100px) {
  .ek-flowchart {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .ek-flow-spine {
    display: none;
  }

  /* Hide arrow on even steps (right column) – they point into empty space */
  .ek-flow-step:nth-of-type(2n)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .ek-next-banner,
  .ek-site-footer {
    padding: 22px;
  }

  .ek-footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ek-flowchart {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ek-flow-step:not(:last-child)::after {
    /* Rotate arrow to point downward */
    top: auto;
    bottom: -22px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .ek-flow-step:nth-of-type(2n)::after {
    display: block;
  }

  .ek-flow-body {
    padding: 20px 16px;
  }
}
/* ---- Portfolio Renderer Styles ---- */

.ek-section-head--compact {
  margin-bottom: 0;
}

.ek-usecase-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.ek-usecase-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.ek-usecase-arrow:hover:not(:disabled) {
  background: rgba(110, 231, 207, 0.18);
  border-color: rgba(110, 231, 207, 0.6);
}

.ek-usecase-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.ek-usecase-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.ek-usecase-strip::-webkit-scrollbar {
  height: 10px;
}

.ek-usecase-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.ek-usecase-card,
.ek-portfolio-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--ek-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ek-usecase-card {
  height: 560px;
  min-height: 560px;
}

.ek-portfolio-card {
  position: relative;
  height: 460px;
  min-height: 460px;
}

.ek-usecase-card-image,
.ek-portfolio-card-image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.ek-image-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.01) 12px,
      rgba(255, 255, 255, 0.01) 24px
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ek-image-placeholder--usecase {
  aspect-ratio: auto;
  width: 100%;
  min-height: 230px;
  height: 230px;
  max-height: 230px;
}

.ek-image-placeholder--portfolio {
  aspect-ratio: auto;
  width: 100%;
  min-height: 190px;
  height: 190px;
  max-height: 190px;
}

.ek-usecase-card-image {
  aspect-ratio: auto;
  width: 100%;
  min-height: 230px;
  height: 230px;
  max-height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ek-portfolio-card-image {
  aspect-ratio: auto;
  width: 100%;
  min-height: 190px;
  height: 190px;
  max-height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ek-usecase-card-body,
.ek-portfolio-card-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 14px;
  padding: 22px;
  flex: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.ek-portfolio-card-body {
  padding-bottom: 22px;
}

.ek-usecase-card-top,
.ek-portfolio-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.ek-usecase-card-top .ek-category-tag,
.ek-usecase-card-top .ek-mini-pill,
.ek-portfolio-card-meta .ek-category-tag,
.ek-portfolio-card-meta .ek-mini-pill {
  margin-bottom: 0;
}

.ek-usecase-card h3,
.ek-portfolio-card h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 32px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ek-usecase-card p,
.ek-portfolio-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.ek-usecase-card .ek-project-link-inline,
.ek-portfolio-card .ek-project-link-inline {
  margin-top: 0;
  flex-shrink: 0;
  justify-self: start;
}

.ek-portfolio-card .ek-project-link-inline {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  bottom: auto;
  z-index: 2;
}

.ek-portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.ek-filter-field {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ek-filter-field label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.ek-filter-field select {
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.ek-filter-field select:focus {
  outline: none;
  border-color: rgba(110, 231, 207, 0.7);
}

#portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ek-portfolio-card.no-image .ek-portfolio-card-body {
  min-height: 100%;
}

.ek-empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.ek-empty-state h3,
.ek-empty-state p {
  margin: 0;
}

.ek-empty-state p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

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

  .ek-portfolio-card {
    height: 430px;
    min-height: 430px;
  }

  .ek-usecase-card p,
  .ek-portfolio-card p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

@media (max-width: 768px) {
  .ek-usecase-controls {
    justify-content: flex-start;
  }

  .ek-usecase-strip {
    grid-auto-columns: minmax(280px, 88vw);
  }

  #portfolio-grid {
    grid-template-columns: 1fr;
  }

  .ek-usecase-card,
  .ek-portfolio-card {
    height: auto;
    min-height: 0;
  }

  .ek-filter-field {
    min-width: 100%;
  }

  .ek-usecase-card p,
  .ek-portfolio-card p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
