/* =========================
   HERO
========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(92, 244, 236, 0.12);
  background: #020607;
}

.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlideshow 24s infinite;
}

.slide-one {
  animation-delay: 0s;
}

.slide-two {
  animation-delay: 6s;
}

.slide-three {
  animation-delay: 12s;
}

.slide-four {
  animation-delay: 18s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 7, 8, 0.94) 0%, rgba(2, 7, 8, 0.82) 34%, rgba(2, 7, 8, 0.52) 68%, rgba(2, 7, 8, 0.72) 100%),
    radial-gradient(circle at 72% 35%, rgba(92, 244, 236, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(2, 7, 8, 0.54), rgba(2, 7, 8, 0.9));
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.030) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 8, 0.98));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: none;
}

.hero-content h1 {
  width: min(76vw, 980px);
  max-width: 980px;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin-top: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(92, 244, 236, 0.28);
}

.hero-lead {
  max-width: 690px;
  margin-top: 1.45rem;
  color: rgba(245, 255, 255, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  7% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1);
  }

  32% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0 5rem;
  }

  .hero-content h1 {
    width: min(92vw, 850px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 7, 8, 0.88) 0%, rgba(2, 7, 8, 0.72) 34%, rgba(2, 7, 8, 0.42) 68%, rgba(2, 7, 8, 0.62) 100%),
      radial-gradient(circle at 70% 30%, rgba(92, 244, 236, 0.14), transparent 42%),
      linear-gradient(180deg, rgba(2, 7, 8, 0.48), rgba(2, 7, 8, 0.94));
  }
}

@media (max-width: 620px) {
  .hero-section {
    min-height: calc(100vh - 74px);
    padding: 5.4rem 0 4.4rem;
  }

  .hero-slide {
    background-image: var(--hero-bg-mobile);
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 7, 8, 0.95), rgba(2, 7, 8, 0.82)),
      radial-gradient(circle at 50% 18%, rgba(92, 244, 236, 0.15), transparent 46%),
      linear-gradient(180deg, rgba(2, 7, 8, 0.42), rgba(2, 7, 8, 0.96));
  }

  .hero-content h1 {
    width: 100%;
  }

  .hero-lead {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

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

  .hero-visual {
    min-height: auto;
  }

  .dashboard-card {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .hero-section {
    padding-top: 4.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .dashboard-card {
    min-height: auto;
  }

  .dash-metrics {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .system-flow {
    grid-template-columns: 1fr 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 0.8rem;
  }
}

/* =========================
   SERVICES OVERVIEW
========================= */

.services-overview {
  position: relative;
  overflow: hidden;
}

.services-overview::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -12%;
  width: min(620px, 85vw);
  height: min(620px, 85vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 158, 150, 0.14), transparent 68%);
  pointer-events: none;
}

.services-overview-head {
  position: relative;
  max-width: 880px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.services-overview-head h2 {
  max-width: 860px;
}

.services-overview-head > p {
  max-width: 720px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.35rem);
  border: 1px solid rgba(92, 244, 236, 0.15);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 244, 236, 0.09), transparent 34%),
    rgba(8, 22, 25, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(92, 244, 236, 0.085) 45%, transparent 70%);
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 650ms ease, opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 244, 236, 0.34);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(92, 244, 236, 0.09);
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 244, 236, 0.13), transparent 38%),
    rgba(8, 22, 25, 0.84);
}

.service-card:hover::before {
  transform: translateX(130%);
  opacity: 1;
}

.featured-service {
  grid-column: span 2;
  background:
    radial-gradient(circle at 25% 0%, rgba(92, 244, 236, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(92, 244, 236, 0.075), transparent 42%),
    rgba(8, 22, 25, 0.82);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 16px;
  background: rgba(92, 244, 236, 0.055);
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(92, 244, 236, 0.08);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.service-card > div,
.service-card > p {
  position: relative;
  z-index: 1;
}

.service-kicker {
  margin-bottom: 0.35rem;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  letter-spacing: -0.04em;
}

.service-card p:last-child {
  font-size: 0.95rem;
}

.services-overview-cta {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-service {
    grid-column: span 1;
  }
}

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

  .service-card {
    min-height: auto;
  }

  .services-overview-cta {
    display: grid;
  }
}
/* =========================
   VISUAL CONTENT / CREATIVE
========================= */

.creative-section {
  position: relative;
  overflow: hidden;
}

.creative-section::before {
  content: "";
  position: absolute;
  inset: 12% -18% auto auto;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.11), transparent 68%);
  pointer-events: none;
}

.creative-section::after {
  content: "";
  position: absolute;
  inset: auto auto 10% -20%;
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 158, 150, 0.12), transparent 68%);
  pointer-events: none;
}

.creative-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.creative-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.creative-frame {
  position: relative;
  width: min(100%, 620px);
  min-height: 470px;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(92, 244, 236, 0.08), transparent 34%),
    rgba(8, 22, 25, 0.78);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    0 0 38px rgba(92, 244, 236, 0.12);
  overflow: hidden;
}

.creative-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  pointer-events: none;
}

.creative-toolbar {
  position: relative;
  z-index: 1;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(92, 244, 236, 0.14);
  background: rgba(1, 8, 10, 0.66);
}

.creative-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.52);
  box-shadow: 0 0 16px rgba(92, 244, 236, 0.36);
}

.creative-canvas {
  position: relative;
  z-index: 1;
  min-height: 416px;
  display: grid;
  place-items: center;
}

.canvas-glow {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.18), transparent 64%);
  filter: blur(8px);
}

.canvas-card {
  position: absolute;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(92, 244, 236, 0.15), transparent 48%),
    rgba(2, 10, 12, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.card-top {
  width: 58%;
  height: 145px;
  top: 16%;
  left: 12%;
  transform: rotate(-3deg);
}

.card-middle {
  width: 62%;
  height: 170px;
  top: 34%;
  right: 9%;
  background:
    radial-gradient(circle at 70% 30%, rgba(92, 244, 236, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(92, 244, 236, 0.12), transparent 52%),
    rgba(2, 10, 12, 0.9);
}

.card-bottom {
  width: 46%;
  height: 120px;
  bottom: 14%;
  left: 18%;
  transform: rotate(4deg);
}

.creative-float {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  display: grid;
  gap: 0.1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 18px;
  background: rgba(5, 17, 19, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.creative-float span {
  color: var(--muted);
  font-size: 0.78rem;
}

.creative-float strong {
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1;
}

.float-one {
  top: 12%;
  left: 1%;
}

.float-two {
  right: 2%;
  bottom: 18%;
}

.float-three {
  left: 6%;
  bottom: 10%;
}

.creative-copy h2 {
  max-width: 680px;
}

.creative-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.creative-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.creative-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(92, 244, 236, 0.13);
  border-radius: 22px;
  background: rgba(8, 22, 25, 0.58);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.creative-list article:hover {
  transform: translateX(4px);
  border-color: rgba(92, 244, 236, 0.28);
  background: rgba(8, 22, 25, 0.78);
}

.creative-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 14px;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(92, 244, 236, 0.055);
}

.creative-list h3 {
  margin-bottom: 0.35rem;
  letter-spacing: -0.035em;
}

.creative-list p {
  font-size: 0.95rem;
}

.creative-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

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

}

@media (max-width: 620px) {
  .creative-grid {
    gap: 2rem;
  }

  .creative-list article {
    grid-template-columns: 1fr;
  }

  .creative-actions {
    display: grid;
  }
}
/* =========================
   APP / MVP CTA
========================= */

.mvp-section {
  position: relative;
  overflow: hidden;
}

.mvp-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(760px, 95vw);
  height: min(760px, 95vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.1), transparent 68%);
  pointer-events: none;
}

.mvp-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(92, 244, 236, 0.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(92, 244, 236, 0.075), transparent 36%),
    rgba(8, 22, 25, 0.72);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(92, 244, 236, 0.08);
  overflow: hidden;
}

.mvp-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 68% 50%, black, transparent 78%);
  pointer-events: none;
}

.mvp-copy {
  position: relative;
  z-index: 2;
  padding: clamp(0.5rem, 2vw, 1.25rem);
}

.mvp-copy h2 {
  max-width: 680px;
}

.mvp-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.mvp-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.mvp-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(92, 244, 236, 0.13);
  border-radius: 22px;
  background: rgba(2, 10, 12, 0.5);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mvp-points article:hover {
  transform: translateX(4px);
  border-color: rgba(92, 244, 236, 0.28);
  background: rgba(2, 10, 12, 0.72);
}

.mvp-points article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 14px;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(92, 244, 236, 0.055);
}

.mvp-points h3 {
  margin-bottom: 0.35rem;
  letter-spacing: -0.035em;
}

.mvp-points p {
  font-size: 0.95rem;
}

.mvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .mvp-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .mvp-shell {
    padding: 1.1rem;
    border-radius: 28px;
  }

  .mvp-points article {
    grid-template-columns: 1fr;
  }

  .mvp-actions {
    display: grid;
  }
}
/* =========================
   PROCESS SECTION
========================= */

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 6% auto auto 50%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.08), transparent 70%);
  pointer-events: none;
}

.process-head {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.process-head h2 {
  max-width: 780px;
}

.process-head > p {
  max-width: 720px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}

.process-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.4rem);
  border: 1px solid rgba(92, 244, 236, 0.15);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(92, 244, 236, 0.055), transparent 42%),
    rgba(8, 22, 25, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(92, 244, 236, 0.08) 45%, transparent 70%);
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 650ms ease, opacity 220ms ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 244, 236, 0.34);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(92, 244, 236, 0.09);
  background:
    linear-gradient(135deg, rgba(92, 244, 236, 0.075), transparent 42%),
    rgba(8, 22, 25, 0.84);
}

.process-card:hover::before {
  transform: translateX(130%);
  opacity: 1;
}

.process-card-wide {
  grid-column: span 4;
  min-height: auto;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 1.2rem;
}

.process-step {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 16px;
  background: rgba(92, 244, 236, 0.055);
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 0 22px rgba(92, 244, 236, 0.08);
}

.process-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(92, 244, 236, 0.5), transparent);
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  letter-spacing: -0.04em;
}

.process-card p {
  font-size: 0.95rem;
}

.process-card-wide .process-line {
  display: none;
}

.process-card-wide h3 {
  align-self: center;
}

.process-card-wide p {
  grid-column: 2;
  max-width: 820px;
}

.process-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 1080px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card-wide {
    grid-column: span 2;
  }
}

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

  .process-card,
  .process-card-wide {
    min-height: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .process-card-wide p {
    grid-column: auto;
  }

  .process-card-wide .process-line {
    display: block;
  }

  .process-cta {
    display: grid;
  }
}
/* =========================
   FINAL CTA SECTION
========================= */

.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(760px, 95vw);
  height: min(760px, 95vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.13), transparent 68%);
  pointer-events: none;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 244, 236, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(92, 244, 236, 0.08), transparent 42%),
    rgba(8, 22, 25, 0.8);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(92, 244, 236, 0.1);
  overflow: hidden;
}

.final-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 72% 50%, black, transparent 78%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  padding: clamp(0.4rem, 2vw, 1rem);
}

.final-cta-content h2 {
  max-width: 820px;
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}


@media (max-width: 980px) {
  .final-cta-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .final-cta-shell {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .final-cta-actions {
    display: grid;
  }
}
/* =========================
   WORK CTA SECTION
========================= */

.work-cta-section {
  position: relative;
  overflow: hidden;
}

.work-cta-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(720px, 92vw);
  height: min(720px, 92vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.105), transparent 68%);
  pointer-events: none;
}

.work-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.35rem, 4vw, 2.3rem);
  border: 1px solid rgba(92, 244, 236, 0.18);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    linear-gradient(180deg, rgba(31, 42, 51, 0.84), rgba(12, 18, 23, 0.94));
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.work-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 78% 50%, black, transparent 72%);
  pointer-events: none;
}

.work-cta-copy {
  position: relative;
  z-index: 2;
}

.work-cta-copy h2 {
  max-width: 760px;
}

.work-cta-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 1.25rem;
  color: rgba(220, 232, 234, 0.76);
  font-size: clamp(1rem, 1.55vw, 1.1rem);
}

.work-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .work-cta-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .work-cta-shell {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .work-cta-actions {
    display: grid;
  }
}
/* =========================================================
   DVS TECH — HOME CLEANUP / CONSISTENCY PASS
   Fixes section brightness, eyebrow conflicts, and top layout tone
========================================================= */

/* Force all homepage eyebrows to use one consistent logo-style system.
   This must live in home.css because home.css loads after global.css. */
.hero-section .eyebrow,
.purpose-section .eyebrow,
.services-overview .eyebrow,
.process-section .eyebrow,
.final-cta-section .eyebrow,
.creative-section .eyebrow,
.mvp-section .eyebrow,
.work-cta-section .eyebrow {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0;
  margin: 0 0 1.35rem;
  padding: 0 0 0.62rem;
  color: rgba(245, 255, 255, 0.68);
  font-family: var(--font-accent);
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.48em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-section .eyebrow::after,
.purpose-section .eyebrow::after,
.services-overview .eyebrow::after,
.process-section .eyebrow::after,
.final-cta-section .eyebrow::after,
.creative-section .eyebrow::after,
.mvp-section .eyebrow::after,
.work-cta-section .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 310px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.78),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.34),
    0 0 34px rgba(92, 244, 236, 0.1);
}

/* Make sure paragraph rules never style the eyebrow */
.services-overview-head > p:not(.eyebrow),
.process-head > p:not(.eyebrow),
.final-cta-content > p:not(.eyebrow),
.creative-copy > p:not(.eyebrow),
.mvp-copy > p:not(.eyebrow),
.work-cta-copy > p:not(.eyebrow),
.purpose-copy p:not(.eyebrow) {
  color: rgba(220, 232, 234, 0.72);
}


/* What We Build section — darken and remove the light wash */
.services-overview {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 244, 236, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(9, 13, 17, 0.99), rgba(10, 14, 18, 0.98));
}

.services-overview::before {
  opacity: 0.42;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.055), transparent 70%) !important;
}

.services-overview-head {
  position: relative;
  z-index: 2;
}

.services-overview-head h2 {
  color: rgba(245, 255, 255, 0.96);
}

.services-overview-head > p:not(.eyebrow) {
  color: rgba(220, 232, 234, 0.7);
}

/* Services cards — less bright, more gunmetal */
.service-card,
.featured-service {
  border-color: rgba(92, 244, 236, 0.13) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.026), transparent 38%),
    linear-gradient(180deg, rgba(23, 31, 38, 0.66), rgba(8, 12, 15, 0.94)) !important;
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.33),
    inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.service-card:hover,
.featured-service:hover {
  border-color: rgba(92, 244, 236, 0.34) !important;
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(92, 244, 236, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
}

.service-card::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(92, 244, 236, 0.06) 45%, transparent 72%);
}

.service-icon {
  background: rgba(92, 244, 236, 0.045);
  border-color: rgba(92, 244, 236, 0.18);
}

.service-kicker {
  color: var(--cyan);
}

/* Keep section dividers subtle */
.value-section::after,
.services-overview::after,
.mvp-section::after,
.process-section::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.12),
    rgba(255, 255, 255, 0.045),
    rgba(92, 244, 236, 0.12),
    transparent
  );
}

/* Mobile consistency */
@media (max-width: 620px) {
  .hero-section .eyebrow,
  .value-section .eyebrow,
  .services-overview .eyebrow,
  .process-section .eyebrow,
  .final-cta-section .eyebrow,
  .creative-section .eyebrow,
  .mvp-section .eyebrow,
  .work-cta-section .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.32em;
    line-height: 1.35;
  }

  .service-strip {
    padding-bottom: 1rem;
  }

  .strip-inner span {
    min-height: 50px;
    font-size: 0.82rem;
  }
}
/* =========================================================
   BUILT WITH PURPOSE — REDESIGN
   Sharp / modern / electric cyan
========================================================= */

.purpose-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(92, 244, 236, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.98), rgba(10, 13, 16, 0.99));
}

.purpose-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(760px, 92vw);
  height: min(760px, 92vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 244, 236, 0.09), transparent 68%);
  pointer-events: none;
}

.purpose-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.purpose-copy h2 {
  max-width: 700px;
}

.purpose-lead {
  max-width: 640px;
  margin-top: 1.2rem;
  color: rgba(220, 232, 234, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
}

.purpose-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.purpose-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(92, 244, 236, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent 36%),
    linear-gradient(180deg, rgba(21, 28, 35, 0.66), rgba(7, 10, 13, 0.92));
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.purpose-point span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 14px;
  background: rgba(92, 244, 236, 0.055);
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.08);
}

.purpose-point h3 {
  margin-bottom: 0.3rem;
}

.purpose-point p {
  color: rgba(220, 232, 234, 0.66);
  font-size: 0.95rem;
}

.purpose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

/* Visual side */

.purpose-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.purpose-browser {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 42%),
    linear-gradient(180deg, rgba(23, 31, 39, 0.86), rgba(8, 11, 14, 0.96));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(92, 244, 236, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.purpose-browser::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
  pointer-events: none;
}

.purpose-browser-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 48px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(92, 244, 236, 0.12);
}

.purpose-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.55);
}

.purpose-browser-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  padding: 1rem;
}

.purpose-browser-main,
.purpose-browser-side {
  position: relative;
  z-index: 1;
}

.purpose-browser-main {
  padding: 1rem;
  border: 1px solid rgba(92, 244, 236, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(92, 244, 236, 0.06), transparent 26%),
    rgba(7, 10, 13, 0.72);
}

.purpose-kicker {
  width: 110px;
  height: 10px;
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.55);
  margin-bottom: 1rem;
}

.purpose-title-line,
.purpose-copy-line {
  border-radius: 999px;
}

.purpose-title-line {
  height: 18px;
  background: rgba(245, 255, 255, 0.9);
  margin-bottom: 0.7rem;
}

.purpose-title-line.short {
  width: 72%;
}

.purpose-copy-line {
  height: 10px;
  background: rgba(220, 232, 234, 0.22);
  margin-top: 0.6rem;
}

.purpose-copy-line.mid {
  width: 84%;
}

.purpose-copy-line.short {
  width: 60%;
}

.purpose-button-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.purpose-button-row span {
  display: block;
  height: 38px;
  border-radius: 999px;
}

.purpose-button-row .btn-fill {
  width: 138px;
  background: linear-gradient(90deg, var(--cyan), #9afcf7);
  box-shadow: 0 0 26px rgba(92, 244, 236, 0.22);
}

.purpose-button-row .btn-ghost {
  width: 112px;
  border: 1px solid rgba(92, 244, 236, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.purpose-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.purpose-preview-grid div {
  min-height: 92px;
  border: 1px solid rgba(92, 244, 236, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(92, 244, 236, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.02);
}

.purpose-browser-side {
  display: grid;
  gap: 0.75rem;
}

.purpose-side-card {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(92, 244, 236, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 40%),
    rgba(9, 13, 16, 0.8);
}

.purpose-side-card strong {
  color: rgba(245, 255, 255, 0.9);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purpose-side-card span {
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 700;
}

/* Floating chips */

.purpose-float {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(92, 244, 236, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 38%),
    rgba(8, 12, 15, 0.82);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(92, 244, 236, 0.08);
  backdrop-filter: blur(10px);
}

.purpose-float span {
  color: rgba(220, 232, 234, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purpose-float strong {
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-a {
  top: 5%;
  left: 0;
}

.float-b {
  top: 18%;
  right: -2%;
}

.float-c {
  bottom: 8%;
  left: 6%;
}

/* Cyan circuit lines */

.purpose-circuit {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.circuit-a {
  top: 14%;
  left: 4%;
  width: 120px;
  height: 120px;
  border-top: 2px solid rgba(92, 244, 236, 0.28);
  border-left: 2px solid rgba(92, 244, 236, 0.28);
}

.circuit-b {
  right: 6%;
  bottom: 20%;
  width: 160px;
  height: 90px;
  border-right: 2px solid rgba(92, 244, 236, 0.22);
  border-bottom: 2px solid rgba(92, 244, 236, 0.22);
}

.circuit-c {
  left: 22%;
  bottom: 4%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 244, 236, 0), rgba(92, 244, 236, 0.7), rgba(92, 244, 236, 0));
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.16);
}

/* Responsive */

@media (max-width: 1080px) {
  .purpose-shell {
    grid-template-columns: 1fr;
  }

  .purpose-copy {
    max-width: 760px;
  }

  .purpose-visual {
    min-height: auto;
  }

  .float-a {
    top: 3%;
    left: 2%;
  }

  .float-b {
    top: 8%;
    right: 0;
  }

  .float-c {
    bottom: 4%;
    left: 4%;
  }
}

@media (max-width: 720px) {
  .purpose-browser-body {
    grid-template-columns: 1fr;
  }

  .purpose-browser-side {
    grid-template-columns: repeat(3, 1fr);
  }

  .purpose-float {
    position: relative;
  }

  .purpose-visual {
    gap: 0.8rem;
  }

  .float-a,
  .float-b,
  .float-c {
    inset: auto;
  }

  .purpose-circuit {
    display: none;
  }
}

@media (max-width: 620px) {
  .purpose-points,
  .purpose-actions {
    display: grid;
  }

  .purpose-point {
    grid-template-columns: 1fr;
  }

  .purpose-point span {
    width: 40px;
    height: 40px;
  }

  .purpose-browser {
    width: 100%;
  }

  .purpose-preview-grid {
    grid-template-columns: 1fr;
  }

  .purpose-browser-side {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DVS TECH — QUICK STRIP FINAL SHIMMER
   CTA-style light flash / clean top line / no circuitry
========================================================= */

.service-strip {
  position: relative;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(92, 244, 236, 0.035), transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(92, 244, 236, 0.035), transparent 28%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.98), rgba(7, 10, 12, 0.98));
}

/* One clean glowing line above */
.service-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.78),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.32),
    0 0 34px rgba(92, 244, 236, 0.08);
  pointer-events: none;
}

/* CTA-style light flash across whole bar */
.service-strip::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -45%;
  z-index: 2;
  width: 24%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(92, 244, 236, 0.06) 24%,
    rgba(92, 244, 236, 0.22) 42%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(92, 244, 236, 0.18) 58%,
    transparent 100%
  );
  filter: blur(0.2px);
  transform: skewX(-18deg) translateX(-160%);
  animation: dvsStripCtaFlash 4.8s ease-in-out infinite;
}

.strip-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 48%);
  box-shadow: none;
  overflow: hidden;
}

/* No old inner pseudo layers */
.strip-inner::before,
.strip-inner::after,
.strip-inner span::before {
  content: none !important;
  display: none !important;
}

.strip-inner span {
  position: relative;
  z-index: 4;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  border: 0;
  border-right: 1px solid rgba(92, 244, 236, 0.1);
  border-radius: 0;
  background: transparent;
  color: rgba(245, 255, 255, 0.68);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.strip-inner span:last-child {
  border-right: 0;
}

/* Keep the hover/tick glow you liked */
.strip-inner span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 30px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.88),
    transparent
  );
  box-shadow: 0 0 12px rgba(92, 244, 236, 0.26);
  opacity: 0.72;
  transition:
    width 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.strip-inner span:hover {
  color: var(--cyan);
  text-shadow:
    0 0 16px rgba(92, 244, 236, 0.28),
    0 0 26px rgba(92, 244, 236, 0.1);
  background: rgba(92, 244, 236, 0.025);
  transform: translateY(-1px);
}

.strip-inner span:hover::after {
  width: 48px;
  opacity: 1;
  box-shadow: 0 0 16px rgba(92, 244, 236, 0.38);
}

@keyframes dvsStripCtaFlash {
  0% {
    transform: skewX(-18deg) translateX(-160%);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  42% {
    transform: skewX(-18deg) translateX(650%);
    opacity: 0.95;
  }

  100% {
    transform: skewX(-18deg) translateX(650%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .strip-inner span {
    min-height: 66px;
  }

  .strip-inner span:nth-child(3),
  .strip-inner span:nth-child(6) {
    border-right: 0;
  }
}

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

  .strip-inner span {
    min-height: 58px;
    padding: 0.9rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .strip-inner span:nth-child(3) {
    border-right: 1px solid rgba(92, 244, 236, 0.1);
  }

  .strip-inner span:nth-child(even) {
    border-right: 0;
  }

  .strip-inner span::after {
    width: 24px;
    bottom: 10px;
  }

  .strip-inner span:hover::after {
    width: 38px;
  }
}
/* =========================================================
   BUILT WITH PURPOSE — ICON BADGES
   Replaces number tiles with benefit-focused icons
========================================================= */

.purpose-points-icons .purpose-point {
  grid-template-columns: auto 1fr;
}

.purpose-icon-badge {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(92, 244, 236, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(92, 244, 236, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(25, 36, 44, 0.84), rgba(8, 12, 15, 0.96));
  box-shadow:
    0 0 0 1px rgba(92, 244, 236, 0.055),
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.purpose-icon-badge::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(92, 244, 236, 0.09);
  border-radius: 13px;
  pointer-events: none;
}

.purpose-icon-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 34px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.8),
    transparent
  );
  box-shadow: 0 0 14px rgba(92, 244, 236, 0.34);
  pointer-events: none;
}

.purpose-icon-badge svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(92, 244, 236, 0.24));
}

.purpose-point:hover .purpose-icon-badge {
  border-color: rgba(92, 244, 236, 0.52);
  box-shadow:
    0 0 0 1px rgba(92, 244, 236, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(92, 244, 236, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 620px) {
  .purpose-points-icons .purpose-point {
    grid-template-columns: 1fr;
  }

  .purpose-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .purpose-icon-badge svg {
    width: 30px;
    height: 30px;
  }
}
/* =========================================================
   HOMEPAGE — FINAL BLACK BACKGROUND RESET
   Forces all homepage sections back to black with subtle cyan glow
========================================================= */

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 244, 236, 0.035), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(92, 244, 236, 0.025), transparent 30%),
    linear-gradient(180deg, #020607 0%, #030708 45%, #010304 100%) !important;
}

body::before {
  opacity: 0.12 !important;
}

body::after {
  background:
    radial-gradient(circle at 80% 8%, rgba(92, 244, 236, 0.035), transparent 30%),
    radial-gradient(circle at 16% 62%, rgba(92, 244, 236, 0.02), transparent 28%) !important;
}

/* Force every homepage section under hero to stop adding green/gunmetal backgrounds */
.service-strip,
.purpose-section,
.services-overview,
.process-section,
.final-cta-section,
.creative-section,
.mvp-section,
.work-cta-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 244, 236, 0.025), transparent 32%),
    linear-gradient(180deg, rgba(2, 6, 7, 0.98), rgba(1, 3, 4, 0.99)) !important;
}

/* Tone down section glow blobs so they don't turn green */
.service-strip::before,
.purpose-section::before,
.services-overview::before,
.process-section::before,
.final-cta-section::before,
.creative-section::before,
.creative-section::after,
.mvp-section::before,
.work-cta-section::before {
  background: radial-gradient(circle, rgba(92, 244, 236, 0.035), transparent 70%) !important;
  opacity: 0.35 !important;
}

/* Keep section dividers very subtle */
.value-section::after,
.services-overview::after,
.mvp-section::after,
.process-section::after {
  opacity: 0.28 !important;
}
/* =========================================================
   HOMEPAGE HERO — TEMP CLEAN TECH BACKGROUND
   Removes temporary image slideshow until final visuals are ready
========================================================= */

.hero-bg-slides {
  display: none !important;
}

.hero-section {
  background:
    radial-gradient(circle at 72% 24%, rgba(92, 244, 236, 0.12), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(92, 244, 236, 0.055), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 28%),
    linear-gradient(180deg, #020607 0%, #030708 48%, #010304 100%) !important;
}

.hero-section::before {
  opacity: 0.32 !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 7, 8, 0.95) 0%, rgba(2, 7, 8, 0.82) 46%, rgba(2, 7, 8, 0.72) 100%),
    radial-gradient(circle at 72% 34%, rgba(92, 244, 236, 0.12), transparent 40%) !important;
}

.hero-content h1 {
  width: min(82vw, 980px);
}
/* =========================================================
   HOME — PURPOSE SECTION SQUARE VISUAL
   Replaces mobile-heavy mockup with clean responsive photo card
========================================================= */

.purpose-square-visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
}

.purpose-square-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 244, 236, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(18, 27, 34, 0.9), rgba(4, 8, 10, 0.98));
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(92, 244, 236, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.purpose-square-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(92, 244, 236, 0.045) 46%, transparent 68%),
    radial-gradient(circle at 80% 12%, rgba(92, 244, 236, 0.12), transparent 32%);
}

.purpose-square-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  width: calc(100% - 34px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.26),
    rgba(92, 244, 236, 0.88),
    rgba(92, 244, 236, 0.26),
    transparent
  );
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.34);
  pointer-events: none;
}

.purpose-square-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(0.98) contrast(1.08) brightness(0.88);
  transform: scale(1.01);
}

.purpose-square-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(1, 4, 6, 0.72)),
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.22));
}

.purpose-square-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
  padding: 1rem;
  border: 1px solid rgba(92, 244, 236, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 38%),
    rgba(2, 7, 8, 0.76);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.purpose-square-caption span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(245, 255, 255, 0.66);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purpose-square-caption strong {
  display: block;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Mobile polish */
@media (max-width: 860px) {
  .purpose-square-visual {
    margin-top: 2rem;
  }

  .purpose-square-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 620px) {
  .purpose-square-card {
    width: min(100%, 430px);
    border-radius: 14px;
  }

  .purpose-square-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem;
    border-radius: 10px;
  }

  .purpose-square-caption span {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .purpose-square-caption strong {
    font-size: 0.82rem;
  }
}
/* =========================================================
   HOME — VISUAL CONTENT PHOTO CARD
   Replaces fake creative mockup with clean image card
========================================================= */

.creative-photo-visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
}

.creative-photo-card {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 244, 236, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(18, 27, 34, 0.9), rgba(4, 8, 10, 0.98));
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(92, 244, 236, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.creative-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(92, 244, 236, 0.04) 46%, transparent 68%),
    radial-gradient(circle at 82% 12%, rgba(92, 244, 236, 0.1), transparent 32%);
}

.creative-photo-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  width: calc(100% - 34px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.26),
    rgba(92, 244, 236, 0.88),
    rgba(92, 244, 236, 0.26),
    transparent
  );
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.34);
  pointer-events: none;
}

.creative-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(1) contrast(1.08) brightness(0.9);
  transform: scale(1.01);
}

.creative-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(1, 4, 6, 0.38)),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.12));
}

@media (max-width: 980px) {
  .creative-photo-visual {
    order: 2;
  }

  .creative-photo-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 620px) {
  .creative-photo-card {
    width: min(100%, 430px);
    border-radius: 14px;
  }

  .creative-photo-card img {
    transform: scale(1);
  }
}
/* =========================================================
   HOME — SECTION IMAGE PANELS
   Restores real images and makes them feel larger
========================================================= */

.final-cta-shell,
.mvp-shell,
.work-cta-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr) !important;
  gap: clamp(1.4rem, 3vw, 2.35rem) !important;
  align-items: center !important;
  padding: clamp(1.35rem, 3.4vw, 2.3rem) !important;
  overflow: hidden;
}

.final-cta-content,
.mvp-copy,
.work-cta-copy {
  position: relative;
  z-index: 5;
  padding: clamp(0.3rem, 1.5vw, 0.85rem) !important;
}

.home-section-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 244, 236, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(5, 8, 10, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow:
    0 26px 85px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(92, 244, 236, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-section-photo-wide {
  aspect-ratio: 16 / 8.2;
  min-height: 390px;
}

.home-section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(92, 244, 236, 0.035) 46%, transparent 68%),
    radial-gradient(circle at 82% 14%, rgba(92, 244, 236, 0.1), transparent 32%);
}

.home-section-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  width: calc(100% - 34px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.22),
    rgba(92, 244, 236, 0.82),
    rgba(92, 244, 236, 0.22),
    transparent
  );
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.3);
  pointer-events: none;
}

.home-section-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0.98;
  filter: saturate(1.08) contrast(1.08) brightness(0.95);
}

/* The artwork has empty black space baked in, so zoom the image itself */
.final-cta-shell .home-section-photo img {
  transform: scale(1.34);
}

.mvp-shell .home-section-photo img {
  transform: scale(1.32);
}

.work-cta-shell .home-section-photo img {
  transform: scale(1.24);
}

.home-section-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 56%, rgba(1, 4, 6, 0.14)),
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.06));
}

/* Medium screens */
@media (max-width: 1180px) {
  .final-cta-shell,
  .mvp-shell,
  .work-cta-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  }

  .home-section-photo-wide {
    min-height: 330px;
  }

  .final-cta-shell .home-section-photo img,
  .mvp-shell .home-section-photo img {
    transform: scale(1.22);
  }

  .work-cta-shell .home-section-photo img {
    transform: scale(1.16);
  }
}

/* Tablet/mobile stack */
@media (max-width: 980px) {
  .final-cta-shell,
  .mvp-shell,
  .work-cta-shell {
    grid-template-columns: 1fr !important;
  }

  .home-section-photo {
    order: 2;
    width: 100%;
  }

  .home-section-photo-wide {
    min-height: 300px;
    aspect-ratio: 16 / 9;
  }

  .final-cta-shell .home-section-photo img,
  .mvp-shell .home-section-photo img,
  .work-cta-shell .home-section-photo img {
    transform: scale(1.12);
  }
}

/* Phone */
@media (max-width: 620px) {
  .final-cta-shell,
  .mvp-shell,
  .work-cta-shell {
    padding: 1.15rem !important;
  }

  .home-section-photo {
    border-radius: 16px;
  }

  .home-section-photo-wide {
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .final-cta-shell .home-section-photo img,
  .mvp-shell .home-section-photo img,
  .work-cta-shell .home-section-photo img {
    transform: scale(1.06);
  }
}