/*
  TechCoder showcase pages
  Industry, portfolio and technology page treatments.  These selectors are
  deliberately scoped to .showcase-page so the home page remains untouched.
*/

.showcase-page {
  background: #f4f8ff;
}

.showcase-page .site-header {
  background: linear-gradient(180deg, rgba(5, 15, 32, .72), rgba(5, 15, 32, 0));
}

.showcase-page .site-header.scrolled {
  background: rgba(5, 15, 32, .88);
}

.showcase-hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  padding: 167px 0 88px;
  overflow: hidden;
  color: var(--white);
  background: #07152b;
}

.showcase-hero::before,
.showcase-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.showcase-hero::before {
  inset: 0;
  opacity: .65;
  background-image: linear-gradient(rgba(146, 198, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(146, 198, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, .28));
}

.showcase-hero::after {
  width: 60vw;
  height: 60vw;
  top: -23vw;
  right: -18vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 150, 255, .26), rgba(90, 82, 255, .09) 38%, transparent 68%);
}

.showcase-hero .container {
  z-index: 1;
}

.showcase-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 31px;
  color: #91aacd;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .04em;
}

.showcase-breadcrumb a {
  transition: color .2s ease;
}

.showcase-breadcrumb a:hover { color: var(--cyan); }
.showcase-breadcrumb i { color: #5d769b; font-size: .53rem; }

.showcase-hero-copy {
  position: relative;
  max-width: 690px;
}

.showcase-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 24px;
}

.showcase-hero-lead {
  max-width: 625px;
  margin: 0;
  color: #aec2dc;
  font-size: 1.05rem;
  line-height: 1.8;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.showcase-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 27px;
  margin-top: 42px;
  color: #92a9c8;
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .04em;
}

.showcase-kicker-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-kicker-row i { color: var(--cyan); }

.showcase-section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}

.showcase-section--dark {
  color: var(--white);
  background: #07152b;
}

.showcase-section--dark::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .45;
  background-image: linear-gradient(rgba(146, 198, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(146, 198, 255, .045) 1px, transparent 1px);
  background-size: 45px 45px;
}

.showcase-section .container { z-index: 1; }

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .62fr);
  align-items: end;
  gap: 55px;
  margin-bottom: 47px;
}

.showcase-heading h2 { max-width: 680px; }

.showcase-heading > p {
  max-width: 430px;
  margin: 0 0 3px;
  color: #687b98;
  font-size: .94rem;
  line-height: 1.8;
}

.showcase-section--dark .showcase-heading > p { color: #9bb1cf; }

.showcase-eyebrow {
  margin-bottom: 16px;
}

.showcase-eyebrow.eyebrow-dark { color: #416998; }

.showcase-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: #1d67bd;
  font-size: .79rem;
  font-weight: 800;
  transition: gap .22s ease, color .22s ease;
}

.showcase-inline-link:hover { gap: 13px; color: #174f9b; }
.showcase-section--dark .showcase-inline-link { color: #92ecff; }

/* Shared compact call to action. */
.showcase-cta {
  position: relative;
  overflow: hidden;
  color: #eaf8ff;
  background: linear-gradient(112deg, #09254a 3%, #173b77 49%, #513f90 100%);
}

.showcase-cta::before {
  position: absolute;
  inset: auto -10% -120%;
  width: 68%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 231, 255, .31), transparent 64%);
}

.showcase-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 285px;
}

.showcase-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);
}

.showcase-cta .button { flex: 0 0 auto; }

/* Industry page: an atlas-inspired hero and sector cards. */
.industry-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .78fr);
  align-items: center;
  gap: 45px;
}

.industry-atlas {
  position: relative;
  min-height: 420px;
  margin-right: -25px;
}

.industry-atlas::before {
  position: absolute;
  inset: 24px 12px;
  content: "";
  border: 1px solid rgba(137, 218, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(90, 157, 255, .025), 0 0 0 93px rgba(115, 101, 255, .025);
}

.atlas-map {
  position: absolute;
  inset: 67px 43px 48px;
  overflow: hidden;
  border: 1px solid rgba(164, 222, 255, .22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(32, 79, 126, .7), rgba(13, 29, 60, .74));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 55px rgba(0, 5, 29, .3);
  transform: rotate(5deg);
}

.atlas-map::before,
.atlas-map::after {
  position: absolute;
  content: "";
  opacity: .58;
  background-image: linear-gradient(rgba(169, 222, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(169, 222, 255, .12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.atlas-map::before { inset: 0; }

.atlas-map::after {
  width: 128%;
  height: 1px;
  top: 52%;
  left: -12%;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, transparent, rgba(72, 230, 255, .75), transparent);
  box-shadow: 0 34px 0 rgba(135, 122, 255, .35), 0 -42px 0 rgba(72, 230, 255, .25);
}

.atlas-land {
  position: absolute;
  border: 1px solid rgba(138, 249, 255, .42);
  border-radius: 49% 51% 35% 65% / 45% 34% 66% 55%;
  background: linear-gradient(145deg, rgba(72, 219, 255, .38), rgba(125, 95, 255, .18));
  box-shadow: inset 0 0 21px rgba(185, 245, 255, .18), 0 0 22px rgba(63, 192, 255, .13);
}

.atlas-land--one { width: 37%; height: 29%; top: 27%; left: 17%; transform: rotate(-18deg); }
.atlas-land--two { width: 31%; height: 19%; right: 15%; bottom: 22%; transform: rotate(24deg); }
.atlas-land--three { width: 18%; height: 14%; right: 31%; top: 15%; transform: rotate(-9deg); }

.atlas-route {
  position: absolute;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.atlas-route--one { width: 60%; top: 51%; left: 23%; transform: rotate(-19deg); }
.atlas-route--two { width: 41%; top: 57%; left: 43%; transform: rotate(49deg); }

.atlas-point {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #dfffff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(47, 220, 255, .11), 0 0 18px var(--cyan);
}

.atlas-point--one { top: 39%; left: 31%; }
.atlas-point--two { top: 59%; right: 28%; background: var(--purple); box-shadow: 0 0 0 6px rgba(158, 122, 255, .12), 0 0 18px var(--purple); }
.atlas-point--three { top: 25%; right: 36%; width: 7px; height: 7px; }

.atlas-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 13px 15px;
  border: 1px solid rgba(183, 229, 255, .2);
  border-radius: 12px;
  color: #e5f7ff;
  background: rgba(11, 33, 69, .86);
  box-shadow: 0 16px 38px rgba(0, 5, 26, .28);
  backdrop-filter: blur(12px);
}

.atlas-caption small {
  color: #a4b9d7;
  font-family: var(--font-mono);
  font-size: .53rem;
  letter-spacing: .08em;
}

.atlas-caption strong { font-size: .75rem; }

.industry-outcomes {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(148, 195, 249, .12);
  border-bottom: 1px solid rgba(148, 195, 249, .12);
  color: #cee2f8;
  background: #0c1d3a;
}

.industry-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.industry-outcome {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 87px;
  padding: 18px 28px;
  border-right: 1px solid rgba(148, 195, 249, .12);
}

.industry-outcome:first-child { padding-left: 0; }
.industry-outcome:last-child { border-right: 0; }
.industry-outcome i { color: var(--cyan); font-size: 1rem; }
.industry-outcome strong, .industry-outcome span { display: block; }
.industry-outcome strong { color: #ebf9ff; font-size: .8rem; }
.industry-outcome span { margin-top: 2px; color: #91a9ca; font-size: .63rem; }

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

.industry-focus-card {
  position: relative;
  min-height: 300px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #d5e2f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(11, 41, 79, .06);
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, border-color .32s ease;
}

.industry-focus-card::before {
  position: absolute;
  right: -25%;
  bottom: -48%;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  opacity: .65;
  background: radial-gradient(circle, rgba(74, 183, 255, .18), transparent 66%);
  transition: transform .4s ease;
}

.industry-focus-card:hover {
  z-index: 1;
  border-color: #a6dffa;
  box-shadow: 0 24px 50px rgba(11, 41, 79, .13);
  transform: translateY(-8px);
}

.industry-focus-card:hover::before { transform: scale(1.35); }

.industry-card-number {
  position: absolute;
  top: 27px;
  right: 26px;
  color: #91a8c3;
  font-family: var(--font-mono);
  font-size: .62rem;
}

.industry-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid #bae6fb;
  border-radius: 13px;
  color: #126c99;
  background: linear-gradient(145deg, #e7fbff, #d8e9ff);
  font-size: 1rem;
}

.industry-focus-card:nth-child(2n) .industry-card-icon { color: #604ca9; border-color: #ddd2ff; background: linear-gradient(145deg, #f2edff, #e3dcff); }
.industry-focus-card h3 { margin-bottom: 11px; color: #163a67; font-size: 1.2rem; }
.industry-focus-card p { max-width: 270px; margin: 0; color: #687f9e; font-size: .78rem; line-height: 1.75; }

.industry-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 70px;
}

.industry-delivery-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #a6bad6;
  font-size: .95rem;
  line-height: 1.85;
}

.delivery-path {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(164, 218, 255, .17);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(26, 61, 105, .48), rgba(9, 23, 51, .46));
}

.delivery-path::before {
  position: absolute;
  top: 49px;
  bottom: 50px;
  left: 49px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--cyan), rgba(135, 124, 255, .45), transparent);
}

.delivery-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 74px;
  padding: 15px 18px 15px 8px;
  border: 1px solid rgba(166, 211, 250, .13);
  border-radius: 13px;
  background: rgba(7, 24, 53, .42);
}

.delivery-step > i {
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(143, 235, 255, .55);
  border-radius: 50%;
  color: var(--cyan);
  background: #0d2a51;
  font-size: .68rem;
}

.delivery-step h3, .delivery-step p { margin: 0; }
.delivery-step h3 { color: #ecf9ff; font-size: .83rem; }
.delivery-step p { margin-top: 4px; color: #96accb; font-size: .67rem; line-height: 1.45; }
.delivery-step > span { color: #7996bd; font-family: var(--font-mono); font-size: .58rem; }

/* Portfolio page: editorial case-study gallery. */
.portfolio-page { background: #07152b; }
.portfolio-page .site-footer { border-top: 1px solid rgba(157, 206, 255, .12); }

.portfolio-hero::after {
  top: -17vw;
  right: 7vw;
  width: 53vw;
  height: 53vw;
  background: radial-gradient(circle, rgba(113, 81, 255, .27), rgba(49, 222, 255, .1) 36%, transparent 70%);
}

.portfolio-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: end;
  gap: 44px;
}

.portfolio-reel {
  position: relative;
  min-height: 390px;
  padding: 21px;
  overflow: hidden;
  border: 1px solid rgba(174, 224, 255, .21);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(37, 79, 128, .65), rgba(16, 29, 69, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 26px 60px rgba(0, 4, 26, .27);
  transform: rotate(3deg);
}

.portfolio-reel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .52;
  background-image: linear-gradient(rgba(162, 211, 255, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(162, 211, 255, .09) 1px, transparent 1px);
  background-size: 26px 26px;
}

.reel-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b6cbe5;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .1em;
}

.reel-title span:last-child { color: #d8fbff; }

.reel-shapes {
  position: relative;
  height: 260px;
  margin-top: 24px;
}

.reel-shape {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(220, 244, 255, .23);
  border-radius: 14px;
  background: linear-gradient(145deg, #2b8bb8, #344aa5);
  box-shadow: 0 13px 30px rgba(0, 4, 27, .23);
}

.reel-shape::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(169, 242, 255, .3), transparent 43%, rgba(141, 108, 255, .28));
}

.reel-shape--one { top: 20px; left: 5%; width: 43%; height: 166px; transform: rotate(-8deg); }
.reel-shape--two { top: 44px; right: 7%; width: 45%; height: 178px; background: linear-gradient(145deg, #6c4aa9, #1f618f); transform: rotate(9deg); }
.reel-shape--three { bottom: 0; left: 28%; width: 49%; height: 115px; background: linear-gradient(145deg, #257c91, #5340a3); transform: rotate(-2deg); }

.reel-metric {
  position: absolute;
  right: 19px;
  bottom: 19px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid rgba(197, 238, 255, .2);
  border-radius: 11px;
  background: rgba(6, 25, 55, .81);
  backdrop-filter: blur(11px);
}

.reel-metric span { color: #8eabc9; font-family: var(--font-mono); font-size: .51rem; letter-spacing: .07em; }
.reel-metric strong { color: #effdff; font-size: .8rem; }

.portfolio-intro-strip {
  position: relative;
  z-index: 2;
  background: #e8f3ff;
}

.portfolio-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  align-items: center;
  min-height: 116px;
}

.portfolio-intro-grid p {
  max-width: 380px;
  margin: 0;
  color: #476686;
  font-size: .8rem;
  line-height: 1.65;
}

.portfolio-stat {
  min-height: 62px;
  padding-left: 29px;
  border-left: 1px solid #c8ddeb;
}

.portfolio-stat strong, .portfolio-stat span { display: block; }
.portfolio-stat strong { color: #163d6f; font-size: 1.5rem; letter-spacing: -.06em; }
.portfolio-stat span { margin-top: 3px; color: #6783a4; font-size: .61rem; }

.portfolio-work { background: #07152b; }

.portfolio-work .showcase-heading > p { color: #9db4d1; }

.portfolio-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.portfolio-filter-label {
  flex: 0 0 auto;
  color: #95aece;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-work .filter-bar { margin: 0; }

.portfolio-work .filter-button {
  border-color: rgba(164, 207, 252, .19);
  color: #aabfdb;
}

.portfolio-grid.showcase-case-grid {
  gap: 16px;
  grid-auto-rows: 265px;
}

.showcase-case-card {
  position: relative;
  display: flex;
  min-height: 265px;
  overflow: hidden;
  border: 1px solid rgba(155, 203, 246, .22);
  border-radius: 19px;
  color: #fff;
  isolation: isolate;
  background: #133663;
  box-shadow: 0 16px 35px rgba(0, 6, 27, .24);
  transition: transform .36s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}

.showcase-case-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 21, 43, .03) 23%, rgba(5, 17, 38, .93) 100%);
}

.showcase-case-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: var(--case-image) center / cover no-repeat;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.showcase-case-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.showcase-case-card:hover {
  z-index: 1;
  border-color: rgba(122, 231, 255, .67);
  box-shadow: 0 26px 53px rgba(0, 5, 25, .36);
  transform: translateY(-7px);
}

.showcase-case-card:hover::after { transform: scale(1.08); }
.showcase-case-card:hover .showcase-case-image { transform: scale(1.08); }

.showcase-case-card.portfolio-wide { grid-column: span 2; }
.showcase-case-card.portfolio-tall { grid-row: span 2; }

.case-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.case-card-content small {
  display: block;
  margin-bottom: 9px;
  color: #a8def3;
  font-family: var(--font-mono);
  font-size: .54rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.case-card-content h3 { margin: 0; color: #f1fbff; font-size: clamp(1.05rem, 1.8vw, 1.52rem); }
.case-card-content p { margin: 7px 0 0; color: #b8c9df; font-size: .7rem; line-height: 1.55; }

.case-link {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(211, 244, 255, .45);
  border-radius: 50%;
  color: #07152b;
  background: #c8f8ff;
  font-size: .73rem;
  transition: transform .25s ease, background .25s ease;
}

.case-link:hover { background: #fff; transform: rotate(45deg); }
.showcase-case-card.is-hidden { display: none; }

.case-study-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 23px;
  margin-top: 20px;
  padding: 19px 22px;
  border: 1px solid rgba(159, 208, 252, .15);
  border-radius: 13px;
  color: #9cb5d3;
  background: rgba(20, 56, 100, .36);
}

.case-study-note > i { color: var(--cyan); font-size: 1rem; }
.case-study-note p { margin: 0; font-size: .73rem; line-height: 1.55; }
.case-study-note a { color: #d9f9ff; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.case-study-note a:hover { color: var(--cyan); }

.portfolio-principles { background: #f5f9ff; }

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

.principle-card {
  padding: 28px 25px;
  border-top: 2px solid #c2eefe;
  border-radius: 0 0 16px 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 41, 79, .06);
}

.principle-card:nth-child(2) { border-top-color: #d7c9ff; }
.principle-card:nth-child(3) { border-top-color: #b7f974; }
.principle-card span { color: #52759e; font-family: var(--font-mono); font-size: .61rem; }
.principle-card h3 { margin: 17px 0 10px; color: #173c69; font-size: 1.08rem; }
.principle-card p { margin: 0; color: #6a819e; font-size: .76rem; line-height: 1.7; }

/* Technologies page: system blueprint and capability wall. */
.technology-page { background: #f4f8ff; }

.technology-hero::after {
  top: -25vw;
  right: -5vw;
  width: 68vw;
  height: 68vw;
  background: radial-gradient(circle, rgba(45, 214, 255, .23), rgba(98, 91, 255, .13) 36%, transparent 68%);
}

.technology-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .84fr);
  align-items: center;
  gap: 46px;
}

.tech-blueprint {
  position: relative;
  min-height: 430px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(178, 229, 255, .24);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(22, 65, 110, .69), rgba(9, 24, 57, .75));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 27px 65px rgba(0, 5, 27, .3);
}

.tech-blueprint::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .65;
  background-image: linear-gradient(rgba(171, 221, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(171, 221, 255, .1) 1px, transparent 1px);
  background-size: 27px 27px;
}

.blueprint-caption {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #b9d0eb;
  font-family: var(--font-mono);
  font-size: .54rem;
  letter-spacing: .1em;
}

.blueprint-caption span:last-child { color: #a9f5ff; }

.blueprint-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(178, 243, 255, .65);
  border-radius: 50%;
  color: #dbfbff;
  background: radial-gradient(circle at 35% 25%, rgba(117, 244, 255, .36), rgba(53, 71, 171, .58));
  box-shadow: inset 0 0 28px rgba(203, 250, 255, .18), 0 0 0 16px rgba(56, 178, 255, .07), 0 0 45px rgba(47, 220, 255, .18);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.blueprint-core i { display: block; margin-bottom: 4px; color: #aef4ff; font-size: 1.15rem; }

.blueprint-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(142, 222, 255, .23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.blueprint-ring--one { width: 260px; height: 260px; border-right-color: rgba(77, 236, 255, .74); animation: showcase-spin 19s linear infinite; }
.blueprint-ring--two { width: 366px; height: 366px; border-left-color: rgba(156, 121, 255, .68); animation: showcase-spin-reverse 27s linear infinite; }

.blueprint-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 86px;
  height: 57px;
  place-items: center;
  border: 1px solid rgba(183, 230, 255, .24);
  border-radius: 11px;
  color: #d8f7ff;
  background: rgba(12, 37, 74, .86);
  box-shadow: 0 12px 23px rgba(0, 5, 28, .23);
  font-family: var(--font-mono);
  font-size: .54rem;
  letter-spacing: .02em;
  text-align: center;
}

.blueprint-node i { display: block; margin-bottom: 5px; color: var(--cyan); font-size: .8rem; }
.blueprint-node--one { top: 74px; left: 21px; }
.blueprint-node--two { top: 73px; right: 21px; }
.blueprint-node--three { bottom: 40px; left: 36px; }
.blueprint-node--four { right: 42px; bottom: 40px; }

.blueprint-link {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, rgba(80, 230, 255, .9), transparent);
}

.blueprint-link--one { top: 38%; left: 22%; width: 30%; transform: rotate(24deg); }
.blueprint-link--two { top: 38%; right: 22%; width: 30%; transform: rotate(156deg); }
.blueprint-link--three { bottom: 32%; left: 25%; width: 28%; transform: rotate(-25deg); }
.blueprint-link--four { right: 23%; bottom: 32%; width: 27%; transform: rotate(205deg); }

.tech-partner-row {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(145, 195, 244, .18);
  border-bottom: 1px solid rgba(145, 195, 244, .18);
  background: #eaf4ff;
}

.tech-partner-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 95px;
}

.tech-partner-row p {
  margin: 0;
  color: #527293;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tech-partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 30px;
  color: #1b416e;
  font-size: .72rem;
  font-weight: 800;
}

.tech-partner-list span { display: inline-flex; align-items: center; gap: 8px; }
.tech-partner-list i { color: #2989ba; }

.tech-explorer { background: #f5f9ff; }

.tech-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.tech-tab {
  padding: 10px 14px;
  border: 1px solid #c8dcec;
  border-radius: 8px;
  color: #567392;
  background: #fff;
  font-size: .68rem;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.tech-tab:hover { border-color: #81d7f2; color: #1d6495; transform: translateY(-2px); }
.tech-tab.active { border-color: #3bd2f5; color: #0c315a; background: #c9f7ff; box-shadow: 0 8px 17px rgba(43, 189, 236, .16); }

.showcase-tech-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.showcase-tech-card {
  position: relative;
  min-height: 178px;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid #d5e3f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 41, 79, .055);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s ease, box-shadow .28s ease;
}

.showcase-tech-card::after {
  position: absolute;
  right: -34px;
  bottom: -37px;
  width: 102px;
  height: 102px;
  content: "";
  border: 1px solid rgba(71, 206, 242, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(71, 206, 242, .06);
}

.showcase-tech-card:hover {
  z-index: 1;
  border-color: #9bdff4;
  box-shadow: 0 20px 37px rgba(11, 41, 79, .11);
  transform: translateY(-6px);
}

.showcase-tech-card.is-hidden { display: none; }
.tech-card-mark { display: grid; width: 39px; height: 39px; place-items: center; margin-bottom: 24px; border-radius: 10px; color: #125d8d; background: #dff9ff; font-weight: 800; }
.showcase-tech-card:nth-child(3n) .tech-card-mark { color: #6252a4; background: #ebe5ff; }
.showcase-tech-card h3 { margin: 0; color: #1b426f; font-size: .94rem; }
.showcase-tech-card p { margin: 7px 0 0; color: #7186a1; font-size: .68rem; line-height: 1.55; }

.technology-architecture { background: #0b1d3b; }

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 65px;
}

.architecture-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #a8bdd8;
  font-size: .93rem;
  line-height: 1.82;
}

.architecture-stack {
  display: grid;
  gap: 11px;
}

.architecture-layer {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 77px;
  padding: 16px 20px;
  border: 1px solid rgba(159, 211, 253, .17);
  border-radius: 13px;
  color: #d9ecff;
  background: linear-gradient(95deg, rgba(47, 142, 185, .23), rgba(24, 43, 88, .38));
}

.architecture-layer::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 3px;
  content: "";
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(47, 220, 255, .7);
}

.architecture-layer:nth-child(2)::before { background: #8cafff; box-shadow: 0 0 12px rgba(140, 175, 255, .6); }
.architecture-layer:nth-child(3)::before { background: #a98eff; box-shadow: 0 0 12px rgba(169, 142, 255, .6); }
.architecture-layer:nth-child(4)::before { background: #b7f974; box-shadow: 0 0 12px rgba(183, 249, 116, .5); }
.architecture-layer > span { color: #91eaff; font-family: var(--font-mono); font-size: .59rem; letter-spacing: .07em; }
.architecture-layer h3 { margin: 0; color: #effaff; font-size: .84rem; }
.architecture-layer p { margin: 3px 0 0; color: #9cb5d1; font-size: .64rem; line-height: 1.45; }
.architecture-layer > i { color: #a9d6ed; font-size: .8rem; }

@keyframes showcase-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes showcase-spin-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

@media (max-width: 1080px) {
  .showcase-hero { min-height: 0; }
  .industry-hero-layout,
  .portfolio-hero-layout,
  .technology-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: 30px; }
  .industry-atlas { margin-right: -50px; transform: scale(.91); transform-origin: center right; }
  .industry-focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-tech-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .architecture-layout { gap: 43px; }
}

@media (max-width: 900px) {
  .showcase-hero { padding-top: 142px; }
  .showcase-heading { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .showcase-heading > p { margin-bottom: 0; }
  .industry-hero-layout,
  .portfolio-hero-layout,
  .technology-hero-layout { grid-template-columns: minmax(0, 1fr); }
  .industry-atlas { max-width: 510px; width: 100%; min-height: 385px; margin: -15px auto 0; transform: none; }
  .portfolio-reel { max-width: 480px; width: 100%; min-height: 335px; margin: 0 auto; transform: rotate(1.5deg); }
  .reel-shapes { height: 215px; }
  .tech-blueprint { max-width: 520px; width: 100%; margin: 0 auto; }
  .industry-delivery-layout,
  .architecture-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .portfolio-intro-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 0; padding: 28px 0; }
  .portfolio-intro-grid > p { grid-column: 1 / -1; }
  .portfolio-intro-grid .portfolio-stat:first-of-type { padding-left: 0; border-left: 0; }
  .showcase-cta .container { min-height: 250px; }
}

@media (max-width: 700px) {
  .showcase-hero { padding: 124px 0 66px; }
  .showcase-breadcrumb { margin-bottom: 24px; }
  .showcase-hero-copy h1 { margin-bottom: 18px; }
  .showcase-hero-lead { font-size: .94rem; }
  .showcase-actions { margin-top: 27px; }
  .showcase-section { padding: 82px 0; }
  .showcase-heading { margin-bottom: 35px; }
  .industry-outcomes-grid { grid-template-columns: minmax(0, 1fr); }
  .industry-outcome, .industry-outcome:first-child { min-height: 0; padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(148, 195, 249, .12); }
  .industry-outcome:last-child { border-bottom: 0; }
  .portfolio-grid.showcase-case-grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 255px; }
  .showcase-case-card.portfolio-wide,
  .showcase-case-card.portfolio-tall { grid-column: auto; grid-row: auto; min-height: 255px; }
  .portfolio-filter-wrap { align-items: flex-start; flex-direction: column; gap: 13px; }
  .portfolio-work .filter-bar,
  .tech-controls { flex-wrap: nowrap; width: calc(100% + 20px); margin-right: -20px; padding-right: 20px; overflow-x: auto; scrollbar-width: thin; }
  .portfolio-work .filter-button, .tech-tab { flex: 0 0 auto; }
  .showcase-tech-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-study-note { grid-template-columns: auto minmax(0, 1fr); }
  .case-study-note a { grid-column: 2; }
  .tech-partner-row .container { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .tech-partner-list { justify-content: flex-start; }
  .showcase-cta .container { align-items: flex-start; flex-direction: column; justify-content: center; padding: 50px 0; }
  .showcase-cta .button { width: 100%; }
}

@media (max-width: 540px) {
  .showcase-hero { padding-top: 112px; }
  .showcase-actions, .showcase-actions .button { width: 100%; }
  .showcase-kicker-row { gap: 10px 18px; margin-top: 31px; }
  .showcase-section { padding: 67px 0; }
  .industry-atlas { min-height: 302px; }
  .industry-atlas::before { inset: 20px; box-shadow: 0 0 0 28px rgba(90, 157, 255, .025), 0 0 0 56px rgba(115, 101, 255, .025); }
  .atlas-map { inset: 43px 17px 33px; border-radius: 18px; }
  .atlas-caption { right: 2px; bottom: 4px; min-width: 135px; padding: 10px 11px; }
  .industry-focus-grid, .principle-grid { grid-template-columns: minmax(0, 1fr); }
  .industry-focus-card { min-height: 250px; }
  .portfolio-reel { min-height: 282px; padding: 17px; }
  .reel-shapes { height: 175px; margin-top: 18px; }
  .reel-shape--one { height: 124px; }
  .reel-shape--two { height: 132px; }
  .reel-shape--three { height: 88px; }
  .portfolio-intro-grid { grid-template-columns: minmax(0, 1fr); gap: 17px; }
  .portfolio-intro-grid > p { grid-column: auto; }
  .portfolio-intro-grid .portfolio-stat,
  .portfolio-intro-grid .portfolio-stat:first-of-type { min-height: 0; padding: 12px 0; border-top: 1px solid #c8ddeb; border-left: 0; }
  .portfolio-grid.showcase-case-grid { grid-auto-rows: 235px; }
  .showcase-case-card.portfolio-wide,
  .showcase-case-card.portfolio-tall { min-height: 235px; }
  .case-card-content { padding: 19px; }
  .case-card-content h3 { font-size: 1.05rem; }
  .case-link { width: 34px; height: 34px; }
  .showcase-tech-wall { grid-template-columns: minmax(0, 1fr); }
  .showcase-tech-card { min-height: 152px; }
  .tech-blueprint { min-height: 350px; padding: 16px; }
  .blueprint-core { width: 98px; height: 98px; font-size: .62rem; }
  .blueprint-ring--one { width: 205px; height: 205px; }
  .blueprint-ring--two { width: 292px; height: 292px; }
  .blueprint-node { width: 65px; height: 49px; font-size: .47rem; }
  .blueprint-node--one { top: 59px; left: 11px; }
  .blueprint-node--two { top: 59px; right: 11px; }
  .blueprint-node--three { bottom: 24px; left: 16px; }
  .blueprint-node--four { right: 16px; bottom: 24px; }
  .architecture-layer { grid-template-columns: 77px minmax(0, 1fr) 14px; gap: 10px; padding: 14px 14px; }
  .architecture-layer h3 { font-size: .76rem; }
  .architecture-layer p { font-size: .59rem; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-page *, .showcase-page *::before, .showcase-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
