﻿/* Contact, Portfolio showcase, Process timeline extras */

/* ── Contact ── */
.contact-glow { display: none; }
.contact-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.06);
}
.contact-form-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.06);
}
.contact-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}
/* Legacy .contact-field â€” kept for compatibility; new form uses Tailwind underline classes */
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.9375rem;
  color: #0F172A;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.contact-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1E293B;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #E2E8F0;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563EB;
}
.eco-section-glow { display: none; }
.browser-bar-bg {
  background: #F8FAFC;
  border-radius: 12px 12px 0 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #E2E8F0;
}
.b-bar {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  height: 20px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

/* â”€â”€ Portfolio showcase â”€â”€ */
.eco-showcase-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.35) transparent;
}
.eco-showcase-scroll::-webkit-scrollbar { height: 6px; }
.eco-showcase-scroll::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.35);
  border-radius: 9999px;
}
.eco-mini-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.eco-mini-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.25);
}
.eco-bar-compact {
  padding: 8px 12px !important;
  background: #fff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
.eco-bar-compact .b-dot:nth-child(1) { background: #ff5f57 !important; }
.eco-bar-compact .b-dot:nth-child(2) { background: #febc2e !important; }
.eco-bar-compact .b-dot:nth-child(3) { background: #28c840 !important; }
.eco-bar-compact .b-bar {
  height: 22px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  justify-content: center;
}
.eco-bar-compact .b-bar span,
.eco-bar-compact .eco-browser-url {
  font-size: 0.6875rem !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace !important;
  color: #475569 !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}
.eco-preview-frame {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
}
.eco-shot-narrow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 200px;
  overflow: hidden;
  padding: 10px 12px 0;
}
.eco-shot-narrow img {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: none;
  object-fit: none;
  object-position: top center;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 41, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 5.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
/* Scroll-through hover â€” simulates scrolling down the page screenshot */
.eco-mini-card:hover .eco-shot-narrow img,
.eco-deploy-card:hover .eco-shot-narrow img {
  transform: translateY(-52%);
}
.eco-mini-label {
  padding: 0.625rem 0.75rem;
  border-top: 1px solid #f1f5f9;
}
.eco-mini-label h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eco-deploy-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .eco-deploy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .eco-deploy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; }
}
.eco-deploy-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.eco-deploy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.eco-deploy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(37, 99, 235, 0.2), 0 4px 12px -4px rgba(15, 23, 42, 0.06);
  border-color: #bfdbfe;
}
.eco-deploy-card:hover::before { opacity: 1; }
a.eco-deploy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.eco-card-body {
  padding: 1rem 1.125rem 1.125rem;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.eco-card-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.eco-card-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.eco-card-brand img {
  height: 1.75rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  flex-shrink: 0;
}
.eco-card-body > .flex.items-start {
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  min-height: 1.75rem;
}
.eco-card-body > .flex.items-start h3,
.eco-card-body > .flex.items-start .eco-card-brand {
  flex: 1;
  min-width: 0;
}
a.eco-deploy-card:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 3px;
}
.eco-card-body p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 2.35rem;
}
.eco-shot-narrow--card {
  height: 200px;
  padding: 10px 12px 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8eef5 100%);
}
.eco-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.eco-filter-btn {
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  transition: all 0.2s;
  cursor: pointer;
}
.eco-filter-btn.active,
.eco-filter-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.35);
}

/* â”€â”€ Process timeline â”€â”€ */
.process-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid #e2e8f0;
}
.process-pipe-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  min-width: 100px;
}
.process-pipe-circle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #fff;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-pipe-node:hover .process-pipe-circle {
  transform: translateY(-2px);
}
.process-pipe-circle.bg-coral { background: #334155 !important; }
.process-pipe-line {
  flex: 1;
  min-width: 48px;
  max-width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #94a3b8 50%, #22c55e 100%);
  margin-top: -1.75rem;
  opacity: 0.45;
}

.process-timeline {
  position: relative;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .process-timeline {
    padding-left: 2.5rem;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 0.6875rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(180deg, #2563eb 0%, #475569 50%, #22c55e 100%);
    opacity: 0.2;
    border-radius: 2px;
  }
}

/* ── Process page hero ── */
.process-hero {
  position: relative;
  overflow: hidden;
}
.process-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.55;
}
.process-hero-glow--1 {
  width: 32rem;
  height: 32rem;
  top: -12%;
  right: 0;
  background: rgba(37, 99, 235, 0.1);
}
.process-hero-glow--2 {
  width: 24rem;
  height: 24rem;
  bottom: -15%;
  left: -5%;
  background: rgba(147, 197, 253, 0.18);
}
.process-hero-trust {
  justify-content: center;
}
@media (min-width: 1024px) {
  .process-hero-trust {
    justify-content: flex-start;
  }
}
.process-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 2rem auto 0;
}
@media (min-width: 1024px) {
  .process-hero-showcase {
    margin: 0 0 0 auto;
  }
}
.process-hero-showcase::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.process-hero-pipeline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-hero-pipeline-track {
  position: absolute;
  left: 1.375rem;
  top: 2rem;
  bottom: 2rem;
  width: 3px;
  border-radius: 9999px;
  background: #e2e8f0;
  overflow: hidden;
  z-index: 0;
}
.process-hero-pipeline-fill {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #2563eb 0%, #475569 50%, #16a34a 100%);
  animation: processHeroFill 2.4s ease forwards 0.4s;
}
@keyframes processHeroFill {
  to { height: 100%; }
}
.process-hero-phase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px -10px rgba(15, 23, 42, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  animation: processHeroPhaseIn 0.65s ease backwards;
}
.process-hero-phase:nth-child(2) { animation-delay: 0.1s; }
.process-hero-phase:nth-child(3) { animation-delay: 0.22s; }
.process-hero-phase:nth-child(4) { animation-delay: 0.34s; }
@keyframes processHeroPhaseIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.process-hero-phase:hover {
  transform: translateY(-3px) translateX(4px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.18);
}
.process-hero-phase--blue:hover { border-color: #93c5fd; }
.process-hero-phase--build:hover { border-color: #94a3b8; }
.process-hero-phase--deploy:hover { border-color: #86efac; }
.process-hero-phase-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.2);
}
.process-hero-phase--blue .process-hero-phase-num { background: #2563eb; }
.process-hero-phase--build .process-hero-phase-num { background: #475569; }
.process-hero-phase--deploy .process-hero-phase-num { background: #16a34a; }
.process-hero-phase-body {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
.process-hero-phase-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-hero-phase-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.process-hero-phase--blue .process-hero-phase-icon {
  background: #eff6ff;
  color: #2563eb;
}
.process-hero-phase--build .process-hero-phase-icon {
  background: #f1f5f9;
  color: #475569;
}
.process-hero-phase--deploy .process-hero-phase-icon {
  background: #f0fdf4;
  color: #16a34a;
}
.process-hero-phase-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}
.process-hero-phase--blue .process-hero-phase-label { color: #2563eb; }
.process-hero-phase--build .process-hero-phase-label { color: #64748b; }
.process-hero-phase--deploy .process-hero-phase-label { color: #16a34a; }
.process-hero-phase-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.process-hero-phase-body p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}
.process-hero-phase-week {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .process-hero-pipeline-fill,
  .process-hero-phase {
    animation: none !important;
  }
  .process-hero-pipeline-fill {
    height: 100%;
  }
}

/* ── Process timeline (detail section) ── */
.process-phase {
  position: relative;
  scroll-margin-top: 6rem;
}
.process-phase + .process-phase {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .process-phase + .process-phase {
    margin-top: 3.5rem;
  }
}

.process-phase-marker {
  display: none;
}
@media (min-width: 1024px) {
  .process-phase-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -2.5rem;
    top: 2.25rem;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2563eb;
    box-shadow: 0 0 0 4px #fff;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .process-phase--build .process-phase-marker {
    border-color: #475569;
  }
  .process-phase--deploy .process-phase-marker {
    border-color: #16a34a;
  }
  .process-phase.is-active .process-phase-marker {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(37, 99, 235, 0.15);
  }
  .process-phase--build.is-active .process-phase-marker {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(71, 85, 105, 0.15);
  }
  .process-phase--deploy.is-active .process-phase-marker {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(22, 163, 74, 0.15);
  }
}

.process-phase-card {
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.process-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -12px rgba(37, 99, 235, 0.14);
  border-color: #cbd5e1;
}
.process-phase--blue .process-phase-card { border-top: 3px solid #2563eb; }
.process-phase--build .process-phase-card { border-top: 3px solid #475569; }
.process-phase--deploy .process-phase-card { border-top: 3px solid #16a34a; }

.process-phase-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 1024px) {
  .process-phase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-phase--build .process-phase-grid {
    direction: rtl;
  }
  .process-phase--build .process-phase-grid > * {
    direction: ltr;
  }
}

.process-step-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: #fff;
  transition: background 0.3s ease;
}
@media (min-width: 1024px) {
  .process-step-card {
    padding: 2.25rem 2rem;
  }
}
.process-phase-card:hover .process-step-card {
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
}

.process-step-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.625rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.process-phase--blue .process-step-num { color: #2563eb; border-color: #bfdbfe; background: #eff6ff; }
.process-phase--build .process-step-num { color: #475569; border-color: #cbd5e1; background: #f1f5f9; }
.process-phase--deploy .process-step-num { color: #16a34a; border-color: #bbf7d0; background: #f0fdf4; }

.process-duration {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.process-phase--blue .process-duration { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.process-phase--build .process-duration { background: rgba(71, 85, 105, 0.08); color: #475569; }
.process-phase--deploy .process-duration { background: rgba(22, 163, 74, 0.08); color: #16a34a; }

.process-step-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.process-phase--blue .process-step-label { color: #2563eb; }
.process-phase--build .process-step-label { color: #64748b; }
.process-phase--deploy .process-step-label { color: #16a34a; }

.process-deliverables {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.process-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}
.process-deliverables li::before {
  content: '';
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23EFF6FF'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.process-phase--build .process-deliverables li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23F1F5F9'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.process-phase--deploy .process-deliverables li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23F0FDF4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2316A34A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.process-diagram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 260px;
  border-top: 1px solid #f1f5f9;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .process-diagram {
    min-height: 100%;
    border-top: none;
    border-left: 1px solid #f1f5f9;
    padding: 2.5rem 2rem;
  }
}
.process-phase--blue .process-diagram {
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 55%, #fff 100%);
}
.process-phase--build .process-diagram {
  background: linear-gradient(160deg, #f1f5f9 0%, #f8fafc 55%, #fff 100%);
}
.process-phase--deploy .process-diagram {
  background: linear-gradient(160deg, #f0fdf4 0%, #f8fafc 55%, #fff 100%);
}
.process-diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  pointer-events: none;
}
.process-diagram svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 20rem;
  transition: transform 0.4s ease;
}
.process-phase-card:hover .process-diagram svg {
  transform: scale(1.03);
}

.process-phase-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.process-phase-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  text-decoration: none;
}
.process-phase-nav a:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}
.process-phase-nav a.is-active {
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.35);
}
.process-phase-nav a[data-phase="build"].is-active {
  background: #475569;
  border-color: #475569;
  box-shadow: 0 4px 12px -2px rgba(71, 85, 105, 0.35);
}
.process-phase-nav a[data-phase="deploy"].is-active {
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 4px 12px -2px rgba(22, 163, 74, 0.35);
}
.process-phase-nav-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.process-phase-nav a.is-active .process-phase-nav-dot {
  background: #fff;
  opacity: 1;
}

/* ── Portfolio page magic ── */
.portfolio-page {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.portfolio-page-glow {
  display: block;
  position: absolute;
  top: -5rem;
  right: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  filter: blur(80px);
  pointer-events: none;
}
.portfolio-page-head {
  opacity: 1;
  transform: none;
}
.portfolio-page-head .reveal {
  opacity: 1;
  transform: none;
}
.portfolio-page-showcase {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .portfolio-page-showcase {
    max-width: 420px;
    margin: 0;
  }
}
.portfolio-page-showcase .portfolio-hero-showcase-grid--quad {
  gap: 0.625rem;
}
.portfolio-page-showcase .portfolio-hero-frame-shot {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-page-showcase .portfolio-hero-frame-shot img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}
.portfolio-page-showcase .portfolio-hero-frame-label {
  display: none;
}
.portfolio-hero {
  position: relative;
  overflow: hidden;
}
.portfolio-hero-glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}
.portfolio-hero-glow--1 { top: -10%; right: 5%; background: rgba(37, 99, 235, 0.12); }
.portfolio-hero-glow--2 { bottom: -15%; left: -5%; background: rgba(147, 197, 253, 0.2); }

.portfolio-stat {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: 7rem;
}
.portfolio-stat:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.18);
}
.portfolio-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.portfolio-stat span {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 0.25rem;
}

.portfolio-url-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.portfolio-hero-layout {
  display: flex;
  flex-direction: column;
}
.portfolio-hero-copy {
  display: flex;
  flex-direction: column;
}
.portfolio-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.portfolio-hero-btn--primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.4);
}
.portfolio-hero-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.portfolio-hero-btn--ghost {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.portfolio-hero-btn--ghost:hover {
  border-color: #bfdbfe;
  color: #2563eb;
  background: #f8fafc;
}
.portfolio-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .portfolio-hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem 1.25rem;
  }
}
.portfolio-hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #475569;
  font-weight: 500;
}
.portfolio-hero-trust li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23EFF6FF'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.home-hero-trust {
  justify-content: flex-start;
}
.portfolio-url-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: portfolioUrlScroll 28s linear infinite;
}
.portfolio-url-track:hover { animation-play-state: paused; }
@keyframes portfolioUrlScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.portfolio-url-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.6875rem;
  font-family: ui-monospace, monospace;
  color: #64748b;
  white-space: nowrap;
}
.portfolio-url-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.page-banner-visual .page-banner-float {
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.8);
}
.page-banner-visual .page-banner-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Portfolio hero — dual project showcase */
.portfolio-hero-showcase {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .portfolio-hero-showcase {
    margin: 0;
    max-width: none;
  }
}
.portfolio-hero-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.portfolio-hero-showcase-grid--dual,
.portfolio-hero-showcase-grid--quad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .portfolio-hero-showcase-grid--dual,
  .portfolio-hero-showcase-grid--quad {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .portfolio-hero-showcase-grid--dual,
  .portfolio-hero-showcase-grid--quad {
    gap: 1.125rem;
  }
}
.home-hero-showcase {
  position: relative;
  max-width: 100%;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
}
.home-hero-showcase--duo {
  margin: 0;
  height: auto;
  justify-content: flex-start;
  width: 100%;
}
.home-hero-showcase--duo .home-hero-preview-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: 100%;
}
@media (min-width: 640px) {
  .home-hero-showcase--duo .home-hero-preview-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.home-hero-showcase--duo .home-hero-preview-shot {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
}
.home-hero-showcase--duo .portfolio-hero-frame--primary .home-hero-preview-shot {
  background: #1a1209;
}
.home-hero-showcase--duo .portfolio-hero-frame--secondary .home-hero-preview-shot {
  background: #f8fafc;
}
.home-hero-showcase--duo .home-hero-preview-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.home-hero-showcase--duo .portfolio-hero-frame-label {
  font-size: 0.6875rem;
  padding: 0.5625rem 0.75rem;
}
.home-hero-showcase--duo .home-hero-preview-frame {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 1024px) {
  .home-hero-showcase--duo .home-hero-preview-row {
    gap: 1.125rem;
    align-items: stretch;
  }
  .home-hero-showcase--duo .home-hero-preview-shot {
    aspect-ratio: 16 / 10;
    flex: 1;
    min-height: 0;
  }
  .home-hero-showcase--duo .portfolio-hero-frame-bar {
    padding: 0.6875rem 0.875rem;
  }
}
.home-hero-showcase::before {
  content: '';
  position: absolute;
  inset: -4% -3%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.home-hero-showcase--duo .portfolio-hero-frame-label::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  opacity: 1;
  transform: none;
  transition: none;
}
.home-hero-showcase--duo .portfolio-hero-frame:hover .portfolio-hero-frame-label::after {
  content: 'View live →';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 0.625rem;
  font-weight: 600;
  color: #2563eb;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1024px) {
  .home-hero-showcase {
    margin: 0;
  }
}
.home-hero-showcase-grid {
  gap: 1rem;
}
@media (min-width: 640px) {
  .home-hero-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .home-hero-tags {
    justify-content: flex-start;
  }
}
.home-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.home-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}
.portfolio-hero-frame {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.portfolio-hero-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -14px rgba(37, 99, 235, 0.22), 0 0 0 1px rgba(37, 99, 235, 0.12);
  border-color: #bfdbfe;
}
.portfolio-hero-showcase-grid--dual .portfolio-hero-frame--secondary,
.portfolio-hero-showcase-grid--quad .portfolio-hero-frame--secondary,
.portfolio-hero-showcase-grid--quad .portfolio-hero-frame--tertiary,
.portfolio-hero-showcase-grid--quad .portfolio-hero-frame--quaternary {
  margin-left: 0;
}
.portfolio-hero-showcase-grid--dual .portfolio-hero-frame-shot img,
.portfolio-hero-showcase-grid--quad .portfolio-hero-frame-shot img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 1024px) {
  .portfolio-hero-showcase-grid--dual .portfolio-hero-frame-shot img {
    max-height: 240px;
  }
  .portfolio-hero-showcase-grid--quad .portfolio-hero-frame-shot img {
    max-height: 170px;
  }
}
.portfolio-hero-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.875rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.portfolio-hero-frame-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.portfolio-hero-frame-dot--red { background: #ff5f57; }
.portfolio-hero-frame-dot--yellow { background: #febc2e; }
.portfolio-hero-frame-dot--green { background: #28c840; }
.portfolio-hero-frame-url {
  flex: 1;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: -0.01em;
}
.portfolio-hero-frame-shot {
  overflow: hidden;
  background: #f1f5f9;
  line-height: 0;
}
.portfolio-hero-frame-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}
.portfolio-hero-frame--primary .portfolio-hero-frame-shot {
  background: #1a1209;
}
.portfolio-hero-frame--secondary .portfolio-hero-frame-shot {
  background: #f8fafc;
}
.portfolio-hero-frame--tertiary .portfolio-hero-frame-shot {
  background: #4a1212;
}
.portfolio-hero-frame--quaternary .portfolio-hero-frame-shot {
  background: #f5f0eb;
}
.portfolio-hero-frame-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}
.portfolio-hero-frame-label::after {
  content: 'View live →';
  font-size: 0.625rem;
  font-weight: 600;
  color: #2563eb;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.portfolio-hero-frame:hover .portfolio-hero-frame-label::after {
  opacity: 1;
  transform: translateX(0);
}
.portfolio-hero-frame:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
}

.portfolio-grid-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 40%, #fff 100%);
}
.portfolio-section-head {
  position: relative;
}
.portfolio-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.375rem 0.375rem 0.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.08);
}
.portfolio-filter-wrap .eco-filter-btn {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0.4375rem 0.875rem;
}
.portfolio-filter-wrap .eco-filter-btn.active {
  background: #2563eb;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.35);
}
.portfolio-filter-wrap .eco-filter-btn:not(.active):hover {
  background: #f1f5f9;
  color: #2563eb;
  box-shadow: none;
}
.portfolio-filter-count {
  font-size: 0.625rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.3125rem 0.75rem;
  margin-left: 0.125rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.portfolio-hover-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2563eb;
  vertical-align: middle;
}
.portfolio-hover-hint svg {
  animation: portfolioScrollBounce 1.8s ease-in-out infinite;
}
@keyframes portfolioScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.eco-deploy-grid {
  gap: 1.75rem;
}

.eco-preview-frame {
  position: relative;
  flex-shrink: 0;
}
.eco-preview-frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5rem;
  background: linear-gradient(to top, rgba(241, 245, 249, 0.95) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.eco-deploy-card:hover .eco-preview-frame::after {
  opacity: 0.4;
}

.eco-scroll-hint {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: opacity 0.25s ease;
}
.eco-deploy-card:hover .eco-scroll-hint {
  opacity: 0;
}

.eco-visit-badge {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #2563eb;
  border: none;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.eco-deploy-card:hover .eco-visit-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.eco-cat-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eco-cat-badge--logistics {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.eco-cat-badge--commerce {
  background: rgba(139, 92, 246, 0.08);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.eco-cat-badge--wellness {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.eco-card-tags {
  margin-top: auto;
  padding-top: 0.625rem;
  border-top: 1px dashed #e2e8f0;
}
.eco-tech-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.625rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.eco-deploy-card:hover .eco-tech-tag {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

.eco-deploy-card[data-category="logistics"] {
  --eco-accent: #2563eb;
}
.eco-deploy-card[data-category="commerce"] {
  --eco-accent: #7c3aed;
}
.eco-deploy-card[data-category="wellness"] {
  --eco-accent: #059669;
}
.eco-deploy-card:hover {
  border-color: color-mix(in srgb, var(--eco-accent, #2563eb) 35%, #e2e8f0);
}

.eco-tag {
  padding: 0.2rem 0.5625rem;
  font-size: 0.5625rem;
}

.eco-deploy-card.is-filtered-out {
  display: none;
}

.eco-tag .live-dot {
  animation: livePulse 2s ease-in-out infinite;
}

.eco-deploy-card:nth-child(1) { transition-delay: 0.02s; }
.eco-deploy-card:nth-child(2) { transition-delay: 0.04s; }
.eco-deploy-card:nth-child(3) { transition-delay: 0.06s; }
.eco-deploy-card:nth-child(4) { transition-delay: 0.08s; }
.eco-deploy-card:nth-child(5) { transition-delay: 0.1s; }
.eco-deploy-card:nth-child(6) { transition-delay: 0.12s; }
.eco-deploy-card:nth-child(7) { transition-delay: 0.14s; }
.eco-deploy-card:nth-child(8) { transition-delay: 0.16s; }

.portfolio-clients {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.portfolio-clients-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.portfolio-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.portfolio-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0f172a 100%);
}
.portfolio-cta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}
.portfolio-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.portfolio-cta-orb--1 { width: 24rem; height: 24rem; top: -20%; right: -5%; background: rgba(37, 99, 235, 0.35); }
.portfolio-cta-orb--2 { width: 18rem; height: 18rem; bottom: -15%; left: -5%; background: rgba(96, 165, 250, 0.2); }
.portfolio-cta-inner {
  position: relative;
  z-index: 2;
}
.portfolio-cta-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.portfolio-cta-frames {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .portfolio-cta-frames {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio-cta-frames {
    gap: 1rem;
  }
}
.portfolio-cta-frame {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-cta-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.35);
}
.portfolio-cta-frame-bar {
  padding: 0.375rem 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.portfolio-cta-frame-url {
  font-family: ui-monospace, monospace;
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.85);
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-cta-frame-shot {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.portfolio-cta-frame-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
@media (max-width: 639px) {
  .portfolio-cta-frame--hide-sm {
    display: none;
  }
}
.portfolio-cta-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
  animation: portfolioThumbFloat 4s ease-in-out infinite;
}
.portfolio-cta-thumb:nth-child(2) { animation-delay: -0.5s; }
.portfolio-cta-thumb:nth-child(3) { animation-delay: -1s; }
.portfolio-cta-thumb:nth-child(4) { animation-delay: -1.5s; }
.portfolio-cta-thumb:nth-child(5) { animation-delay: -2s; }
.portfolio-cta-thumb:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: rgba(96, 165, 250, 0.6);
}
.portfolio-cta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@keyframes portfolioThumbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.portfolio-cta h2 {
  color: #fff;
}
.portfolio-cta p {
  color: rgba(226, 232, 240, 0.85);
}
.portfolio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px -4px rgba(37, 99, 235, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.portfolio-cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -6px rgba(37, 99, 235, 0.65);
}
.portfolio-cta-btn svg {
  transition: transform 0.25s ease;
}
.portfolio-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Who We Are — integration hub visual */
.who-hub {
  position: relative;
  min-height: 22rem;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #f8fafc 0%, #eff6ff 55%, #f8fafc 100%);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.who-hub__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.who-hub__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 100%);
}
.who-hub__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}
.who-hub__orb--1 {
  width: 12rem;
  height: 12rem;
  top: -2rem;
  right: -2rem;
  background: rgba(37, 99, 235, 0.18);
  animation: whoHubOrb 8s ease-in-out infinite;
}
.who-hub__orb--2 {
  width: 10rem;
  height: 10rem;
  bottom: -1rem;
  left: -1rem;
  background: rgba(167, 139, 250, 0.14);
  animation: whoHubOrb 10s ease-in-out infinite reverse;
}
@keyframes whoHubOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, 6px) scale(1.06); }
}
.who-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.who-hub__line {
  stroke: #93c5fd;
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  animation: whoHubDash 1.4s linear infinite;
}
.who-hub__pulse {
  fill: none;
  stroke: rgba(37, 99, 235, 0.25);
  stroke-width: 1;
  transform-origin: center;
  animation: whoHubPulse 3s ease-out infinite;
}
.who-hub__pulse--2 { animation-delay: 1.5s; }
@keyframes whoHubDash {
  to { stroke-dashoffset: -28; }
}
@keyframes whoHubPulse {
  0% { r: 52; opacity: 0.6; }
  100% { r: 88; opacity: 0; }
}
.who-hub__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.who-hub__center-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5rem;
  height: 5.5rem;
  margin: -2.75rem 0 0 -2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.2);
  animation: whoHubSpin 18s linear infinite;
}
.who-hub__center-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}
@keyframes whoHubSpin {
  to { transform: rotate(360deg); }
}
.who-hub__center-core {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-hub__center-label {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.who-hub__center-sub {
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 0.125rem;
}
.who-hub__node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(8px);
  max-width: 11.5rem;
  animation: whoHubFloat 6s ease-in-out infinite;
}
.who-hub__node--tl { top: 1.25rem; left: 1rem; animation-delay: 0s; }
.who-hub__node--tr { top: 1.25rem; right: 1rem; animation-delay: -1.5s; }
.who-hub__node--bl { bottom: 4.5rem; left: 1rem; animation-delay: -3s; }
.who-hub__node--br { bottom: 4.5rem; right: 1rem; animation-delay: -4.5s; }
@keyframes whoHubFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.who-hub__node-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-hub__node-icon--blue { background: #eff6ff; color: #2563eb; }
.who-hub__node-icon--violet { background: #f5f3ff; color: #7c3aed; }
.who-hub__node-icon--amber { background: #fffbeb; color: #d97706; }
.who-hub__node-icon--emerald { background: #ecfdf5; color: #059669; }
.who-hub__node-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.who-hub__node-desc {
  font-size: 0.625rem;
  color: #64748b;
  margin-top: 0.125rem;
  line-height: 1.3;
}
.who-hub__feed {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
  overflow: hidden;
  min-height: 2.5rem;
}
.who-hub__feed-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: livePulse 2s ease-in-out infinite;
}
.who-hub__feed-track {
  position: relative;
  flex: 1;
  height: 1rem;
  overflow: hidden;
}
.who-hub__feed-item {
  position: absolute;
  inset: 0;
  font-size: 0.6875rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #475569;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  animation: whoHubFeed 12s ease-in-out infinite;
}
.who-hub__feed-item--1 { animation-delay: 0s; }
.who-hub__feed-item--2 { animation-delay: 3s; }
.who-hub__feed-item--3 { animation-delay: 6s; }
.who-hub__feed-item--4 { animation-delay: 9s; }
@keyframes whoHubFeed {
  0%, 20% { opacity: 0; transform: translateY(6px); }
  5%, 15% { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .who-hub { min-height: 20rem; }
  .who-hub__node { max-width: 9.5rem; padding: 0.5rem 0.625rem; }
  .who-hub__node-title { font-size: 0.6875rem; }
  .who-hub__node-desc { display: none; }
  .who-hub__node--bl,
  .who-hub__node--br { bottom: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-url-track,
  .portfolio-cta-thumb,
  .live-dot,
  .portfolio-hover-hint svg,
  .who-hub__orb,
  .who-hub__line,
  .who-hub__pulse,
  .who-hub__center-ring,
  .who-hub__node,
  .who-hub__feed-item,
  .who-hub__feed-dot { animation: none !important; }
  .who-hub__feed-item--1 { opacity: 1; position: static; transform: none; }
  .who-hub__feed-item:not(.who-hub__feed-item--1) { display: none; }
}
