/* Site styles for PHP templates */

:root {
  --site-width: 80rem;
  --site-gutter: 20px;
  --site-gutter-mobile: 16px;
  --closing-statement-height: 520px;
}

/* Portfolio selected experience - premium cards */
.portfolio-lab {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, .48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 4%, rgba(56, 189, 248, .16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(52, 211, 153, .15), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(236, 248, 255, .86));
  box-shadow: 0 26px 70px rgba(36, 88, 163, .13);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 52px);
}

.portfolio-lab .section-hdr-row {
  margin-bottom: 26px;
}

.portfolio-lab .section-title {
  max-width: 920px;
}

.portfolio-carousel {
  display: grid;
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.portfolio-slide {
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 250, 255, .92));
  box-shadow: 0 20px 52px rgba(36, 88, 163, .12);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.portfolio-slide:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, .72);
  box-shadow: 0 34px 76px rgba(36, 88, 163, .18);
}

.portfolio-slide-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 30px);
}

.portfolio-slide .portfolio-card-head {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.portfolio-slide .portfolio-card-head strong {
  max-width: 100%;
}

.portfolio-slide h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.04;
  margin-bottom: 12px;
}

.portfolio-slide h4 {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.34;
}

.portfolio-slide p {
  font-size: 14px;
  line-height: 1.68;
}

.portfolio-slide .portfolio-impact {
  margin-top: auto;
}

.portfolio-slide-screenshot {
  order: -1;
  min-height: 0;
  height: auto;
  aspect-ratio: 1.34;
  border: 0;
  border-bottom: 1px solid rgba(128, 165, 216, .42);
  border-radius: 0;
}

.portfolio-slide-screenshot img {
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.portfolio-slide:nth-child(1) .portfolio-slide-screenshot img {
  object-position: 42% top;
}

.portfolio-slide:nth-child(2) .portfolio-slide-screenshot img {
  object-position: 36% top;
}

.portfolio-slide:nth-child(3) .portfolio-slide-screenshot img {
  object-position: left top;
}

.portfolio-carousel-hint {
  display: none;
}

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

@media (max-width: 760px) {
  .portfolio-lab {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .portfolio-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .portfolio-slide {
    width: 100%;
    max-width: 100%;
  }

  .portfolio-slide-screenshot {
    aspect-ratio: 1.52;
  }

  .portfolio-slide h3 {
    font-size: clamp(27px, 8vw, 34px);
  }
}

/* Premium about page */
.about-premium-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 0 clamp(72px, 9vw, 120px);
}

.about-premium-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  min-height: 640px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.18), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(52, 211, 153, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.92));
  box-shadow: 0 26px 70px rgba(36, 88, 163, 0.14);
}

.about-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.86), transparent 78%);
  -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,0.86), transparent 78%);
  animation: aboutGridDrift 18s linear infinite;
}

.about-motion-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-motion-field span {
  position: absolute;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 62%);
  animation: aboutOrbitFloat 12s ease-in-out infinite;
}

.about-motion-field span:nth-child(1) { left: -70px; top: 12%; }
.about-motion-field span:nth-child(2) { right: 16%; top: -110px; animation-delay: -3s; }
.about-motion-field span:nth-child(3) { right: -90px; bottom: 8%; animation-delay: -6s; }
.about-motion-field span:nth-child(4) { left: 44%; bottom: -150px; animation-delay: -9s; }

.about-motion-field i {
  position: absolute;
  left: -12%;
  top: calc(12% + var(--about-line, 1) * 12%);
  width: clamp(100px, 13vw, 190px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.82), rgba(52, 211, 153, 0.62), transparent);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
  opacity: 0;
  animation: aboutDataLine 9s linear infinite;
}

.about-motion-field i:nth-of-type(1) { --about-line: 1; animation-delay: -1s; }
.about-motion-field i:nth-of-type(2) { --about-line: 2; animation-delay: -2.4s; animation-duration: 11s; }
.about-motion-field i:nth-of-type(3) { --about-line: 3; animation-delay: -4.2s; }
.about-motion-field i:nth-of-type(4) { --about-line: 4; animation-delay: -5.6s; animation-duration: 12s; }
.about-motion-field i:nth-of-type(5) { --about-line: 5; animation-delay: -7.1s; }

.about-premium-copy,
.about-command-card {
  position: relative;
  z-index: 1;
}

.about-premium-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.about-premium-copy .badge {
  width: fit-content;
  margin-bottom: 20px;
}

.about-premium-copy h1 {
  margin: 0;
  color: #102a4a;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-premium-copy p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #41678e;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.74;
}

.about-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about-executive-card {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  min-height: 500px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(128, 165, 216, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 255, 0.82));
  box-shadow: 0 24px 58px rgba(36, 88, 163, 0.12);
}

.about-executive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(102, 156, 226, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(145deg, rgba(0,0,0,0.72), transparent 72%);
  -webkit-mask-image: linear-gradient(145deg, rgba(0,0,0,0.72), transparent 72%);
  animation: aboutGridDrift 20s linear infinite;
}

.about-executive-card > * {
  position: relative;
  z-index: 1;
}

.about-executive-card > p {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 111, 164, 0.22);
  border-radius: 999px;
  background: rgba(232, 246, 255, 0.86);
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-executive-card h2 {
  max-width: 430px;
  margin: 0 0 26px;
  color: #132f51;
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-executive-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-executive-orbit span {
  position: absolute;
  right: -58px;
  top: -58px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  animation: aboutOrbitFloat 12s ease-in-out infinite;
}

.about-executive-orbit span:nth-child(2) {
  right: 42px;
  top: 96px;
  width: 92px;
  border-color: rgba(52, 211, 153, 0.28);
  animation-delay: -4s;
}

.about-executive-orbit span:nth-child(3) {
  right: 118px;
  bottom: 42px;
  top: auto;
  width: 144px;
  border-color: rgba(11, 111, 164, 0.18);
  animation-delay: -8s;
}

.about-proof-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.about-proof-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-proof-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow: 0 18px 34px rgba(36, 88, 163, 0.1);
}

.about-proof-list strong {
  color: #0b6fa4;
  font-size: 14px;
  font-weight: 900;
}

.about-proof-list span {
  color: #496d93;
  font-size: 14px;
  line-height: 1.55;
}

.about-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-signal-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #35597f;
  font-size: 12px;
  font-weight: 800;
}

.about-command-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(56, 189, 248, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(9, 30, 52, 0.98), rgba(13, 56, 88, 0.96));
  color: #eaf8ff;
  box-shadow: 0 26px 70px rgba(12, 37, 66, 0.24);
}

.about-terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.about-terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #83d0f5;
}

.about-terminal-top span:nth-child(2) { background: #34d399; }
.about-terminal-top span:nth-child(3) { background: #fbbf24; }

.about-terminal-top strong {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  color: #a9dff4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-terminal-body {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.about-terminal-body p {
  margin: 0;
  color: #d8ecfb;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.55;
  animation: aboutTerminalLine 6.4s ease-in-out infinite;
}

.about-terminal-body p:nth-child(2) { animation-delay: -1.2s; }
.about-terminal-body p:nth-child(3) { animation-delay: -2.4s; }
.about-terminal-body p:nth-child(4) { animation-delay: -3.6s; }

.about-terminal-body em {
  color: #83d0f5;
  font-style: normal;
}

.about-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px);
}

.about-signal-grid span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dff5ff;
  font-size: 12px;
  font-weight: 800;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 clamp(70px, 9vw, 112px);
}

.about-metrics div,
.about-principles-grid article,
.about-workflow-steps article,
.about-prose,
.about-fit-card {
  border: 1px solid rgba(128, 165, 216, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(36, 88, 163, 0.08);
}

.about-metrics div {
  min-height: 130px;
  padding: 24px;
}

.about-metrics strong {
  display: block;
  color: #0b6fa4;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
}

.about-metrics span {
  display: block;
  margin-top: 14px;
  color: #557ca5;
  font-weight: 800;
  line-height: 1.3;
}

.about-principles,
.about-workflow,
.about-content-grid {
  margin-top: clamp(46px, 7vw, 86px);
}

.about-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.about-section-head h2,
.about-workflow h2 {
  margin: 14px 0 0;
  color: #132f51;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.about-principles-grid article {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: clamp(24px, 3.2vw, 34px);
  background:
    radial-gradient(circle at 90% 0%, rgba(56, 189, 248, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-principles-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(11, 111, 164, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, 0.18) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11, 111, 164, 0.18) 50%, transparent 51%);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-principles-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 24px 54px rgba(36, 88, 163, 0.14);
}

.about-principles-grid article:hover::after {
  transform: rotate(18deg) scale(1.08);
  border-color: rgba(56, 189, 248, 0.42);
}

.about-principles-grid strong {
  color: rgba(11, 111, 164, 0.28);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.85;
}

.about-principles-grid h3 {
  margin: 30px 0 12px;
  color: #17365b;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.08;
}

.about-principles-grid p,
.about-workflow p {
  margin: 0;
  color: #557ca5;
  font-size: 15px;
  line-height: 1.7;
}

.about-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.about-workflow > div:first-child {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(11, 39, 65, 0.98), rgba(13, 57, 88, 0.96));
}

.about-workflow > div:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: aboutDarkGrid 14s linear infinite;
}

.about-workflow > div:first-child > * {
  position: relative;
  z-index: 1;
}

.about-workflow h2 {
  color: #fff;
}

.about-workflow p {
  max-width: 560px;
  margin-top: 18px;
  color: #bfd0e8;
}

.about-workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-workflow-steps article {
  min-height: 190px;
  padding: 24px;
}

.about-workflow-steps span {
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
}

.about-workflow-steps h3 {
  margin: 18px 0 8px;
  color: #17365b;
  font-size: 24px;
}

.about-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.about-prose {
  padding: clamp(26px, 4vw, 44px);
}

.about-prose h2 {
  margin: 0 0 12px;
  color: #17365b;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.08;
}

.about-prose h2:not(:first-child) {
  margin-top: 38px;
}

.about-prose p,
.about-prose li {
  color: #496d93;
  font-size: 16px;
  line-height: 1.78;
}

.about-prose p {
  margin: 0 0 16px;
}

.about-prose ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.about-fit-card {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.about-fit-card > span {
  display: block;
  margin-bottom: 16px;
  color: #17365b;
  font-weight: 900;
}

.about-fit-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.about-fit-card i {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 999px;
  background: rgba(239, 248, 255, 0.86);
  color: #315e8b;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

@keyframes aboutGridDrift {
  to { background-position: 30px 30px, 30px 30px; }
}

@keyframes aboutOrbitFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.62; }
  50% { transform: translate3d(18px, -18px, 0) scale(1.08); opacity: 0.9; }
}

@keyframes aboutDataLine {
  0%, 16% { transform: translateX(0); opacity: 0; }
  28% { opacity: 1; }
  78%, 100% { transform: translateX(128vw); opacity: 0; }
}

@keyframes aboutTerminalLine {
  0%, 100% { opacity: 0.74; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

@keyframes aboutDarkGrid {
  to { background-position: 28px 28px, 28px 28px; }
}

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

  .about-premium-hero {
    min-height: 0;
  }

  .about-executive-card {
    min-height: 0;
  }

  .about-metrics,
  .about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-fit-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .about-premium-page {
    width: min(100% - 28px, 1240px);
    padding-top: 30px;
  }

  .about-premium-hero {
    padding: 24px;
  }

  .about-premium-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .about-premium-actions .btn-primary,
  .about-premium-actions .btn-secondary {
    width: 100%;
  }

  .about-command-card {
    min-width: 0;
  }

  .about-executive-card {
    padding: 22px;
  }

  .about-proof-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-signal-grid,
  .about-metrics,
  .about-principles-grid,
  .about-workflow-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .about-premium-hero::before,
  .about-motion-field span,
  .about-motion-field i,
  .about-executive-card::before,
  .about-executive-orbit span,
  .about-terminal-body p,
  .about-workflow > div:first-child::after {
    animation: none !important;
  }

  .about-motion-field i {
    display: none;
  }
}

/* About page premium v2 */
.about-premium-page {
  width: min(1320px, calc(100% - 40px));
}

.about-premium-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.78fr);
  min-height: min(760px, calc(100vh - 118px));
  padding: clamp(34px, 6vw, 78px);
  border-color: rgba(125, 211, 252, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.28), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(52, 211, 153, 0.18), transparent 30%),
    linear-gradient(135deg, #061323 0%, #0b2741 52%, #071927 100%);
  box-shadow: 0 34px 90px rgba(10, 37, 66, 0.2);
}

.about-premium-hero::before {
  background:
    linear-gradient(rgba(131, 208, 245, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 208, 245, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.74), transparent 80%);
  -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,0.74), transparent 80%);
}

.about-premium-copy {
  max-width: 860px;
}

.about-premium-copy .badge {
  color: #bcecff;
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.about-premium-copy h1 {
  color: #f7fbff;
  font-size: clamp(52px, 7.6vw, 112px);
  line-height: 0.9;
  max-width: 940px;
  text-shadow: 0 22px 80px rgba(56, 189, 248, 0.18);
}

.about-premium-copy p {
  max-width: 720px;
  color: #c9dff2;
}

.about-premium-actions .btn-secondary {
  color: #eaf8ff;
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.about-motion-field span {
  border-color: rgba(125, 211, 252, 0.18);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 62%);
}

.about-motion-field i {
  background: linear-gradient(90deg, transparent, rgba(131, 208, 245, 0.82), rgba(52, 211, 153, 0.56), transparent);
}

.about-signature-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 74px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-signature-aura {
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 58%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(62, 182, 233, 0.22), rgba(52, 211, 153, 0.18), transparent);
  filter: blur(26px);
  animation: aboutSignatureAura 9s ease-in-out infinite;
}

.about-signature-panel > p {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #bcecff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-signature-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 30px;
  color: #f7fbff;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-signature-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(125, 211, 252, 0.16);
}

.about-signature-steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(125, 211, 252, 0.16);
}

.about-signature-steps strong {
  color: rgba(131, 208, 245, 0.56);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
}

.about-signature-steps h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 18px;
}

.about-signature-steps span {
  display: block;
  color: #c9dff2;
  font-size: 14px;
  line-height: 1.6;
}

.about-metrics-premium {
  position: relative;
  z-index: 2;
  margin: -36px auto clamp(78px, 9vw, 116px);
  width: min(1180px, calc(100% - 44px));
  padding: 12px;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(36, 88, 163, 0.12);
}

.about-metrics-premium div {
  min-height: 104px;
  border: 0;
  border-right: 1px solid rgba(128, 165, 216, 0.32);
  box-shadow: none;
  background: transparent;
}

.about-metrics-premium div:last-child {
  border-right: 0;
}

.about-principles {
  margin-top: 0;
}

@keyframes aboutSignatureAura {
  0%, 100% { transform: translateX(-3%); opacity: 0.65; }
  50% { transform: translateX(3%); opacity: 1; }
}

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

  .about-signature-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .about-premium-page {
    width: min(100% - 28px, 1320px);
  }

  .about-premium-hero {
    padding: 24px;
  }

  .about-premium-copy h1 {
    font-size: clamp(40px, 13vw, 62px);
    line-height: 0.96;
  }

  .about-signature-panel {
    padding: 22px;
  }

  .about-signature-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .about-metrics-premium {
    width: 100%;
    margin-top: 14px;
  }

  .about-metrics-premium div {
    border-right: 0;
    border-bottom: 1px solid rgba(128, 165, 216, 0.28);
  }

  .about-metrics-premium div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-signature-aura {
    animation: none !important;
  }
}

/* About page premium v3 - aligned with homepage visual language */
.about-premium-page {
  width: min(1280px, calc(100% - 40px));
  padding-top: clamp(34px, 6vw, 76px);
}

.about-premium-hero {
  min-height: 680px;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.74fr);
  border-color: rgba(128, 165, 216, 0.5);
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.2), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(52, 211, 153, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(236,248,255,0.92));
  box-shadow: 0 26px 70px rgba(36, 88, 163, 0.14);
}

.about-premium-hero::before {
  background:
    linear-gradient(rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.9), transparent 78%);
  -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,0.9), transparent 78%);
}

.about-premium-copy .badge {
  color: #0b6fa4;
  border-color: rgba(11, 111, 164, 0.22);
  background: rgba(232, 246, 255, 0.86);
}

.about-premium-copy h1 {
  max-width: 900px;
  color: #102a4a;
  font-size: clamp(48px, 7.1vw, 98px);
  line-height: 0.94;
  text-shadow: none;
}

.about-premium-copy p {
  color: #496d93;
}

.about-premium-actions .btn-secondary {
  color: #17365b;
  border-color: rgba(128, 165, 216, 0.52);
  background: rgba(255, 255, 255, 0.76);
}

.about-signature-panel {
  min-height: 540px;
  border-color: rgba(128, 165, 216, 0.48);
  background:
    radial-gradient(circle at 86% 4%, rgba(56, 189, 248, 0.16), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(52, 211, 153, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(36, 88, 163, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-signature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(102, 156, 226, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.075) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(145deg, rgba(0,0,0,0.72), transparent 72%);
  -webkit-mask-image: linear-gradient(145deg, rgba(0,0,0,0.72), transparent 72%);
  animation: aboutGridDrift 20s linear infinite;
}

.about-signature-aura {
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.18), rgba(52, 211, 153, 0.14), transparent);
  filter: blur(22px);
}

.about-signature-panel > p {
  color: #0b6fa4;
  border-color: rgba(11, 111, 164, 0.22);
  background: rgba(232, 246, 255, 0.86);
}

.about-signature-panel h2 {
  color: #132f51;
}

.about-signature-steps {
  border-top-color: rgba(128, 165, 216, 0.32);
}

.about-signature-steps article {
  border-bottom-color: rgba(128, 165, 216, 0.32);
}

.about-signature-steps strong {
  color: rgba(11, 111, 164, 0.48);
}

.about-signature-steps h3 {
  color: #17365b;
}

.about-signature-steps span {
  color: #557ca5;
}

.about-metrics-premium {
  margin-top: -34px;
  border-color: rgba(128, 165, 216, 0.46);
  background: rgba(255, 255, 255, 0.92);
}

.about-metrics-premium strong {
  color: #0b6fa4;
}

.about-metrics-premium span {
  color: #4f7196;
}

.about-section-head h2 {
  max-width: 920px;
}

.about-principles-grid article,
.about-workflow-steps article,
.about-prose,
.about-fit-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(56, 189, 248, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.about-principles {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(128, 165, 216, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 14%, rgba(56, 189, 248, 0.14), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(52, 211, 153, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(36, 88, 163, 0.1);
}

.about-principles::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(102, 156, 226, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(130deg, rgba(0,0,0,0.7), transparent 76%);
  -webkit-mask-image: linear-gradient(130deg, rgba(0,0,0,0.7), transparent 76%);
  animation: aboutGridDrift 24s linear infinite;
}

.about-principles::after {
  content: "";
  position: absolute;
  left: -25%;
  right: -25%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.68), rgba(52, 211, 153, 0.36), transparent);
  animation: aboutValueScan 6.8s ease-in-out infinite;
  pointer-events: none;
}

.about-principles > * {
  position: relative;
  z-index: 1;
}

.about-principles .badge {
  background: rgba(232, 246, 255, 0.9);
  color: #0b6fa4;
  border-color: rgba(11, 111, 164, 0.24);
}

.about-principles .about-section-head {
  align-items: start;
}

.about-principles .about-section-head h2 {
  max-width: 980px;
  margin-top: 18px;
  color: #102a4a;
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 0.98;
}

.about-principles-grid article {
  min-height: 340px;
  padding: clamp(24px, 3.5vw, 38px);
  border-color: rgba(128, 165, 216, 0.46);
  background:
    radial-gradient(circle at 90% 6%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(239,248,255,0.78));
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.09);
}

.about-principles-grid article:first-child {
  background:
    radial-gradient(circle at 88% 10%, rgba(56, 189, 248, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(11, 39, 65, 0.98), rgba(13, 57, 88, 0.96));
  border-color: rgba(125, 211, 252, 0.28);
  color: #f7fbff;
}

.about-principles-grid article:first-child strong {
  color: rgba(131, 208, 245, 0.6);
}

.about-principles-grid article:first-child h3 {
  color: #ffffff;
}

.about-principles-grid article:first-child p {
  color: #c9dff2;
}

.about-principles-grid strong {
  display: block;
  color: rgba(11, 111, 164, 0.28);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.78;
}

.about-principles-grid h3 {
  max-width: 360px;
  margin-top: clamp(34px, 5vw, 58px);
  font-size: clamp(25px, 2.6vw, 36px);
}

.about-principles-grid p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.72;
}

.about-principles-grid article::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -38%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-18deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.about-principles-grid article:hover::before {
  opacity: 1;
  animation: homeCardSheen 0.95s ease forwards;
}

.about-workflow > div:first-child {
  background:
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(15,47,79,.96), rgba(21,65,107,.94));
}

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

@media (max-width: 640px) {
  .about-premium-page {
    width: min(100% - 28px, 1280px);
  }

  .about-premium-hero {
    padding: 24px;
  }

  .about-premium-copy h1 {
    font-size: clamp(40px, 12.5vw, 60px);
    line-height: 0.98;
  }

  .about-signature-panel {
    min-height: 0;
  }
}

.about-value-showcase {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(72px, 9vw, 112px);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(128, 165, 216, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.16), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(52, 211, 153, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(36, 88, 163, 0.1);
}

.about-value-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(102, 156, 226, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.64), transparent 80%);
  -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,0.64), transparent 80%);
  animation: aboutGridDrift 22s linear infinite;
}

.about-value-showcase::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.58), rgba(52, 211, 153, 0.32), transparent);
  animation: aboutValueScan 7s ease-in-out infinite;
}

.about-value-copy,
.about-value-grid,
.about-tech-flow {
  position: relative;
  z-index: 1;
}

.about-value-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: end;
  margin-bottom: 24px;
}

.about-value-copy .badge {
  width: fit-content;
}

.about-value-copy h2 {
  margin: 16px 0 0;
  color: #132f51;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-value-copy p {
  margin: 0;
  color: #496d93;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
}

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

.about-value-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.74);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-value-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 111, 164, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, 0.16) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11, 111, 164, 0.16) 50%, transparent 51%);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.about-value-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 20px 44px rgba(36, 88, 163, 0.12);
}

.about-value-grid article:hover::after {
  transform: rotate(18deg) scale(1.08);
  border-color: rgba(56, 189, 248, 0.42);
}

.about-value-grid span {
  color: rgba(11, 111, 164, 0.34);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 900;
}

.about-value-grid h3 {
  margin: 28px 0 10px;
  color: #17365b;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.05;
}

.about-value-grid p {
  margin: 0;
  color: #557ca5;
  font-size: 15px;
  line-height: 1.68;
}

.about-tech-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(128, 165, 216, 0.34);
}

.about-tech-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #35597f;
  font-size: 12px;
  font-weight: 850;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.about-tech-flow span:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.48);
  color: #0b6fa4;
}

@keyframes aboutValueScan {
  0%, 12% { transform: scaleX(0); opacity: 0; }
  38% { opacity: 1; }
  76%, 100% { transform: scaleX(1); opacity: 0; }
}

@media (max-width: 980px) {
  .about-value-copy,
  .about-value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-value-showcase {
    padding: 22px;
  }

  .about-value-grid article {
    min-height: 0;
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .about-value-showcase::before,
  .about-value-showcase::after {
    animation: none !important;
  }
}

/* Premium tech drive section polish */
.about-principles {
  margin-top: clamp(64px, 8vw, 104px);
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.18), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(52, 211, 153, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,248,255,0.86));
}

.about-principles .about-section-head {
  display: block;
  max-width: 1060px;
  margin: 0 0 clamp(24px, 4vw, 38px);
}

.about-principles .badge {
  margin-bottom: 18px;
}

.about-principles .about-section-head h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-principles-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 18px;
}

.about-principles-grid article {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: clamp(26px, 3.4vw, 42px);
  border-color: rgba(128, 165, 216, 0.44);
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,250,255,0.84));
  box-shadow: 0 20px 48px rgba(36, 88, 163, 0.1);
}

.about-principles-grid article:first-child {
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.3), transparent 34%),
    radial-gradient(circle at 10% 92%, rgba(52, 211, 153, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(10, 31, 54, 0.98), rgba(16, 61, 99, 0.96));
}

.about-principles-grid strong {
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  top: clamp(22px, 3vw, 34px);
  z-index: -1;
  color: rgba(11, 111, 164, 0.12);
  font-size: clamp(86px, 9vw, 132px);
  line-height: 0.75;
}

.about-principles-grid article:first-child strong {
  color: rgba(131, 208, 245, 0.18);
}

.about-principles-grid h3 {
  max-width: 420px;
  margin: 0 0 16px;
  font-size: clamp(27px, 2.8vw, 42px);
  line-height: 1.02;
}

.about-principles-grid p {
  max-width: 470px;
  color: #496d93;
  font-size: 16px;
  line-height: 1.72;
}

.about-principles-grid article::after {
  right: auto;
  left: clamp(24px, 3vw, 38px);
  top: clamp(24px, 3vw, 38px);
  bottom: auto;
  width: 52px;
  height: 52px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, 0.16) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11, 111, 164, 0.16) 50%, transparent 51%),
    rgba(255,255,255,0.48);
}

.about-principles-grid article:first-child::after {
  border-color: rgba(125, 211, 252, 0.28);
  background:
    linear-gradient(90deg, transparent 49%, rgba(125, 211, 252, 0.26) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(125, 211, 252, 0.26) 50%, transparent 51%),
    rgba(255,255,255,0.06);
}

.about-principles-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 66px rgba(36, 88, 163, 0.16);
}

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

  .about-principles-grid article {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .about-principles {
    padding: 22px;
  }

  .about-principles .about-section-head h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .about-principles-grid article {
    min-height: 250px;
  }

  .about-principles-grid strong {
    font-size: 78px;
  }
}

.svc-icon svg { width: 20px; height: 20px; }
.content { max-width: 80rem; margin: 0 auto; padding: 72px 20px; }
.content article { max-width: 860px; }
.content h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 850; color: #132f4f; line-height: 1.08; margin: 18px 0 18px; letter-spacing: -0.02em; }
.content .lead { font-size: 17px; color: #44698f; line-height: 1.75; margin-bottom: 28px; }
.content .prose { font-size: 16px; color: #3d5f86; line-height: 1.85; }
.content .prose h2 { font-size: 26px; color: #173357; margin: 34px 0 12px; }
.content .prose h3 { font-size: 20px; color: #25496f; margin: 28px 0 10px; }
.content .prose p, .content .prose ul, .content .prose ol { margin-bottom: 18px; }
.content .prose a { color: #0b6fa4; font-weight: 700; }
.form { display: grid; gap: 14px; max-width: 720px; }
.form input, .form textarea { width: 100%; padding: 14px 15px; border-radius: 12px; border: 1px solid rgba(128, 165, 216, 0.58); background: rgba(255,255,255,.92); font: inherit; color: #13253f; }
.form textarea { min-height: 170px; }
.flash { margin: 18px 0; padding: 14px 16px; border-radius: 12px; background: rgba(52,211,153,.14); color: #17613a; border: 1px solid rgba(52,211,153,.38); }
.flash-success {
  animation: contactSuccessPop 0.7s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.flash-error {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.38);
  color: #991b1b;
}

.subpage-hero {
  max-width: 80rem;
  margin: 0 auto;
  padding: 72px 20px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 34px;
  align-items: end;
}
.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.subpage-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #132f4f;
  margin: 0 0 20px;
}
.subpage-lead {
  max-width: 740px;
  font-size: 17px;
  color: #44698f;
  line-height: 1.75;
}
.subpage-panel {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(128, 165, 216, 0.55);
  box-shadow: 0 18px 40px rgba(36, 88, 163, 0.12);
}
.subpage-panel-title {
  font-size: 12px;
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.subpage-panel-list {
  display: grid;
  gap: 10px;
}
.subpage-panel-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #35597f;
  font-size: 13px;
}
.subpage-panel-list span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56,189,248,.45);
}
.subpage-body {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 20px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.section-card {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(128, 165, 216, 0.52);
  box-shadow: 0 14px 30px rgba(36, 88, 163, 0.09);
}
.section-card + .section-card { margin-top: 16px; }
.section-card h2 {
  font-size: 24px;
  color: #17365b;
  margin: 0 0 12px;
}
.section-card h3 {
  font-size: 17px;
  color: #25496f;
  margin: 20px 0 8px;
}
.section-card p,
.section-card li {
  color: #3d5f86;
  line-height: 1.75;
  font-size: 15px;
}
.section-card p { margin: 0 0 14px; }
.section-card ul,
.section-card ol { padding-left: 20px; margin: 0 0 14px; }
.side-stack {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 98px;
}
.mini-stat {
  display: grid;
  grid-template-columns: minmax(82px, max-content) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(128, 165, 216, 0.22);
}
.mini-stat:last-child { border-bottom: 0; }
.mini-stat strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.26);
  font-size: 20px;
  line-height: 1;
  color: #38bdf8;
  white-space: nowrap;
}
.mini-stat span {
  color: #35597f;
  font-size: 13px;
  line-height: 1.35;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}
.page-cta {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 47, 79, 0.96), rgba(21, 65, 107, 0.94));
  border: 1px solid rgba(125, 211, 252, 0.28);
  color: #dcecff;
}
.page-cta h2 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 10px;
}
.page-cta p {
  color: #bfd0e8;
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 18px;
}
.posts-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 86px 20px 110px;
}
.posts-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}
.posts-hero-panel {
  border: 1px solid rgba(128,165,216,.52);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(36,88,163,.1);
  padding: 20px;
}
.posts-hero-panel > span {
  display: block;
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.posts-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.posts-hero-panel em {
  color: #35597f;
  font-style: normal;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid rgba(128,165,216,.48);
  border-radius: 999px;
  background: rgba(239,248,255,.88);
  padding: 8px 10px;
}
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 18px;
  margin-bottom: 22px;
}
.news-featured-card,
.news-list-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.52);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 38px rgba(36,88,163,.1);
}
.news-featured-card {
  min-height: 440px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background:
    radial-gradient(circle at 16% 18%, rgba(56,189,248,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(231,245,255,.88));
}
.news-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.news-visual {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(rgba(102,156,226,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,156,226,.11) 1px, transparent 1px);
  background-size: 22px 22px;
}
.news-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.news-visual span {
  width: fit-content;
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(56,189,248,.38);
  border-radius: 999px;
  background: rgba(239,248,255,.9);
  padding: 8px 11px;
}
.news-visual strong {
  color: rgba(19,47,79,.95);
  font-size: 118px;
  line-height: .82;
  letter-spacing: 0;
}
.news-featured-copy {
  position: relative;
  z-index: 3;
  padding: clamp(26px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.news-meta,
.news-list-date {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.news-meta span,
.news-list-date span {
  color: #0b6fa4;
}
.news-featured-copy h2 {
  margin: 18px 0 14px;
  color: #132f4f;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}
.news-featured-copy h2 a,
.news-list-card h2 a {
  color: inherit;
  text-decoration: none;
}
.news-featured-copy p {
  color: #44698f;
  line-height: 1.72;
  font-size: 15px;
  margin-bottom: 22px;
}
.news-read {
  position: relative;
  z-index: 4;
  display: inline-flex;
  width: fit-content;
  color: #0b6fa4;
  font-weight: 900;
  text-decoration: none;
}
.news-read:hover {
  color: #38bdf8;
}
.news-list {
  display: grid;
  gap: 14px;
}
.news-list-card {
  min-height: 210px;
  padding: 22px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.news-list-thumb {
  grid-row: span 2;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(128,165,216,.42);
  background: #eef7ff;
}
.news-list-card h2 {
  color: #17365b;
  font-size: 21px;
  line-height: 1.28;
  margin: 0 0 10px;
}
.news-list-card p {
  color: #44698f;
  line-height: 1.65;
  font-size: 14px;
}
.news-featured-card:hover,
.news-list-card:hover {
  border-color: rgba(56,189,248,.62);
  box-shadow: 0 20px 48px rgba(36,88,163,.16);
}
.posts-grid-archive {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(128,165,216,.42);
}
.article-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 20px 96px;
}
.article-hero-image {
  margin: 30px 0 34px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.48);
  background: #eef7ff;
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.13);
}
.article-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.article-card {
  padding: clamp(26px, 5vw, 52px);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(128,165,216,.52);
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.12);
}
.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: #4b6f96;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 34px;
}
.article-meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #557ca5;
  border: 1px solid rgba(128,165,216,.5);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(239, 248, 255, 0.86);
}
.article-seo-bridge {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: rgba(246, 251, 255, 0.86);
}
.article-seo-bridge h2 {
  margin: 10px 0 12px;
  color: #17365b;
  font-size: 24px;
}
.article-seo-bridge p {
  color: #44698f;
  line-height: 1.72;
  font-size: 15px;
}
.article-bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.article-bridge-links a {
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #0b6fa4;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  padding: 8px 10px;
}
.article-conversion-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(128, 165, 216, 0.55);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(52,211,153,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,246,255,.9));
  box-shadow: 0 18px 44px rgba(36,88,163,.1);
}
.article-conversion-cta h2 {
  margin: 10px 0 10px;
  color: #17365b;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}
.article-conversion-cta p {
  max-width: 700px;
  color: #44698f;
  line-height: 1.7;
  font-size: 15px;
}
.contact-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 72px 20px 96px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}
.contact-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(128,165,216,.52);
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.12);
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-lines a {
  color: #17365b;
  text-decoration: none;
  font-weight: 700;
}
.not-found-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 20px 120px;
}
@media (max-width: 900px) {
  .subpage-hero,
  .subpage-body,
  .contact-grid,
  .posts-hero,
  .news-layout,
  .news-featured-card {
    grid-template-columns: 1fr;
  }
  .side-stack { position: static; }
  .posts-hero { display: block; }
}

.subpage-shell {
  position: relative;
  overflow: hidden;
}
.subpage-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 460px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(228, 241, 255, 0.92), rgba(244, 248, 255, 0)),
    repeating-linear-gradient(90deg, rgba(70, 112, 168, 0.08) 0 1px, transparent 1px 86px);
  z-index: -1;
}
.subpage-hero {
  padding-top: 86px;
  align-items: center;
}
.subpage-title {
  font-size: 70px;
  letter-spacing: 0;
}
.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.subpage-panel,
.section-card,
.page-cta,
.contact-card,
.article-card {
  border-radius: 8px;
}
.subpage-orbit {
  position: relative;
  isolation: isolate;
}
.subpage-orbit::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(56, 189, 248, 0.34);
  border-radius: 8px;
  pointer-events: none;
  z-index: -1;
}
.subpage-highlights {
  max-width: 80rem;
  margin: 0 auto 28px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.subpage-highlight-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 255, 0.82));
  box-shadow: 0 14px 34px rgba(36, 88, 163, 0.09);
}
.subpage-highlight-card strong,
.section-index {
  display: inline-flex;
  font-family: 'JetBrains Mono', monospace;
  color: #38bdf8;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.subpage-highlight-card h2 {
  color: #17365b;
  font-size: 24px;
  margin-bottom: 12px;
}
.subpage-highlight-card p {
  color: #44698f;
  line-height: 1.68;
  font-size: 14px;
}
.section-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 30px;
}
.section-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #38bdf8, #34d399);
}
.section-card h2 {
  font-size: 28px;
}
.section-card li + li {
  margin-top: 7px;
}
.page-cta {
  background:
    linear-gradient(135deg, rgba(19, 47, 79, 0.98), rgba(13, 75, 112, 0.96));
}
.contact-grid {
  position: relative;
  padding-top: 86px;
}
.contact-intro {
  min-height: 560px;
}
.contact-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-lines a {
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 15px;
}
.contact-topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.contact-topic-cloud span {
  border: 1px solid rgba(128, 165, 216, 0.52);
  background: rgba(239, 248, 255, 0.86);
  color: #557ca5;
  border-radius: 999px;
  padding: 8px 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.contact-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.contact-focus-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(128, 165, 216, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.82));
  box-shadow: 0 12px 28px rgba(36, 88, 163, 0.08);
}
.contact-focus-card strong {
  display: block;
  color: #17365b;
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-focus-card p {
  margin: 0;
  color: #557ca5;
  font-size: 13px;
  line-height: 1.6;
}
.contact-steps {
  margin-top: 26px;
}
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.9));
}
.contact-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.contact-card-head span {
  width: fit-content;
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(52, 211, 153, 0.12);
  color: #17613a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}
.contact-card-head h2 {
  margin: 0;
  color: #17365b;
  font-size: 30px;
  line-height: 1.12;
}
.contact-form-lead {
  color: #557ca5;
  line-height: 1.65;
  margin: -2px 0 22px;
  font-size: 14px;
}
.contact-form {
  max-width: none;
}
.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 7px;
}
.contact-form label span {
  color: #35597f;
  font-size: 12px;
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  border-radius: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: rgba(96, 140, 190, 0.62);
}
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(96, 140, 190, 0.62);
  background: rgba(255, 255, 255, 0.92);
  color: #17365b;
  padding: 0 13px;
  font: inherit;
}
.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}
.contact-submit {
  position: relative;
  overflow: hidden;
  width: fit-content;
  min-width: 172px;
}
.contact-submit[disabled] {
  cursor: progress;
}
.contact-submit-pulse {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  pointer-events: none;
}
.contact-submit.is-sending .contact-submit-pulse {
  opacity: 1;
  animation: contactButtonSend 1s ease-in-out infinite;
}
.contact-submit.is-sending {
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16), 0 18px 38px rgba(37, 99, 235, 0.22);
}
.contact-submit.is-sent {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14), 0 18px 38px rgba(22, 163, 74, 0.2);
  animation: contactSentGlow 1.2s ease both;
}
.contact-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

@keyframes contactButtonSend {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

@keyframes contactSentGlow {
  0% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-1px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes contactSuccessPop {
  0% { opacity: 0; transform: translateY(8px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-note strong {
  display: block;
  color: #17365b;
  font-size: 13px;
  margin-bottom: 6px;
}
.contact-note p {
  margin: 0;
  color: #557ca5;
  font-size: 13px;
  line-height: 1.55;
}
.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.contact-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  color: #0b6fa4;
  background: rgba(239, 248, 255, 0.88);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 980px) {
  .contact-focus-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-focus-card {
    min-height: 0;
  }
}
.posts-hero {
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,246,255,.82));
}
.posts-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
}
.posts-pagination-bottom {
  margin: 24px 0 0;
}
.posts-page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}
.posts-page-link,
.posts-page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: rgba(239,248,255,.86);
  color: #25496f;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}
.posts-page-link {
  padding: 0 14px;
}
.posts-page-number {
  width: 38px;
  font-family: 'JetBrains Mono', monospace;
}
.posts-page-link:hover,
.posts-page-number:hover,
.posts-page-number.is-active {
  color: #fff;
  border-color: rgba(56,189,248,.45);
  background: linear-gradient(135deg, #45a7f5, #315eea);
  box-shadow: 0 10px 24px rgba(49,94,234,.18);
}
.posts-page-link.is-disabled {
  pointer-events: none;
  opacity: .46;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bc-card {
  border-radius: 8px;
}
@media (max-width: 980px) {
  .subpage-title { font-size: 56px; }
  .subpage-highlights,
  .posts-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .subpage-title { font-size: 42px; }
  .contact-lines { grid-template-columns: 1fr; }
  .posts-hero { padding: 22px; }
  .posts-pagination {
    align-items: stretch;
    flex-direction: column;
  }
  .posts-page-numbers {
    justify-content: center;
  }
}

/* Base layout */
/* ────────────────────────────────────────────
       PALETA
       --bg:        #080b14   (tło strony)
       --surface:   #0f1829   (karta)
       --surface2:  #162038   (karta jasna / hover)
       --border:    #1e2d4a   (ramka)
       --border2:   #253550   (ramka hover)
       --text:      #e8f0fe   (tekst główny)
       --text2:     #a8b8d0   (tekst pomocniczy)
       --text3:     #6b7f99   (tekst muted)
       --accent:    #38bdf8   (niebieski)
       --accent2:   #a78bfa   (fiolet)
    ──────────────────────────────────────────── */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      background: #061323;
      color: #13253f;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .page-layer {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      margin-bottom: var(--closing-statement-height);
      background: #f4f8ff;
      isolation: isolate;
    }

    .page-layer > :not(.bg-root):not(.lead-dock) {
      position: relative;
      z-index: 1;
    }

    /* ── Background ─────────────────────────── */
    .bg-root {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(1200px 560px at 20% -10%, rgba(56,189,248,0.2), transparent 62%),
        radial-gradient(1000px 520px at 100% -10%, rgba(37,99,235,0.12), transparent 64%),
        #f4f8ff;
      pointer-events: none;
    }
    .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(56,189,248,0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.14) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.22;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.18) 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.18) 70%, transparent 100%);
    }

    /* ── Karty – SOLIDNE tła ────────────────── */
    .card {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(146, 178, 221, 0.55);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .card:hover {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(84, 141, 226, 0.55);
      box-shadow: 0 14px 32px rgba(34, 84, 157, 0.15);
      transform: translateY(-2px);
    }
    .card-lg {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(146, 178, 221, 0.55);
      border-radius: 24px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .card-accent {
      border-color: rgba(56,189,248,0.30) !important;
      box-shadow: 0 0 0 1px rgba(56,189,248,0.08);
    }
    .card-accent:hover {
      border-color: rgba(56,189,248,0.50) !important;
      box-shadow: 0 0 24px rgba(56,189,248,0.12);
    }

    /* ── Neon border ────────────────────────── */
    .neon-border {
      border: 1px solid rgba(56,189,248,0.45);
      box-shadow: 0 0 0 1px rgba(56,189,248,0.12), 0 10px 26px rgba(34, 84, 157, 0.14);
    }

    /* ── Buttons ────────────────────────────── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
      color: #fff; font-weight: 700; font-size: 14px;
      padding: 12px 26px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.26);
      box-shadow: 0 10px 26px rgba(7, 44, 118, 0.35);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      text-decoration: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(7, 44, 118, 0.45);
      filter: brightness(1.05);
    }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255, 255, 255, 0.9);
      color: #1d3b61; font-weight: 600; font-size: 14px;
      padding: 12px 26px; border-radius: 100px;
      border: 1px solid rgba(128, 165, 216, 0.7);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
      text-decoration: none;
    }
    .btn-secondary:hover {
      background: rgba(243, 250, 255, 0.98);
      border-color: rgba(89, 146, 230, 0.8);
      color: #143356;
      transform: translateY(-1px);
    }

    /* ── Badge ──────────────────────────────── */
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(56,189,248,0.14);
      border: 1px solid rgba(56,189,248,0.38);
      color: #0b6fa4; font-size: 11px; font-weight: 700;
      letter-spacing: 0.09em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 100px;
      font-family: 'JetBrains Mono', monospace;
    }
    .badge-violet {
      background: rgba(167,139,250,0.12);
      border-color: rgba(167,139,250,0.30);
      color: #c4b5fd;
    }

    /* ── Gradient text ──────────────────────── */
    .text-gradient {
      background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 45%, #60a5fa 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ── Section headings ───────────────────── */
    .section-title {
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 800; color: #142f4f;
      letter-spacing: -0.025em; line-height: 1.12;
    }
    .section-sub {
      font-size: 16px; color: #3d5f86; line-height: 1.75; margin-top: 14px;
    }

    /* ── Mono ───────────────────────────────── */
    .mono { font-family: 'JetBrains Mono', monospace; }

    /* ── Divider ────────────────────────────── */
    .divider {
      height: 1px; border: none;
      background: linear-gradient(90deg, transparent, rgba(120, 160, 214, 0.55), transparent);
    }

    /* ── Fade-up ────────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.in { opacity: 1; transform: translateY(0); }

    /* ── Blog prose ─────────────────────────── */
    .prose-js h2 { font-size: 22px; font-weight: 700; color: #173357; margin: 2.5rem 0 0.75rem; }
    .prose-js h3 { font-size: 18px; font-weight: 600; color: #25496f; margin: 2rem 0 0.5rem; }
    .prose-js p  { font-size: 15px; color: #3d5f86; line-height: 1.85; margin-bottom: 1.25rem; }
    .prose-js ul, .prose-js ol { font-size: 15px; color: #3d5f86; padding-left: 1.25rem; margin-bottom: 1.25rem; }
    .prose-js li { margin-bottom: 0.5rem; }
    .prose-js a  { color: #38bdf8; text-decoration: underline; text-underline-offset: 3px; }
    .prose-js a:hover { color: #7dd3fc; }
    .prose-js strong { color: #173357; font-weight: 600; }
    .prose-js blockquote {
      border-left: 2px solid rgba(56,189,248,0.5);
      background: rgba(56,189,248,0.08); border-radius: 0 8px 8px 0;
      padding: 1rem 1.25rem; color: #3d5f86; font-style: italic; margin: 1.5rem 0;
    }
    .prose-js code {
      background: rgba(226, 240, 255, 0.78); border: 1px solid rgba(128, 165, 216, 0.4);
      color: #7dd3fc; font-size: 13px; padding: 2px 7px; border-radius: 6px;
      font-family: 'JetBrains Mono', monospace;
    }
    .prose-js pre  {
      background: rgba(236, 245, 255, 0.92); border: 1px solid rgba(128, 165, 216, 0.38);
      border-radius: 12px; padding: 1.25rem; overflow-x: auto; margin-bottom: 1.25rem;
    }
    .prose-js pre code { background: none; border: none; padding: 0; }
    .prose-js hr { border: none; height: 1px; background: rgba(120, 160, 214, 0.55); margin: 2.5rem 0; }

    /* ── Tailwind slate overrides (jaśniejszy styl globalny) ── */
    .text-slate-100 { color: #163354 !important; }
    .text-slate-200 { color: #274b72 !important; }
    .text-slate-300 { color: #35597f !important; }
    .text-slate-400 { color: #466a93 !important; }
    .text-slate-500 { color: #587ca6 !important; }
    .text-slate-600 { color: #6c91ba !important; }
    .text-slate-700 { color: #7ca4cb !important; }

    .border-slate-700 { border-color: rgba(128, 165, 216, 0.55) !important; }
    .border-slate-800 { border-color: rgba(128, 165, 216, 0.5) !important; }
    .border-slate-700\/60 { border-color: rgba(128, 165, 216, 0.46) !important; }

    .bg-slate-800 { background-color: rgba(232, 242, 255, 0.94) !important; }
    .bg-slate-800\/30 { background-color: rgba(232, 242, 255, 0.56) !important; }
    .bg-slate-800\/40 { background-color: rgba(232, 242, 255, 0.66) !important; }
    .bg-slate-900\/50 { background-color: rgba(226, 240, 255, 0.84) !important; }
    .bg-slate-900\/60 { background-color: rgba(226, 240, 255, 0.9) !important; }
    .bg-slate-900\/70 { background-color: rgba(226, 240, 255, 0.94) !important; }
    .bg-slate-950\/80 { background-color: rgba(236, 245, 255, 0.95) !important; }

    /* ── Scrollbar ──────────────────────────── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #eef5ff; }
    ::-webkit-scrollbar-thumb { background: #92b4db; border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: #6f99ca; }

/* Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(244, 249, 255, 0.92), rgba(238, 248, 255, 0.88), rgba(244, 249, 255, 0.92)),
    rgba(244, 249, 255, 0.86);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  border-bottom: 1px solid rgba(133, 178, 226, 0.34);
  box-shadow: 0 10px 34px rgba(22, 57, 99, 0.07);
}
.hdr::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(37, 190, 219, 0.54), rgba(48, 218, 154, 0.4), transparent);
}
.hdr-inner {
  position: relative;
  max-width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 18px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hdr-logo img {
  height: 25px;
  width: auto;
  display: block;
  opacity: 0.98;
  filter: none;
}
.hdr-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.hdr-nav {
  display: none;
  align-items: center;
  gap: clamp(18px, 1.55vw, 30px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 1180px) {
  .hdr-nav { display: flex; }
}
.hdr-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(31, 64, 96, 0.78);
  border: 0;
  transition: color 0.2s, transform 0.2s;
}
.hdr-link:hover {
  color: #082b47;
  transform: translateY(-1px);
}
.hdr-link-active {
  color: #092840;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hdr-link-active:hover {
  background: transparent;
}
.hdr-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fb6ff, #35d89f);
  box-shadow: 0 0 12px rgba(31, 182, 255, 0.4);
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hdr-lang-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hdr-lang {
  position: relative;
  height: 40px;
  min-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  color: rgba(48, 79, 109, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.2s, transform 0.2s;
}
.hdr-lang:hover {
  color: #123556;
  transform: translateY(-1px);
}
.hdr-lang-active {
  background: transparent;
  border: 0;
  color: #0876ba;
  box-shadow: none;
}
.hdr-lang-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fb6ff, #35d89f);
}
.hdr-cta {
  height: 42px;
  padding: 0 19px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}
.hdr-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #174262;
  transition: color 0.2s, transform 0.2s;
  box-shadow: none;
}
.hdr-burger:hover {
  color: #0c2c48;
  transform: translateY(-1px);
}
@media (min-width: 1180px) {
  .hdr-burger { display: none; }
}
.mob-menu {
  position: relative;
  z-index: 49;
  background: rgba(244, 249, 255, 0.96);
  border-bottom: 1px solid rgba(139, 183, 232, 0.44);
  box-shadow: 0 28px 60px rgba(22, 57, 99, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}
.mob-nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 16px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mob-link {
  padding: 15px 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 760;
  color: #173a5c;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  border: 0;
  border-bottom: 1px solid rgba(145, 184, 226, 0.28);
  background: transparent;
}
.mob-link:hover {
  color: #0c2c48;
  transform: translateY(-1px);
}
.mob-link-active {
  background: transparent;
  color: #0b5f95;
  border-bottom-color: rgba(45, 139, 218, 0.48);
}
.mob-lang-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 6px;
}
.mob-lang-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 0;
  border: 0;
  color: #4d6b89;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 850;
  background: transparent;
}
.mob-lang-row a:hover,
.mob-lang-row .mob-lang-active {
  color: #0876ba;
  border-color: transparent;
  background: transparent;
}
.mob-cta {
  justify-content: center;
  margin-top: 8px;
  border-radius: 16px;
  min-height: 46px;
}

/* Closing statement */
.closing-statement {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    min-height: var(--closing-statement-height);
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(128, 165, 216, 0.55);
    border-bottom: 1px solid rgba(128, 165, 216, 0.28);
    background:
      radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.20), transparent 34%),
      radial-gradient(circle at 84% 30%, rgba(52, 211, 153, 0.18), transparent 32%),
      linear-gradient(135deg, #061323 0%, #0b2741 48%, #071927 100%);
    color: #f7fbff;
    display: flex;
    align-items: stretch;
  }
  .closing-statement::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(131, 208, 245, .08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(131, 208, 245, .08) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.82), transparent 86%);
    pointer-events: none;
  }
  .closing-statement::after {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -42%;
    height: 62%;
    background: linear-gradient(90deg, rgba(0,110,173,.0), rgba(62,182,233,.34), rgba(52,211,153,.28), rgba(0,110,173,.0));
    filter: blur(30px);
    transform: rotate(-2deg);
    animation: closingGlow 8s ease-in-out infinite;
    pointer-events: none;
  }
  .closing-statement-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: clamp(70px, 9vw, 116px) 20px clamp(54px, 7vw, 82px);
  }
  .closing-statement-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .72;
  }
  .closing-art-orbit {
    fill: none;
    stroke: url(#closing-art-line);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 18;
    filter: drop-shadow(0 0 16px rgba(131, 208, 245, .34));
  }
  .closing-art-orbit-one {
    animation: closingTrace 16s linear infinite;
  }
  .closing-art-orbit-two {
    opacity: .58;
    animation: closingTrace 20s linear infinite reverse;
  }
  .closing-art-scan {
    fill: none;
    stroke: url(#closing-art-line);
    stroke-width: 1;
    opacity: .46;
    stroke-dasharray: 120 320;
    animation: closingScan 8s ease-in-out infinite;
  }
  .closing-art-nodes circle {
    fill: url(#closing-art-core);
    opacity: .84;
  }
  .closing-art-nodes circle:nth-child(2),
  .closing-art-nodes circle:nth-child(4) {
    animation: closingNode 3.4s ease-in-out infinite;
  }
  .closing-art-nodes circle:nth-child(3),
  .closing-art-nodes circle:nth-child(5) {
    animation: closingNode 4.2s ease-in-out infinite .4s;
  }
  .closing-art-panels rect {
    fill: rgba(255, 255, 255, .045);
    stroke: rgba(131, 208, 245, .24);
  }
  .closing-statement-mark {
    display: flex;
    gap: 9px;
    margin-bottom: 28px;
  }
  .closing-statement-mark span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #83d0f5;
    box-shadow: 0 0 24px rgba(131, 208, 245, .72);
    animation: closingPulse 2.7s ease-in-out infinite;
  }
  .closing-statement-mark span:nth-child(2) {
    background: #3eb6e9;
    animation-delay: .22s;
  }
  .closing-statement-mark span:nth-child(3) {
    background: #34d399;
    animation-delay: .44s;
  }
  .closing-statement-kicker {
    margin: 0 0 16px;
    color: #9ddcf8;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .closing-statement h2 {
    position: relative;
    width: fit-content;
    max-width: min(100%, 1120px);
    margin: 0;
    color: transparent;
    background:
      linear-gradient(92deg, #ffffff 0%, #dff5ff 38%, #83d0f5 58%, #dcfce7 78%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(42px, 7.4vw, 104px);
    line-height: .92;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: normal;
    text-shadow: 0 0 34px rgba(131, 208, 245, .28);
  }
  .closing-statement h2::before {
    content: "";
    position: absolute;
    inset: -18px -24px -14px;
    z-index: -1;
    border: 1px solid rgba(131, 208, 245, .16);
    border-radius: 22px;
    background:
      linear-gradient(90deg, rgba(131,208,245,.08), rgba(52,211,153,.04)),
      linear-gradient(rgba(131, 208, 245, .08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(131, 208, 245, .08) 1px, transparent 1px);
    background-size: auto, 22px 22px, 22px 22px;
    box-shadow: inset 0 0 26px rgba(131, 208, 245, .08), 0 20px 80px rgba(56, 189, 248, .10);
  }
  .closing-statement h2::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(131,208,245,0), rgba(131,208,245,.9), rgba(52,211,153,.82), rgba(131,208,245,0));
    box-shadow: 0 0 22px rgba(52, 211, 153, .42);
    animation: closingUnderline 5.4s ease-in-out infinite;
  }
  .closing-statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 620px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-top: clamp(26px, 4vw, 44px);
  }
  .closing-statement-grid p {
    margin: 0;
    color: #d9ecfb;
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.65;
  }
  .closing-statement-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid rgba(131, 208, 245, .48);
    border-radius: 999px;
    background: #f7fbff;
    color: #0b2741;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .closing-statement-cta:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 24px 54px rgba(62, 182, 233, .24);
  }
  @keyframes closingGlow {
    0%, 100% { opacity: .72; transform: translateX(-2%) rotate(-2deg); }
    50% { opacity: 1; transform: translateX(2%) rotate(-2deg); }
  }
  @keyframes closingPulse {
    0%, 100% { transform: translateY(0); opacity: .54; }
    50% { transform: translateY(-5px); opacity: 1; }
  }
  @keyframes closingTrace {
    to { stroke-dashoffset: -280; }
  }
  @keyframes closingScan {
    0%, 100% { stroke-dashoffset: 480; opacity: .18; }
    50% { stroke-dashoffset: -120; opacity: .7; }
  }
  @keyframes closingNode {
    0%, 100% { transform: translateY(0); opacity: .54; }
    50% { transform: translateY(-8px); opacity: 1; }
  }
  @keyframes closingUnderline {
    0%, 100% { transform: scaleX(.64); opacity: .48; }
    50% { transform: scaleX(1); opacity: .95; }
  }
  @media (max-width: 860px) {
    .closing-statement-grid {
      grid-template-columns: 1fr;
      align-items: start;
    }
    .closing-statement-cta {
      width: fit-content;
    }
  }
  @media (max-width: 560px) {
    :root {
      --closing-statement-height: 460px;
    }

    .closing-statement-inner {
      padding: 64px 18px 54px;
    }
    .closing-statement h2 {
      max-width: calc(100vw - 36px);
      font-size: clamp(34px, 12vw, 58px);
      line-height: .96;
    }
    .closing-statement h2::before {
      inset: -12px -10px -10px;
      border-radius: 16px;
    }
    .closing-statement h2::after {
      left: 4px;
      right: 4px;
      bottom: -12px;
    }
    .closing-statement-art {
      width: 190%;
      left: -52%;
      opacity: .62;
    }
    .closing-statement-grid p {
      font-size: 15px;
    }
    .closing-statement-cta {
      width: 100%;
      white-space: normal;
      text-align: center;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .closing-statement::after,
    .closing-statement-mark span,
    .closing-art-orbit,
    .closing-art-scan,
    .closing-art-nodes circle,
    .closing-statement h2::after {
      animation: none;
    }
  }

/* Footer */
.ftr {
    margin-top: 0;
    border-top: 1px solid rgba(128, 165, 216, 0.55);
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(239, 247, 255, 0.92), rgba(222, 237, 253, 0.88));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .ftr-inner { max-width: 80rem; margin: 0 auto; padding: 42px 20px 26px; }
  .ftr-system {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding: 20px;
    border: 1px solid rgba(128, 165, 216, 0.55);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.86), rgba(232,245,255,0.78));
    color: #fff;
    box-shadow: 0 16px 38px rgba(36, 88, 163, 0.1);
  }
  .ftr-system h2 {
    max-width: 560px;
    margin: 9px 0 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.14;
    color: #17365b;
  }
  .ftr-system-copy {
    min-width: 260px;
  }
  .ftr-pill {
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(52, 211, 153, 0.38);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(52, 211, 153, 0.13);
    color: #17613a;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
  }
  .ftr-system-flow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 260px;
  }
  .ftr-system-flow span {
    border: 1px solid rgba(128, 165, 216, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #35597f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 7px 10px;
  }
  .ftr-system-flow i {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(56,189,248,0.25), rgba(52,211,153,0.9));
    animation: ftrFlow 2.8s ease-in-out infinite;
  }
  .ftr-system-cta {
    flex: 0 0 auto;
    border: 1px solid rgba(56,189,248,0.42);
    border-radius: 999px;
    background: #17365b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    padding: 12px 16px;
  }
  .ftr-grid { display: grid; grid-template-columns: 1.45fr .9fr .9fr .9fr; gap: 34px; }
  @media (max-width: 960px) {
    .ftr-system { align-items: flex-start; flex-direction: column; }
    .ftr-system-flow { justify-content: flex-start; min-width: 0; flex-wrap: wrap; }
    .ftr-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) { .ftr-grid { grid-template-columns: 1fr; gap: 30px; } }

  .ftr-logo { display: inline-block; margin-bottom: 16px; text-decoration: none; }
  .ftr-logo img { height: 20px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
  .ftr-logo:hover img { opacity: 1; }
  .ftr-brand { max-width: 360px; }
  .ftr-tagline { font-size: 13px; color: #4b6f96; line-height: 1.7; margin-bottom: 18px; }
  .ftr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
  }
  .ftr-tags span {
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 999px;
    padding: 6px 9px;
    background: rgba(255, 255, 255, 0.68);
    color: #557ca5;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
  }
  .ftr-contacts { display: flex; flex-direction: column; gap: 10px; }
  .ftr-contact {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #35597f; text-decoration: none; transition: color 0.2s;
  }
  .ftr-contact:hover { color: #0b6fa4; }
  .ftr-col-head {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.09em; color: #6d8db4;
    font-family: 'JetBrains Mono', monospace; margin-bottom: 16px;
  }
  .ftr-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ftr-link { font-size: 13px; color: #4b6f96; text-decoration: none; transition: color 0.2s; }
  .ftr-link:hover { color: #163354; }

  @keyframes ftrFlow {
    0%, 100% { opacity: 0.42; transform: scaleX(0.65); }
    50% { opacity: 1; transform: scaleX(1); }
  }

  .ftr-bottom {
    margin-top: 34px; padding-top: 16px; border-top: 1px solid rgba(128, 165, 216, 0.48);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px;
  }
  .ftr-copy { font-size: 11px; color: #5b7ea8; font-family: 'JetBrains Mono', monospace; }

/* Blog cards */
.bc-card {
    position: relative; display: flex; flex-direction: column; overflow: hidden;
  }
  .bc-featured {
    border-color: rgba(56,189,248,0.35) !important;
    box-shadow: 0 0 24px rgba(56,189,248,0.08);
  }
  .bc-feat-badge { position: absolute; top: 12px; right: 12px; z-index: 2; }

  .bc-image {
    width: calc(100% - 20px);
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    margin: 10px 10px 0;
    border-radius: 8px;
    border: 1px solid rgba(128, 165, 216, 0.42);
    background: #eef7ff;
  }

  .bc-inner { display: flex; flex-direction: column; flex: 1; padding: 20px; }
  .bc-compact { padding: 16px; }

  .bc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .bc-cat {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 11px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
    background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.36); color: #0b6fa4;
  }
  .bc-date { font-size: 11px; color: #5b7ea8; font-family: 'JetBrains Mono', monospace; }

  .bc-title { font-size: 15px; font-weight: 700; color: #17365b; line-height: 1.4; margin-bottom: 10px; }
  .bc-title-sm { font-size: 13px; }
  .bc-link {
    text-decoration: none; color: inherit; transition: color 0.2s;
  }
  .bc-link::before { content: ''; position: absolute; inset: 0; }
  .bc-card:hover .bc-link { color: #7dd3fc; }

  .bc-desc {
    font-size: 13px; color: #44698f; line-height: 1.7; flex: 1; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }

  .bc-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(128, 165, 216, 0.5);
  }
  .bc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
  .bc-tag {
    font-size: 10px; padding: 2px 8px; border-radius: 6px;
    background: rgba(238, 246, 255, 0.95);
    border: 1px solid rgba(128, 165, 216, 0.52);
    color: #5b7ea8;
    font-family: 'JetBrains Mono', monospace;
  }
  .bc-read {
    position: relative;
    z-index: 2;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700; color: #5b7ea8; flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace; transition: color 0.2s;
    text-decoration: none;
  }
  .bc-card:hover .bc-read { color: #38bdf8; }
  .bc-arr { transition: transform 0.2s; }
  .bc-card:hover .bc-arr { transform: translateX(3px); }

/* Home page */
@keyframes pulse-live {
    0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
  }

  /* Hero */
  .hero-section {
    --hero-x: 50%;
    --hero-y: 42%;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 92px 0 116px;
  }

  .hero-wireframe {
    position: absolute;
    inset: 0 0 36px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(243, 250, 255, 0.92), rgba(230, 242, 255, 0.62));
  }
  .wf-svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .wf-line {
    fill: none;
    stroke: rgba(118, 143, 186, 0.72);
    stroke-width: 1.1;
    vector-effect: non-scaling-stroke;
  }
  .wf-line:not(.wf-soft) {
    stroke-dasharray: 420 20;
    animation: wfLineDrift 18s linear infinite;
  }
  .wf-soft {
    stroke: rgba(118, 143, 186, 0.42);
    stroke-width: 1;
  }
  .wf-strong {
    stroke: rgba(84, 128, 196, 0.9);
    stroke-width: 1.4;
  }
  .wf-codebits {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .wf-codebits span {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(47, 123, 184, 0.58);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.98);
    transition:
      opacity 420ms ease,
      transform 980ms cubic-bezier(0.2, 0.65, 0.2, 1);
    user-select: none;
    will-change: transform, opacity, left, top;
  }
  .wf-codebits span.is-on {
    opacity: 0.88;
    color: rgba(37, 112, 177, 0.82);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.34);
  }
  .wf-codebits span:nth-child(1) { left: 10%; top: 12%; }
  .wf-codebits span:nth-child(2) { left: 18%; top: 62%; }
  .wf-codebits span:nth-child(3) { left: 36%; top: 28%; }
  .wf-codebits span:nth-child(4) { left: 46%; top: 72%; }
  .wf-codebits span:nth-child(5) { left: 58%; top: 16%; }
  .wf-codebits span:nth-child(6) { left: 68%; top: 54%; }
  .wf-codebits span:nth-child(7) { left: 77%; top: 31%; }
  .wf-codebits span:nth-child(8) { left: 84%; top: 67%; }
  .wf-codebits span:nth-child(9) { left: 26%; top: 45%; }
  .wf-codebits span:nth-child(10) { left: 54%; top: 41%; }
  .wf-codebits span:nth-child(11) { left: 72%; top: 79%; }
  .wf-codebits span:nth-child(12) { left: 8%; top: 79%; }
  .wf-data-streams,
  .wf-system-markers,
  .wf-orbit,
  .wf-signal-map,
  .wf-glass-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .wf-data-streams i {
    position: absolute;
    left: -14%;
    top: calc(12% + var(--stream) * 10%);
    width: clamp(86px, 9vw, 148px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.82), rgba(52, 211, 153, 0.62), transparent);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
    opacity: 0;
    transform: translate3d(0, 0, 0);
    animation: wfPacket 9.6s linear infinite;
    animation-delay: calc(var(--stream) * -1.18s);
  }
  .wf-data-streams i:nth-child(2n) {
    top: calc(18% + var(--stream) * 8%);
    animation-duration: 12.4s;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.16), rgba(125, 211, 252, 0.88), transparent);
  }
  .wf-data-streams i:nth-child(3n) {
    width: clamp(58px, 6vw, 104px);
    animation-duration: 7.8s;
  }
  .wf-system-markers span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-radius: 999px;
    background: rgba(239, 248, 255, 0.68);
    color: rgba(23, 54, 91, 0.7);
    font: 800 10px/1 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(36, 88, 163, 0.08);
    animation: wfMarkerFloat 6.2s ease-in-out infinite;
  }
  .wf-system-markers span:nth-child(1) { left: 19%; top: 20%; animation-delay: -1.4s; }
  .wf-system-markers span:nth-child(2) { right: 17%; top: 31%; animation-delay: -3s; }
  .wf-system-markers span:nth-child(3) { left: 44%; bottom: 18%; animation-delay: -4.2s; }
  .wf-system-markers span:nth-child(4) { right: 27%; bottom: 28%; animation-delay: -2.2s; }
  .wf-orbit {
    display: grid;
    place-items: center;
    mix-blend-mode: multiply;
  }
  .wf-orbit span {
    position: absolute;
    width: min(58vw, 760px);
    aspect-ratio: 1.82;
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 50%;
    transform: rotate(var(--orbit-rotate, 0deg));
    animation: wfOrbit 18s linear infinite;
  }
  .wf-orbit span:nth-child(2) {
    --orbit-rotate: 62deg;
    width: min(46vw, 610px);
    border-color: rgba(52, 211, 153, 0.16);
    animation-duration: 24s;
    animation-direction: reverse;
  }
  .wf-orbit span:nth-child(3) {
    --orbit-rotate: -38deg;
    width: min(34vw, 460px);
    border-color: rgba(37, 99, 235, 0.15);
    animation-duration: 14s;
  }
  .wf-orbit span::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.12), 0 0 22px rgba(56, 189, 248, 0.58);
  }
  .wf-signal-map i {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(56, 189, 248, 0.42);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.2), 0 16px 36px rgba(36, 88, 163, 0.12);
    animation: wfSignalPulse 4.6s ease-in-out infinite;
  }
  .wf-signal-map i::before,
  .wf-signal-map i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: clamp(72px, 12vw, 180px);
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.34), transparent);
  }
  .wf-signal-map i::after {
    width: clamp(48px, 8vw, 120px);
    transform: rotate(72deg);
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.26), transparent);
  }
  .wf-signal-map i:nth-child(1) { left: 16%; top: 38%; animation-delay: -0.8s; }
  .wf-signal-map i:nth-child(1)::before { transform: rotate(18deg); }
  .wf-signal-map i:nth-child(2) { left: 34%; top: 19%; animation-delay: -2.1s; }
  .wf-signal-map i:nth-child(2)::before { transform: rotate(132deg); }
  .wf-signal-map i:nth-child(3) { right: 24%; top: 44%; animation-delay: -3.2s; }
  .wf-signal-map i:nth-child(3)::before { transform: rotate(196deg); }
  .wf-signal-map i:nth-child(4) { left: 52%; bottom: 24%; animation-delay: -1.4s; }
  .wf-signal-map i:nth-child(4)::before { transform: rotate(-28deg); }
  .wf-signal-map i:nth-child(5) { right: 12%; bottom: 20%; animation-delay: -2.7s; }
  .wf-signal-map i:nth-child(5)::before { transform: rotate(214deg); }
  .wf-glass-stack span {
    position: absolute;
    display: grid;
    gap: 6px;
    min-width: 148px;
    padding: 14px 16px;
    border: 1px solid rgba(128, 165, 216, 0.34);
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 248, 255, 0.38)),
      radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 42%);
    box-shadow: 0 20px 52px rgba(36, 88, 163, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0.78;
    animation: wfGlassFloat 8.8s ease-in-out infinite;
  }
  .wf-glass-stack b {
    color: rgba(23, 54, 91, 0.76);
    font-size: 12px;
    line-height: 1;
  }
  .wf-glass-stack em {
    color: #0b6fa4;
    font: 850 11px/1 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .wf-glass-stack span:nth-child(1) { left: 7%; top: 53%; animation-delay: -2.6s; }
  .wf-glass-stack span:nth-child(2) { right: 9%; top: 15%; animation-delay: -5.2s; }
  .wf-glass-stack span:nth-child(3) { right: 18%; bottom: 13%; animation-delay: -1.3s; }
  .wf-glow {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(125, 211, 252, 0.24), transparent 17%),
      radial-gradient(circle at 50% 44%, rgba(56, 189, 248, 0.15), transparent 40%),
      radial-gradient(circle at 50% 75%, rgba(37, 99, 235, 0.07), transparent 56%);
    animation: wfPulse 7.2s ease-in-out infinite;
    transition: background-position 0.2s ease;
  }
  .wf-glow::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.75), transparent);
    animation: wfScan 6.8s linear infinite;
    opacity: 0.55;
  }
  @media (max-width: 900px) {
    .hero-wireframe { inset: 0 0 20px; }
    .wf-line { stroke-width: 1; }
    .wf-strong { stroke-width: 1.2; }
    .wf-codebits span { font-size: 9px; }
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid; gap: 64px; align-items: center;
  }
  @media (min-width: 1024px) { .hero-inner { grid-template-columns: minmax(560px, 1fr) 460px; } }
  @media (max-width: 767px) { .hero-inner { padding: 0 18px; } }

  .hero-h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900; letter-spacing: -0.03em; line-height: 1.06;
    color: #132f4f; margin: 20px 0 22px;
    display: grid;
    gap: 6px;
  }
  .hero-line { display: block; }
  .hero-line.text-gradient {
    position: relative;
    width: fit-content;
  }
  .hero-line.text-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    right: -0.25em;
    bottom: 0.02em;
    height: 0.18em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.42), rgba(52, 211, 153, 0.3), rgba(56, 189, 248, 0));
    transform-origin: left center;
    animation: heroUnderlineFlow 6.4s ease-in-out infinite;
    z-index: -1;
  }
  .hero-rotator {
    position: relative;
    display: inline-block;
    min-height: 1.12em;
    min-width: min(14ch, 78vw);
    color: #274b72;
  }
  .hero-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(14px);
    animation: heroWordCycle 12s infinite, heroWordMorph 1.6s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 0 10px 34px rgba(56, 189, 248, 0.18);
  }

  .hero-preview {
    position: relative;
    isolation: isolate;
  }
  .hero-preview::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.6), rgba(255, 255, 255, 0.14), rgba(52, 211, 153, 0.42));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.72;
    pointer-events: none;
    z-index: -1;
  }
  .hero-preview::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    background: linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.34) 34%, transparent 44% 100%);
    transform: translateX(-120%);
    animation: heroPreviewSheen 8.2s ease-in-out infinite;
    pointer-events: none;
  }
  .hero-preview-orbit {
    position: absolute;
    right: -48px;
    top: -54px;
    width: 178px;
    aspect-ratio: 1;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background:
      radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.18), transparent 42%),
      conic-gradient(from 120deg, transparent, rgba(56, 189, 248, 0.52), transparent 38%, rgba(52, 211, 153, 0.38), transparent 68%);
    filter: blur(0.1px);
    opacity: 0.72;
    animation: heroPreviewOrbit 14s linear infinite;
    pointer-events: none;
  }
  .hero-preview-label {
    position: relative;
    z-index: 2;
  }
  .hero-live-status {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;
    display: grid;
    gap: 5px;
    min-width: 168px;
    padding: 13px 14px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 38px rgba(36, 88, 163, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: heroStatusFloat 7.2s ease-in-out infinite;
  }
  .hero-live-status span {
    color: #5b7ea8;
    font: 800 10px/1 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-live-status strong {
    color: #17365b;
    font-size: 18px;
    line-height: 1;
  }

.proof-strip {
  max-width: 86rem;
  margin: -74px auto 110px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.proof-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.52);
  background:
    radial-gradient(circle at 12% 0%, rgba(56,189,248,.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(52,211,153,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(236,248,255,.86));
  border-radius: 20px;
  padding: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  box-shadow: 0 26px 70px rgba(36,88,163,.16);
}
.proof-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(70,112,168,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(70,112,168,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), transparent 82%);
}
.proof-intro,
.proof-items,
.proof-references {
  position: relative;
  z-index: 1;
}
.proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding-right: clamp(0px, 1vw, 12px);
}
.proof-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(56,189,248,.38);
  border-radius: 999px;
  background: rgba(232,246,255,.82);
  font-family: 'JetBrains Mono', monospace;
  color: #0b6fa4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.proof-intro h2 {
  margin: 0;
  color: #132f4f;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}
.proof-intro p:not(.proof-label) {
  max-width: 480px;
  margin: 20px 0 0;
  color: #44698f;
  font-size: 15px;
  line-height: 1.72;
}
.proof-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.42);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(239,248,255,.78));
  min-height: 168px;
  padding: 18px;
  color: #2d527a;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 34px rgba(36,88,163,.08);
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  animation: homeProofCardIn .7s cubic-bezier(.2,.85,.2,1) both;
  animation-delay: var(--proof-delay, 0ms);
}
.proof-card::before {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(11,111,164,.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11,111,164,.18) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11,111,164,.18) 50%, transparent 51%);
  opacity: .72;
  transition: transform .28s ease, opacity .28s ease;
}
.proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56,189,248,.68);
  background:
    radial-gradient(circle at 82% 12%, rgba(56,189,248,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(232,246,255,.9));
  box-shadow: 0 28px 60px rgba(36,88,163,.16);
}
.proof-card:hover::before {
  transform: translate(-8px, -8px) rotate(18deg);
  opacity: 1;
}
.proof-card span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  background: rgba(239,248,255,.86);
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.proof-card strong {
  display: block;
  margin-top: 18px;
  color: #17365b;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.08;
  letter-spacing: 0;
}
.proof-card em {
  display: block;
  margin-top: 12px;
  color: #557ca5;
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}
.proof-references {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(128,165,216,.32);
}
.proof-references span {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(128,165,216,.38);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
}
.proof-references b,
.proof-references small {
  display: block;
}
.proof-references b {
  color: #17365b;
  font-size: 14px;
  line-height: 1.2;
}
.proof-references small {
  margin-top: 4px;
  color: #5b7ea8;
  font-size: 12px;
  line-height: 1.35;
}
@keyframes homeProofCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.lead-campaign-section {
  max-width: var(--site-width);
  margin: -54px auto 110px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.lead-campaign-copy,
.lead-campaign-board {
  border: 1px solid rgba(128, 165, 216, 0.52);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.1);
}

.lead-campaign-copy {
  border-radius: 8px;
  padding: clamp(24px, 3.4vw, 38px);
}

.lead-campaign-copy .section-title {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3.6vw, 46px);
}

.lead-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lead-campaign-board {
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background:
    linear-gradient(rgba(102,156,226,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,156,226,.08) 1px, transparent 1px),
    rgba(248,252,255,.94);
  background-size: 22px 22px;
}

.lead-campaign-board article {
  min-height: 188px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.lead-campaign-board span {
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-campaign-board strong {
  color: rgba(19, 47, 79, 0.14);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.lead-campaign-board p {
  color: #3d5f86;
  font-size: 14px;
  line-height: 1.62;
  margin: 0;
}

.lead-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: stretch;
  gap: 8px;
  filter: drop-shadow(0 14px 24px rgba(20, 64, 105, 0.22));
}

.page-layer > .lead-dock {
  position: fixed;
  z-index: 90;
}

.lead-dock a {
  text-decoration: none;
}

.lead-dock-primary,
.lead-dock-phone {
  border: 1px solid rgba(125, 211, 252, 0.38);
  background: rgba(15, 47, 79, 0.96);
  color: #ffffff;
}

.lead-dock-primary {
  min-width: 178px;
  border-radius: 8px;
  padding: 10px 13px;
  display: grid;
  gap: 2px;
}

.lead-dock-primary span {
  display: none;
  color: #9fdcff;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-dock-primary strong {
  font-size: 13px;
}

.lead-dock-phone {
  display: none;
  border-radius: 8px;
  padding: 0 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.business-fit-section {
  max-width: var(--site-width);
  margin: 0 auto 106px;
  padding: 0 24px;
}

.home-proof-cases {
  width: min(1180px, 100% - 40px);
  margin: clamp(54px, 7vw, 104px) auto;
  padding: clamp(30px, 4.6vw, 58px);
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 211, 153, 0.14), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(56, 189, 248, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,248,255,0.82));
  box-shadow: 0 28px 76px rgba(36, 88, 163, 0.12);
}

.home-proof-cases-head {
  max-width: 920px;
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

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

.home-proof-case {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(56, 189, 248, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,249,255,0.82));
  color: #173456;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(36, 88, 163, 0.1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-proof-case:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 28px 62px rgba(36, 88, 163, 0.16);
}

.home-proof-case > span {
  width: fit-content;
  margin: 2px 0 14px;
  padding: 8px 10px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.09);
  color: #0f8a67;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-proof-case-media {
  aspect-ratio: 1.42;
  margin: 0 -4px 22px;
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, 0.35);
  border-radius: 8px;
  background: #0b1d33;
}

.home-proof-case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}

.home-proof-case:hover .home-proof-case-media img {
  transform: scale(1.045);
}

.home-proof-case strong {
  color: #143253;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1;
}

.home-proof-case p {
  margin: 14px 0 24px;
  color: #55789f;
  font-size: 15px;
  line-height: 1.62;
}

.home-proof-case em {
  margin-top: auto;
  color: #0d83d8;
  font-style: normal;
  font-weight: 850;
}

.business-fit-copy {
  max-width: 800px;
  margin-bottom: 26px;
}

.business-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.business-fit-card {
  min-height: 245px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(237,248,255,0.86));
  box-shadow: 0 18px 44px rgba(36, 88, 163, 0.1);
  padding: clamp(22px, 2.5vw, 30px);
}

.business-fit-card span {
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
}

.business-fit-card h3 {
  margin: 18px 0 10px;
  color: #17365b;
  font-size: 22px;
  line-height: 1.16;
}

.business-fit-card p {
  color: #557ca5;
  font-size: 14px;
  line-height: 1.66;
}
.growth-section,
.product-section,
.case-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 20px 110px;
}
.growth-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}
.growth-copy {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,47,79,.96), rgba(21,65,107,.94));
  color: #dcecff;
  border: 1px solid rgba(125,211,252,.28);
}
.growth-copy .section-title { color: #fff; }
.growth-copy .section-sub { color: #bfd0e8; }
.growth-list {
  display: grid;
  gap: 14px;
}
.growth-item,
.product-module,
.case-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(128,165,216,.52);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 30px rgba(36,88,163,.08);
}
.growth-item h3,
.product-module h3,
.case-card h3 {
  margin: 0 0 8px;
  color: #17365b;
  font-size: 18px;
}
.growth-item p,
.product-module p,
.case-card p {
  color: #44698f;
  line-height: 1.65;
  font-size: 14px;
}
.growth-paths {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 18%, rgba(56, 189, 248, 0.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(52, 211, 153, 0.14), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 255, 0.9));
  box-shadow: 0 22px 54px rgba(36, 88, 163, 0.12);
}
.growth-paths-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  padding: clamp(22px, 3.2vw, 34px);
  border-bottom: 1px solid rgba(128, 165, 216, 0.42);
}
.growth-paths-head span {
  color: #0b6fa4;
  font: 850 11px/1.2 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.growth-paths-head h3 {
  max-width: 860px;
  margin: 0;
  color: #132f4f;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}
.growth-paths-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.growth-path-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(22px, 3vw, 32px);
  color: #17365b;
  text-decoration: none;
  border-right: 1px solid rgba(128, 165, 216, 0.36);
  background: rgba(255, 255, 255, 0.34);
  transition: transform 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}
.growth-path-card:last-child {
  border-right: 0;
}
.growth-path-card::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(11, 111, 164, 0.2);
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, 0.2) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11, 111, 164, 0.2) 50%, transparent 51%),
    rgba(255, 255, 255, 0.45);
  opacity: 0.72;
}
.growth-path-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 42px rgba(36, 88, 163, 0.14);
}
.growth-path-card strong {
  color: rgba(11, 111, 164, 0.3);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.82;
  letter-spacing: 0;
}
.growth-path-card span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  border: 1px solid rgba(45, 132, 230, 0.2);
  border-radius: 999px;
  background: rgba(232, 246, 255, 0.82);
  color: #23639f;
  font: 800 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
  padding: 8px 10px;
}
.growth-path-card h4 {
  margin: 0 0 12px;
  color: #132f4f;
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.08;
  letter-spacing: 0;
}
.growth-path-card p {
  margin: 0;
  color: #496d93;
  font-size: 15px;
  line-height: 1.68;
}
.growth-path-card em {
  margin-top: auto;
  color: #0b6fa4;
  font-style: normal;
  font-weight: 900;
}
@media (max-width: 1080px) {
  .growth-paths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .growth-path-card:nth-child(2n) {
    border-right: 0;
  }
  .growth-path-card:nth-child(n + 3) {
    border-top: 1px solid rgba(128, 165, 216, 0.36);
  }
}
@media (max-width: 640px) {
  .growth-paths-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .growth-paths-grid {
    grid-template-columns: 1fr;
  }
  .growth-path-card {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid rgba(128, 165, 216, 0.36);
  }
  .growth-path-card:first-child {
    border-top: 0;
  }
}
.subpage-product-preview {
  width: min(80rem, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 16%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 255, 0.9));
  box-shadow: 0 20px 48px rgba(36, 88, 163, 0.1);
}
.subpage-product-preview > div {
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subpage-product-preview span {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(45, 132, 230, 0.22);
  border-radius: 999px;
  background: rgba(232, 246, 255, 0.86);
  color: #23639f;
  font: 850 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
}
.subpage-product-preview h2 {
  margin: 0 0 14px;
  color: #132f4f;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}
.subpage-product-preview p {
  margin: 0 0 22px;
  color: #496d93;
  font-size: 16px;
  line-height: 1.72;
}
.subpage-product-preview figure {
  margin: 0;
  padding: 18px;
  background:
    linear-gradient(rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    rgba(238, 247, 255, 0.82);
  background-size: 20px 20px;
}
.subpage-product-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(36, 88, 163, 0.14);
}
@media (max-width: 860px) {
  .subpage-product-preview {
    width: min(100% - 32px, 80rem);
    grid-template-columns: 1fr;
  }
  .subpage-product-preview img {
    min-height: 260px;
  }
}
.product-spotlight {
  border-radius: 30px;
  border: 1px solid rgba(125,211,252,.35);
  background:
    radial-gradient(circle at 80% 10%, rgba(56,189,248,.24), transparent 34%),
    linear-gradient(135deg, rgba(248,252,255,.95), rgba(226,240,255,.92));
  padding: clamp(26px, 5vw, 54px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(36,88,163,.14);
}
.product-screen {
  border: 1px solid rgba(128,165,216,.55);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  padding: 18px;
  min-height: 360px;
}
.passport-card {
  border-radius: 16px;
  border: 1px solid rgba(128,165,216,.48);
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.passport-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #35597f;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(128,165,216,.28);
  padding-bottom: 12px;
}
.passport-status {
  color: #0f8a67;
  background: rgba(52,211,153,.14);
  border: 1px solid rgba(52,211,153,.3);
  border-radius: 999px;
  padding: 4px 8px;
}
.product-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.product-section {
  position: relative;
}
.product-section::before {
  content: "";
  position: absolute;
  inset: -28px 20px 82px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(13,44,74,.98), rgba(16,73,108,.94) 48%, rgba(245,249,255,.96) 48.2%, rgba(245,249,255,.96));
  border: 1px solid rgba(125,211,252,.2);
  box-shadow: 0 26px 70px rgba(14,42,70,.13);
  z-index: -1;
}
.product-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 34px 34px 8px;
}
.product-showcase-head .badge {
  background: rgba(255,255,255,.1);
  color: #dff4ff;
  border-color: rgba(190,230,255,.22);
}
.product-showcase-head .section-title {
  max-width: 760px;
  margin-top: 16px;
  color: #fff;
}
.product-showcase-head .section-sub {
  max-width: 760px;
  color: #c7dbee;
}
.product-showcase-cta {
  background: rgba(255,255,255,.08);
  color: #eff8ff;
  border-color: rgba(190,230,255,.28);
}
.product-collection {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 34px 36px;
}
.product-card {
  grid-column: span 4;
  min-height: 390px;
  padding: 12px 12px 20px;
  border-radius: 24px;
  border: 1px solid rgba(128,165,216,.42);
  background:
    radial-gradient(circle at 90% 0%, rgba(56,189,248,.2), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,250,255,.93));
  box-shadow: 0 18px 42px rgba(10,40,72,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,.42);
  box-shadow: 0 24px 56px rgba(10,40,72,.15);
}
.product-card-featured {
  grid-column: span 6;
  min-height: 470px;
  background:
    radial-gradient(circle at 88% 6%, rgba(52,211,153,.22), transparent 34%),
    radial-gradient(circle at 4% 84%, rgba(56,189,248,.2), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,248,255,.94));
}
.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 3;
}
.product-card:nth-child(4) {
  grid-column: span 6;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(56,189,248,.36);
  pointer-events: none;
}
.product-card:nth-child(2)::before { border-top-color: rgba(52,211,153,.38); }
.product-card:nth-child(3)::before { border-top-color: rgba(251,191,36,.48); }
.product-card:nth-child(4)::before { border-top-color: rgba(99,102,241,.42); }
.product-card-media {
  display: block;
  aspect-ratio: 1.55;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.42);
  background: #eef6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 26px rgba(44,88,140,.08);
}
.product-card-featured .product-card-media {
  aspect-ratio: 1.7;
}
.product-card:nth-child(4) .product-card-media {
  height: 100%;
  aspect-ratio: auto;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-card-media img {
  transform: scale(1.035);
}
.product-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15,47,79,.06);
  color: #426b96;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0 0 10px;
  color: #132f51;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}
.product-card-featured h3 {
  font-size: clamp(32px, 3vw, 44px);
}
.product-card p {
  margin: 0;
  color: #4d7198;
  font-size: 15px;
  line-height: 1.7;
}
.product-card-featured p {
  max-width: 560px;
  font-size: 16px;
}
.product-link {
  color: #0f5f8f;
  font-weight: 850;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid rgba(15,95,143,.24);
}
.product-link:hover {
  color: #0b8ac0;
}

/* Cleaner product showcase used on the homepage. */
.product-section {
  padding-bottom: 96px;
}
.product-section::before {
  display: none;
}
.product-showcase-head {
  padding: 0 0 24px;
  align-items: center;
}
.product-showcase-head .badge {
  background: rgba(15,47,79,.06);
  color: #426b96;
  border-color: rgba(128,165,216,.42);
}
.product-showcase-head .section-title {
  max-width: 820px;
  color: #132f51;
}
.product-showcase-head .section-sub {
  max-width: 780px;
  color: #4d7198;
}
.product-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 10px 26px rgba(7, 44, 118, 0.26);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.product-showcase-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 44, 118, 0.34);
  filter: brightness(1.05);
}
.product-collection {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}
.product-card,
.product-card-featured,
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4) {
  grid-column: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(230px, .86fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,255,.94));
}
.product-card::before {
  display: none;
}
.product-card-media,
.product-card-featured .product-card-media,
.product-card:nth-child(4) .product-card-media {
  height: auto;
  min-height: 210px;
  aspect-ratio: auto;
  border-radius: 18px;
}
.product-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px 8px 0;
}
.product-card span {
  margin-bottom: 12px;
}
.product-card h3,
.product-card-featured h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}
.product-card p,
.product-card-featured p {
  max-width: none;
  font-size: 15px;
}
.product-card .product-link {
  align-self: end;
  margin: 0 10px 8px 0;
}

.products-page {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 64px 20px 112px;
}
.products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 8%, rgba(56,189,248,.28), transparent 34%),
    linear-gradient(135deg, #102f4f, #17496e);
  color: #fff;
  border: 1px solid rgba(125,211,252,.25);
  box-shadow: 0 26px 70px rgba(14,42,70,.16);
}
.products-hero .badge {
  background: rgba(255,255,255,.1);
  color: #dff4ff;
  border-color: rgba(190,230,255,.24);
}
.products-hero h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .94;
  letter-spacing: 0;
}
.products-hero p {
  max-width: 780px;
  margin: 0;
  color: #c7dbee;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}
.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.products-hero-panel {
  display: grid;
  gap: 12px;
}
.products-hero-panel div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(190,230,255,.2);
}
.products-hero-panel strong {
  display: block;
  font-size: 34px;
  color: #fff;
}
.products-hero-panel span {
  color: #c7dbee;
  font-size: 13px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.products-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 20px;
  min-height: 360px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(128,165,216,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,255,.94));
  box-shadow: 0 18px 42px rgba(10,40,72,.1);
}
.products-card-featured {
  grid-column: span 12;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  min-height: 440px;
}
.products-card-media {
  display: block;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.42);
  background: #eef6ff;
}
.products-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.products-card:hover .products-card-media img {
  transform: scale(1.035);
}
.products-card-copy {
  padding: clamp(18px, 3vw, 34px) clamp(14px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-card-copy span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15,47,79,.06);
  color: #426b96;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.products-card-copy h2 {
  margin: 0 0 12px;
  color: #132f51;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}
.products-card-copy p {
  margin: 0;
  color: #4d7198;
  font-size: 16px;
  line-height: 1.72;
}
.products-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}
.products-points i {
  font-style: normal;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eef6ff;
  color: #315c88;
  border: 1px solid rgba(128,165,216,.42);
  font-size: 12px;
  font-weight: 750;
}
.products-seo-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.products-seo-content article {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(128,165,216,.45);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(10,40,72,.08);
}
.products-seo-content h2 {
  margin: 0 0 12px;
  color: #17365b;
  font-size: 22px;
}
.products-seo-content p {
  color: #4d7198;
  line-height: 1.72;
  font-size: 15px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.seo-faq {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 20px 110px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  border: 1px solid rgba(128,165,216,.52);
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 22px;
}
.faq-item h3 { color: #17365b; margin: 0 0 8px; font-size: 17px; }
.faq-item p { color: #44698f; line-height: 1.65; font-size: 14px; }
@media (max-width: 1180px) {
  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    grid-column: span 6;
  }
  .product-card-featured,
  .product-card:nth-child(4) {
    grid-column: span 12;
  }
}
@media (max-width: 900px) {
  .proof-box,
  .lead-campaign-section,
  .growth-grid,
  .product-spotlight,
  .case-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .business-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-items,
  .lead-campaign-board,
  .product-modules { grid-template-columns: repeat(2, 1fr); }
  .proof-intro {
    min-height: 0;
  }
  .proof-references {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-section::before {
    inset: -20px 16px 70px;
  }
  .products-hero,
  .products-card,
  .products-card-featured,
  .products-seo-content {
    grid-template-columns: 1fr;
  }
  .products-card,
  .products-card-featured {
    grid-column: span 12;
  }
  .products-card-media {
    min-height: 260px;
  }
  .product-showcase-head {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0 0 22px;
  }
  .product-collection {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .product-card,
  .product-card-featured,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    grid-template-columns: 1fr;
  }
  .product-card-media,
  .product-card-featured .product-card-media,
  .product-card:nth-child(4) .product-card-media {
    min-height: 240px;
    aspect-ratio: 1.65;
  }
  .product-card > div {
    padding: 2px 4px 0;
  }
  .product-card .product-link {
    align-self: start;
    margin: 0 4px 4px;
  }
}
@media (max-width: 560px) {
  .lead-campaign-section {
    margin: -70px auto 72px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .lead-campaign-board {
    grid-template-columns: 1fr;
  }
  .lead-campaign-board article {
    min-height: 0;
  }
  .lead-campaign-actions .btn-primary,
  .lead-campaign-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .business-fit-section {
    margin-bottom: 70px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .business-fit-grid {
    grid-template-columns: 1fr;
  }
  .business-fit-card {
    min-height: 0;
  }
  .proof-items,
  .product-modules { grid-template-columns: 1fr; }
  .proof-references {
    grid-template-columns: 1fr;
  }
  .proof-card {
    min-height: 150px;
  }
  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card-featured {
    min-height: 0;
  }
  .product-card-featured h3 {
    font-size: clamp(28px, 10vw, 38px);
  }
  .products-page {
    padding-left: 16px;
    padding-right: 16px;
  }
  .products-hero {
    padding: 26px 20px;
  }
  .products-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }
  .products-card {
    padding: 12px;
  }
  .products-card-media {
    min-height: 220px;
  }
  .products-card-copy {
    padding: 14px 8px 8px;
  }
}

.portfolio-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 64px 20px 104px;
}
.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.portfolio-title {
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: 0;
  color: #132f4f;
  font-weight: 900;
  margin: 16px 0;
  max-width: 800px;
}
.portfolio-lead {
  color: #44698f;
  line-height: 1.7;
  font-size: 16px;
  max-width: 720px;
}
.portfolio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.portfolio-console {
  border: 1px solid rgba(128,165,216,.56);
  background:
    radial-gradient(circle at 85% 10%, rgba(56,189,248,.18), transparent 36%),
    rgba(255,255,255,.86);
  border-radius: 8px;
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 20px 50px rgba(36,88,163,.12);
}
.portfolio-console-top {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.portfolio-console-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd3fc;
}
.portfolio-console-top span:nth-child(1) { background: #fb7185; }
.portfolio-console-top span:nth-child(2) { background: #fbbf24; }
.portfolio-console-top span:nth-child(3) { background: #4ade80; margin-right: auto; }
.portfolio-signal {
  border: 1px solid rgba(128,165,216,.45);
  border-radius: 8px;
  background: rgba(239,248,255,.8);
  padding: 14px;
  display: grid;
  gap: 5px;
}
.portfolio-signal + .portfolio-signal { margin-top: 10px; }
.portfolio-signal b {
  color: #17365b;
  font-size: 18px;
}
.portfolio-signal em {
  color: #557ca5;
  font-style: normal;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 46px;
}
.portfolio-metrics div {
  border: 1px solid rgba(128,165,216,.5);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  padding: clamp(22px, 2.4vw, 30px);
  display: grid;
  gap: 6px;
}
.portfolio-metrics strong {
  color: #38bdf8;
  font-size: 30px;
}
.portfolio-metrics span {
  color: #557ca5;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 11px;
}
.portfolio-lab,
.portfolio-work,
.portfolio-competence,
.portfolio-case-studies,
.portfolio-proof-showcase,
.portfolio-dppc-focus {
  margin-bottom: 70px;
}

.portfolio-proof-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.54);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56,189,248,.18), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(52,211,153,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,246,255,.84));
  box-shadow: 0 24px 64px rgba(36,88,163,.14);
  padding: clamp(24px, 4vw, 44px);
}

.portfolio-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.portfolio-solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(220px, auto) 1fr;
  border: 1px solid rgba(128,165,216,.5);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,250,255,.9));
  box-shadow: 0 18px 42px rgba(36,88,163,.1);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.portfolio-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,.72);
  box-shadow: 0 30px 70px rgba(36,88,163,.18);
}

.portfolio-solution-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 250px;
  background: #07182d;
  isolation: isolate;
}

.portfolio-solution-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,.9), rgba(52,211,153,.8), transparent);
  z-index: 2;
}

.portfolio-solution-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.portfolio-solution-card:hover .portfolio-solution-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.portfolio-solution-copy {
  padding: clamp(20px, 2.8vw, 30px);
}

.portfolio-solution-copy h3 {
  margin: 0 0 12px;
  color: #132f4f;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.portfolio-solution-copy p {
  color: #44698f;
  font-size: 14px;
  line-height: 1.68;
  margin: 0;
}

.portfolio-solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.portfolio-solution-points span {
  border: 1px solid rgba(128,165,216,.45);
  border-radius: 999px;
  background: rgba(239,248,255,.88);
  color: #35597f;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 10px;
}
.portfolio-dppc-focus {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(128,165,216,.54);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(52,211,153,.2), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(230,247,255,.88));
  box-shadow: 0 18px 44px rgba(36,88,163,.1);
  padding: clamp(24px, 4vw, 38px);
}
.portfolio-dppc-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.portfolio-dppc-modules span {
  border: 1px solid rgba(128,165,216,.48);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  color: #35597f;
  padding: clamp(18px, 2vw, 24px);
  font-weight: 760;
  font-size: 13px;
}
.portfolio-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(680px, 76%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-color: #7dd3fc rgba(128,165,216,.22);
}
.portfolio-carousel::-webkit-scrollbar { height: 10px; }
.portfolio-carousel::-webkit-scrollbar-track {
  background: rgba(128,165,216,.22);
  border-radius: 999px;
}
.portfolio-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #38bdf8, #34d399);
  border-radius: 999px;
}
.portfolio-slide {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.54);
  background:
    radial-gradient(circle at 78% 12%, rgba(52,211,153,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(229,246,255,.9));
  border-radius: 8px;
  padding: clamp(22px, 3.4vw, 32px);
  box-shadow: 0 20px 52px rgba(36,88,163,.12);
}
.portfolio-slide:nth-child(2) {
  background:
    radial-gradient(circle at 82% 12%, rgba(59,130,246,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(237,244,255,.9));
}
.portfolio-slide:nth-child(3) {
  background:
    radial-gradient(circle at 82% 12%, rgba(251,191,36,.2), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,250,232,.86));
}
.portfolio-slide-copy {
  display: flex;
  flex-direction: column;
}
.portfolio-slide h3 {
  color: #132f4f;
  font-size: 38px;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.portfolio-slide h4 {
  color: #25496f;
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 16px;
  max-width: 640px;
}
.portfolio-slide p {
  color: #44698f;
  line-height: 1.72;
  font-size: 14px;
  max-width: 680px;
}
.portfolio-slide-visual {
  align-self: stretch;
  border: 1px solid rgba(128,165,216,.5);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}
.portfolio-slide-screenshot {
  padding: 0;
  overflow: hidden;
  background: #07182d;
  min-height: 320px;
}
.portfolio-slide-screenshot img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}
.portfolio-visual-top {
  display: flex;
  gap: 7px;
}
.portfolio-visual-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd3fc;
}
.portfolio-visual-top span:nth-child(1) { background: #fb7185; }
.portfolio-visual-top span:nth-child(2) { background: #fbbf24; }
.portfolio-visual-top span:nth-child(3) { background: #4ade80; }
.portfolio-slide-visual strong {
  color: #17365b;
  font-size: 23px;
  line-height: 1.18;
}
.portfolio-visual-bars {
  display: grid;
  gap: 10px;
}
.portfolio-visual-bars i {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56,189,248,.75), rgba(52,211,153,.68));
}
.portfolio-visual-bars i:nth-child(2) { width: 78%; }
.portfolio-visual-bars i:nth-child(3) { width: 56%; }
.portfolio-visual-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.portfolio-visual-pipeline span {
  border: 1px solid rgba(128,165,216,.42);
  border-radius: 8px;
  background: rgba(239,248,255,.86);
  color: #557ca5;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  padding: 9px 6px;
}
.portfolio-carousel-hint {
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 10px;
}
.portfolio-competence {
  border: 1px solid rgba(128,165,216,.54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,246,255,.84));
  box-shadow: 0 18px 44px rgba(36,88,163,.1);
  padding: clamp(24px, 4vw, 38px);
}
.portfolio-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.portfolio-capability-grid span,
.portfolio-tech-strip span {
  border: 1px solid rgba(128,165,216,.48);
  border-radius: 8px;
  background: rgba(255,255,255,.8);
  color: #35597f;
  padding: 12px;
  font-size: 13px;
  line-height: 1.35;
}
.portfolio-tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(128,165,216,.36);
}
.portfolio-tech-strip span {
  color: #557ca5;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 8px 10px;
}
.portfolio-case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128,165,216,.54);
  background: rgba(255,255,255,.9);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(36,88,163,.1);
}
.portfolio-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.portfolio-card-head span,
.portfolio-card-head strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.portfolio-card-head span { color: #5b7ea8; }
.portfolio-card-head strong {
  color: #0f8a67;
  border: 1px solid rgba(52,211,153,.32);
  background: rgba(52,211,153,.12);
  border-radius: 999px;
  padding: 5px 8px;
}
.portfolio-case-card h3 {
  color: #132f4f;
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.portfolio-case-card h3 { font-size: 24px; }
.portfolio-case-card h4 {
  color: #25496f;
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.45;
}
.portfolio-case-card p {
  color: #44698f;
  line-height: 1.68;
  font-size: 14px;
}
.portfolio-impact {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  color: #214a72;
  background: rgba(226,240,255,.72);
  border: 1px solid rgba(128,165,216,.4);
  font-size: 13px;
  line-height: 1.55;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.portfolio-tags span {
  border: 1px solid rgba(128,165,216,.52);
  background: rgba(239,248,255,.9);
  color: #557ca5;
  border-radius: 999px;
  padding: 6px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
}
.portfolio-link {
  display: inline-flex;
  margin-top: 20px;
  color: #0b6fa4;
  font-weight: 800;
  text-decoration: none;
}
.portfolio-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.portfolio-study-card {
  border: 1px solid rgba(128,165,216,.54);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 38px rgba(36,88,163,.1);
  padding: clamp(22px, 2.5vw, 32px);
}

.portfolio-study-card h3 {
  margin: 0 0 20px;
  color: #132f4f;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.portfolio-study-card div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(128,165,216,.34);
}

.portfolio-study-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-study-card p {
  color: #44698f;
  line-height: 1.66;
  font-size: 14px;
}
.portfolio-process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  border-radius: 8px;
  border: 1px solid rgba(128,165,216,.55);
  background: rgba(255,255,255,.86);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 20px 50px rgba(36,88,163,.12);
}
.portfolio-process > div:first-child {
  padding: clamp(28px, 3vw, 42px);
}
.portfolio-process-steps {
  display: grid;
  gap: 12px;
  padding: clamp(10px, 1.4vw, 18px);
}
.portfolio-process-steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(128,165,216,.42);
  border-radius: 8px;
  padding: 14px;
  background: rgba(239,248,255,.78);
}
.portfolio-process-steps strong {
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
}
.portfolio-process-steps span {
  color: #25496f;
  font-weight: 750;
}
@media (max-width: 980px) {
  .portfolio-title { font-size: 56px; }
  .portfolio-hero,
  .portfolio-dppc-focus,
  .portfolio-case-grid,
  .portfolio-study-grid,
  .portfolio-solution-grid,
  .portfolio-capability-grid,
  .portfolio-process {
    grid-template-columns: 1fr;
  }
  .portfolio-carousel {
    grid-auto-columns: 88%;
  }
  .portfolio-slide {
    grid-template-columns: 1fr;
  }
  .portfolio-solution-card {
    grid-template-rows: auto 1fr;
  }
  .portfolio-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-title { font-size: 42px; }
  .portfolio-proof-showcase {
    padding: 20px;
  }
  .portfolio-solution-media,
  .portfolio-solution-media img {
    min-height: 190px;
  }
  .portfolio-dppc-modules { grid-template-columns: 1fr; }
  .portfolio-carousel {
    grid-auto-columns: 94%;
  }
  .portfolio-slide {
    min-height: auto;
    padding: 22px;
  }
  .portfolio-slide h3 { font-size: 34px; }
  .portfolio-slide h4 { font-size: 18px; }
  .portfolio-visual-pipeline { grid-template-columns: 1fr; }
  .portfolio-metrics { grid-template-columns: 1fr; }
}
  .hw-1 {
    animation-delay: 0s, 0s;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
  }
  .hw-2 {
    animation-delay: 3s, 3s;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.84em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .hw-3 {
    animation-delay: 6s, 6s;
    font-style: italic;
    font-weight: 760;
  }
  .hw-4 {
    animation-delay: 9s, 9s;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    font-weight: 700;
  }
  .hero-sub {
    font-size: 17px; color: #44698f; line-height: 1.75;
    max-width: 520px; margin-bottom: 32px;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

  .hero-stats {
    display: flex; flex-wrap: wrap; align-items: center;
    padding-top: 28px; border-top: 1px solid rgba(128, 165, 216, 0.55);
    gap: 0;
  }
  .stat-block { display: flex; align-items: center; }
  .stat-sep { width: 1px; height: 32px; background: rgba(128, 165, 216, 0.55); margin: 0 24px; }
  .stat-val { font-size: 26px; font-weight: 800; color: #7dd3fc; line-height: 1; }
  .stat-lbl { font-size: 11px; color: #557ca5; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; font-family: 'JetBrains Mono', monospace; }

  /* Hero preview */
  .hero-right { position: relative; }
  .hero-preview {
    padding: 20px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
  }
  .hero-preview-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #4f739a;
    margin-bottom: 10px;
  }
  .hero-live {
    flex: 1;
    border: 1px solid rgba(128, 165, 216, 0.52);
    background:
      linear-gradient(180deg, rgba(241, 249, 255, 0.94), rgba(227, 241, 255, 0.9)),
      radial-gradient(circle at 82% 10%, rgba(56, 189, 248, 0.2), transparent 42%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding: 12px;
  }
  .hero-live::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 70%,
      rgba(202, 227, 255, 0.28) 100%
    );
    pointer-events: none;
  }

  .live-terminal {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(121, 161, 217, 0.58);
    border-radius: 10px;
    background: rgba(248, 252, 255, 0.88);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  .live-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(132, 170, 224, 0.4);
    background: rgba(231, 242, 255, 0.8);
  }
  .live-dots {
    display: flex;
    gap: 4px;
  }
  .live-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(76, 135, 206, 0.64);
  }
  .live-dots span:nth-child(1) { background: rgba(251, 113, 133, 0.8); }
  .live-dots span:nth-child(2) { background: rgba(251, 191, 36, 0.84); }
  .live-dots span:nth-child(3) { background: rgba(74, 222, 128, 0.84); }
  .live-env {
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: #5479a1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .live-body {
    padding: 10px;
    min-height: 136px;
  }
  .live-line {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    line-height: 1.36;
    color: #2f73b0;
    opacity: 0;
    transform: translateY(6px);
    animation: liveLine 8s ease-in-out infinite;
  }
  .ll-1 { animation-delay: 0s; color: #235d96; }
  .ll-2 { animation-delay: 0.35s; }
  .ll-3 { animation-delay: 0.7s; color: #1d7b60; }
  .ll-4 { animation-delay: 1.05s; }
  .ll-5 { animation-delay: 1.4s; }
  .ll-6 { animation-delay: 1.75s; color: #1e8f74; }

  .live-pipeline {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    height: 46px;
    border: 1px solid rgba(132, 170, 224, 0.42);
    border-radius: 10px;
    background: rgba(244, 250, 255, 0.82);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 0 12px;
  }
  .pipe-line {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(124, 167, 226, 0.2), rgba(124, 167, 226, 0.9), rgba(124, 167, 226, 0.2));
  }
  .pipe-node {
    justify-self: center;
    position: relative;
    z-index: 2;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4e749e;
    background: rgba(239, 248, 255, 0.98);
    border: 1px solid rgba(124, 167, 226, 0.44);
    padding: 3px 6px;
    border-radius: 999px;
  }
  .pipe-pulse {
    position: absolute;
    top: 50%;
    left: 12%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    animation: pipeMove 3.2s linear infinite;
  }

  .live-metrics {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    display: grid;
    gap: 7px;
  }
  .metric-row {
    display: grid;
    grid-template-columns: 80px 1fr 54px;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: #567da7;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .metric-row strong {
    text-align: right;
    font-size: 10px;
    color: #295d8f;
  }
  .metric-bar {
    height: 7px;
    border-radius: 999px;
    background: rgba(147, 188, 235, 0.28);
    overflow: hidden;
  }
  .metric-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.88), rgba(37, 99, 235, 0.68));
    animation: metricShift 2.8s ease-in-out infinite;
  }
  .metric-bar .mb-1 { width: 58%; animation-delay: 0s; }
  .metric-bar .mb-2 { width: 38%; animation-delay: 0.45s; }
  .metric-bar .mb-3 { width: 92%; animation-delay: 0.9s; }

  .live-tags {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .live-tags span {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(40, 112, 175, 0.66);
    opacity: 0;
    animation: tagBlink 9s ease-in-out infinite;
  }
  .live-tags span:nth-child(1) { left: 61%; top: 18%; animation-delay: 0s; }
  .live-tags span:nth-child(2) { left: 24%; top: 56%; animation-delay: 1.2s; }
  .live-tags span:nth-child(3) { left: 73%; top: 62%; animation-delay: 2.1s; }
  .live-tags span:nth-child(4) { left: 14%; top: 31%; animation-delay: 3.2s; }
  .live-tags span:nth-child(5) { left: 47%; top: 78%; animation-delay: 4.2s; }
  .live-tags span:nth-child(6) { left: 76%; top: 36%; animation-delay: 5.1s; }

  @media (max-width: 520px) {
    .live-body { min-height: 124px; }
    .live-line { font-size: 10px; }
    .metric-row { grid-template-columns: 64px 1fr 48px; font-size: 9px; }
    .pipe-node { font-size: 9px; padding: 2px 5px; }
  }

  /* Section */
  .section { max-width: 80rem; margin: 0 auto; padding: 0 20px 120px; }
  .section-hdr { margin-bottom: 48px; }
  .section-hdr-services {
    max-width: 760px;
    position: relative;
  }
  .services-title {
    margin-top: 16px;
    display: grid;
    gap: 4px;
    line-height: 1.04;
  }
  .services-title-main {
    display: block;
    font-size: clamp(30px, 5.2vw, 50px);
    color: #102d4d;
    letter-spacing: -0.02em;
  }
  .services-title-accent {
    display: inline-block;
    width: fit-content;
    font-size: clamp(30px, 5.2vw, 50px);
    letter-spacing: -0.02em;
    color: #256fae;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0));
    border-bottom: 2px solid rgba(56, 189, 248, 0.5);
    padding-right: 6px;
  }
  .services-sub {
    max-width: 640px;
    margin-top: 18px;
  }
  .services-flow {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .services-flow span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #3c6694;
    border: 1px solid rgba(112, 154, 213, 0.44);
    background: rgba(241, 249, 255, 0.88);
    border-radius: 999px;
    padding: 6px 10px;
  }
  .section-hdr-row {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
  }

  /* Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
  .svc-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    text-decoration: none;
    background: rgba(252, 254, 255, 0.92);
    border: 1px solid rgba(129, 168, 223, 0.48);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    animation: svcCardDrift 8.2s ease-in-out infinite;
    will-change: transform;
  }
  .svc-card::before {
    content: '';
    position: absolute;
    top: -130%;
    left: -45%;
    width: 60%;
    height: 300%;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.16), rgba(56, 189, 248, 0));
    transform: rotate(12deg);
    animation: svcShine 7.5s linear infinite;
    pointer-events: none;
  }
  .svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(102, 156, 226, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(102, 156, 226, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 70%);
    pointer-events: none;
  }
  .svc-card > * {
    position: relative;
    z-index: 1;
  }
  .svc-card:nth-child(2n) { animation-delay: -2.1s; }
  .svc-card:nth-child(3n) { animation-delay: -4s; }
  .svc-card:nth-child(4n) { animation-delay: -5.6s; }
  .svc-card:hover {
    transform: translateY(-7px);
    border-color: rgba(85, 151, 235, 0.72);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(36, 88, 163, 0.16);
  }
  .svc-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: svcIconBreath 3.2s ease-in-out infinite;
  }
  .svc-icon svg {
    transition: transform 0.25s ease;
  }
  .svc-card:hover .svc-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(56, 125, 199, 0.2);
  }
  .svc-card:hover .svc-icon svg {
    transform: scale(1.08) rotate(-7deg);
  }
  .svc-title {
    font-size: 15px;
    font-weight: 700;
    color: #18375c;
    margin-bottom: 6px;
    transition: color 0.24s ease, transform 0.24s ease;
  }
  .svc-card:hover .svc-title {
    color: #0f477d;
    transform: translateX(1px);
  }
  .svc-desc { font-size: 13px; color: #44698f; line-height: 1.65; }
  .svc-more {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 700; margin-top: auto;
    font-family: 'JetBrains Mono', monospace;
    transition: transform 0.24s ease;
  }
  .svc-card:hover .svc-more { transform: translateX(2px); }
  .svc-arr { transition: transform 0.2s; }
  .svc-card:hover .svc-arr { transform: translateX(3px); }

  /* Tech strip */
  .tech-strip {
    border-top: 1px solid rgba(128, 165, 216, 0.48);
    border-bottom: 1px solid rgba(128, 165, 216, 0.48);
    background: rgba(236, 245, 255, 0.88); padding: 16px 0; margin-bottom: 0;
  }
  .tech-inner {
    max-width: 80rem; margin: 0 auto; padding: 0 20px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  }
  .tech-item {
    font-size: 12px; font-weight: 500; color: #4b6f96;
    padding: 4px 20px; border-right: 1px solid rgba(113, 151, 211, 0.22);
    font-family: 'JetBrains Mono', monospace;
  }
  .tech-item:last-child { border-right: none; }

  .seo-cluster-section {
    position: relative;
    padding-top: 96px;
  }
  .seo-cluster-section::before {
    content: '';
    position: absolute;
    inset: 42px 20px auto;
    height: 520px;
    pointer-events: none;
    border: 1px solid rgba(128, 165, 216, 0.24);
    border-radius: 8px;
    background:
      radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.16), transparent 34%),
      radial-gradient(circle at 86% 62%, rgba(52, 211, 153, 0.14), transparent 32%),
      linear-gradient(rgba(102, 156, 226, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(102, 156, 226, 0.06) 1px, transparent 1px);
    background-size: auto, auto, 28px 28px, 28px 28px;
    opacity: 0.82;
    animation: seoClusterField 18s ease-in-out infinite alternate;
  }
  .seo-cluster-section::after {
    content: '';
    position: absolute;
    inset: 104px 20px auto;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.52), rgba(52, 211, 153, 0.34), transparent);
    transform-origin: left;
    animation: seoClusterScan 6.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  }
  .seo-cluster-lead {
    max-width: 520px;
  }
  .seo-cluster-context {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 16px;
    margin: clamp(24px, 3.2vw, 42px) 0 18px;
  }
  .seo-cluster-context-main,
  .seo-cluster-context-side {
    border: 1px solid rgba(128, 165, 216, 0.46);
    border-radius: 8px;
    background:
      radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.13), transparent 32%),
      linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,248,255,.78));
    box-shadow: 0 18px 42px rgba(36, 88, 163, 0.09);
  }
  .seo-cluster-context-main {
    min-height: 230px;
    padding: clamp(24px, 3.5vw, 42px);
  }
  .seo-cluster-context-main span {
    width: fit-content;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(52, 211, 153, 0.34);
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.1);
    color: #0f8a67;
    font: 850 10px/1 'JetBrains Mono', monospace;
    letter-spacing: .07em;
    text-transform: uppercase;
  }
  .seo-cluster-context-main h3 {
    max-width: 840px;
    margin: 22px 0 14px;
    color: #143253;
    font-size: clamp(30px, 3.8vw, 56px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
  }
  .seo-cluster-context-main p {
    max-width: 900px;
    margin: 0;
    color: #4e7299;
    font-size: 16px;
    line-height: 1.75;
  }
  .seo-cluster-context-side {
    display: grid;
    gap: 10px;
    padding: 14px;
  }
  .seo-cluster-context-side span {
    display: grid;
    gap: 6px;
    padding: 18px;
    min-height: 0;
    border: 1px solid rgba(128, 165, 216, 0.38);
    border-radius: 8px;
    background: rgba(255,255,255,.66);
  }
  .seo-cluster-context-side strong {
    color: #143253;
    font-size: 20px;
    line-height: 1;
  }
  .seo-cluster-context-side small {
    color: #5a7ca2;
    font-size: 13px;
    line-height: 1.45;
  }
  .seo-cluster-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .seo-cluster-card {
    position: relative;
    overflow: hidden;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background:
      radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.14), transparent 32%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.88));
    box-shadow: 0 18px 42px rgba(36, 88, 163, 0.1);
    color: #173456;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
  }
  .seo-cluster-card-featured {
    grid-column: span 2;
    min-height: 360px;
    padding: clamp(28px, 4vw, 42px);
    color: #f5fbff;
    border-color: rgba(125, 211, 252, 0.34);
    background:
      radial-gradient(circle at 88% 16%, rgba(56, 189, 248, 0.28), transparent 34%),
      radial-gradient(circle at 18% 82%, rgba(52, 211, 153, 0.2), transparent 30%),
      linear-gradient(135deg, rgba(10, 28, 49, 0.98), rgba(16, 61, 99, 0.96));
    box-shadow: 0 26px 70px rgba(13, 47, 79, 0.22);
  }
  .seo-cluster-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(rgba(125, 211, 252, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(120deg, rgba(0,0,0,0.88), transparent 74%);
    -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,0.88), transparent 74%);
    animation: seoClusterGridDrift 14s linear infinite;
  }
  .seo-cluster-card::after {
    content: '';
    position: absolute;
    inset: auto 20px 20px auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(36, 104, 186, 0.22);
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  }
  .seo-cluster-card-featured::after {
    width: 140px;
    height: 140px;
    border-color: rgba(125, 211, 252, 0.24);
    background:
      linear-gradient(90deg, transparent 49%, rgba(125, 211, 252, 0.3) 50%, transparent 51%),
      linear-gradient(transparent 49%, rgba(125, 211, 252, 0.3) 50%, transparent 51%),
      rgba(255, 255, 255, 0.04);
    animation: seoClusterOrbit 12s linear infinite;
  }
  .seo-cluster-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 132, 230, 0.68);
    box-shadow: 0 26px 58px rgba(36, 88, 163, 0.16);
  }
  .seo-cluster-card:hover::after {
    transform: scale(1.12) rotate(14deg);
    border-color: rgba(56, 189, 248, 0.44);
    background: rgba(255, 255, 255, 0.72);
  }
  .seo-cluster-card-featured:hover::after {
    transform: scale(1.05) rotate(18deg);
  }
  .seo-cluster-card:not(.seo-cluster-card-featured)::before {
    content: '';
    position: absolute;
    inset: -1px auto -1px -42%;
    width: 32%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
    transform: skewX(-18deg) translateX(-120%);
    opacity: 0;
    z-index: 2;
  }
  .seo-cluster-card:not(.seo-cluster-card-featured):hover::before {
    opacity: 1;
    animation: seoClusterShine 0.95s ease forwards;
  }
  .seo-cluster-card-featured:hover::before {
    animation: seoClusterGridDrift 8s linear infinite;
  }
  .seo-cluster-card span {
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(50, 131, 226, 0.2);
    background: rgba(233, 246, 255, 0.9);
    color: #23639f;
    font: 800 11px/1 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 10px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }
  .seo-cluster-card:hover span {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.42);
  }
  .seo-cluster-card-featured span {
    color: #c8f3ff;
    border-color: rgba(125, 211, 252, 0.26);
    background: rgba(255, 255, 255, 0.07);
  }
  .seo-cluster-card h3 {
    margin: 6px 0 0;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
  }
  .seo-cluster-card-featured h3 {
    max-width: 680px;
    color: #ffffff;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 0.98;
  }
  .seo-cluster-card p {
    color: #496d93;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .seo-cluster-card-featured p {
    max-width: 560px;
    color: rgba(220, 239, 255, 0.82);
    font-size: 16px;
  }
  .seo-cluster-proof {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
  }
  .seo-cluster-proof em {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 7px 10px;
    border: 1px solid rgba(128, 165, 216, 0.44);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #365f89;
    font: 800 11px/1 'JetBrains Mono', monospace;
    font-style: normal;
    transform: translateY(0);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }
  .seo-cluster-card:hover .seo-cluster-proof em {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.42);
    background: rgba(255, 255, 255, 0.78);
  }
  .seo-cluster-card:hover .seo-cluster-proof em:nth-child(2) {
    transition-delay: 0.035s;
  }
  .seo-cluster-card:hover .seo-cluster-proof em:nth-child(3) {
    transition-delay: 0.07s;
  }
  .seo-cluster-card-featured .seo-cluster-proof {
    margin-top: 12px;
  }
  .seo-cluster-card-featured .seo-cluster-proof em {
    color: #e8f7ff;
    border-color: rgba(125, 211, 252, 0.24);
    background: rgba(255, 255, 255, 0.07);
  }
  .seo-cluster-card strong {
    position: relative;
    z-index: 1;
    color: #1c70c9;
    font-size: 13px;
    transition: transform 0.22s ease, color 0.22s ease;
  }
  .seo-cluster-card:hover strong {
    transform: translateX(4px);
    color: #0d83d8;
  }
  .seo-cluster-card-featured strong {
    color: #8de7ff;
    font-size: 14px;
  }
  .seo-cluster-card i {
    position: absolute;
    right: 22px;
    top: 22px;
    color: rgba(35, 99, 159, 0.14);
    font: 900 44px/1 Arial, Helvetica, sans-serif;
    font-style: normal;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .seo-cluster-card:hover i {
    transform: translateY(-4px);
    opacity: 0.9;
  }
  .seo-cluster-card-featured i {
    color: rgba(255, 255, 255, 0.1);
    font-size: 82px;
    right: 30px;
    top: 26px;
  }
  .seo-cluster-card b {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.34);
  }
  .seo-cluster-card:hover b {
    transform: scaleX(1);
  }
  @keyframes seoClusterField {
    0% { transform: translate3d(0, 0, 0); opacity: 0.72; }
    100% { transform: translate3d(0, -18px, 0); opacity: 0.94; }
  }
  @keyframes seoClusterScan {
    0%, 12% { transform: scaleX(0); opacity: 0; }
    38% { opacity: 1; }
    72% { transform: scaleX(1); opacity: 0.92; }
    100% { transform: scaleX(1); opacity: 0; }
  }
  @keyframes seoClusterGridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 32px 32px, 32px 32px; }
  }
  @keyframes seoClusterOrbit {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.04); }
    100% { transform: rotate(360deg) scale(1); }
  }
  @keyframes seoClusterShine {
    0% { transform: skewX(-18deg) translateX(-120%); }
    100% { transform: skewX(-18deg) translateX(520%); }
  }
  @media (max-width: 1180px) {
    .seo-cluster-context {
      grid-template-columns: 1fr;
    }
    .seo-cluster-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 760px) {
    .seo-cluster-section {
      padding-top: 64px;
    }
    .seo-cluster-grid {
      grid-template-columns: 1fr;
    }
    .seo-cluster-context-main,
    .seo-cluster-context-side {
      padding: 20px;
    }
    .seo-cluster-context-main h3 {
      font-size: 32px;
    }
    .seo-cluster-card-featured {
      grid-column: auto;
      min-height: 0;
    }
    .seo-cluster-card {
      min-height: 0;
      padding: 20px;
    }
    .seo-cluster-card-featured h3 {
      font-size: 34px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .seo-cluster-section::before,
    .seo-cluster-section::after,
    .seo-cluster-card,
    .seo-cluster-card::before,
    .seo-cluster-card::after,
    .seo-cluster-card-featured::before,
    .seo-cluster-card-featured::after,
    .seo-cluster-proof em,
    .seo-cluster-card b {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Posts */
  .posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }

  .home-journal {
    padding-top: 96px;
  }
  .home-journal-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
  }
  .journal-all-link {
    color: #25496f;
    text-decoration: none;
    font-weight: 850;
    border: 1px solid rgba(128,165,216,.52);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
    padding: 12px 14px;
  }
  .home-journal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 16px;
  }
  .journal-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    min-height: 190px;
    border: 1px solid rgba(128,165,216,.52);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 36px rgba(36,88,163,.09);
    padding: 18px;
  }
  .journal-card-featured {
    grid-row: span 2;
    grid-template-columns: 210px 1fr;
    min-height: 400px;
    background:
      radial-gradient(circle at 18% 16%, rgba(56,189,248,.18), transparent 36%),
      linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,246,255,.86));
  }
  .journal-card-hit {
    position: absolute;
    inset: 0;
    z-index: 3;
  }
  .journal-mark {
    border: 1px solid rgba(128,165,216,.42);
    border-radius: 8px;
    background:
      linear-gradient(rgba(102,156,226,.11) 1px, transparent 1px),
      linear-gradient(90deg, rgba(102,156,226,.11) 1px, transparent 1px),
      rgba(239,248,255,.82);
    background-size: 18px 18px;
    padding: 14px;
    display: grid;
    align-content: space-between;
  }
  .journal-mark span {
    color: #0b6fa4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .journal-mark strong {
    color: rgba(19,47,79,.92);
    font-size: 58px;
    line-height: .9;
  }
  .journal-card-featured .journal-mark strong {
    font-size: 102px;
  }
  .journal-copy {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .journal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #5b7ea8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
  }
  .journal-meta span {
    color: #0b6fa4;
  }
  .journal-copy h3 {
    color: #17365b;
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .journal-card-featured .journal-copy h3 {
    font-size: 34px;
    line-height: 1.12;
    max-width: 580px;
  }
  .journal-copy h3 a {
    color: inherit;
    text-decoration: none;
  }
  .journal-copy p {
    color: #44698f;
    line-height: 1.65;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .journal-read {
    color: #0b6fa4;
    font-weight: 900;
    font-size: 13px;
  }
  .journal-card:hover {
    border-color: rgba(56,189,248,.62);
    box-shadow: 0 20px 46px rgba(36,88,163,.15);
    transform: translateY(-2px);
  }

  /* CTA */
  .cta-box {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(128, 165, 216, 0.55);
    border-radius: 28px; padding: 80px 40px; text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .cta-inner { display: flex; flex-direction: column; align-items: center; }
  .cta-checks {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
    font-size: 13px; color: #557ca5; font-family: 'JetBrains Mono', monospace;
  }

  /* Homepage premium motion layer */
  @media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .hero-section::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 16% 22%, rgba(56, 189, 248, 0.14), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(52, 211, 153, 0.1), transparent 26%),
        linear-gradient(rgba(102, 156, 226, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 156, 226, 0.045) 1px, transparent 1px);
      background-size: auto, auto, 34px 34px, 34px 34px;
      animation: homeAtmosphere 18s ease-in-out infinite alternate, homeGridDrift 22s linear infinite;
    }

    .hero-section .badge,
    .business-fit-section .badge,
    .growth-section .badge,
    .product-section .badge,
    .seo-cluster-section .badge,
    .home-journal .badge,
    .cta-box .badge {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-section .badge::after,
    .business-fit-section .badge::after,
    .growth-section .badge::after,
    .product-section .badge::after,
    .seo-cluster-section .badge::after,
    .home-journal .badge::after,
    .cta-box .badge::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 -44%;
      width: 36%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
      transform: skewX(-18deg);
      animation: homeBadgeSheen 7.4s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
    }

    .hero-h1 .hero-line.text-gradient {
      animation: homeTitleFloat 7s ease-in-out infinite;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .cta-box .btn-primary,
    .cta-box .btn-secondary,
    .product-showcase-cta,
    .journal-all-link {
      position: relative;
      overflow: hidden;
      transform: translateZ(0);
    }

    .hero-cta .btn-primary::after,
    .hero-cta .btn-secondary::after,
    .cta-box .btn-primary::after,
    .cta-box .btn-secondary::after,
    .product-showcase-cta::after,
    .journal-all-link::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 -42%;
      width: 38%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
      transform: skewX(-18deg);
      animation: homeButtonSheen 6.8s ease-in-out infinite;
      pointer-events: none;
    }

    .proof-box {
      position: relative;
      overflow: hidden;
    }

    .proof-box::before {
      content: "";
      position: absolute;
      left: -22%;
      top: 0;
      width: 18%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.22), rgba(52, 211, 153, 0.16), transparent);
      transform: skewX(-18deg);
      animation: homeProofScan 8.8s ease-in-out infinite;
      pointer-events: none;
    }

    .proof-card {
      animation: homeChipFloat 5.8s ease-in-out infinite;
    }

    .proof-card:nth-child(2n) { animation-delay: -1.45s; }
    .proof-card:nth-child(3n) { animation-delay: -2.9s; }

    .business-fit-card,
    .growth-item,
    .growth-path-card,
    .svc-card,
    .product-card,
    .journal-card {
      position: relative;
      overflow: hidden;
      will-change: transform;
    }

    .business-fit-card::after,
    .growth-item::after,
    .svc-card::after,
    .journal-card::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px auto;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.22);
      background:
        linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, 0.18) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(11, 111, 164, 0.18) 50%, transparent 51%),
        rgba(255, 255, 255, 0.44);
      transition: transform 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
      pointer-events: none;
      opacity: 0.78;
    }

    .business-fit-card:hover,
    .growth-item:hover,
    .svc-card:hover,
    .journal-card:hover {
      transform: translateY(-5px);
      border-color: rgba(56, 189, 248, 0.58);
      box-shadow: 0 24px 54px rgba(36, 88, 163, 0.14);
    }

    .business-fit-card:hover::after,
    .growth-item:hover::after,
    .svc-card:hover::after,
    .journal-card:hover::after {
      transform: rotate(18deg) scale(1.12);
      border-color: rgba(56, 189, 248, 0.45);
      opacity: 1;
    }

    .growth-copy {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .growth-copy::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 76% 18%, rgba(56, 189, 248, 0.12), transparent 28%);
      background-size: 30px 30px, 30px 30px, auto;
      animation: homeDarkGridDrift 13s linear infinite;
      opacity: 0.78;
      z-index: 0;
    }

    .growth-copy > * {
      position: relative;
      z-index: 1;
    }

    .growth-paths {
      position: relative;
    }

    .growth-paths::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      z-index: 2;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.72), rgba(52, 211, 153, 0.42), transparent);
      transform-origin: left center;
      animation: homePathScan 6.2s ease-in-out infinite;
    }

    .growth-path-card::after {
      animation: homeTargetPulse 5.8s ease-in-out infinite;
    }

    .growth-path-card:nth-child(2)::after { animation-delay: -1.2s; }
    .growth-path-card:nth-child(3)::after { animation-delay: -2.4s; }
    .growth-path-card:nth-child(4)::after { animation-delay: -3.6s; }

    .product-section::after {
      content: "";
      position: absolute;
      left: 20px;
      right: 20px;
      top: 18px;
      height: 1px;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.58), rgba(52, 211, 153, 0.28), transparent);
      transform-origin: left center;
      animation: homeProductScan 7s ease-in-out infinite;
    }

    .product-card::after {
      content: "";
      position: absolute;
      inset: -1px auto -1px -45%;
      width: 28%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
      transform: skewX(-18deg) translateX(-120%);
      opacity: 0;
      pointer-events: none;
    }

    .product-card:hover::after {
      opacity: 1;
      animation: homeCardSheen 0.95s ease forwards;
    }

    .product-card-media {
      position: relative;
      isolation: isolate;
    }

    .product-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 18%),
        linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.22) 42%, transparent 52% 100%);
      mix-blend-mode: screen;
      opacity: 0.45;
      animation: homeMediaGlow 8.5s ease-in-out infinite;
      pointer-events: none;
    }

    .tech-inner {
      animation: homeTechBreath 10s ease-in-out infinite;
    }

    .tech-item {
      transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }

    .tech-item:hover {
      transform: translateY(-2px);
      color: #0b6fa4;
      border-color: rgba(56, 189, 248, 0.44);
    }

    .home-journal {
      position: relative;
      isolation: isolate;
    }

    .home-journal::before {
      content: "";
      position: absolute;
      inset: 42px 20px auto;
      height: 260px;
      z-index: -1;
      pointer-events: none;
      border-radius: 8px;
      background:
        radial-gradient(circle at 18% 20%, rgba(56, 189, 248, 0.1), transparent 34%),
        linear-gradient(rgba(102, 156, 226, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 156, 226, 0.05) 1px, transparent 1px);
      background-size: auto, 28px 28px, 28px 28px;
      animation: homeJournalField 14s ease-in-out infinite alternate;
    }

    .journal-mark strong {
      display: inline-block;
      animation: homeSoftCount 6s ease-in-out infinite;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      box-shadow: 0 28px 70px rgba(36, 88, 163, 0.16);
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.22), transparent 28%),
        radial-gradient(circle at 80% 12%, rgba(52, 211, 153, 0.18), transparent 30%),
        linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px);
      background-size: auto, auto, 34px 34px, 34px 34px;
      animation: homeCtaField 16s linear infinite;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }
  }

  @keyframes homeAtmosphere {
    0% { opacity: 0.58; transform: translate3d(0, 0, 0); }
    100% { opacity: 0.95; transform: translate3d(0, -18px, 0); }
  }

  @keyframes homeGridDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, 34px 34px, 34px 34px; }
  }

  @keyframes homeBadgeSheen {
    0%, 64% { transform: skewX(-18deg) translateX(-140%); }
    82%, 100% { transform: skewX(-18deg) translateX(580%); }
  }

  @keyframes homeTitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  @keyframes homeButtonSheen {
    0%, 62% { transform: skewX(-18deg) translateX(-135%); }
    84%, 100% { transform: skewX(-18deg) translateX(540%); }
  }

  @keyframes homeProofScan {
    0%, 12% { transform: skewX(-18deg) translateX(-160%); opacity: 0; }
    34% { opacity: 1; }
    70%, 100% { transform: skewX(-18deg) translateX(780%); opacity: 0; }
  }

  @keyframes homeChipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  @keyframes homeDarkGridDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 30px 30px, 30px 30px, 0 0; }
  }

  @keyframes homePathScan {
    0%, 10% { transform: scaleX(0); opacity: 0; }
    36% { opacity: 1; }
    76%, 100% { transform: scaleX(1); opacity: 0; }
  }

  @keyframes homeTargetPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.72; }
    50% { transform: scale(1.08) rotate(12deg); opacity: 1; }
  }

  @keyframes homeProductScan {
    0%, 18% { transform: scaleX(0); opacity: 0; }
    44% { opacity: 1; }
    82%, 100% { transform: scaleX(1); opacity: 0; }
  }

  @keyframes homeCardSheen {
    0% { transform: skewX(-18deg) translateX(-120%); }
    100% { transform: skewX(-18deg) translateX(640%); }
  }

  @keyframes homeMediaGlow {
    0%, 100% { opacity: 0.28; transform: translateX(-8%); }
    50% { opacity: 0.62; transform: translateX(8%); }
  }

  @keyframes homeTechBreath {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
  }

  @keyframes homeJournalField {
    0% { transform: translateY(0); opacity: 0.55; }
    100% { transform: translateY(-16px); opacity: 0.9; }
  }

  @keyframes homeSoftCount {
    0%, 100% { opacity: 0.78; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
  }

  @keyframes homeCtaField {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, 34px 34px, 34px 34px; }
  }

  @media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .hero-section::after,
    .hero-section .badge::after,
    .business-fit-section .badge::after,
    .growth-section .badge::after,
    .product-section .badge::after,
    .seo-cluster-section .badge::after,
    .home-journal .badge::after,
    .cta-box .badge::after,
    .proof-box::before,
    .proof-card,
    .growth-copy::after,
    .growth-paths::before,
    .growth-path-card::after,
    .product-section::after,
    .product-card::after,
    .product-card-media::after,
    .tech-inner,
    .home-journal::before,
    .journal-mark strong,
    .cta-box::before {
      animation: none !important;
      transition: none !important;
    }
  }

  @keyframes heroWordCycle {
    0%, 18% { opacity: 0; transform: translateY(12px); }
    22%, 44% { opacity: 1; transform: translateY(0); }
    50%, 100% { opacity: 0; transform: translateY(-8px); }
  }
  @keyframes heroWordMorph {
    0%, 100% { letter-spacing: 0; font-variation-settings: "wght" 540; }
    50% { letter-spacing: 0.02em; font-variation-settings: "wght" 820; }
  }

  @media (max-width: 980px) {
    .home-journal-head,
    .home-journal-grid,
    .journal-card,
    .journal-card-featured {
      grid-template-columns: 1fr;
    }
    .hero-live-status {
      display: none;
    }
    .home-journal-grid {
      grid-template-rows: none;
    }
    .journal-card-featured {
      grid-row: auto;
    }
    .journal-mark {
      min-height: 130px;
    }
  }
  @media (max-width: 560px) {
    .home-journal { padding-top: 72px; }
    .journal-card { padding: 16px; }
    .journal-card-featured .journal-copy h3 { font-size: 26px; }
    .journal-mark strong,
    .journal-card-featured .journal-mark strong { font-size: 62px; }
    .journal-all-link { width: 100%; text-align: center; }
  }
  @keyframes liveLine {
    0%, 16% { opacity: 0; transform: translateY(6px); }
    20%, 46% { opacity: 1; transform: translateY(0); }
    52%, 100% { opacity: 0; transform: translateY(-5px); }
  }
  @keyframes pipeMove {
    0% { left: 12%; opacity: 0.2; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { left: 88%; opacity: 0.2; }
  }
  @keyframes metricShift {
    0%, 100% { filter: saturate(1); transform: scaleX(0.94); transform-origin: left; }
    50% { filter: saturate(1.25); transform: scaleX(1); transform-origin: left; }
  }
  @keyframes tagBlink {
    0%, 12% { opacity: 0; transform: translateY(6px); }
    18%, 32% { opacity: 0.78; transform: translateY(0); }
    40%, 100% { opacity: 0; transform: translateY(-7px); }
  }
  @keyframes wfLineDrift {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -440; }
  }
  @keyframes wfPacket {
    0% { opacity: 0; transform: translate3d(-4vw, 0, 0) scaleX(0.72); }
    8% { opacity: 0.86; }
    72% { opacity: 0.72; }
    100% { opacity: 0; transform: translate3d(128vw, 0, 0) scaleX(1); }
  }
  @keyframes wfMarkerFloat {
    0%, 100% { opacity: 0.52; transform: translate3d(0, 0, 0); }
    50% { opacity: 0.94; transform: translate3d(0, -10px, 0); }
  }
  @keyframes wfOrbit {
    0% { transform: rotate(var(--orbit-rotate, 0deg)); }
    100% { transform: rotate(calc(var(--orbit-rotate, 0deg) + 360deg)); }
  }
  @keyframes wfSignalPulse {
    0%, 100% { opacity: 0.38; transform: scale(0.92); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.2), 0 16px 36px rgba(36, 88, 163, 0.12); }
    50% { opacity: 0.96; transform: scale(1); box-shadow: 0 0 0 12px rgba(56, 189, 248, 0), 0 18px 42px rgba(36, 88, 163, 0.18); }
  }
  @keyframes heroPreviewSheen {
    0%, 32% { transform: translateX(-120%); opacity: 0; }
    44% { opacity: 0.74; }
    58%, 100% { transform: translateX(120%); opacity: 0; }
  }
  @keyframes heroPreviewOrbit {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.06); }
    100% { transform: rotate(360deg) scale(1); }
  }
  @keyframes wfGlassFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.6deg); opacity: 0.58; }
    50% { transform: translate3d(0, -14px, 0) rotate(0.8deg); opacity: 0.9; }
  }
  @keyframes heroUnderlineFlow {
    0%, 100% { transform: scaleX(0.32); opacity: 0.26; }
    45%, 58% { transform: scaleX(1); opacity: 0.74; }
  }
  @keyframes heroStatusFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
  }
  @keyframes wfPulse {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
  }
  @keyframes wfScan {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(860px); opacity: 0; }
  }
  @keyframes svcShine {
    0% { left: -50%; opacity: 0; }
    8% { opacity: 0.6; }
    25% { opacity: 0.6; }
    40% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
  }
  @keyframes svcCardDrift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  @keyframes svcIconBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
  }

  /* Services lab page */
  .services-lab-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    margin-top: 0;
    padding: clamp(72px, 7vw, 104px) 0 132px;
    background:
      linear-gradient(180deg, #eaf4ff 0%, #f5faff 34%, #edf7ff 68%, #e5f1ff 100%);
  }
  .services-lab-page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(760px 420px at 12% 5%, rgba(56, 189, 248, 0.16), transparent 66%),
      radial-gradient(720px 420px at 88% 8%, rgba(52, 211, 153, 0.12), transparent 68%),
      linear-gradient(rgba(74, 126, 194, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74, 126, 194, 0.07) 1px, transparent 1px);
    background-size: auto, auto, 52px 52px, 52px 52px;
  }
  .services-lab-hero,
  .services-track-section,
  .services-data-stage,
  .services-packages,
  .services-process,
  .services-final-cta {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: clamp(20px, 3vw, 34px);
    padding-right: clamp(20px, 3vw, 34px);
  }
  .services-lab-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.72fr);
    gap: clamp(30px, 4.6vw, 58px);
    align-items: center;
    min-height: auto;
    padding-top: clamp(28px, 4vw, 48px);
    padding-bottom: clamp(48px, 5vw, 72px);
    position: relative;
  }
  .services-lab-hero::before {
    content: none;
  }
  .services-lab-copy {
    position: relative;
    z-index: 2;
  }
  .services-lab-copy h1 {
    max-width: 700px;
    margin: 18px 0 22px;
    color: #112b49;
    font-size: clamp(40px, 5.3vw, 64px);
    line-height: 1.04;
    letter-spacing: 0;
  }
  .services-lab-copy p {
    max-width: 650px;
    color: #41658c;
    font-size: 17px;
    line-height: 1.75;
  }
  .services-lab-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }
  .services-lab-engine {
    position: relative;
    z-index: 2;
    min-height: 450px;
    border: 1px solid rgba(128, 165, 216, 0.56);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(231,244,255,0.86));
    box-shadow: 0 28px 70px rgba(36, 88, 163, 0.18);
    overflow: hidden;
  }
  .services-lab-engine::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(56, 189, 248, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(52, 211, 153, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    animation: servicesGridDrift 12s linear infinite reverse;
  }
  .engine-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(128, 165, 216, 0.42);
    background: rgba(246, 251, 255, 0.84);
  }
  .engine-top span {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: #38bdf8;
  }
  .engine-top span:nth-child(2) { background: #34d399; }
  .engine-top span:nth-child(3) { background: #fbbf24; }
  .engine-top strong {
    margin-left: auto;
    color: #52779f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .engine-grid {
    position: relative;
    z-index: 2;
    height: 270px;
  }
  .engine-node {
    position: absolute;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    border: 1px solid rgba(98, 147, 209, 0.58);
    background: rgba(255, 255, 255, 0.82);
    color: #17365b;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(36, 88, 163, 0.14);
    animation: serviceNodeFloat 5.4s ease-in-out infinite;
  }
  .node-a { left: 10%; top: 16%; }
  .node-b { right: 12%; top: 22%; animation-delay: -1.2s; }
  .node-c { left: 40%; top: 48%; color: #17613a; animation-delay: -2.2s; }
  .node-d { left: 16%; bottom: 6%; animation-delay: -3.1s; }
  .engine-line,
  .engine-pulse {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
  }
  .engine-line {
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.85), transparent);
    transform-origin: left center;
    animation: serviceLineGlow 2.8s ease-in-out infinite;
  }
  .line-a { width: 54%; left: 19%; top: 32%; transform: rotate(8deg); }
  .line-b { width: 48%; left: 21%; top: 66%; transform: rotate(-18deg); animation-delay: -0.8s; }
  .line-c { width: 44%; left: 45%; top: 55%; transform: rotate(-44deg); animation-delay: -1.6s; }
  .engine-pulse {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: #38bdf8;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.95);
  }
  .pulse-a { left: 12%; top: 31%; animation: servicePulseA 4.2s linear infinite; }
  .pulse-b { left: 20%; top: 69%; background: #34d399; animation: servicePulseB 4.8s linear infinite; }
  .engine-feed {
    position: relative;
    z-index: 3;
    margin: 0 18px 20px;
    display: grid;
    gap: 9px;
  }
  .engine-feed span {
    border: 1px solid rgba(128, 165, 216, 0.45);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: #44698f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 10px 12px;
    animation: serviceFeed 5.5s ease-in-out infinite;
  }
  .engine-feed span:nth-child(2) { animation-delay: -1s; }
  .engine-feed span:nth-child(3) { animation-delay: -2s; }
  .engine-feed span:nth-child(4) { animation-delay: -3s; }
  .services-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(128, 165, 216, 0.45);
    border-bottom: 1px solid rgba(128, 165, 216, 0.45);
    background: rgba(255, 255, 255, 0.62);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .services-marquee-track {
    display: flex;
    width: max-content;
    animation: servicesMarquee 22s linear infinite;
    will-change: transform;
  }
  .services-marquee-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 6px;
    flex-shrink: 0;
  }
  .services-marquee span {
    border: 1px solid rgba(128, 165, 216, 0.5);
    border-radius: 999px;
    background: rgba(239, 248, 255, 0.9);
    color: #3c6694;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 800;
    padding: 9px 13px;
    white-space: nowrap;
  }
  .services-track-section {
    padding-top: clamp(56px, 6vw, 82px);
  }
  .services-track-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
  }
  .service-track-card {
    position: relative;
    display: block;
    min-height: 350px;
    overflow: hidden;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.93), rgba(237,248,255,0.88));
    box-shadow: 0 18px 44px rgba(36, 88, 163, 0.12);
    padding: clamp(26px, 3vw, 36px);
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: serviceCardLift 8s ease-in-out infinite;
  }
  .service-track-card::before {
    content: '';
    position: absolute;
    inset: auto -20% -40%;
    height: 190px;
    background:
      linear-gradient(90deg, rgba(56,189,248,0.0), rgba(56,189,248,0.2), rgba(52,211,153,0.18), rgba(56,189,248,0.0));
    transform: rotate(-8deg);
    animation: serviceShimmer 5.8s ease-in-out infinite;
  }
  .service-track-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.72);
    box-shadow: 0 26px 58px rgba(36, 88, 163, 0.18);
  }
  .service-track-1,
  .service-track-4 { grid-column: span 5; }
  .service-track-2,
  .service-track-3,
  .service-track-5,
  .service-track-6 { grid-column: span 7; }
  .service-track-2,
  .service-track-5 { animation-delay: -1.4s; }
  .service-track-3,
  .service-track-6 { animation-delay: -2.8s; }
  .service-track-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 34px;
  }
  .service-track-head > span {
    color: #0b6fa4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
  }
  .service-track-head div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
  }
  .service-track-head em {
    font-style: normal;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: #557ca5;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 6px 8px;
  }
  .service-track-card h3,
  .service-track-card p,
  .service-mini-flow {
    position: relative;
    z-index: 2;
  }
  .service-track-card h3 {
    max-width: 540px;
    margin: 0 0 18px;
    color: #17365b;
    font-size: clamp(25px, 3.1vw, 38px);
    line-height: 1.07;
  }
  .service-track-card p {
    max-width: 620px;
    color: #44698f;
    line-height: 1.68;
    font-size: 15px;
  }
  .service-mini-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 32px;
  }
  .service-mini-flow span {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 165, 216, 0.48);
    border-radius: 8px;
    background: rgba(246, 251, 255, 0.82);
    color: #35597f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 12px 10px;
    text-align: center;
  }
  .service-mini-flow span::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.24), transparent);
    animation: serviceCellScan 3.8s ease-in-out infinite;
  }
  .service-mini-flow span:nth-child(2)::after { animation-delay: 0.45s; }
  .service-mini-flow span:nth-child(3)::after { animation-delay: 0.9s; }
  .service-track-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-top: 24px;
    color: #0b6fa4;
    font-size: 13px;
    font-weight: 900;
  }

  .service-detail-page {
    padding: 88px 0 118px;
    background:
      linear-gradient(180deg, rgba(232, 244, 255, 0.94), rgba(247, 251, 255, 0.98));
  }
  .service-detail-hero,
  .service-detail-body,
  .service-related {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: center;
    min-height: 520px;
  }
  .service-detail-hero h1 {
    max-width: 870px;
    margin: 18px 0 18px;
    color: #112b49;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
  }
  .service-detail-hero p {
    max-width: 720px;
    color: #41658c;
    font-size: 17px;
    line-height: 1.76;
  }
  .service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }
  .service-detail-panel,
  .service-side-card,
  .service-detail-section,
  .service-related-card {
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(36, 88, 163, 0.1);
  }
  .service-detail-panel {
    overflow: hidden;
    min-height: 360px;
  }
  .service-detail-panel-top {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(128, 165, 216, 0.42);
    background: rgba(246, 251, 255, 0.84);
  }
  .service-detail-panel-top span {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: #38bdf8;
  }
  .service-detail-panel-top span:nth-child(2) { background: #34d399; }
  .service-detail-panel-top span:nth-child(3) { background: #fbbf24; }
  .service-detail-panel-top strong {
    margin-left: auto;
    color: #52779f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .service-outcomes {
    display: grid;
    gap: 12px;
    padding: 24px;
  }
  .service-outcomes span {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 165, 216, 0.48);
    border-radius: 8px;
    background: rgba(239, 248, 255, 0.86);
    color: #35597f;
    font-weight: 850;
    padding: 15px;
  }
  .service-outcomes span::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.22), transparent);
    animation: serviceCellScan 3.8s ease-in-out infinite;
  }
  .service-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
  }
  .service-detail-main {
    display: grid;
    gap: 16px;
  }
  .service-detail-section {
    padding: clamp(22px, 4vw, 34px);
  }
  .service-detail-section span {
    color: #0b6fa4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 900;
  }
  .service-detail-section h2 {
    color: #17365b;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
    margin: 14px 0 12px;
  }
.service-detail-section p {
    color: #44698f;
    line-height: 1.72;
    font-size: 15px;
  }
  .service-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }
  .service-delivery-grid article {
    border: 1px solid rgba(128, 165, 216, 0.46);
    border-radius: 8px;
    background: rgba(246, 251, 255, 0.82);
    padding: 18px;
  }
  .service-delivery-grid strong {
    color: #0b6fa4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
  }
  .service-delivery-grid h3 {
    color: #17365b;
    font-size: 18px;
    margin: 12px 0 8px;
  }
  .service-value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }
  .service-value-list span {
    border: 1px solid rgba(128, 165, 216, 0.46);
    border-radius: 8px;
    background: rgba(239, 248, 255, 0.86);
    color: #35597f;
    font-family: inherit;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.45;
    padding: 14px;
  }
  .service-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }
  .service-faq-list details {
    border: 1px solid rgba(128, 165, 216, 0.48);
    border-radius: 8px;
    background: rgba(246, 251, 255, 0.82);
    padding: 14px 15px;
  }
  .service-faq-list summary {
    cursor: pointer;
    color: #17365b;
    font-weight: 850;
  }
  .service-faq-list details p {
    margin-top: 10px;
  }
  .service-detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
  }
  .service-side-card {
    padding: 20px;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .service-tags span {
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 999px;
    background: rgba(239, 248, 255, 0.82);
    color: #557ca5;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 7px 9px;
  }
  .service-side-cta {
    background: linear-gradient(135deg, rgba(18, 44, 76, 0.96), rgba(17, 89, 119, 0.94));
  }
  .service-side-cta h2 {
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .service-side-cta p {
    color: rgba(225, 241, 255, 0.86);
    line-height: 1.65;
    font-size: 14px;
    margin-bottom: 18px;
  }
.service-conversion-cta {
  position: relative;
  overflow: hidden;
  max-width: 80rem;
  margin: 54px auto 0;
  padding: clamp(30px, 4.6vw, 50px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: end;
  gap: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(128, 165, 216, 0.58);
  border-radius: 14px;
  background:
    linear-gradient(rgba(102,156,226,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,156,226,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(232,246,255,.9));
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: 0 18px 44px rgba(36,88,163,.1);
}
.service-conversion-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #38bdf8, #34d399);
}
.service-conversion-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.service-conversion-cta h2 {
  max-width: 900px;
  margin: 4px 0 0;
  color: #112b49;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}
.service-conversion-cta p {
  max-width: 760px;
  color: #365980;
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}
.service-conversion-points {
  list-style: none !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.service-conversion-points li {
  list-style: none !important;
  margin: 0 !important;
  min-height: 56px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #23496f;
  line-height: 1.35;
  font-size: 13px;
  font-weight: 800;
  padding: 12px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}
.service-conversion-points li::marker {
  content: "";
}
.service-conversion-points li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #34d399);
  font-size: 12px;
  font-weight: 900;
}
.service-conversion-action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(19, 47, 79, 0.98), rgba(13, 75, 112, 0.96));
  box-shadow: 0 18px 40px rgba(15, 47, 79, 0.16);
}
.service-conversion-action span {
  color: #7dd3fc;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-conversion-action strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}
.service-conversion-action .btn-primary {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  white-space: normal;
  text-align: center;
  box-shadow: 0 16px 35px rgba(7,44,118,.22);
}
  .service-related {
    margin-top: 92px;
  }
  .service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .service-related-card {
    display: block;
    min-height: 210px;
    padding: 22px;
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  }
  .service-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.66);
    box-shadow: 0 22px 48px rgba(36, 88, 163, 0.14);
  }
  .service-related-card strong {
    display: block;
    color: #17365b;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .service-related-card p {
    color: #557ca5;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .service-related-card span {
    color: #0b6fa4;
    font-weight: 900;
    font-size: 13px;
  }

.case-page,
.landing-page {
  padding: 112px 24px 72px;
}

.case-hero,
.landing-hero,
.case-story-grid,
.case-system-map,
.case-faq,
.case-bottom-cta,
.landing-proof-strip,
.landing-authority-strip,
.landing-section-grid,
.landing-deep-section,
.landing-process-section,
.landing-intent-section,
.landing-sales-block,
.landing-faq,
.landing-bottom-cta {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.case-hero,
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  min-height: 560px;
  padding: 46px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,249,255,0.88)),
    radial-gradient(circle at 86% 16%, rgba(45, 212, 191, 0.16), transparent 32%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.case-hero::after,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 40px 34px 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 64, 105, 0.3), transparent);
}

.case-hero h1,
.landing-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  color: #142033;
  max-width: 840px;
}

.case-hero p,
.landing-hero p {
  max-width: 720px;
  color: #516073;
  font-size: 18px;
  line-height: 1.7;
}

.case-actions,
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.case-terminal,
.landing-panel {
  align-self: stretch;
  border-radius: 22px;
  background: #142033;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.case-visual-terminal {
  padding: 18px;
  gap: 16px;
  background:
    radial-gradient(circle at 86% 12%, rgba(45, 212, 191, 0.22), transparent 30%),
    linear-gradient(150deg, rgba(10, 28, 49, 0.98), rgba(18, 55, 91, 0.96));
}

.case-visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.48;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 46px rgba(0, 0, 0, 0.24);
}

.case-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.12) 44%, transparent 62%);
  transform: translateX(-115%);
  animation: caseVisualSweep 8s ease-in-out infinite;
}

.case-visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.case-terminal-meta {
  display: grid;
  gap: 10px;
}

.case-terminal-meta div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.case-terminal-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(220, 239, 255, 0.6);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-terminal-meta strong {
  display: block;
  color: #f8fbff;
  font-size: 14px;
  line-height: 1.45;
}

.case-terminal-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-terminal-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(232, 247, 255, 0.86);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.case-outcome-board {
  width: min(1160px, 100%);
  margin: 24px auto 0;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(239,248,255,0.82));
  box-shadow: 0 24px 66px rgba(15, 23, 42, 0.07);
}

.case-outcome-copy {
  max-width: 860px;
}

.case-outcome-copy h2 {
  margin: 16px 0 12px;
  color: #142033;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
  text-wrap: balance;
}

.case-outcome-copy p {
  margin: 0;
  max-width: 760px;
  color: #516073;
  font-size: 17px;
  line-height: 1.7;
}

.case-outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3.4vw, 38px);
}

.case-outcome-list article {
  min-height: 168px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
}

.case-outcome-list strong {
  color: rgba(29, 78, 216, 0.18);
  font-size: 44px;
  line-height: 0.9;
}

.case-outcome-list span {
  color: #24405f;
  font-weight: 850;
  line-height: 1.35;
}

.case-module-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.case-module-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.09);
  color: #0f8a67;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
}

@keyframes caseVisualSweep {
  0%, 32% { transform: translateX(-115%); opacity: 0; }
  44% { opacity: 1; }
  64%, 100% { transform: translateX(115%); opacity: 0; }
}

.case-terminal-top {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 14px;
}

.case-terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2dd4bf;
}

.case-terminal-top span:nth-child(2) { background: #f59e0b; }
.case-terminal-top span:nth-child(3) { background: #fb7185; }
.case-terminal-top strong {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.68);
}

.case-terminal-row,
.landing-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.case-terminal-row span,
.landing-proof-row span {
  font-weight: 800;
}

.case-terminal-row i,
.landing-proof-row i {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2dd4bf, #a7f3d0);
}

.case-story-grid,
.landing-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.case-story-card,
.landing-section-card,
.case-faq,
.landing-faq,
.case-system-map,
.landing-sales-block,
.case-bottom-cta,
.landing-bottom-cta {
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.case-story-card,
.landing-section-card {
  padding: 28px;
  min-height: 320px;
}

.case-story-card span,
.landing-section-card strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef6ff;
  color: #1d4ed8;
  font-family: var(--mono);
  margin-bottom: 22px;
}

.case-story-card h2,
.landing-section-card h2,
.case-system-map h2,
.landing-sales-block h2,
.case-faq h2,
.landing-faq h2,
.case-bottom-cta h2,
.landing-bottom-cta h2 {
  margin: 0 0 12px;
  color: #142033;
  letter-spacing: 0;
}

.case-story-card p,
.landing-section-card p,
.case-system-map p,
.landing-sales-block p,
.case-bottom-cta p,
.landing-bottom-cta p {
  color: #516073;
  line-height: 1.7;
}

.case-story-card ul {
  margin: 0;
  padding-left: 18px;
  color: #516073;
  line-height: 1.75;
}

.case-story-card li + li { margin-top: 8px; }

.case-system-map,
.landing-sales-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
}

.case-flow {
  display: grid;
  gap: 10px;
}

.case-flow span,
.landing-proof-strip span {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f5f9ff;
  color: #24405f;
  font-weight: 850;
}

.case-faq,
.landing-faq {
  margin-top: 24px;
  padding: 34px;
}

.case-bottom-cta,
.landing-bottom-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(20, 32, 51, 0.96), rgba(35, 64, 105, 0.95)),
    radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.24), transparent 28%);
  color: #fff;
}

.case-bottom-cta h2,
.landing-bottom-cta h2,
.case-bottom-cta p,
.landing-bottom-cta p {
  color: #fff;
}

.landing-panel {
  background:
    linear-gradient(160deg, rgba(20,32,51,0.98), rgba(31,55,87,0.96)),
    radial-gradient(circle at 80% 20%, rgba(45,212,191,0.28), transparent 38%);
}

.landing-panel-logo {
  padding: 14px 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 6px;
}

.landing-panel-logo img {
  filter: brightness(0) invert(1);
}

.landing-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.landing-authority-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.landing-authority-strip article {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,249,255,0.9)),
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.12), transparent 38%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.landing-authority-strip strong {
  display: block;
  margin-bottom: 10px;
  color: #142033;
  font-size: 18px;
  line-height: 1.15;
}

.landing-authority-strip span {
  color: #516073;
  font-size: 14px;
  line-height: 1.55;
}

.landing-sales-block {
  margin-top: 24px;
}

.location-landing .landing-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,249,255,0.9)),
    radial-gradient(circle at 84% 14%, rgba(45, 212, 191, 0.2), transparent 32%),
    radial-gradient(circle at 6% 92%, rgba(37, 99, 235, 0.1), transparent 26%);
}

.location-landing .landing-section-card {
  position: relative;
  overflow: hidden;
}

.location-landing .landing-section-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #2dd4bf, #2563eb);
  opacity: 0.78;
}

.landing-city-context {
  position: relative;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,249,255,0.9)),
    radial-gradient(circle at 92% 14%, rgba(45, 212, 191, 0.22), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(37, 99, 235, 0.12), transparent 28%);
}

.landing-city-context::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border-radius: 18px;
  border: 1px solid rgba(128, 165, 216, 0.28);
}

.landing-city-copy,
.landing-city-note {
  position: relative;
  z-index: 1;
}

.landing-city-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
}

.landing-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.landing-city-tags span {
  border: 1px solid rgba(11, 111, 164, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #24405f;
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}

.landing-city-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(20,32,51,0.98), rgba(31,55,87,0.96)),
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.22), transparent 38%);
  color: #fff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.landing-city-mark {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: #99f6e4;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.landing-city-note strong {
  color: #fff;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.landing-city-note span {
  color: #99f6e4;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-city-note p {
  margin: 0;
  color: rgba(255,255,255,0.76);
}

.landing-deep-section,
.landing-process-section,
.landing-intent-section {
  margin-top: 24px;
}

.landing-section-heading {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.landing-section-heading h2,
.landing-intent-main h2 {
  margin: 0;
  color: #142033;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.landing-service-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
}

.landing-service-grid h3,
.landing-process-list h3,
.landing-intent-section h3 {
  margin: 0 0 10px;
  color: #142033;
  font-size: 20px;
  line-height: 1.2;
}

.landing-service-grid p,
.landing-process-list p,
.landing-intent-section p {
  margin: 0;
  color: #516073;
  line-height: 1.68;
}

.landing-process-list {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,249,255,0.88)),
    radial-gradient(circle at 92% 14%, rgba(45, 212, 191, 0.12), transparent 32%);
}

.landing-process-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
}

.landing-process-list strong {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #142033;
  color: #99f6e4;
  font-family: var(--mono);
}

.landing-intent-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.landing-intent-main,
.landing-intent-side {
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.landing-intent-main {
  padding: 34px;
}

.landing-intent-main article {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}

.landing-intent-side {
  display: grid;
  gap: 22px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(20,32,51,0.98), rgba(31,55,87,0.96)),
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.22), transparent 38%);
}

.landing-intent-side h3 {
  color: #fff;
}

.landing-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-chip-cloud span {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}

.landing-case-link {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 20px;
  background: #142033;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-case-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.landing-case-link span {
  color: #99f6e4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-case-link strong {
  font-size: 22px;
  line-height: 1.25;
}

.landing-case-link em {
  color: rgba(255,255,255,0.72);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 980px) {
  .case-hero,
  .landing-hero,
  .case-system-map,
  .landing-sales-block,
  .landing-intent-section {
    grid-template-columns: 1fr;
  }

  .case-story-grid,
  .landing-section-grid,
  .landing-proof-strip,
  .landing-authority-strip,
  .landing-service-grid {
    grid-template-columns: 1fr;
  }

  .case-bottom-cta,
  .landing-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .case-page,
  .landing-page {
    padding: 82px 14px 42px;
  }

  .case-hero,
  .landing-hero,
  .case-story-card,
  .landing-section-card,
  .landing-intent-main,
  .landing-intent-side,
  .case-system-map,
  .landing-sales-block,
  .case-faq,
  .landing-faq,
  .case-bottom-cta,
  .landing-bottom-cta {
    border-radius: 18px;
    padding: 22px;
  }

  .case-hero h1,
  .landing-hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

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

  .landing-authority-strip article,
  .landing-service-grid article {
    min-height: auto;
  }

  .case-hero p,
  .landing-hero p {
    font-size: 16px;
  }
}
  .services-data-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin-top: clamp(86px, 8vw, 120px);
    padding-top: clamp(38px, 6vw, 70px);
    padding-bottom: clamp(38px, 6vw, 70px);
    border-top: 1px solid rgba(128, 165, 216, 0.42);
    border-bottom: 1px solid rgba(128, 165, 216, 0.42);
  }
  .services-data-copy h2 {
    margin: 18px 0 14px;
    color: #112b49;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
  }
  .services-data-copy p {
    color: #44698f;
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 26px;
  }
  .data-orchestrator {
    position: relative;
    min-height: 390px;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(15, 47, 79, 0.96), rgba(14, 88, 115, 0.92));
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    gap: 18px;
    padding: clamp(24px, 4vw, 38px);
    box-shadow: 0 28px 70px rgba(36, 88, 163, 0.2);
  }
  .data-orchestrator::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(125, 211, 252, 0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(52, 211, 153, 0.1) 1px, transparent 1px);
    background-size: 34px 34px;
    animation: servicesGridDrift 14s linear infinite;
  }
  .data-column,
  .data-core {
    position: relative;
    z-index: 2;
  }
  .data-column {
    display: grid;
    gap: 12px;
  }
  .data-column span {
    border: 1px solid rgba(191, 219, 254, 0.32);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #d9ecff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 800;
    padding: 13px;
    text-align: center;
    animation: serviceFeed 5s ease-in-out infinite;
  }
  .data-column span:nth-child(2) { animation-delay: -1.1s; }
  .data-column span:nth-child(3) { animation-delay: -2.2s; }
  .data-core {
    min-height: 170px;
    border: 1px solid rgba(125, 242, 211, 0.5);
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.13);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    box-shadow: 0 0 36px rgba(52, 211, 153, 0.18);
  }
  .data-core strong {
    display: block;
    font-size: 54px;
    line-height: 0.95;
  }
  .data-core em {
    color: #a8ffe9;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .data-beam {
    position: absolute;
    z-index: 1;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 242, 211, 0.9), transparent);
    animation: serviceLineGlow 2.4s ease-in-out infinite;
  }
  .beam-1 { top: 42%; }
  .beam-2 { top: 58%; animation-delay: -1.2s; }
  .services-packages {
    margin-top: clamp(86px, 8vw, 120px);
  }
  .services-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .services-package-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(238,248,255,0.86));
    box-shadow: 0 18px 44px rgba(36, 88, 163, 0.1);
    padding: clamp(22px, 2.6vw, 32px);
  }
  .services-package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent, rgba(56,189,248,0.14), transparent);
    transform: translateX(-115%);
    animation: serviceCellScan 4.6s ease-in-out infinite;
  }
  .services-package-card:nth-child(2)::before { animation-delay: -0.7s; }
  .services-package-card:nth-child(3)::before { animation-delay: -1.4s; }
  .services-package-card:nth-child(4)::before { animation-delay: -2.1s; }
  .services-package-card:nth-child(5)::before { animation-delay: -2.8s; }
  .services-package-card:nth-child(6)::before { animation-delay: -3.5s; }
  .services-package-card h3,
  .services-package-card p,
  .services-package-card div {
    position: relative;
    z-index: 2;
  }
  .services-package-card h3 {
    margin: 0 0 12px;
    color: #17365b;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.14;
  }
  .services-package-card p {
    color: #44698f;
    font-size: 14px;
    line-height: 1.66;
  }
  .services-package-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }
  .services-package-card span {
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    color: #557ca5;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 7px 9px;
  }
  .services-process {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-top: clamp(86px, 8vw, 120px);
  }
  .services-process-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .services-process-rail article {
    position: relative;
    min-height: 250px;
    border: 1px solid rgba(128, 165, 216, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    padding: 22px;
    overflow: hidden;
  }
  .services-process-rail article::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #34d399);
    transform-origin: left;
    animation: processBar 4.4s ease-in-out infinite;
  }
  .services-process-rail article:nth-child(2)::after { animation-delay: -0.7s; }
  .services-process-rail article:nth-child(3)::after { animation-delay: -1.4s; }
  .services-process-rail article:nth-child(4)::after { animation-delay: -2.1s; }
  .services-process-rail strong {
    color: #0b6fa4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
  }
  .services-process-rail h3 {
    color: #17365b;
    font-size: 22px;
    margin: 18px 0 10px;
  }
  .services-process-rail p {
    color: #557ca5;
    line-height: 1.62;
    font-size: 14px;
  }
  .services-final-cta {
    position: relative;
    overflow: hidden;
    margin-top: clamp(86px, 8vw, 120px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: stretch;
    gap: clamp(18px, 3vw, 34px);
    border: 1px solid rgba(128, 165, 216, 0.55);
    border-radius: 8px;
    background:
      radial-gradient(circle at 86% 12%, rgba(52, 211, 153, 0.14), transparent 30%),
      radial-gradient(circle at 18% 82%, rgba(56, 189, 248, 0.13), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 244, 255, 0.9));
    box-shadow: 0 22px 56px rgba(36, 88, 163, 0.13);
    padding: clamp(28px, 4.4vw, 54px);
  }
  .services-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(rgba(102, 156, 226, 0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(102, 156, 226, 0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(115deg, rgba(0,0,0,0.72), transparent 78%);
    -webkit-mask-image: linear-gradient(115deg, rgba(0,0,0,0.72), transparent 78%);
  }
  .services-final-cta > div {
    position: relative;
    z-index: 1;
  }
  .services-final-cta h2 {
    max-width: 920px;
    margin: 18px 0 16px;
    color: #112b49;
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: 0.98;
    text-wrap: balance;
  }
  .services-final-cta p {
    max-width: 820px;
    margin: 0;
    color: #44698f;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.72;
  }
  .services-final-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .services-final-points span {
    padding: 9px 12px;
    border: 1px solid rgba(128, 165, 216, 0.46);
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    color: #315f8d;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 850;
  }
  .services-final-action {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: clamp(20px, 2.8vw, 30px);
    border: 1px solid rgba(125, 211, 252, 0.32);
    border-radius: 8px;
    background:
      radial-gradient(circle at 90% 8%, rgba(52, 211, 153, 0.18), transparent 35%),
      linear-gradient(135deg, rgba(10, 45, 82, 0.98), rgba(13, 83, 132, 0.94));
    box-shadow: 0 18px 42px rgba(20, 76, 129, 0.22);
  }
  .services-final-action strong {
    color: rgba(232, 247, 255, 0.78);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .services-final-action .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    box-shadow: 0 18px 34px rgba(28, 121, 235, 0.34);
  }

  @keyframes servicesGridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 104px 104px, 104px 104px; }
  }
  @keyframes serviceNodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @keyframes serviceLineGlow {
    0%, 100% { opacity: 0.35; filter: saturate(0.85); }
    50% { opacity: 1; filter: saturate(1.35); }
  }
  @keyframes servicePulseA {
    0% { transform: translate(0, 0); opacity: 0; }
    12% { opacity: 1; }
    50% { transform: translate(190px, 40px); opacity: 1; }
    100% { transform: translate(330px, 18px); opacity: 0; }
  }
  @keyframes servicePulseB {
    0% { transform: translate(0, 0); opacity: 0; }
    14% { opacity: 1; }
    55% { transform: translate(145px, -62px); opacity: 1; }
    100% { transform: translate(285px, -132px); opacity: 0; }
  }
  @keyframes serviceFeed {
    0%, 100% { transform: translateX(0); opacity: 0.72; }
    50% { transform: translateX(6px); opacity: 1; }
  }
  @keyframes servicesMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes serviceCardLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  @keyframes serviceShimmer {
    0%, 100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.35; }
    50% { transform: translateX(8%) rotate(-8deg); opacity: 0.8; }
  }
  @keyframes serviceCellScan {
    0%, 55% { transform: translateX(-110%); }
    100% { transform: translateX(110%); }
  }
  @keyframes processBar {
    0%, 100% { transform: scaleX(0.32); opacity: 0.58; }
    50% { transform: scaleX(1); opacity: 1; }
  }
  @media (max-width: 1040px) {
    .services-lab-hero,
    .services-data-stage,
    .services-process,
    .service-detail-hero,
    .service-detail-body {
      grid-template-columns: 1fr;
    }
    .services-lab-engine,
    .data-orchestrator {
      min-height: 430px;
    }
    .services-lab-hero {
      padding-top: 34px;
      width: 100vw;
      max-width: 100vw;
      margin-left: 0;
      margin-right: 0;
    }
    .services-lab-copy,
    .services-lab-engine,
    .contact-intro,
    .posts-hero {
      width: min(100%, calc(100vw - 40px));
      max-width: calc(100vw - 40px);
      overflow: hidden;
    }
    .services-lab-copy h1,
    .services-lab-copy p,
    .contact-intro h1,
    .contact-intro p,
    .posts-hero h1,
    .posts-hero p {
      max-width: calc(100vw - 40px);
      overflow-wrap: anywhere;
    }
    .services-lab-copy h1 {
      font-size: clamp(36px, 7vw, 58px);
      line-height: 1.06;
    }
    .services-lab-actions .btn-primary,
    .services-lab-actions .btn-secondary {
      width: 100%;
      justify-content: center;
    }
    .services-marquee {
      width: 100vw;
      max-width: 100vw;
    }
    .services-process-rail {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  .service-detail-side {
    position: static;
  }
  .service-delivery-grid,
  .service-value-list {
    grid-template-columns: 1fr;
  }
    .service-conversion-cta {
      grid-template-columns: 1fr;
      align-items: stretch;
    }
    .service-conversion-points {
      grid-template-columns: 1fr;
    }
    .article-conversion-cta {
      align-items: flex-start;
      flex-direction: column;
    }
    .service-related-grid {
      grid-template-columns: 1fr;
    }
    .service-track-card,
    .service-track-1,
    .service-track-2,
    .service-track-3,
    .service-track-4,
    .service-track-5,
    .service-track-6 {
      grid-column: span 12;
    }
  }
  @media (max-width: 640px) {
    .services-lab-page { padding-top: 76px; }
    .services-lab-hero { min-height: 0; padding-top: 26px; padding-bottom: 38px; }
    .services-lab-copy h1 { font-size: 40px; }
    .services-lab-engine { min-height: 380px; }
    .engine-grid { height: 240px; }
    .engine-node {
      width: 78px;
      height: 78px;
      font-size: 11px;
    }
    .services-track-section,
    .services-data-stage,
    .services-process,
    .services-final-cta {
      margin-top: 76px;
    }
    .service-track-card { min-height: 0; padding: 22px; }
    .service-track-head { flex-direction: column; }
    .service-track-head div { justify-content: flex-start; }
    .service-mini-flow,
    .data-orchestrator,
    .services-process-rail {
      grid-template-columns: 1fr;
    }
    .data-orchestrator { padding: 20px; }
    .data-core strong { font-size: 42px; }
    .services-final-cta {
      grid-template-columns: 1fr;
      padding: 24px 18px;
    }
    .services-final-cta h2 {
      font-size: 36px;
      line-height: 1.04;
    }
    .service-detail-page { padding-top: 66px; }
    .service-detail-hero { min-height: 0; padding-top: 56px; }
    .service-detail-hero h1 { font-size: 40px; }
    .service-conversion-cta {
      padding: 24px 18px;
    }
    .service-conversion-cta h2 {
      font-size: 30px;
    }
    .service-conversion-action {
      padding: 18px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .services-lab-hero::before,
    .services-lab-engine::after,
    .engine-node,
    .engine-line,
    .engine-pulse,
    .engine-feed span,
    .services-marquee div,
    .service-track-card,
    .service-track-card::before,
    .service-mini-flow span::after,
    .data-orchestrator::before,
    .data-column span,
    .data-beam,
    .services-process-rail article::after {
      animation: none;
    }
  }

  .hero-word {
    animation: heroWordClean 12s infinite;
    opacity: 0;
  }
  .live-line {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hw-1 { animation-delay: 0s; }
  .hw-2 { animation-delay: 3s; }
  .hw-3 { animation-delay: 6s; }
  .hw-4 { animation-delay: 9s; }
  @keyframes heroWordClean {
    0%, 20% { opacity: 1; transform: translateY(0); }
    24%, 100% { opacity: 0; transform: translateY(-8px); }
  }

/* Mobile hardening */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  main,
  section,
  article,
  aside,
  div,
  p,
  h1,
  h2,
  h3 {
    min-width: 0;
  }
  .hdr-inner {
    min-height: 60px;
    padding: 0 14px;
    gap: 10px;
  }
  .hdr-logo img {
    height: 22px;
    max-width: 138px;
  }
  .hdr-right {
    gap: 7px;
  }
  .hdr-lang {
    height: 34px;
    min-width: 38px;
    font-size: 10px;
  }
  .hdr-cta {
    display: none;
  }
  .hdr-burger {
    width: 36px;
    height: 36px;
  }

  .hero-section,
  .posts-page,
  .article-shell,
  .portfolio-page,
  .contact-grid,
  .service-detail-page {
    padding-top: 58px;
  }
  .hero-inner,
  .subpage-hero,
  .subpage-body,
  .posts-page,
  .portfolio-hero,
  .portfolio-lab,
  .portfolio-work,
  .portfolio-competence,
  .portfolio-proof-showcase,
  .portfolio-dppc-focus,
  .portfolio-process,
  .contact-grid,
  .article-shell,
  .service-detail-hero,
  .service-detail-body,
  .service-related {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-h1,
  .subpage-title,
  .portfolio-title,
  .services-lab-copy h1,
  .service-detail-hero h1 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .hero-rotator {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-word {
    white-space: normal;
  }
  .hero-sub,
  .subpage-lead,
  .portfolio-lead,
  .services-lab-copy p,
  .service-detail-hero p,
  .contact-form-lead {
    font-size: 15px;
    line-height: 1.65;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .badge,
  .contact-topic-cloud span,
  .posts-hero-panel em,
  .services-marquee span,
  .portfolio-tags span,
  .service-tags span {
    max-width: 100%;
    white-space: normal;
  }
  .btn-primary,
  .btn-secondary {
    max-width: 100%;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .services-lab-actions .btn-primary,
  .services-lab-actions .btn-secondary,
  .portfolio-actions .btn-primary,
  .portfolio-actions .btn-secondary,
  .service-detail-actions .btn-primary,
  .service-detail-actions .btn-secondary,
  .subpage-actions .btn-primary,
  .subpage-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-preview,
  .services-lab-engine,
  .portfolio-console,
  .service-detail-panel {
    min-height: 0;
  }
  .hero-preview {
    padding: 14px;
  }
  .hero-stats {
    gap: 14px;
  }
  .stat-sep {
    display: none;
  }

  .services-lab-page {
    padding-top: 60px;
  }
  .services-lab-copy,
  .contact-intro,
  .posts-hero,
  .portfolio-hero,
  .service-detail-hero {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }
  .services-lab-copy h1,
  .services-lab-copy p,
  .contact-intro h1,
  .contact-intro p,
  .posts-hero h1,
  .posts-hero p {
    width: 100%;
    max-width: calc(100vw - 32px);
  }
  .services-lab-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    gap: 26px;
    padding-top: 24px;
  }
  .services-lab-engine {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-height: 350px;
  }
  .services-marquee {
    width: 100vw;
    max-width: 100vw;
  }
  .engine-grid {
    height: 220px;
  }
  .engine-node {
    width: 68px;
    height: 68px;
    font-size: 10px;
  }
  .node-a { left: 7%; top: 14%; }
  .node-b { right: 7%; top: 18%; }
  .node-c { left: 40%; top: 46%; }
  .node-d { left: 13%; bottom: 6%; }
  .engine-feed {
    margin: 0 12px 14px;
  }
  .engine-feed span {
    padding: 8px 10px;
    font-size: 10px;
  }
  .services-marquee-group {
    gap: 8px;
    padding: 12px 4px;
  }
  .services-marquee span {
    font-size: 10px;
    padding: 7px 10px;
  }
  .services-track-section {
    padding-top: 46px;
  }
  .services-track-grid,
  .portfolio-case-grid,
  .portfolio-capability-grid,
  .portfolio-process-steps,
  .posts-grid,
  .contact-focus-grid,
  .contact-form-row,
  .service-related-grid,
  .services-process-rail {
    grid-template-columns: 1fr;
  }
  .service-track-card,
  .portfolio-slide,
  .portfolio-case-card,
  .section-card,
  .contact-card,
  .article-card,
  .service-detail-section,
  .service-side-card,
  .service-related-card {
    padding: 18px;
    width: 100%;
    max-width: 100%;
  }
  .service-track-head,
  .portfolio-card-head {
    flex-direction: column;
    gap: 12px;
  }
  .service-track-head div,
  .portfolio-card-head {
    justify-content: flex-start;
  }
  .service-track-card h3,
  .services-data-copy h2,
  .services-final-cta h2,
  .service-detail-section h2,
  .news-featured-copy h2 {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.15;
  }
  .service-mini-flow,
  .data-orchestrator,
  .portfolio-visual-pipeline {
    grid-template-columns: 1fr;
  }
  .data-orchestrator {
    min-height: 0;
    padding: 18px;
  }
  .data-core {
    min-height: 120px;
  }
  .data-core strong {
    font-size: 38px;
  }

  .news-featured-card {
    display: block;
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }
  .news-visual {
    min-height: 150px;
  }
  .news-visual img {
    min-height: 190px;
    border-radius: 8px 8px 0 0;
  }
  .news-visual strong {
    font-size: 66px;
  }
  .news-featured-copy,
  .news-list-card {
    padding: 18px;
    width: 100%;
    max-width: 100%;
  }
  .news-list-card {
    grid-template-columns: 1fr;
  }
  .news-list-thumb {
    grid-row: auto;
    aspect-ratio: 1200 / 630;
  }
  .news-featured-copy p,
  .news-list-card p,
  .bc-desc,
  .contact-focus-card p,
  .contact-lines a {
    overflow-wrap: anywhere;
  }
  .posts-pagination {
    gap: 10px;
  }
  .posts-page-link,
  .posts-page-number {
    min-height: 40px;
  }

  .portfolio-carousel {
    grid-auto-columns: 88%;
    padding-bottom: 12px;
  }
  .portfolio-slide {
    min-height: auto;
  }
  .portfolio-slide h3 {
    font-size: 30px;
  }
  .portfolio-slide-visual {
    min-height: 210px;
  }
  .portfolio-metrics,
  .portfolio-dppc-modules {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 20px;
    padding-bottom: 70px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .contact-intro {
    min-height: 0;
  }
  .contact-lines,
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-topic-cloud {
    max-width: 100%;
  }
  .contact-lines a,
  .contact-focus-card,
  .contact-card,
  .contact-note {
    width: 100%;
    max-width: 100%;
  }
  .contact-card-head h2 {
    font-size: 26px;
  }
  .contact-form textarea {
    min-height: 150px;
  }

  .ftr-inner {
    padding: 28px 16px 22px;
  }
  .ftr-system {
    padding: 16px;
  }
  .ftr-system h2 {
    font-size: 21px;
  }
  .ftr-system-flow {
    width: 100%;
    gap: 7px;
  }
  .ftr-system-flow i {
    width: 18px;
  }
  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 420px) {
  .hero-h1,
  .subpage-title,
  .portfolio-title,
  .services-lab-copy h1,
  .service-detail-hero h1 {
    font-size: 31px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-cta,
  .services-lab-actions,
  .portfolio-actions,
  .service-detail-actions,
  .subpage-actions {
    width: 100%;
  }
  .portfolio-carousel {
    grid-auto-columns: 92%;
  }
}

/* Mobile overflow fixes */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: clip;
  }

  .services-lab-hero,
  .services-track-section,
  .services-data-stage,
  .services-process,
  .services-final-cta,
  .posts-page,
  .article-shell,
  .portfolio-page,
  .portfolio-hero,
  .portfolio-lab,
  .portfolio-work,
  .portfolio-competence,
  .portfolio-dppc-focus,
  .portfolio-process,
  .contact-grid,
  .subpage-hero,
  .subpage-body,
  .service-detail-page,
  .service-detail-hero,
  .service-detail-body,
  .service-related {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    overflow: visible;
  }

  .services-lab-copy,
  .services-lab-engine,
  .contact-intro,
  .posts-hero,
  .portfolio-hero,
  .service-detail-hero,
  .section-card,
  .contact-card,
  .contact-focus-card,
  .news-featured-card,
  .news-list-card,
  .article-card,
  .service-track-card,
  .service-detail-section,
  .service-side-card,
  .service-related-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .services-lab-copy,
  .contact-intro,
  .posts-hero,
  .portfolio-hero,
  .service-detail-hero {
    overflow: visible;
  }

  .services-lab-copy h1,
  .contact-intro h1,
  .posts-hero h1,
  .portfolio-title,
  .subpage-title,
  .service-detail-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .services-lab-copy p,
  .contact-intro p,
  .posts-hero p,
  .portfolio-lead,
  .subpage-lead,
  .service-detail-hero p,
  .article-card p,
  .news-featured-copy p,
  .news-list-card p,
  .contact-focus-card p,
  .contact-note p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .services-lab-hero {
    width: 100%;
    max-width: 100%;
    padding-top: 22px;
  }

  .services-lab-engine {
    min-height: 330px;
  }

  .engine-grid {
    height: 210px;
  }

  .engine-node {
    width: 62px;
    height: 62px;
    font-size: 9px;
  }

  .node-a { left: 9%; }
  .node-b { right: 9%; }
  .node-c { left: 39%; }
  .node-d { left: 12%; }

  .engine-feed {
    margin-left: 10px;
    margin-right: 10px;
  }

  .engine-feed span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .services-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .posts-hero,
  .news-layout,
  .contact-grid,
  .contact-lines,
  .contact-focus-grid,
  .contact-form-row,
  .portfolio-case-grid,
  .portfolio-study-grid,
  .portfolio-capability-grid,
  .portfolio-process-steps,
  .service-related-grid,
  .services-track-grid,
  .services-process-rail {
    grid-template-columns: 1fr;
  }

  .posts-hero {
    display: block;
    padding: 20px;
  }

  .posts-hero-panel {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 16px;
  }

  .posts-pagination {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .posts-page-numbers {
    justify-content: center;
    flex-wrap: wrap;
  }

  .article-card h2,
  .news-featured-copy h2,
  .news-list-card h3,
  .portfolio-slide h3,
  .service-track-card h3 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .contact-grid {
    padding-top: 72px;
  }

  .contact-intro {
    min-height: 0;
  }

  .contact-lines a,
  .contact-topic-cloud span {
    overflow-wrap: anywhere;
  }

  .ftr {
    overflow: hidden;
  }
}

/* Services layout refinement */
.services-lab-page {
  padding-top: clamp(72px, 6vw, 92px);
  padding-bottom: 96px;
}

.services-lab-hero,
.services-track-section,
.services-data-stage,
.services-packages,
.services-process,
.services-final-cta {
  max-width: 76rem;
}

.services-lab-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(22px, 3.4vw, 40px);
  padding-bottom: 38px;
}

.services-lab-copy h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.7vw, 58px);
  line-height: 1.06;
  margin-bottom: 18px;
}

.services-lab-copy p {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.72;
}

.services-lab-actions {
  margin-top: 26px;
}

.services-lab-engine {
  min-height: 380px;
  box-shadow: 0 22px 54px rgba(36, 88, 163, 0.15);
}

.engine-grid {
  height: 230px;
}

.engine-node {
  width: 76px;
  height: 76px;
  font-size: 11px;
}

.engine-feed {
  margin-bottom: 16px;
}

.services-marquee {
  margin-top: 8px;
}

.services-marquee-group {
  padding-top: 13px;
  padding-bottom: 13px;
}

.services-stack {
  max-width: 76rem;
  margin: 8px auto 0;
  padding: 0 clamp(20px, 3vw, 34px);
}

.services-stack-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(128, 165, 216, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 247, 255, 0.78));
  box-shadow: 0 14px 34px rgba(36, 88, 163, 0.08);
  padding: 16px;
}

.services-stack-label {
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 9px;
}

.services-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-stack-grid span,
.services-stack-grid a {
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 999px;
  background: rgba(239, 248, 255, 0.9);
  color: #3c6694;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  padding: 9px 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.services-stack-grid a:hover {
  color: #0b6fa4;
  border-color: rgba(11, 111, 164, 0.46);
  background: rgba(255, 255, 255, 0.95);
}

.services-track-section {
  padding-top: clamp(50px, 5vw, 68px);
}

.services-track-section .section-hdr-row {
  margin-bottom: 24px;
}

.services-track-section .section-title {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

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

.service-track-card,
.service-track-1,
.service-track-2,
.service-track-3,
.service-track-4,
.service-track-5,
.service-track-6 {
  grid-column: auto;
}

.service-track-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  animation: none;
}

.service-track-card::before {
  height: 130px;
  opacity: 0.72;
}

.service-track-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.service-track-head > span {
  font-size: 28px;
}

.service-track-head div {
  justify-content: flex-start;
}

.service-track-card h3 {
  max-width: none;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.service-track-card p {
  max-width: none;
  font-size: 14px;
  line-height: 1.62;
}

.service-mini-flow {
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 22px;
}

.service-mini-flow span {
  text-align: left;
  padding: 10px 11px;
}

.service-track-link {
  margin-top: auto;
  padding-top: 20px;
}

.services-data-stage {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  margin-top: clamp(66px, 6vw, 86px);
}

.data-orchestrator {
  min-height: 340px;
}

.services-process {
  grid-template-columns: 300px minmax(0, 1fr);
  margin-top: clamp(66px, 6vw, 86px);
}

.services-process-rail article {
  min-height: 200px;
  padding: 20px;
}

.services-final-cta {
  margin-top: clamp(66px, 6vw, 86px);
}

@media (max-width: 1040px) {
  .services-lab-hero,
  .services-data-stage,
  .services-process {
    grid-template-columns: 1fr;
  }

  .services-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-lab-engine,
  .data-orchestrator {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .services-lab-page {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .services-lab-hero,
  .services-track-section,
  .services-data-stage,
  .services-packages,
  .services-process,
  .services-final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-lab-hero {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .services-lab-copy h1 {
    font-size: clamp(31px, 8.2vw, 38px);
    line-height: 1.1;
  }

  .services-lab-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .services-lab-actions {
    margin-top: 20px;
  }

  .services-lab-engine {
    min-height: 282px;
  }

  .services-lab-engine .engine-top {
    padding: 11px 13px;
  }

  .services-lab-engine .engine-grid {
    height: 172px;
  }

  .services-lab-engine .engine-node {
    width: 58px;
    height: 58px;
    font-size: 9px;
  }

  .services-lab-engine .node-a { left: 9%; top: 16%; }
  .services-lab-engine .node-b { right: 9%; top: 17%; }
  .services-lab-engine .node-c { left: 40%; top: 49%; }
  .services-lab-engine .node-d { left: 12%; bottom: 5%; }

  .services-lab-engine .engine-feed {
    gap: 7px;
    margin: 0 12px 12px;
  }

  .services-lab-engine .engine-feed span {
    padding: 8px 10px;
    font-size: 9px;
  }

  .services-marquee {
    margin-top: 0;
  }

  .services-marquee-group {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .services-stack {
    margin-top: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-stack-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .services-stack-label {
    padding-top: 0;
  }

  .services-stack-grid span {
    font-size: 10px;
    padding: 8px 10px;
  }

  .services-track-section {
    padding-top: 26px;
  }

  .services-track-section .section-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .services-track-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-track-card {
    padding: 18px;
  }

  .service-track-head {
    margin-bottom: 16px;
  }

  .service-track-card h3 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .services-data-stage,
  .services-packages,
  .services-process,
  .services-final-cta {
    margin-top: 58px;
  }

  .services-package-grid {
    grid-template-columns: 1fr;
  }

  .services-package-card {
    min-height: 0;
  }

  .services-process-rail article {
    min-height: 0;
  }
}

/* Unified page width */
.hdr-inner,
.mob-nav,
.ftr-inner,
.content,
.subpage-hero,
.subpage-body,
.posts-page,
.article-shell,
.portfolio-page,
.portfolio-lab,
.portfolio-work,
.portfolio-competence,
.portfolio-case-studies,
.portfolio-proof-showcase,
.portfolio-dppc-focus,
.portfolio-process,
.contact-grid,
.hero-inner,
.proof-strip,
.growth-section,
.product-section,
.case-section,
.seo-faq,
.section,
.tech-inner,
.services-lab-hero,
.services-track-section,
.services-data-stage,
.services-packages,
.services-process,
.services-final-cta,
.services-stack,
.service-detail-hero,
.service-detail-body,
.service-conversion-cta,
.service-related {
  width: 100%;
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
}

.hdr-inner,
.mob-nav,
.ftr-inner,
.content,
.subpage-hero,
.subpage-body,
.posts-page,
.article-shell,
.portfolio-page,
.portfolio-lab,
.portfolio-work,
.portfolio-competence,
.portfolio-case-studies,
.portfolio-proof-showcase,
.portfolio-dppc-focus,
.portfolio-process,
.contact-grid,
.hero-inner,
.proof-strip,
.growth-section,
.product-section,
.case-section,
.seo-faq,
.section,
.tech-inner,
.services-lab-hero,
.services-track-section,
.services-data-stage,
.services-packages,
.services-process,
.services-final-cta,
  .services-stack,
  .service-detail-hero,
  .service-detail-body,
  .service-related {
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
  }

@media (min-width: 1281px) {
  .hdr-inner,
  .mob-nav,
  .ftr-inner,
  .content,
  .subpage-hero,
  .subpage-body,
  .posts-page,
  .article-shell,
  .portfolio-page,
  .portfolio-lab,
  .portfolio-work,
  .portfolio-competence,
  .portfolio-case-studies,
  .portfolio-proof-showcase,
  .portfolio-dppc-focus,
  .portfolio-process,
  .contact-grid,
  .hero-inner,
  .proof-strip,
  .growth-section,
  .product-section,
  .case-section,
  .seo-faq,
  .section,
  .tech-inner,
  .services-lab-hero,
  .services-track-section,
  .services-data-stage,
  .services-packages,
  .services-process,
  .services-final-cta,
    .services-stack,
    .service-detail-hero,
    .service-detail-body,
    .service-related {
      padding-left: 0;
      padding-right: 0;
    }
}

@media (max-width: 760px) {
  .hdr-inner,
  .mob-nav,
  .ftr-inner,
  .content,
  .subpage-hero,
  .subpage-body,
  .posts-page,
  .article-shell,
  .portfolio-page,
  .portfolio-lab,
  .portfolio-work,
  .portfolio-competence,
  .portfolio-case-studies,
  .portfolio-proof-showcase,
  .portfolio-dppc-focus,
  .portfolio-process,
  .contact-grid,
  .hero-inner,
  .proof-strip,
  .growth-section,
  .product-section,
  .case-section,
  .seo-faq,
  .section,
  .tech-inner,
  .services-lab-hero,
  .services-track-section,
  .services-data-stage,
  .services-packages,
  .services-process,
  .services-final-cta,
    .services-stack,
    .service-detail-hero,
    .service-detail-body,
    .service-related {
      max-width: 100%;
      padding-left: var(--site-gutter-mobile);
    padding-right: var(--site-gutter-mobile);
  }

  .service-detail-page {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Box spacing polish */
.section-card,
.subpage-panel,
.page-cta,
.news-list-card,
.bc-inner,
.article-seo-bridge,
.article-conversion-cta,
.contact-focus-card,
.contact-card,
.portfolio-case-card,
.portfolio-study-card,
.portfolio-slide,
.portfolio-dppc-focus,
.portfolio-competence,
.portfolio-work,
.service-detail-section,
.service-side-card,
.service-related-card,
.service-outcomes,
.services-stack-inner,
.service-track-card,
.services-package-card,
.growth-item,
.product-module,
.case-card,
.faq-item {
  padding: clamp(22px, 2.5vw, 32px);
}

.news-featured-copy {
  padding: clamp(30px, 4vw, 48px);
}

.service-faq-list details {
  padding: clamp(16px, 2vw, 22px);
}

.posts-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

.bc-card {
  min-height: 100%;
}

@media (max-width: 760px) {
  .section-card,
  .subpage-panel,
  .page-cta,
  .news-list-card,
  .bc-inner,
  .article-seo-bridge,
  .article-conversion-cta,
  .contact-focus-card,
  .contact-card,
  .portfolio-case-card,
  .portfolio-study-card,
  .portfolio-slide,
  .portfolio-dppc-focus,
  .portfolio-competence,
  .portfolio-work,
  .service-detail-section,
  .service-side-card,
  .service-related-card,
  .service-outcomes,
  .services-stack-inner,
  .service-track-card,
  .services-package-card,
  .growth-item,
  .product-module,
  .case-card,
  .faq-item {
    padding: 18px;
  }

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

/* Cookie consent */
.cookie-settings {
  border: 0;
  padding: 0;
  color: #5b7ea8;
  background: transparent;
  font: inherit;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings:hover {
  color: #38bdf8;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 90;
  width: min(560px, calc(100vw - 36px));
}

.cookie-card {
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, 0.58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(12, 37, 66, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(18px, 3vw, 26px);
}

.cookie-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  color: #0b6fa4;
  background: rgba(239, 248, 255, 0.9);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 0 0 8px;
  color: #132f4f;
  font-size: 22px;
  line-height: 1.18;
}

.cookie-copy p {
  margin: 0;
  color: #44698f;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background: rgba(246, 251, 255, 0.78);
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0b6fa4;
}

.cookie-toggle strong {
  display: block;
  color: #17365b;
  font-size: 13px;
  margin-bottom: 2px;
}

.cookie-toggle small {
  display: block;
  color: #5b7ea8;
  font-size: 12px;
  line-height: 1.45;
}

.cookie-toggle.is-disabled {
  opacity: 0.82;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-btn {
  min-height: 40px;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  padding: 0 14px;
  color: #17365b;
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.68);
}

.cookie-btn-primary {
  border-color: rgba(56, 189, 248, 0.72);
  color: #ffffff;
  background: linear-gradient(135deg, #0b6fa4, #38bdf8);
}

.cookie-btn-ghost {
  background: rgba(238, 246, 255, 0.72);
}

@media (max-width: 760px) {
  .lead-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: block;
  }

  .lead-dock-primary {
    min-width: 0;
    text-align: center;
  }

  .lead-dock-phone {
    padding: 0 12px;
    font-size: 12px;
  }

  .cookie-consent {
    inset: auto 10px 10px;
    width: auto;
  }

  body:has(.cookie-consent:not([hidden])) .lead-dock {
    display: none;
  }

  .cookie-card {
    max-height: min(74vh, 560px);
    overflow-y: auto;
    padding: 16px;
  }

  .cookie-kicker {
    margin-bottom: 8px;
    padding: 4px 8px;
    font-size: 9px;
  }

  .cookie-copy h2 {
    font-size: 21px;
    margin-bottom: 6px;
  }

  .cookie-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .cookie-options {
    gap: 8px;
    margin: 12px 0;
  }

  .cookie-toggle {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .cookie-toggle input {
    width: 16px;
    height: 16px;
  }

  .cookie-toggle strong {
    font-size: 12px;
  }

  .cookie-toggle small {
    font-size: 11px;
    line-height: 1.35;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cookie-btn {
    width: 100%;
    min-height: 38px;
    font-size: 12px;
  }
}

/* Contact page refinement */
.contact-page-v2 {
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}

.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-fast-path {
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background: rgba(239, 248, 255, 0.76);
  padding: 12px 14px;
  display: grid;
  gap: 3px;
}

.contact-fast-path strong {
  color: #17365b;
  font-size: 13px;
}

.contact-fast-path span {
  color: #557ca5;
  font-size: 12px;
  line-height: 1.45;
}

.contact-page-v2 .contact-intro {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-page-v2 .subpage-title {
  max-width: 780px;
}

.contact-page-v2 .subpage-lead {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-priority-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-top: 6px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(239, 248, 255, 0.88)),
    radial-gradient(circle at 12% 0%, rgba(52, 211, 153, 0.22), transparent 32%);
  box-shadow: 0 18px 44px rgba(20, 83, 45, 0.08);
  overflow: hidden;
}

.contact-priority-card::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 50%;
  opacity: 0.42;
}

.contact-priority-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #17613a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}

.contact-priority-card h2 {
  margin: 0;
  max-width: 620px;
  color: #17365b;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.contact-priority-card p {
  margin: 12px 0 0;
  max-width: 620px;
  color: #35597f;
  font-size: 14px;
  line-height: 1.7;
}

.contact-priority-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #17365b;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-page-v2 .contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.contact-page-v2 .contact-lines a {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
}

.contact-page-v2 .contact-lines span {
  color: #6d8db4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-page-v2 .contact-lines strong {
  color: #17365b;
  font-size: 15px;
  line-height: 1.25;
}

.contact-page-v2 .contact-topic-cloud {
  margin-top: 0;
}

.contact-page-v2 .contact-topic-cloud span {
  background: rgba(255, 255, 255, 0.76);
  color: #35597f;
}

.contact-page-v2 .contact-focus-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.contact-page-v2 .contact-focus-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  min-height: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-page-v2 .contact-focus-card small {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
}

.contact-page-v2 .contact-focus-card strong {
  margin: 0;
  font-size: 15px;
}

.contact-page-v2 .contact-focus-card p {
  margin: 0;
}

.contact-steps-v2 {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 18px;
  border: 1px solid rgba(128, 165, 216, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(239,248,255,0.72));
}

.contact-steps-v2 p {
  margin: 0;
  color: #17365b;
  font-size: 13px;
  font-weight: 800;
}

.contact-steps-v2 div {
  display: grid;
  gap: 8px;
}

.contact-steps-v2 span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #35597f;
  font-size: 13px;
}

.contact-steps-v2 strong {
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

@media (max-width: 980px) {
  .contact-priority-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-priority-card a {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .contact-page-v2 {
    gap: 22px;
  }

  .contact-page-v2 .contact-lines {
    grid-template-columns: 1fr;
  }

  .contact-page-v2 .contact-focus-card {
    grid-template-columns: 1fr;
  }

  .contact-page-v2 .contact-focus-card small {
    grid-row: auto;
  }

  .contact-priority-card a {
    width: 100%;
  }
}

/* Privacy page side panel */
.legal-contact-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-contact-card h2 {
  margin: 0;
  color: #17365b;
  font-size: 20px;
  line-height: 1.15;
}

.legal-contact-card p {
  margin: 0;
  color: #557ca5;
  font-size: 13px;
  line-height: 1.6;
}

.legal-contact-card a {
  color: #0b6fa4;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.legal-analytics-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(239, 248, 255, 0.72);
  color: #35597f;
}

.legal-analytics-note strong {
  color: #17365b;
  font-size: 13px;
}

.legal-analytics-note span {
  font-size: 13px;
  line-height: 1.55;
}

/* Product surfaces aligned with the main JiraSoft UI */
.product-section {
  padding-bottom: 104px;
}

.product-section::before {
  display: none !important;
}

.product-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 0 0 24px;
}

.product-showcase-head .badge,
.products-hero .badge {
  background: rgba(15, 47, 79, 0.06);
  color: #426b96;
  border-color: rgba(128, 165, 216, 0.42);
}

.product-showcase-head .section-title {
  max-width: 820px;
  color: #132f51;
}

.product-showcase-head .section-sub {
  max-width: 780px;
  color: #4d7198;
}

.product-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(7, 44, 118, 0.24);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.product-showcase-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 44, 118, 0.34);
  filter: brightness(1.05);
}

.product-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  padding: 0;
}

.product-card,
.product-card-featured,
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4) {
  grid-column: auto;
  display: flex;
  min-height: 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(36, 88, 163, 0.08);
  gap: 16px;
}

.product-card::before {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 18px 38px rgba(36, 88, 163, 0.12);
}

.product-card-media,
.product-card-featured .product-card-media,
.product-card:nth-child(4) .product-card-media {
  min-height: 0;
  height: auto;
  aspect-ratio: 1.45;
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.36);
  background:
    linear-gradient(rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, 0.08) 1px, transparent 1px),
    #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.product-card-media img,
.products-featured-media img,
.products-side-mark img,
.products-mini-media img {
  object-position: top center;
}

.product-card > div {
  display: block;
  padding: 0;
}

.product-card span {
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(15, 47, 79, 0.05);
  color: #426b96;
  font-size: 10px;
  font-weight: 850;
}

.product-card h3,
.product-card-featured h3 {
  margin: 0 0 8px;
  color: #17365b;
  font-size: 21px;
  line-height: 1.16;
}

.product-card p,
.product-card-featured p {
  max-width: none;
  color: #557ca5;
  font-size: 13px;
  line-height: 1.62;
}

.product-card .product-link {
  align-self: flex-start;
  margin: auto 0 0;
  color: #0b6fa4;
  border-bottom-color: rgba(11, 111, 164, 0.22);
  font-size: 13px;
}

.products-page {
  padding-top: 54px;
}

.products-hero {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  background:
    radial-gradient(circle at 86% 8%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  color: #17365b;
  box-shadow: 0 18px 42px rgba(36, 88, 163, 0.1);
}

.products-hero h1 {
  margin: 16px 0 14px;
  color: #132f51;
  font-size: clamp(38px, 6vw, 72px);
}

.products-hero p {
  color: #557ca5;
  font-size: clamp(16px, 1.8vw, 19px);
}

.products-hero-panel div {
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.42);
  background: rgba(255, 255, 255, 0.72);
}

.products-hero-panel strong {
  color: #17365b;
}

.products-hero-panel span {
  color: #557ca5;
}

.products-grid {
  gap: 16px;
}

.products-card,
.products-card-featured {
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(128, 165, 216, 0.46);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(36, 88, 163, 0.08);
}

.products-card-featured {
  min-height: 380px;
}

.products-card-media {
  border-radius: 8px;
  border-color: rgba(128, 165, 216, 0.36);
}

.products-card-copy h2 {
  color: #17365b;
  font-size: clamp(28px, 3.5vw, 48px);
}

.products-card-copy p {
  color: #557ca5;
}

.products-points i,
.products-seo-content article {
  border-radius: 8px;
}

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

@media (max-width: 900px) {
  .product-showcase-head,
  .products-hero,
  .products-card,
  .products-card-featured,
  .products-seo-content {
    grid-template-columns: 1fr;
  }

  .products-card,
  .products-card-featured {
    grid-column: span 12;
  }

  .products-card-media {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .product-collection {
    grid-template-columns: 1fr;
  }

  .product-card h3,
  .product-card-featured h3 {
    font-size: 24px;
  }
}

/* Products page editorial layout */
.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: 16px;
}

.products-featured-card,
.products-side-card,
.products-mini-card {
  position: relative;
  border: 1px solid rgba(128, 165, 216, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(36, 88, 163, 0.09);
  overflow: hidden;
}

.products-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 480px;
  background:
    radial-gradient(circle at 16% 14%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(232, 246, 255, .86));
}

.products-featured-media,
.products-mini-media {
  display: block;
  min-height: 100%;
  border-right: 1px solid rgba(128, 165, 216, 0.42);
  background:
    linear-gradient(rgba(102, 156, 226, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, .11) 1px, transparent 1px),
    rgba(239, 248, 255, .82);
  background-size: 18px 18px;
}

.products-featured-media img,
.products-side-mark img,
.products-mini-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.products-featured-card:hover img,
.products-side-card:hover img,
.products-mini-card:hover img {
  transform: scale(1.035);
}

.products-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
}

.products-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #5b7ea8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.products-card-label span {
  color: #0b6fa4;
}

.products-card-label strong {
  color: rgba(19, 47, 79, .92);
  font-size: 34px;
  line-height: .9;
}

.products-featured-copy h2,
.products-side-card h2,
.products-mini-card h2 {
  margin: 0 0 12px;
  color: #17365b;
  line-height: 1.1;
}

.products-featured-copy h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.products-featured-copy p,
.products-side-card p,
.products-mini-card p {
  margin: 0;
  color: #44698f;
  line-height: 1.68;
}

.products-featured-copy p {
  font-size: 17px;
}

.products-side-list {
  display: grid;
  gap: 16px;
}

.products-side-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  min-height: 232px;
  padding: 18px;
}

.products-side-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.products-side-card > div:not(.products-side-mark) {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.products-side-mark {
  border: 1px solid rgba(128, 165, 216, 0.42);
  border-radius: 8px;
  background: rgba(239, 248, 255, .82);
  overflow: hidden;
}

.products-side-card h2 {
  font-size: 25px;
}

.products-side-card p {
  font-size: 14px;
}

.products-side-card .product-link,
.products-mini-card .product-link {
  position: relative;
  z-index: 4;
  margin-top: auto;
  padding-top: 16px;
}

.products-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.products-mini-card {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1fr);
  min-height: 320px;
}

.products-mini-card > div {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 32px);
}

.products-mini-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.products-mini-card p {
  font-size: 15px;
}

.products-layout .product-link,
.products-more-grid .product-link {
  color: #0b6fa4;
  font-weight: 900;
  text-decoration: none;
  border-bottom: none;
}

.products-layout article:hover,
.products-more-grid article:hover {
  border-color: rgba(56, 189, 248, .62);
  box-shadow: 0 20px 46px rgba(36, 88, 163, .15);
}

.demo-product-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 86px) 0 clamp(58px, 9vw, 112px);
}

.demo-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.demo-product-hero-copy,
.demo-product-brief,
.demo-product-frame-section,
.demo-product-markdown,
.demo-product-stack {
  border: 1px solid rgba(128, 165, 216, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(36, 88, 163, .09);
}

.demo-product-hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(233,247,255,.9)),
    linear-gradient(rgba(78, 133, 204, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 133, 204, .08) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.demo-product-hero-copy::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 5vw, 58px);
  width: clamp(92px, 18vw, 210px);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 111, 164, .28);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 111, 164, .24) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11, 111, 164, .24) 50%, transparent 51%);
  opacity: .36;
  pointer-events: none;
}

.demo-product-hero-copy .badge {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0b6fa4;
  border-color: rgba(11, 111, 164, .22);
  background: rgba(232, 246, 255, .86);
}

.demo-product-hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  color: #102a4a;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

.demo-product-hero-copy p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 22px 0 0;
  color: #3f668e;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.demo-product-brief {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.demo-product-brief article {
  padding: clamp(20px, 3vw, 30px);
}

.demo-product-brief article + article {
  border-top: 1px solid rgba(128, 165, 216, 0.42);
}

.demo-product-brief strong {
  display: block;
  margin-bottom: 22px;
  color: rgba(11, 111, 164, .22);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .78;
}

.demo-product-brief h2 {
  margin: 0 0 10px;
  color: #17365b;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.12;
}

.demo-product-brief p {
  margin: 0;
  color: #4f7196;
  line-height: 1.62;
}

.demo-product-frame-section {
  overflow: hidden;
  margin-bottom: clamp(20px, 4vw, 38px);
}

.demo-product-frame-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border-bottom: 1px solid rgba(128, 165, 216, 0.42);
}

.demo-product-frame-head span {
  display: block;
  margin-bottom: 8px;
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.demo-product-frame-head h2 {
  margin: 0;
  color: #17365b;
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1.05;
}

.demo-product-frame-head a,
.demo-product-stack a {
  flex: 0 0 auto;
  color: #0b6fa4;
  font-weight: 900;
  text-decoration: none;
}

.demo-product-browser {
  padding: clamp(14px, 2vw, 20px);
  background:
    linear-gradient(rgba(102, 156, 226, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 156, 226, .08) 1px, transparent 1px),
    #eef7ff;
  background-size: 18px 18px;
}

.demo-product-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(128, 165, 216, .48);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
}

.demo-product-browser-bar i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #8fb2d7;
}

.demo-product-browser-bar i:nth-child(1) {
  background: #ff6b6b;
}

.demo-product-browser-bar i:nth-child(2) {
  background: #f8c45a;
}

.demo-product-browser-bar i:nth-child(3) {
  background: #20c997;
}

.demo-product-browser-bar span {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  color: #627fa0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-product-browser iframe {
  display: block;
  width: 100%;
  height: min(760px, calc(100vh - 120px));
  min-height: 560px;
  border: 1px solid rgba(128, 165, 216, .48);
  border-radius: 0 0 8px 8px;
  background: #ffffff;
}

.demo-product-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.demo-product-markdown,
.demo-product-stack {
  padding: clamp(24px, 4vw, 38px);
}

.demo-product-markdown h2 {
  margin: 0 0 12px;
  color: #17365b;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
}

.demo-product-markdown h2:not(:first-child) {
  margin-top: 34px;
}

.demo-product-markdown p,
.demo-product-markdown li {
  color: #476b91;
  font-size: 17px;
  line-height: 1.74;
}

.demo-product-markdown p {
  margin: 0 0 16px;
}

.demo-product-markdown ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.demo-product-stack {
  position: sticky;
  top: 92px;
}

.demo-product-stack > span {
  display: block;
  margin-bottom: 16px;
  color: #17365b;
  font-weight: 900;
}

.demo-product-stack div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.demo-product-stack i {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(128, 165, 216, .52);
  border-radius: 999px;
  color: #315e8b;
  background: rgba(239, 248, 255, .86);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .products-layout,
  .products-featured-card,
  .products-more-grid,
  .products-mini-card {
    grid-template-columns: 1fr;
  }

  .products-featured-media,
  .products-mini-media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(128, 165, 216, 0.42);
  }

  .demo-product-hero,
  .demo-product-content {
    grid-template-columns: 1fr;
  }

  .demo-product-stack {
    position: static;
  }
}

@media (max-width: 560px) {
  .products-side-card {
    grid-template-columns: 1fr;
  }

  .products-side-mark {
    min-height: 170px;
  }

  .products-featured-copy h2 {
    font-size: 40px;
  }

  .demo-product-page {
    width: min(100% - 28px, 1180px);
    padding-top: 30px;
  }

  .demo-product-hero-copy {
    padding: 24px;
  }

  .demo-product-hero-copy h1 {
    font-size: 42px;
  }

  .demo-product-frame-head {
    align-items: start;
    flex-direction: column;
  }

  .demo-product-browser {
    padding: 10px;
  }

  .demo-product-browser iframe {
    height: 680px;
    min-height: 620px;
  }
}

/* Performance mode for small screens:
   stop heavy decorative animations to reduce main-thread and paint cost. */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .is-mobile .hero-wireframe,
  .is-mobile .hero-wireframe * {
    animation: none !important;
    transition: none !important;
  }

  .is-mobile .hero-word,
  .is-mobile .hero-rotator,
  .is-mobile .hero-right,
  .is-mobile .hero-live,
  .is-mobile .hero-preview,
  .is-mobile .wf-data-streams,
  .is-mobile .wf-system-markers,
  .is-mobile .wf-orbit,
  .is-mobile .wf-signal-map,
  .is-mobile .wf-glass-stack,
  .is-mobile .hero-preview-orbit,
  .is-mobile .hero-live-status,
  .is-mobile .lead-dock,
  .is-mobile .live-pipeline,
  .is-mobile .live-metrics,
  .is-mobile .live-tags {
    animation: none !important;
  }

  .is-mobile .live-line,
  .is-mobile .pipe-line,
  .is-mobile .metric-bar i,
  .is-mobile .service-node,
  .is-mobile .wf-line,
  .is-mobile .wf-data-streams i,
  .is-mobile .wf-system-markers span,
  .is-mobile .wf-orbit span,
  .is-mobile .wf-signal-map i,
  .is-mobile .wf-glass-stack span,
  .is-mobile .hero-preview-orbit,
  .is-mobile .hero-live-status,
  .is-mobile .wf-glow {
    animation-name: none !important;
  }

  .is-mobile .wf-data-streams,
  .is-mobile .wf-system-markers,
  .is-mobile .wf-orbit,
  .is-mobile .wf-signal-map,
  .is-mobile .wf-glass-stack,
  .is-mobile .hero-preview-orbit {
    display: none !important;
  }

  .is-mobile .svc-shine,
  .is-mobile .svc-card,
  .is-mobile .service-card,
  .is-mobile .portfolio-slide,
  .is-mobile .services-marquee,
  .is-mobile .fade-up {
    animation: none !important;
    transition: none !important;
  }

  .is-mobile .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile stability overrides */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .hdr-nav {
    display: none !important;
  }

  .hdr-burger {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  .hdr-inner {
    gap: 8px;
    padding-inline: 14px;
  }

  .hdr-right {
    gap: 7px;
  }

  .hdr-cta {
    display: none !important;
  }

  .hdr-lang {
    height: 34px;
    min-width: 38px;
  }

  .hero-section {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 54px;
    overflow: hidden;
  }

  .hero-wireframe {
    inset: 0 0 auto;
    height: min(480px, 62vh);
    opacity: 0.48;
  }

  .hero-inner {
    gap: 24px;
    padding-top: 8px;
  }

  .hero-left,
  .hero-right {
    position: relative;
    z-index: 2;
  }

  .hero-h1 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .hero-sub {
    margin-bottom: 18px;
  }

  .hero-cta {
    gap: 10px;
  }

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

  .stat-block {
    min-width: 0;
  }

  .stat-val {
    font-size: 24px;
  }

  .stat-lbl {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .hero-preview {
    margin-top: 0;
    max-height: 420px;
    overflow: hidden;
  }

  .product-section {
    padding-bottom: 68px;
  }

  .product-showcase-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding-bottom: 18px;
  }

  .product-showcase-cta {
    width: 100%;
  }

  .product-collection,
  .products-layout,
  .products-more-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }

  .product-card,
  .product-card-featured,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .products-featured-card,
  .products-side-card,
  .products-mini-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .product-card-media,
  .product-card-featured .product-card-media,
  .product-card:nth-child(4) .product-card-media,
  .products-featured-media,
  .products-side-mark,
  .products-mini-media {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0;
    aspect-ratio: 1.45;
    overflow: hidden;
  }

  .product-card-media img,
  .products-featured-media img,
  .products-side-mark img,
  .products-mini-media img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
  }

  .products-page,
  .posts-page,
  .article-shell,
  .subpage-shell {
    max-width: 100%;
    overflow-x: clip;
  }
}

/* Final portfolio lab layout override */
.portfolio-page .portfolio-lab .portfolio-carousel {
  display: grid !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  overflow: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.portfolio-page .portfolio-lab .portfolio-slide {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 250, 255, .92)) !important;
}

.portfolio-page .portfolio-lab .portfolio-slide-copy {
  order: 2 !important;
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  padding: clamp(20px, 2.4vw, 30px) !important;
}

.portfolio-page .portfolio-lab .portfolio-slide-screenshot {
  order: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 1.34 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(128, 165, 216, .42) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.portfolio-page .portfolio-lab .portfolio-slide-screenshot img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.portfolio-page .portfolio-lab .portfolio-slide h3 {
  font-size: clamp(27px, 2.4vw, 36px) !important;
  line-height: 1.06 !important;
}

.portfolio-page .portfolio-lab .portfolio-slide h4 {
  font-size: clamp(17px, 1.3vw, 20px) !important;
  line-height: 1.35 !important;
}

.portfolio-page .portfolio-lab .portfolio-slide .portfolio-impact {
  margin-top: auto !important;
}

.portfolio-page .portfolio-lab .portfolio-carousel-hint {
  display: none !important;
}

@media (max-width: 1120px) {
  .portfolio-page .portfolio-lab .portfolio-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .portfolio-page .portfolio-lab .portfolio-carousel {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .portfolio-page .portfolio-lab .portfolio-slide-screenshot {
    aspect-ratio: 1.5 !important;
  }
}

/* Portfolio proof showcase needs inner breathing room after global width overrides. */
.portfolio-page .portfolio-proof-showcase {
  padding: clamp(32px, 4.4vw, 58px) !important;
}

.portfolio-page .portfolio-proof-showcase .section-hdr-row {
  margin-bottom: clamp(28px, 3.4vw, 46px) !important;
}

.portfolio-page .portfolio-proof-showcase .section-title {
  max-width: 1120px;
}

.portfolio-page .portfolio-proof-showcase .section-sub {
  max-width: 1180px;
}

@media (max-width: 760px) {
  .portfolio-page .portfolio-proof-showcase {
    padding: 24px 18px !important;
  }
}

@media (max-width: 900px) {
  .home-proof-case-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-case {
    min-height: 0;
  }

  .case-outcome-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-proof-cases {
    width: min(100% - 24px, 1180px);
    padding: 22px 16px;
  }

  .case-outcome-board {
    padding: 22px 16px;
  }

  .case-outcome-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-visual-frame {
    aspect-ratio: 1.28;
  }
}

/* Selected experience block also needs consistent inner padding. */
.portfolio-page .portfolio-lab {
  padding: clamp(32px, 4.4vw, 58px) !important;
}

.portfolio-page .portfolio-lab .section-hdr-row {
  margin-bottom: clamp(28px, 3.4vw, 46px) !important;
}

.portfolio-page .portfolio-lab .section-title {
  max-width: 1120px;
}

.portfolio-sales-outcomes {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 70px) auto 0;
  padding: clamp(30px, 4.6vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: stretch;
  border: 1px solid rgba(128, 165, 216, .46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(52, 211, 153, .14), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(56, 189, 248, .13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(240,248,255,.84));
  box-shadow: 0 28px 76px rgba(36, 88, 163, .12);
}

.portfolio-sales-outcomes > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(8px, 1.4vw, 18px);
}

.portfolio-sales-outcomes h2 {
  margin: 18px 0 16px;
  color: #132f4f;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.portfolio-sales-outcomes p {
  margin: 0;
  max-width: 650px;
  color: #54779d;
  font-size: 17px;
  line-height: 1.72;
}

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

.portfolio-sales-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(128, 165, 216, .44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(56, 189, 248, .13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,248,255,.74));
  box-shadow: 0 16px 42px rgba(36, 88, 163, .08);
}

.portfolio-sales-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -38px;
  width: 126px;
  aspect-ratio: 1;
  border: 1px solid rgba(11,111,164,.16);
  border-radius: 999px;
}

.portfolio-sales-grid strong {
  color: rgba(11, 111, 164, .18);
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: .9;
}

.portfolio-sales-grid h3 {
  margin: 28px 0 10px;
  color: #15385f;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.portfolio-sales-grid p {
  color: #55789f;
  font-size: 15px;
  line-height: 1.65;
}

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

  .portfolio-sales-outcomes > div:first-child {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .portfolio-sales-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-sales-outcomes {
    width: min(100% - 24px, 1180px);
    padding: 22px 16px;
  }
}

@media (max-width: 760px) {
  .portfolio-page .portfolio-lab {
    padding: 24px 18px !important;
  }
}

/* Premium technology rail on the homepage. */
.tech-strip {
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(128, 165, 216, 0.38) !important;
  border-bottom: 1px solid rgba(128, 165, 216, 0.38) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, .16), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(52, 211, 153, .13), transparent 34%),
    linear-gradient(135deg, rgba(244, 248, 255, .94), rgba(232, 246, 255, .82)) !important;
  padding: 26px 20px !important;
}

.tech-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(70,112,168,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(70,112,168,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .65;
}

.tech-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), rgba(56,189,248,.18), transparent);
  transform: skewX(-18deg);
  animation: homeTechScan 9s ease-in-out infinite;
  pointer-events: none;
}

.tech-inner {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, var(--site-width)) !important;
  max-width: var(--site-width) !important;
  margin: 0 auto !important;
  padding: 14px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid rgba(128, 165, 216, .46) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .58) !important;
  box-shadow: 0 18px 46px rgba(36, 88, 163, .10), inset 0 1px 0 rgba(255,255,255,.72) !important;
  backdrop-filter: blur(14px);
}

.tech-item {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(128,165,216,.46) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,248,255,.76)) !important;
  color: #315e8b !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: .04em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 18px rgba(36, 88, 163, .06) !important;
}

.tech-item::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #34d399);
  box-shadow: 0 0 14px rgba(56,189,248,.45);
}

.tech-item:last-child {
  border-right: 1px solid rgba(128,165,216,.46) !important;
}

.tech-item:hover {
  color: #0b6fa4 !important;
  border-color: rgba(56,189,248,.72) !important;
  background: linear-gradient(180deg, #fff, rgba(232,246,255,.92)) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 28px rgba(36, 88, 163, .12) !important;
}

@keyframes homeTechScan {
  0%, 44% { left: -28%; opacity: 0; }
  54% { opacity: 1; }
  78%, 100% { left: 112%; opacity: 0; }
}

@media (max-width: 760px) {
  .tech-strip {
    padding: 18px 14px !important;
  }

  .tech-inner {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain !important;
    scrollbar-width: none !important;
    padding: 12px !important;
  }

  .tech-inner::-webkit-scrollbar {
    display: none;
  }

  .tech-item {
    flex: 0 0 auto !important;
  }
}

/* SEM landing: conversion-first premium variant. */
.sem-landing {
  position: relative;
  isolation: isolate;
}

.sem-landing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(56,189,248,.2), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(52,211,153,.15), transparent 34%),
    linear-gradient(180deg, rgba(231,244,255,.92), rgba(244,248,255,0));
}

.sem-landing .landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(128,165,216,.52);
  border-radius: 8px;
  background:
    linear-gradient(rgba(102,156,226,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,156,226,.08) 1px, transparent 1px),
    radial-gradient(circle at 84% 16%, rgba(56,189,248,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,246,255,.88));
  background-size: 26px 26px, 26px 26px, auto, auto;
  box-shadow: 0 28px 74px rgba(36,88,163,.16);
}

.sem-landing .landing-hero::before {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 82px);
  bottom: clamp(24px, 5vw, 74px);
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(11,111,164,.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11,111,164,.18) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(11,111,164,.18) 50%, transparent 51%);
  opacity: .56;
}

.sem-landing .landing-hero h1 {
  max-width: 860px;
  font-size: clamp(46px, 6.2vw, 90px);
  line-height: .96;
  letter-spacing: 0;
}

.sem-landing .landing-hero p {
  max-width: 760px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.72;
}

.sem-landing .landing-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(56,189,248,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(239,248,255,.74));
  box-shadow: 0 22px 56px rgba(36,88,163,.13);
}

.sem-landing .landing-proof-row {
  min-height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.68);
}

.sem-intake-section {
  width: 100%;
  max-width: var(--site-width);
  margin: -72px auto 82px;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  border: 1px solid rgba(128,165,216,.56);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(52,211,153,.14), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,246,255,.9));
  box-shadow: 0 26px 70px rgba(36,88,163,.16);
}

.sem-intake-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(8px, 2vw, 18px);
}

.sem-intake-copy h2 {
  margin: 0;
  color: #132f4f;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sem-intake-copy p {
  max-width: 650px;
  margin: 0;
  color: #44698f;
  font-size: 16px;
  line-height: 1.72;
}

.sem-intake-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sem-intake-proof span {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(128,165,216,.42);
  border-radius: 8px;
  background: rgba(255,255,255,.66);
}

.sem-intake-proof strong {
  color: #0b6fa4;
  font-size: 24px;
  line-height: 1;
}

.sem-intake-proof small {
  color: #5b7ea8;
  font-size: 12px;
  line-height: 1.35;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sem-contact-form {
  max-width: none;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(128,165,216,.52);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,255,.88));
  box-shadow: 0 18px 44px rgba(36,88,163,.1);
}

.sem-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.sem-form-head span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(52,211,153,.34);
  border-radius: 999px;
  background: rgba(52,211,153,.12);
  color: #0f8a67;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sem-form-head h3 {
  margin: 0;
  color: #17365b;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.05;
}

.sem-contact-form .contact-form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sem-contact-form input,
.sem-contact-form select,
.sem-contact-form textarea {
  min-height: 50px;
  background: rgba(255,255,255,.94);
}

.sem-contact-form textarea {
  min-height: 150px;
}

.sem-submit {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.sem-landing .landing-section-card,
.sem-landing .landing-service-grid article,
.sem-landing .landing-intent-main,
.sem-landing .landing-intent-side,
.sem-landing .landing-process-list article,
.sem-landing .landing-sales-block,
.sem-landing .landing-bottom-cta {
  box-shadow: 0 18px 44px rgba(36,88,163,.10);
}

@media (max-width: 980px) {
  .sem-intake-section {
    grid-template-columns: 1fr;
    margin-top: -38px;
  }
}

@media (max-width: 640px) {
  .sem-landing .landing-hero {
    min-height: 0;
  }

  .sem-intake-section {
    width: calc(100% - 28px);
    padding: 18px;
    margin-bottom: 54px;
  }

  .sem-intake-proof,
  .sem-contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Dedicated SEM pages: premium conversion layout. */
.sem-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0 clamp(62px, 8vw, 110px);
  color: #143253;
  overflow-x: clip;
}

.sem-page :is(h1, h2, h3, p) {
  letter-spacing: 0;
}

.sem-hero-pro {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 72px);
  min-height: calc(100dvh - 72px);
  overflow: hidden;
  padding: clamp(38px, 6vw, 86px) max(clamp(20px, 5vw, 88px), calc((100vw - 1680px) / 2 + 64px));
  border: 0;
  border-bottom: 1px solid rgba(128, 165, 216, .42);
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 211, 153, .26), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(56, 189, 248, .22), transparent 38%),
    linear-gradient(135deg, #071a32 0%, #0d2d52 48%, #0a6c9a 100%);
  box-shadow: 0 36px 90px rgba(13, 45, 82, .28);
}

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

.sem-hero-pro::before {
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.92), transparent 84%);
}

.sem-hero-pro::after {
  right: clamp(280px, 31vw, 520px);
  top: clamp(36px, 6vw, 96px);
  width: clamp(170px, 19vw, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(147, 197, 253, .28);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(125, 211, 252, .32) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(125, 211, 252, .32) 50%, transparent 51%);
  opacity: .55;
  animation: semRadarFloat 13s ease-in-out infinite;
}

.sem-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 980px;
  padding: clamp(8px, 1.6vw, 18px) 0;
}

.sem-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: clamp(20px, 2.4vw, 32px);
  padding: 8px 13px;
  border: 1px solid rgba(125, 211, 252, .46);
  border-radius: 999px;
  background: rgba(15, 92, 143, .28);
  color: #c9f4ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sem-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 20px rgba(52, 211, 153, .72);
}

.sem-hero-copy h1 {
  max-width: 980px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(46px, 5.15vw, 86px);
  line-height: .95;
  text-wrap: balance;
  overflow-wrap: normal;
}

.sem-hero-copy p {
  max-width: 720px;
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  color: rgba(226, 241, 255, .86);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.68;
}

.sem-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
}

.sem-hero-actions .btn-primary {
  background: linear-gradient(135deg, #2f8cff, #1f6ce8) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(31, 108, 232, .34) !important;
}

.sem-hero-actions .btn-secondary {
  border-color: rgba(202, 231, 255, .34) !important;
  background: rgba(255,255,255,.08) !important;
  color: #eaf7ff !important;
  backdrop-filter: blur(12px);
}

.sem-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: auto;
  padding-top: clamp(34px, 4vw, 62px);
}

.sem-hero-metrics span {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(202, 231, 255, .24);
  border-radius: 8px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.sem-hero-metrics strong,
.sem-hero-metrics small {
  display: block;
}

.sem-hero-metrics strong {
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.sem-hero-metrics small {
  margin-top: 7px;
  color: rgba(213, 235, 255, .74);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sem-tech-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  margin-top: clamp(18px, 2vw, 28px);
}

.sem-tech-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(202, 231, 255, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(234, 247, 255, .78);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.sem-form-panel {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 34px);
  border: 1px solid rgba(204, 232, 255, .72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(52, 211, 153, .16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,248,255,.94));
  box-shadow: 0 28px 70px rgba(2, 18, 38, .34);
}

.sem-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.5), transparent 28%, transparent 70%, rgba(56,189,248,.16));
}

.sem-form-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.sem-form-topline span {
  padding: 7px 10px;
  border: 1px solid rgba(52, 211, 153, .34);
  border-radius: 999px;
  background: rgba(52, 211, 153, .12);
  color: #0f8a67;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sem-form-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #102d4f;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.03;
}

.sem-form-panel > p {
  position: relative;
  z-index: 1;
  margin: 14px 0 22px;
  color: #496f98;
  font-size: 15px;
  line-height: 1.62;
}

.sem-form-panel .sem-contact-form {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sem-form-panel .contact-form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sem-form-panel label span {
  color: #264e78;
  font-size: 11px;
}

.sem-form-panel input,
.sem-form-panel select,
.sem-form-panel textarea {
  border-color: rgba(128, 165, 216, .48);
  background: rgba(255,255,255,.92);
  color: #133253;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
}

.sem-form-panel textarea {
  min-height: 128px;
}

.sem-form-panel .sem-submit {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  margin-top: 4px;
}

.sem-rich-board {
  position: relative;
  width: min(calc(100% - 40px), var(--site-width));
  max-width: var(--site-width);
  margin: clamp(34px, 5.4vw, 76px) auto 0;
  padding: clamp(18px, 2.6vw, 30px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
  border: 1px solid rgba(128, 165, 216, .48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 8%, rgba(52,211,153,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,248,255,.88));
  box-shadow: 0 28px 70px rgba(36, 88, 163, .14);
  overflow: hidden;
}

.sem-rich-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(56,189,248,.2), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(52,211,153,.13), transparent 32%),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.sem-rich-copy,
.sem-pain-grid {
  position: relative;
  z-index: 1;
}

.sem-rich-copy {
  display: block;
  min-width: 0;
  min-height: clamp(300px, 33vw, 430px);
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(125, 211, 252, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(52,211,153,.18), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(56,189,248,.18), transparent 36%),
    linear-gradient(135deg, rgba(10, 45, 82, .98), rgba(13, 65, 110, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
}

.sem-rich-copy h2 {
  max-width: 1040px;
  margin: clamp(24px, 4vw, 56px) 0 0;
  color: #f7fbff;
  font-size: clamp(42px, 5.5vw, 86px);
  line-height: 1;
  text-wrap: balance;
}

.sem-rich-copy p {
  max-width: 760px;
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  color: rgba(226, 241, 255, .82);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.sem-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.sem-pain-grid article {
  min-height: 250px;
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border: 1px solid rgba(128, 165, 216, .44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(56,189,248,.13), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,248,255,.86));
  box-shadow: 0 18px 44px rgba(36, 88, 163, .1);
}

.sem-pain-grid span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(52, 211, 153, .32);
  border-radius: 999px;
  background: rgba(52,211,153,.1);
  color: #0f8a67;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sem-pain-grid h3 {
  max-width: 360px;
  margin: 8px 0 0;
  color: #143253;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.04;
  text-wrap: balance;
}

.sem-pain-grid p {
  max-width: 420px;
  margin: auto 0 0;
  color: #55789f;
  font-size: 15px;
  line-height: 1.62;
}

.sem-capability-board,
.sem-proof-board,
.sem-process-board,
.sem-offer-board {
  position: relative;
  width: min(calc(100% - 40px), var(--site-width));
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(30px, 5vw, 70px);
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(128, 165, 216, .48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, .13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,248,255,.76));
  box-shadow: 0 24px 62px rgba(36, 88, 163, .11);
}

.sem-board-head {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.sem-board-head .sem-eyebrow {
  margin-bottom: 0;
  background: rgba(56, 189, 248, .12);
  color: #0b6fa4;
}

.sem-board-head h2 {
  margin: 0;
  color: #132f4f;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1;
  text-wrap: balance;
}

.sem-board-head p {
  max-width: 760px;
  margin: 0;
  color: #54779d;
  font-size: 17px;
  line-height: 1.7;
}

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

.sem-capability-grid article,
.sem-proof-grid article,
.sem-step-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(128, 165, 216, .44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 211, 153, .11), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,251,255,.76));
  box-shadow: 0 14px 34px rgba(36, 88, 163, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sem-capability-grid article:hover,
.sem-proof-grid article:hover,
.sem-step-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, .72);
  box-shadow: 0 22px 48px rgba(36, 88, 163, .14);
}

.sem-capability-grid strong,
.sem-step-grid strong {
  display: block;
  color: rgba(11, 111, 164, .22);
  font-size: clamp(44px, 5vw, 72px);
  line-height: .86;
}

.sem-capability-grid h3,
.sem-proof-grid h3,
.sem-step-grid h3 {
  margin: 26px 0 12px;
  color: #15385f;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
}

.sem-capability-grid p,
.sem-proof-grid p,
.sem-step-grid p {
  margin: 0;
  color: #55789f;
  font-size: 15px;
  line-height: 1.65;
}

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

.sem-proof-grid article {
  min-height: 190px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(10, 45, 82, .96), rgba(11, 111, 164, .88));
}

.sem-proof-media {
  display: block;
  aspect-ratio: 1.55;
  overflow: hidden;
  border-bottom: 1px solid rgba(125, 211, 252, .18);
  background: rgba(255,255,255,.04);
}

.sem-proof-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  opacity: .92;
  transition: transform .35s ease, opacity .35s ease;
}

.sem-proof-grid article:hover .sem-proof-media img {
  transform: scale(1.045);
  opacity: 1;
}

.sem-proof-grid h3 {
  margin: 22px 24px 10px;
  color: #f7fbff;
}

.sem-proof-grid p {
  margin: 0 24px 24px;
  color: rgba(226, 241, 255, .78);
}

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

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

.sem-offer-grid article {
  position: relative;
  min-height: 330px;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(128, 165, 216, .46);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(52,211,153,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(239,248,255,.86));
  box-shadow: 0 18px 44px rgba(36, 88, 163, .1);
}

.sem-offer-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(11,111,164,.18);
  border-radius: 999px;
}

.sem-offer-index {
  color: rgba(11, 111, 164, .18);
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 900;
  line-height: .78;
}

.sem-offer-grid h3 {
  margin: auto 0 14px;
  color: #143253;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.04;
}

.sem-offer-grid p {
  margin: 0;
  color: #55789f;
  font-size: 15px;
  line-height: 1.66;
}

.sem-offer-grid strong {
  width: fit-content;
  margin-top: 24px;
  padding: 9px 11px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  background: rgba(56,189,248,.1);
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes semRadarFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .42; }
  50% { transform: translate3d(18px, 22px, 0) rotate(8deg); opacity: .7; }
}

@media (max-width: 1080px) {
  .sem-hero-pro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(32px, 7vw, 58px) clamp(18px, 4vw, 34px);
  }

  .sem-form-panel {
    align-self: stretch;
    justify-self: stretch;
    max-width: none;
  }

  .sem-capability-grid,
  .sem-proof-grid,
  .sem-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sem-rich-board {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,248,255,.88));
  }

  .sem-rich-copy {
    min-height: 0;
  }

  .sem-pain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sem-page {
    padding-top: 24px;
  }

  .sem-hero-pro {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(128, 165, 216, .42);
    border-radius: 8px;
  }

  .sem-hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .sem-hero-metrics,
  .sem-tech-ribbon,
  .sem-capability-grid,
  .sem-proof-grid,
  .sem-step-grid,
  .sem-offer-grid,
  .sem-form-panel .contact-form-row {
    grid-template-columns: 1fr;
  }

  .sem-tech-ribbon {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sem-form-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .sem-capability-board,
  .sem-proof-board,
  .sem-process-board,
  .sem-offer-board,
  .sem-rich-board {
    width: calc(100% - 28px);
    padding: 22px;
  }

  .sem-rich-copy h2 {
    font-size: clamp(32px, 10vw, 46px);
  }
}

/* Final services CTA polish: keep the card padded and composed on every viewport. */
.services-lab-page .services-final-cta {
  box-sizing: border-box !important;
  width: min(calc(100% - 48px), 1280px) !important;
  max-width: 1280px !important;
  margin: clamp(84px, 8vw, 122px) auto 0 !important;
  padding: clamp(42px, 5.4vw, 74px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
}

.services-lab-page .services-final-cta > div:first-child {
  min-width: 0;
  padding-right: clamp(8px, 2vw, 24px);
}

.services-lab-page .services-final-cta .badge {
  margin-bottom: clamp(22px, 2.4vw, 32px);
}

.services-lab-page .services-final-cta h2 {
  max-width: 820px !important;
  margin: 0 0 clamp(18px, 2vw, 26px) !important;
  font-size: clamp(38px, 4.4vw, 66px) !important;
  line-height: 1.02 !important;
}

.services-lab-page .services-final-cta p {
  max-width: 760px !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.72 !important;
}

.services-lab-page .services-final-points {
  margin-top: clamp(24px, 2.6vw, 34px) !important;
}

.services-lab-page .services-final-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.services-lab-page .services-final-action {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px) !important;
}

@media (max-width: 860px) {
  .services-lab-page .services-final-cta {
    width: min(calc(100% - 28px), 1280px) !important;
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
    gap: 24px !important;
  }

  .services-lab-page .services-final-cta > div:first-child {
    padding-right: 0;
  }

  .services-lab-page .services-final-cta h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .services-lab-page .services-final-action {
    min-height: 0;
  }
}

/* Services process polish: prevent the headline from sliding under the step cards. */
.services-lab-page .services-process {
  box-sizing: border-box !important;
  width: min(calc(100% - 48px), 1280px) !important;
  max-width: 1280px !important;
  margin: clamp(92px, 8vw, 132px) auto 0 !important;
  padding: clamp(34px, 4vw, 58px) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.55fr) !important;
  gap: clamp(64px, 7vw, 112px) !important;
  align-items: start !important;
  border: 1px solid rgba(128, 165, 216, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(52, 211, 153, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 247, 255, 0.6));
  box-shadow: 0 24px 60px rgba(36, 88, 163, 0.1);
}

.services-lab-page .services-process > div:first-child {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.services-lab-page .services-process .section-title {
  max-width: 460px;
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}

.services-lab-page .services-process-rail {
  position: relative;
  z-index: 3;
  min-width: 0;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.4vw, 20px) !important;
}

.services-lab-page .services-process-rail article {
  min-width: 0;
  min-height: 250px;
  padding: clamp(22px, 2.1vw, 30px) !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(56, 189, 248, 0.09), transparent 28%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(36, 88, 163, 0.08);
}

.services-lab-page .services-process-rail h3 {
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 1.1;
}

.services-lab-page .services-process-rail p {
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 1180px) {
  .services-lab-page .services-process {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .services-lab-page .services-process .section-title {
    max-width: 860px;
  }

  .services-lab-page .services-process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .services-lab-page .services-process {
    width: min(calc(100% - 28px), 1280px) !important;
    padding: 24px 18px !important;
    margin-top: 62px !important;
  }

  .services-lab-page .services-process .section-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .services-lab-page .services-process-rail {
    grid-template-columns: 1fr !important;
  }

  .services-lab-page .services-process-rail article {
    min-height: 0;
  }
}

/* Business-impact case study layer */
.case-metric-board {
  width: min(1160px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(128, 165, 216, .42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 211, 153, .16), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,248,255,.84));
  box-shadow: 0 24px 64px rgba(36, 88, 163, .1);
}

.case-metric-board h2 {
  max-width: 560px;
  margin: 16px 0 14px;
  color: #132f51;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.case-metric-board p {
  max-width: 620px;
  margin: 0;
  color: #55789f;
  font-size: 16px;
  line-height: 1.68;
}

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

.case-metric-grid article {
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(128, 165, 216, .42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 10%, rgba(56, 189, 248, .11), transparent 32%),
    rgba(255,255,255,.88);
  box-shadow: 0 16px 38px rgba(36, 88, 163, .08);
}

.case-metric-grid strong {
  color: #0b6fa4;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
}

.case-metric-grid span {
  color: #17365b;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.case-metric-grid p {
  color: #55789f;
  font-size: 13px;
  line-height: 1.55;
}

.case-delivery-notes {
  width: min(1160px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.45fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(128, 165, 216, .42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(19, 47, 81, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(19, 47, 81, .04) 1px, transparent 1px),
    radial-gradient(circle at 92% 6%, rgba(52, 211, 153, .15), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,248,255,.86));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 26px 70px rgba(36, 88, 163, .1);
}

.case-delivery-copy h2 {
  max-width: 520px;
  margin: 16px 0 14px;
  color: #132f51;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.02;
}

.case-delivery-copy p {
  max-width: 580px;
  margin: 0;
  color: #55789f;
  font-size: 16px;
  line-height: 1.68;
}

.case-note-grid,
.landing-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-note-grid article,
.landing-note-grid article {
  min-width: 0;
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(128, 165, 216, .42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(56, 189, 248, .12), transparent 34%),
    rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(36, 88, 163, .08);
}

.case-note-grid span,
.landing-note-grid span {
  color: #0b6fa4;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-note-grid p,
.landing-note-grid p {
  margin: 22px 0 0;
  color: #17365b;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.52;
}

/* Landing intent blocks: less generic, more buyer-specific. */
.landing-buyer-intent {
  width: min(1160px, 100%);
  margin: 24px auto 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(128, 165, 216, .38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, .14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,249,255,.8));
}

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

.landing-buyer-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(128, 165, 216, .42);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(36, 88, 163, .08);
}

.landing-buyer-grid h3 {
  margin: 0 0 12px;
  color: #17365b;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.landing-buyer-grid p {
  margin: 0;
  color: #55789f;
  font-size: 15px;
  line-height: 1.66;
}

.landing-delivery-notes {
  width: min(1160px, 100%);
  margin: 24px auto 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(128, 165, 216, .38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 2%, rgba(14, 165, 233, .13), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(52, 211, 153, .14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(240,249,255,.84));
  box-shadow: 0 22px 60px rgba(36, 88, 163, .08);
}

@media (max-width: 980px) {
  .case-metric-board,
  .case-delivery-notes {
    grid-template-columns: 1fr;
  }

  .case-metric-grid,
  .case-note-grid,
  .landing-buyer-grid,
  .landing-note-grid {
    grid-template-columns: 1fr;
  }

  .case-metric-grid article,
  .case-note-grid article,
  .landing-buyer-grid article,
  .landing-note-grid article {
    min-height: 0;
  }
}

/* iPhone/mobile tightening for large premium headings and dense cards. */
@media (max-width: 430px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero h1,
  .hero-title,
  .section-title,
  .subpage-title,
  .case-hero h1,
  .landing-hero h1,
  .sem-hero-copy h1,
  .services-lab-copy h1,
  .portfolio-page h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    line-height: 1.06 !important;
  }

  .case-page,
  .landing-page {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .case-hero,
  .landing-hero,
  .case-metric-board,
  .case-delivery-notes,
  .case-outcome-board,
  .landing-buyer-intent,
  .landing-delivery-notes,
  .landing-deep-section,
  .landing-process-section,
  .landing-intent-section,
  .landing-sales-block,
  .landing-faq,
  .landing-bottom-cta,
  .sem-hero-pro,
  .sem-capability-board,
  .sem-proof-board,
  .sem-process-board,
  .sem-offer-board,
  .sem-rich-board,
  .services-lab-page .services-process,
  .services-lab-page .services-final-cta {
    width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .case-actions,
  .landing-actions,
  .sem-hero-actions,
  .services-lab-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-actions a,
  .landing-actions a,
  .sem-hero-actions a,
  .services-lab-actions a,
  .case-bottom-cta a,
  .landing-bottom-cta a {
    width: 100%;
    justify-content: center;
  }

  .case-metric-grid strong {
    font-size: 42px;
  }

  .landing-section-heading h2,
  .landing-intent-main h2,
  .case-metric-board h2,
  .case-outcome-copy h2 {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.06 !important;
  }

  .sem-tech-ribbon span,
  .landing-chip-cloud span,
  .case-terminal-stack span,
  .case-module-strip span {
    white-space: normal;
  }
}

/* Unified homepage section links: products and articles use one visual language. */
.home-section-link.product-showcase-cta,
.home-section-link.journal-all-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .26) !important;
  border-radius: 8px;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(7, 44, 118, .24);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.home-section-link.product-showcase-cta:hover,
.home-section-link.journal-all-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 44, 118, .34);
  filter: brightness(1.05);
}

@media (max-width: 760px) {
  .home-section-link.product-showcase-cta,
  .home-section-link.journal-all-link {
    width: 100% !important;
    white-space: normal;
    text-align: center;
  }
}

/* About page: premium engineering art direction */
.about-premium-page {
  width: min(1440px, calc(100% - 40px)) !important;
  padding-top: clamp(28px, 5vw, 70px) !important;
  color: #112d4f;
}

.about-premium-page :where(h1, h2, h3) {
  letter-spacing: 0;
  text-wrap: balance;
}

.about-premium-page :where(p, span, li) {
  text-wrap: pretty;
}

.about-premium-hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
  align-items: center !important;
  min-height: min(780px, calc(100svh - 108px)) !important;
  padding: clamp(28px, 5.4vw, 76px) !important;
  border: 1px solid rgba(86, 185, 236, .28) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(90deg, rgba(2, 10, 24, .92) 0%, rgba(4, 22, 44, .86) 52%, rgba(8, 39, 58, .82) 100%),
    url("/assets/about/about-binary-blue.jpg") center / cover no-repeat !important;
  box-shadow:
    0 38px 100px rgba(6, 37, 78, .26),
    inset 0 1px 0 rgba(255, 255, 255, .11) !important;
}

.about-premium-hero::before {
  inset: 0 !important;
  opacity: .72;
  background:
    linear-gradient(rgba(106, 210, 255, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 210, 255, .075) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(30, 198, 255, .24), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(71, 255, 186, .16), transparent 30%) !important;
  background-size: 38px 38px, 38px 38px, auto, auto !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.about-premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .09), transparent 24%, transparent 70%, rgba(125, 211, 252, .12)),
    radial-gradient(circle at 62% 50%, rgba(14, 165, 233, .16), transparent 28%);
  mix-blend-mode: screen;
}

.about-motion-field span {
  border-color: rgba(125, 211, 252, .2) !important;
  background: radial-gradient(circle, rgba(23, 178, 255, .13), transparent 64%) !important;
}

.about-motion-field i {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .82), rgba(52, 211, 153, .64), transparent) !important;
}

.about-premium-copy {
  position: relative;
  z-index: 2;
  max-width: 890px !important;
}

.about-premium-copy .badge,
.about-signature-panel > p,
.about-value-copy .badge,
.about-section-head .badge,
.about-workflow .badge {
  border-color: rgba(133, 217, 255, .34) !important;
  background: rgba(9, 34, 58, .62) !important;
  color: #b9f0ff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.about-premium-copy h1 {
  max-width: 980px !important;
  margin-top: clamp(22px, 3vw, 34px) !important;
  color: #fbfdff !important;
  font-size: clamp(48px, 7.4vw, 100px) !important;
  font-weight: 900 !important;
  line-height: .91 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 26px 90px rgba(48, 190, 255, .2) !important;
}

.about-premium-copy p {
  max-width: 760px !important;
  margin-top: clamp(22px, 3vw, 34px) !important;
  color: #d3e9f8 !important;
  font-size: clamp(18px, 1.55vw, 23px) !important;
  line-height: 1.72 !important;
}

.about-premium-actions {
  margin-top: clamp(26px, 3.6vw, 42px) !important;
}

.about-premium-actions .btn-primary,
.about-premium-actions .btn-secondary {
  min-height: 48px;
  border-radius: 10px !important;
}

.about-premium-actions .btn-secondary {
  color: #f2fbff !important;
  border-color: rgba(164, 226, 255, .3) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.about-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 54px);
  max-width: 780px;
}

.about-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(125, 211, 252, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  color: #dff7ff;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
}

.about-signature-panel {
  position: relative !important;
  z-index: 2 !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  padding: clamp(18px, 2.6vw, 30px) !important;
  border: 1px solid rgba(145, 219, 255, .28) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055)),
    rgba(5, 22, 39, .72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 32px 86px rgba(0, 0, 0, .23) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-signature-panel::before {
  background:
    linear-gradient(rgba(125, 211, 252, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .08) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  opacity: .6;
}

.about-signature-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 25vw, 330px);
  margin: 0 0 clamp(22px, 3vw, 32px);
  border: 1px solid rgba(133, 217, 255, .24);
  border-radius: 10px;
  background: #051529;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.about-signature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 13, 27, .2) 54%, rgba(2, 13, 27, .72) 100%),
    radial-gradient(circle at 64% 30%, rgba(80, 220, 255, .2), transparent 34%);
}

.about-signature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.04);
}

.about-code-instrument {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(48px, 6vw, 72px);
  z-index: 2;
  width: min(74%, 430px);
  min-height: 188px;
  padding: 44px 22px 22px;
  border: 1px solid rgba(143, 224, 255, .3);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 28, 49, .94), rgba(4, 17, 31, .9)),
    linear-gradient(rgba(125, 211, 252, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .08) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  box-shadow:
    0 30px 54px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: rotate(-3deg);
}

.about-code-instrument span {
  position: absolute;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #35d3a7;
  box-shadow: 0 0 18px rgba(53, 211, 167, .5);
}

.about-code-instrument span:nth-child(1) {
  left: 18px;
}

.about-code-instrument span:nth-child(2) {
  left: 34px;
  background: #32b7ff;
}

.about-code-instrument span:nth-child(3) {
  left: 50px;
  background: #eef6ff;
}

.about-code-instrument code {
  display: block;
  overflow: hidden;
  margin-top: 12px;
  color: #dff7ff;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 750;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-code-instrument code:nth-of-type(2) {
  color: #80e7c7;
}

.about-code-instrument code:nth-of-type(3) {
  color: #8edaff;
}

.about-signature-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  border: 1px solid rgba(125, 211, 252, .24);
  border-radius: 999px;
  background: rgba(3, 17, 32, .72);
  color: #dff7ff;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
}

.about-signature-panel h2 {
  max-width: 560px !important;
  color: #f6fbff !important;
  font-size: clamp(28px, 2.9vw, 42px) !important;
  line-height: 1.04 !important;
}

.about-signature-steps {
  margin-top: auto;
  border-top-color: rgba(125, 211, 252, .2) !important;
}

.about-signature-steps article {
  grid-template-columns: 52px minmax(0, 1fr) !important;
  border-bottom-color: rgba(125, 211, 252, .18) !important;
}

.about-signature-steps h3 {
  color: #ffffff !important;
}

.about-signature-steps span {
  color: #c9e2f3 !important;
}

.about-metrics-premium {
  margin-top: -28px !important;
  border-radius: 12px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(238, 249, 255, .9)) !important;
  box-shadow: 0 26px 70px rgba(27, 76, 139, .16) !important;
}

.about-value-showcase,
.about-principles,
.about-workflow,
.about-content-grid {
  border-radius: 12px !important;
}

.about-value-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, .42);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .94), rgba(236, 248, 255, .82)),
    url("/assets/about/about-binary-white.jpg") center / cover no-repeat !important;
  box-shadow: 0 24px 70px rgba(36, 88, 163, .1);
}

.about-value-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 86% 10%, rgba(14, 165, 233, .14), transparent 32%);
}

.about-value-showcase > * {
  position: relative;
  z-index: 1;
}

.about-principles {
  background:
    radial-gradient(circle at 18% 12%, rgba(14, 165, 233, .14), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(52, 211, 153, .12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 248, 255, .88)) !important;
}

.about-principles-grid article,
.about-workflow-steps article,
.about-fit-card {
  border-radius: 10px !important;
}

@media (hover: hover) {
  .about-code-instrument {
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .6s cubic-bezier(.16, 1, .3, 1);
  }

  .about-signature-panel:hover .about-code-instrument {
    transform: translate3d(-10px, -8px, 0) rotate(-1.5deg);
  }
}

@media (max-width: 1080px) {
  .about-premium-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .about-signature-panel {
    max-width: none;
  }

  .about-signature-media {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .about-premium-page {
    width: min(100% - 28px, 1440px) !important;
    padding-top: 18px !important;
  }

  .about-premium-hero {
    padding: 22px !important;
    border-radius: 10px !important;
  }

  .about-premium-copy h1 {
    font-size: clamp(40px, 13.5vw, 62px) !important;
    line-height: .98 !important;
    letter-spacing: -.025em !important;
  }

  .about-premium-copy p {
    font-size: 17px !important;
    line-height: 1.62 !important;
  }

  .about-hero-proof {
    gap: 8px;
  }

  .about-hero-proof span {
    max-width: 100%;
    white-space: normal;
  }

  .about-signature-media {
    min-height: 230px;
  }

  .about-code-instrument {
    right: 14px;
    bottom: 48px;
    width: min(86%, 330px);
    min-height: 164px;
  }

  .about-signature-panel {
    padding: 18px !important;
  }

  .about-signature-steps article {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 17px 0 !important;
  }

  .about-value-showcase,
  .about-principles,
  .about-workflow,
  .about-content-grid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .about-premium-hero::before {
    animation: aboutGridDrift 24s linear infinite !important;
  }

  .about-signature-bg {
    animation: aboutImageDrift 16s ease-in-out infinite;
  }

  .about-code-instrument {
    animation: aboutDeviceFloat 8s ease-in-out infinite;
  }
}

@keyframes aboutImageDrift {
  0%, 100% { transform: scale(1.04) translate3d(0, 0, 0); }
  50% { transform: scale(1.09) translate3d(-1.5%, 1%, 0); }
}

@keyframes aboutDeviceFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px -10px; }
}

/* About page: full-width phenomenon hero */
.about-premium-page {
  width: 100% !important;
  max-width: none !important;
  padding-top: 0 !important;
}

.about-premium-page > section:not(.about-premium-hero) {
  width: min(1280px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.about-premium-hero {
  width: 100% !important;
  max-width: none !important;
  min-height: min(920px, calc(100svh - 72px)) !important;
  margin: 0 !important;
  padding:
    clamp(54px, 8vw, 118px)
    max(24px, calc((100vw - 1440px) / 2 + 44px))
    clamp(46px, 7vw, 96px) !important;
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr) !important;
  background:
    linear-gradient(90deg, rgba(1, 8, 20, .98) 0%, rgba(3, 20, 41, .94) 42%, rgba(0, 43, 61, .88) 100%),
    url("/assets/about/about-binary-blue.jpg") center / cover no-repeat !important;
  box-shadow: inset 0 -1px 0 rgba(125, 211, 252, .16) !important;
}

.about-premium-hero::before {
  opacity: 1;
  background:
    radial-gradient(circle at 16% 25%, rgba(0, 194, 255, .26), transparent 30%),
    radial-gradient(circle at 75% 18%, rgba(37, 99, 235, .24), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(52, 211, 153, .2), transparent 28%),
    linear-gradient(rgba(113, 213, 255, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 213, 255, .075) 1px, transparent 1px) !important;
  background-size: auto, auto, auto, 44px 44px, 44px 44px !important;
}

.about-premium-hero::after {
  z-index: 0;
  background:
    conic-gradient(from 130deg at 78% 44%, transparent 0 18%, rgba(86, 211, 255, .22) 20%, transparent 23% 55%, rgba(52, 211, 153, .14) 57%, transparent 60%),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, .08) 35%, transparent 48%),
    radial-gradient(circle at 50% 105%, rgba(14, 165, 233, .22), transparent 34%);
  mix-blend-mode: screen;
}

.about-motion-field {
  z-index: 1;
}

.about-motion-field::before,
.about-motion-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 999px;
}

.about-motion-field::before {
  width: clamp(420px, 42vw, 720px);
  aspect-ratio: 1;
  right: max(-180px, calc((100vw - 1440px) / 2 - 120px));
  top: 8%;
  box-shadow:
    inset 0 0 80px rgba(14, 165, 233, .08),
    0 0 120px rgba(14, 165, 233, .08);
  animation: aboutOrbitSweep 18s linear infinite;
}

.about-motion-field::after {
  width: clamp(280px, 32vw, 540px);
  aspect-ratio: 1;
  left: max(-160px, calc((100vw - 1440px) / 2 - 110px));
  bottom: -18%;
  border-color: rgba(52, 211, 153, .16);
  box-shadow: inset 0 0 70px rgba(52, 211, 153, .07);
  animation: aboutOrbitSweep 24s linear reverse infinite;
}

.about-motion-field i {
  opacity: .95 !important;
}

.about-motion-field i:nth-of-type(1) {
  left: 7%;
  top: 22%;
  width: 34vw;
  transform: rotate(-8deg);
}

.about-motion-field i:nth-of-type(2) {
  right: 3%;
  top: 58%;
  width: 42vw;
  transform: rotate(12deg);
}

.about-motion-field i:nth-of-type(3) {
  left: 31%;
  bottom: 12%;
  width: 28vw;
  transform: rotate(-18deg);
}

.about-premium-copy {
  align-self: center;
}

.about-premium-copy h1 {
  max-width: 1040px !important;
  font-size: clamp(54px, 7.8vw, 116px) !important;
  line-height: .89 !important;
}

.about-premium-copy p {
  max-width: 790px !important;
}

.about-signature-panel {
  align-self: center !important;
  max-width: 560px;
  min-height: 640px !important;
  transform: translateY(18px);
}

.about-signature-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(125, 211, 252, .12);
  border-radius: 10px;
}

.about-code-instrument {
  width: min(78%, 460px);
  min-height: 210px;
}

.about-metrics-premium {
  margin-top: -34px !important;
}

@keyframes aboutOrbitSweep {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .about-premium-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .about-signature-panel {
    max-width: none;
    min-height: 0 !important;
    transform: none;
  }
}

@media (max-width: 720px) {
  .about-premium-page > section:not(.about-premium-hero) {
    width: min(100% - 28px, 1280px);
  }

  .about-premium-hero {
    padding: 36px 14px 38px !important;
  }

  .about-premium-copy,
  .about-signature-panel {
    width: min(100%, 620px);
    margin-left: auto;
    margin-right: auto;
  }

  .about-premium-copy h1 {
    font-size: clamp(43px, 14vw, 64px) !important;
    line-height: .96 !important;
  }

  .about-motion-field::before {
    right: -230px;
    top: 1%;
  }

  .about-motion-field::after {
    left: -220px;
    bottom: 12%;
  }
}

/* About hero: keep it wide, but make the composition usable */
.about-premium-hero {
  min-height: min(680px, calc(100svh - 72px)) !important;
  padding:
    clamp(42px, 5vw, 72px)
    max(24px, calc((100vw - 1440px) / 2 + 44px))
    clamp(42px, 5vw, 72px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
  gap: clamp(28px, 4vw, 58px) !important;
}

.about-premium-copy {
  width: 100% !important;
  max-width: 700px !important;
}

.about-premium-copy h1 {
  max-width: 700px !important;
  font-size: clamp(42px, 4.8vw, 68px) !important;
  line-height: 1 !important;
}

.about-premium-copy p {
  max-width: 650px !important;
  font-size: clamp(16px, 1.15vw, 18px) !important;
  line-height: 1.6 !important;
}

.about-signature-panel {
  align-self: center !important;
  max-width: 420px !important;
  min-height: 0 !important;
  padding: clamp(18px, 2vw, 24px) !important;
  transform: none !important;
}

.about-signature-media {
  display: none !important;
}

.about-code-instrument {
  width: min(76%, 330px) !important;
  min-height: 120px !important;
  padding: 34px 16px 16px !important;
}

.about-code-instrument code {
  margin-top: 7px !important;
  font-size: 10px !important;
}

.about-signature-panel h2 {
  max-width: 390px !important;
  font-size: clamp(22px, 1.8vw, 28px) !important;
  line-height: 1.12 !important;
}

.about-signature-steps article {
  grid-template-columns: 36px minmax(0, 1fr) !important;
  gap: 12px !important;
  padding: 11px 0 !important;
}

.about-signature-steps h3 {
  font-size: 14px !important;
}

.about-signature-steps span {
  font-size: 12px !important;
  line-height: 1.4 !important;
}

@media (max-width: 1080px) {
  .about-premium-hero {
    min-height: 0 !important;
  }
}

@media (max-width: 720px) {
  .about-premium-hero {
    min-height: 0 !important;
    display: block !important;
    padding: 36px 18px 42px !important;
  }

  .about-premium-copy {
    width: min(100%, 620px) !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .about-premium-copy h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(34px, 10.5vw, 48px) !important;
    line-height: 1.02 !important;
  }

  .about-premium-copy p {
    font-size: 16px !important;
  }

  .about-signature-panel {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-motion-field::before,
  .about-motion-field::after {
    animation: none !important;
  }
}

/* Portfolio: cinematic proof wall */
.portfolio-page {
  width: 100% !important;
  max-width: none !important;
  padding: 0 0 clamp(84px, 9vw, 128px) !important;
  overflow-x: clip;
}

.portfolio-page > section:not(.portfolio-hero) {
  width: min(1320px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.portfolio-hero {
  position: relative;
  isolation: isolate;
  width: 100% !important;
  min-height: min(900px, calc(100svh - 72px));
  margin: 0 0 clamp(36px, 5vw, 72px) !important;
  padding:
    clamp(58px, 8vw, 126px)
    max(24px, calc((100vw - 1440px) / 2 + 44px))
    clamp(52px, 7vw, 104px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr) !important;
  gap: clamp(32px, 5vw, 76px) !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(125, 211, 252, .18);
  background:
    linear-gradient(95deg, rgba(1, 8, 20, .98) 0%, rgba(4, 20, 41, .94) 46%, rgba(0, 47, 66, .86) 100%),
    url("/assets/about/about-binary-blue.jpg") center / cover no-repeat;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .06);
}

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

.portfolio-hero::before {
  background:
    radial-gradient(circle at 16% 26%, rgba(0, 194, 255, .26), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(52, 211, 153, .19), transparent 28%),
    linear-gradient(rgba(113, 213, 255, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 213, 255, .075) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  animation: aboutGridDrift 28s linear infinite;
}

.portfolio-hero::after {
  background:
    conic-gradient(from 150deg at 76% 44%, transparent 0 18%, rgba(86, 211, 255, .24) 20%, transparent 23% 58%, rgba(52, 211, 153, .16) 60%, transparent 63%),
    linear-gradient(112deg, transparent 0 32%, rgba(255, 255, 255, .08) 34%, transparent 50%);
  mix-blend-mode: screen;
}

.portfolio-hero > div,
.portfolio-console {
  position: relative;
  z-index: 1;
}

.portfolio-hero .badge {
  border-color: rgba(133, 217, 255, .34) !important;
  background: rgba(9, 34, 58, .62) !important;
  color: #b9f0ff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.portfolio-title {
  max-width: 820px !important;
  color: #fbfdff !important;
  font-size: clamp(52px, 6.25vw, 92px) !important;
  line-height: .94 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 28px 90px rgba(48, 190, 255, .18);
  text-wrap: balance;
}

.portfolio-lead {
  max-width: 760px !important;
  color: #d3e9f8 !important;
  font-size: clamp(18px, 1.55vw, 23px) !important;
  line-height: 1.72 !important;
}

.portfolio-actions .btn-primary,
.portfolio-actions .btn-secondary {
  min-height: 48px;
  border-radius: 10px !important;
}

.portfolio-actions .btn-secondary {
  color: #f2fbff !important;
  border-color: rgba(164, 226, 255, .3) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.portfolio-console {
  overflow: hidden;
  align-self: center;
  justify-self: end;
  width: min(100%, 560px);
  padding: clamp(20px, 2.4vw, 32px) !important;
  border: 1px solid rgba(145, 219, 255, .28) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)),
    rgba(5, 22, 39, .74) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 34px 90px rgba(0, 0, 0, .26) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.portfolio-console::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(125, 211, 252, .13);
  border-radius: 10px;
}

.portfolio-console::after {
  content: "";
  position: absolute;
  right: -26%;
  top: -18%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 999px;
  box-shadow: inset 0 0 72px rgba(14, 165, 233, .08);
  animation: aboutOrbitSweep 22s linear infinite;
}

.portfolio-console-top {
  color: #b9f0ff !important;
}

.portfolio-signal {
  position: relative;
  overflow: hidden;
  border-color: rgba(125, 211, 252, .22) !important;
  background:
    linear-gradient(90deg, rgba(4, 20, 39, .84), rgba(7, 45, 61, .56)) !important;
}

.portfolio-signal::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .8), rgba(52, 211, 153, .65), transparent);
}

.portfolio-signal b {
  color: #ffffff !important;
}

.portfolio-signal em {
  color: #b8dff2 !important;
}

.portfolio-metrics {
  position: relative;
  z-index: 2;
  margin-top: calc(clamp(36px, 5vw, 72px) * -1) !important;
  margin-bottom: clamp(54px, 7vw, 90px) !important;
  padding: 12px;
  border: 1px solid rgba(128, 165, 216, .44);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 26px 72px rgba(27, 76, 139, .16);
}

.portfolio-metrics div {
  border: 0 !important;
  border-right: 1px solid rgba(128, 165, 216, .28) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-metrics div:last-child {
  border-right: 0 !important;
}

.portfolio-sales-outcomes,
.portfolio-proof-showcase,
.portfolio-dppc-focus,
.portfolio-lab,
.portfolio-case-studies,
.portfolio-competence,
.portfolio-process {
  border-radius: 14px !important;
}

.portfolio-sales-outcomes {
  margin-top: 0 !important;
  border-color: rgba(128, 165, 216, .42) !important;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .94), rgba(236, 248, 255, .82)),
    url("/assets/about/about-binary-white.jpg") center / cover no-repeat !important;
}

.portfolio-sales-grid article {
  border-radius: 12px !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.portfolio-sales-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, .62);
  box-shadow: 0 24px 58px rgba(36, 88, 163, .14);
}

.portfolio-proof-showcase {
  width: min(1420px, calc(100% - 40px)) !important;
  padding: clamp(34px, 4.8vw, 68px) !important;
  border-color: rgba(128, 165, 216, .42) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(14, 165, 233, .18), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(52, 211, 153, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(235, 248, 255, .86)) !important;
}

.portfolio-solution-grid {
  grid-template-columns: 1.15fr .95fr .95fr !important;
  align-items: stretch;
}

.portfolio-solution-card {
  grid-template-rows: minmax(260px, auto) 1fr !important;
  border-radius: 12px !important;
  box-shadow: 0 22px 60px rgba(36, 88, 163, .12) !important;
}

.portfolio-solution-card:first-child {
  grid-row: span 2;
}

.portfolio-solution-card:first-child .portfolio-solution-media {
  min-height: 420px !important;
}

.portfolio-solution-media {
  min-height: 280px !important;
  border-radius: 0;
}

.portfolio-solution-media img {
  min-height: 280px !important;
  object-position: top center;
}

.portfolio-solution-card:first-child .portfolio-solution-copy h3 {
  font-size: clamp(32px, 3.4vw, 52px);
}

.portfolio-solution-copy {
  padding: clamp(22px, 2.8vw, 34px) !important;
}

.portfolio-card-head {
  align-items: flex-start !important;
  flex-wrap: wrap;
}

.portfolio-dppc-focus {
  overflow: hidden;
  position: relative;
  width: min(1320px, calc(100% - 40px)) !important;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr) !important;
  padding: clamp(36px, 5vw, 68px) !important;
  background:
    linear-gradient(95deg, rgba(4, 20, 39, .96), rgba(5, 42, 58, .88)),
    url("/assets/portfolio/screenshots/dppc.webp") right center / auto 100% no-repeat !important;
  border-color: rgba(125, 211, 252, .22) !important;
  box-shadow: 0 34px 90px rgba(6, 37, 78, .24) !important;
}

.portfolio-dppc-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(113, 213, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 213, 255, .06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.portfolio-dppc-focus > * {
  position: relative;
  z-index: 1;
}

.portfolio-dppc-focus .section-title {
  color: #fbfdff !important;
}

.portfolio-dppc-focus .section-sub {
  color: #d3e9f8 !important;
}

.portfolio-dppc-modules span {
  border-color: rgba(125, 211, 252, .24) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #effaff !important;
  border-radius: 10px !important;
  backdrop-filter: blur(12px);
}

.portfolio-page .portfolio-lab {
  width: min(1420px, calc(100% - 40px)) !important;
  border-radius: 14px !important;
  border-color: rgba(128, 165, 216, .42) !important;
  background:
    radial-gradient(circle at 9% 2%, rgba(14, 165, 233, .16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(236, 248, 255, .86)) !important;
}

.portfolio-page .portfolio-lab .portfolio-slide {
  border-radius: 12px !important;
  overflow: hidden;
}

.portfolio-page .portfolio-lab .portfolio-slide-screenshot {
  aspect-ratio: 1.46 !important;
}

.portfolio-page .portfolio-lab .portfolio-slide-copy {
  padding: clamp(22px, 2.6vw, 34px) !important;
}

.portfolio-study-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.portfolio-study-card {
  border-radius: 12px !important;
  min-height: 100%;
}

@media (max-width: 1180px) {
  .portfolio-hero {
    grid-template-columns: 1fr !important;
  }

  .portfolio-console {
    max-width: none;
  }

  .portfolio-solution-grid,
  .portfolio-dppc-focus,
  .portfolio-study-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .portfolio-solution-card:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .portfolio-page > section:not(.portfolio-hero),
  .portfolio-proof-showcase,
  .portfolio-page .portfolio-lab,
  .portfolio-dppc-focus {
    width: min(100% - 28px, 1320px) !important;
  }

  .portfolio-hero {
    min-height: 0;
    padding: 36px 14px 44px !important;
  }

  .portfolio-title {
    font-size: clamp(38px, 11.4vw, 48px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.018em !important;
    hyphens: none !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .portfolio-lead {
    font-size: 17px !important;
    line-height: 1.62 !important;
  }

  .portfolio-actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .portfolio-actions a {
    width: 100%;
    justify-content: center;
  }

  .portfolio-console {
    padding: 18px !important;
  }

  .portfolio-metrics {
    margin-top: 18px !important;
    grid-template-columns: 1fr !important;
  }

  .portfolio-metrics div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(128, 165, 216, .28) !important;
  }

  .portfolio-metrics div:last-child {
    border-bottom: 0 !important;
  }

  .portfolio-sales-outcomes,
  .portfolio-proof-showcase,
  .portfolio-dppc-focus,
  .portfolio-page .portfolio-lab {
    padding: 22px 16px !important;
  }

  .portfolio-sales-grid,
  .portfolio-solution-grid,
  .portfolio-dppc-focus,
  .portfolio-dppc-modules,
  .portfolio-study-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .portfolio-solution-card:first-child .portfolio-solution-media,
  .portfolio-solution-media,
  .portfolio-solution-media img {
    min-height: 220px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-hero::before,
  .portfolio-console::after {
    animation: none !important;
  }
}

/* Portfolio: cleaner section rhythm, fewer large boxes */
.portfolio-page {
  --portfolio-page-width: min(1320px, calc(100% - 48px));
  --portfolio-wide-width: min(1440px, calc(100% - 48px));
  --portfolio-gap-lg: clamp(72px, 8vw, 128px);
  --portfolio-gap-md: clamp(44px, 5.2vw, 82px);
  --portfolio-inner-gap: clamp(24px, 3.6vw, 56px);
}

.portfolio-page > section:not(.portfolio-hero) {
  width: var(--portfolio-page-width) !important;
  margin-top: var(--portfolio-gap-lg) !important;
  margin-bottom: 0 !important;
}

.portfolio-page .section-hdr-row {
  margin-bottom: clamp(24px, 3.2vw, 44px) !important;
}

.portfolio-page .section-title {
  max-width: 1040px;
  text-wrap: balance;
}

.portfolio-page .section-sub,
.portfolio-sales-outcomes p {
  max-width: 780px;
  text-wrap: pretty;
}

.portfolio-sales-outcomes,
.portfolio-proof-showcase,
.portfolio-page .portfolio-lab,
.portfolio-case-studies,
.portfolio-competence,
.portfolio-work,
.portfolio-process {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.portfolio-sales-outcomes {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: var(--portfolio-inner-gap);
  align-items: start;
}

.portfolio-sales-outcomes > div:first-child {
  min-height: 0 !important;
  padding: 0 !important;
  position: sticky;
  top: 110px;
}

.portfolio-sales-outcomes h2 {
  margin: 18px 0 18px;
  max-width: 650px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
}

.portfolio-sales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(128, 165, 216, .36);
}

.portfolio-sales-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px) 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(128, 165, 216, .32) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-sales-grid article::after {
  display: none;
}

.portfolio-sales-grid article:hover {
  transform: none;
  box-shadow: none !important;
}

.portfolio-sales-grid strong {
  color: rgba(7, 117, 181, .34);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
}

.portfolio-sales-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 30px);
}

.portfolio-sales-grid p {
  grid-column: 2;
  margin: 0;
}

.portfolio-proof-showcase {
  width: var(--portfolio-wide-width) !important;
}

.portfolio-solution-grid {
  gap: clamp(20px, 2.6vw, 32px) !important;
}

.portfolio-solution-card {
  overflow: hidden;
  border: 1px solid rgba(128, 165, 216, .34) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .74) !important;
  box-shadow: 0 18px 48px rgba(36, 88, 163, .1) !important;
}

.portfolio-solution-card:first-child {
  grid-row: auto !important;
}

.portfolio-solution-card:first-child .portfolio-solution-media {
  min-height: 320px !important;
}

.portfolio-solution-card:first-child .portfolio-solution-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.portfolio-solution-copy {
  padding: clamp(22px, 2.8vw, 32px) !important;
}

.portfolio-dppc-focus {
  width: 100% !important;
  max-width: none !important;
  margin-top: var(--portfolio-gap-lg) !important;
  padding:
    clamp(54px, 7vw, 92px)
    max(24px, calc((100vw - 1320px) / 2 + 24px)) !important;
  border-width: 1px 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.portfolio-page > .portfolio-dppc-focus {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  grid-template-columns: minmax(500px, 620px) minmax(420px, 560px) !important;
  justify-content: center;
  column-gap: clamp(48px, 7vw, 120px) !important;
}

.portfolio-page > .portfolio-dppc-focus > div:first-child {
  width: 100%;
  max-width: 620px;
}

.portfolio-page > .portfolio-dppc-focus .section-title,
.portfolio-page > .portfolio-dppc-focus .section-sub {
  width: 100%;
  max-width: 620px;
}

.portfolio-dppc-modules {
  align-content: center;
}

.portfolio-dppc-modules span {
  border-radius: 0 !important;
  border-width: 0 0 1px !important;
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-inline: 0 !important;
}

.portfolio-page .portfolio-lab {
  width: var(--portfolio-wide-width) !important;
}

.portfolio-page .portfolio-lab .portfolio-carousel {
  padding: 0 !important;
  gap: clamp(22px, 2.8vw, 34px) !important;
}

.portfolio-page .portfolio-lab .portfolio-slide {
  border-radius: 10px !important;
  box-shadow: 0 18px 48px rgba(36, 88, 163, .1) !important;
}

.portfolio-case-studies {
  width: var(--portfolio-page-width) !important;
}

.portfolio-study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 30px) !important;
}

.portfolio-study-card {
  border-radius: 0 !important;
  border-width: 1px 0 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: clamp(22px, 2.8vw, 34px) 0 0 !important;
}

.portfolio-study-card > div {
  border-radius: 0 !important;
  background: transparent !important;
}

.portfolio-work {
  width: var(--portfolio-page-width) !important;
}

.portfolio-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 36px) !important;
  border-top: 1px solid rgba(128, 165, 216, .32);
}

.portfolio-case-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: clamp(22px, 2.8vw, 34px) 0 0 !important;
}

.portfolio-case-card .portfolio-card-head strong {
  border-radius: 0;
  background: transparent;
  border-width: 0 0 1px;
  padding: 0 0 4px;
}

.portfolio-case-card .portfolio-impact {
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(128, 165, 216, .28);
  border-radius: 0;
  background: transparent;
}

.portfolio-competence {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: var(--portfolio-inner-gap);
  align-items: start;
  border-top: 1px solid rgba(128, 165, 216, .34) !important;
  padding-top: clamp(30px, 4vw, 54px) !important;
}

.portfolio-capability-grid,
.portfolio-tech-strip {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px !important;
}

.portfolio-capability-grid span,
.portfolio-tech-strip span {
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .62) !important;
}

.portfolio-tech-strip {
  grid-column: 1 / -1;
  margin-top: clamp(18px, 2.6vw, 34px);
  padding-top: clamp(18px, 2.6vw, 28px);
  border-top: 1px solid rgba(128, 165, 216, .26) !important;
}

.portfolio-process {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: var(--portfolio-inner-gap);
  align-items: start;
  border-top: 1px solid rgba(128, 165, 216, .34) !important;
  padding-top: clamp(30px, 4vw, 54px) !important;
}

.portfolio-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 !important;
  border-top: 1px solid rgba(128, 165, 216, .32);
}

.portfolio-process-steps div {
  min-height: 0 !important;
  padding: clamp(18px, 2.6vw, 30px) clamp(14px, 2vw, 24px) 0 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(128, 165, 216, .26) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-process-steps div:last-child {
  border-right: 0 !important;
}

@media (max-width: 1180px) {
  .portfolio-sales-outcomes,
  .portfolio-competence,
  .portfolio-process {
    grid-template-columns: 1fr;
  }

  .portfolio-sales-outcomes > div:first-child {
    position: static;
  }

  .portfolio-solution-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .portfolio-case-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .portfolio-study-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .portfolio-page {
    --portfolio-page-width: min(100% - 28px, 1320px);
    --portfolio-wide-width: min(100% - 28px, 1440px);
    --portfolio-gap-lg: 56px;
    --portfolio-inner-gap: 24px;
  }

  .portfolio-page > section:not(.portfolio-hero) {
    margin-top: var(--portfolio-gap-lg) !important;
  }

  .portfolio-sales-grid article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
  }

  .portfolio-sales-grid p {
    grid-column: 1 / -1;
  }

  .portfolio-solution-grid,
  .portfolio-case-grid,
  .portfolio-study-grid,
  .portfolio-process-steps {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .portfolio-dppc-focus {
    width: 100vw !important;
    padding: 42px 18px !important;
  }

  .portfolio-page > .portfolio-dppc-focus {
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 28px !important;
  }

  .portfolio-page > .portfolio-dppc-focus > div:first-child,
  .portfolio-page > .portfolio-dppc-focus .section-title,
  .portfolio-page > .portfolio-dppc-focus .section-sub {
    max-width: none;
  }

  .portfolio-process-steps div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(128, 165, 216, .26) !important;
    padding-right: 0 !important;
    padding-bottom: 18px !important;
  }

  .portfolio-process-steps div:last-child {
    border-bottom: 0 !important;
  }
}

/* Portfolio process: premium closing section */
.portfolio-page > .portfolio-process {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-top: var(--portfolio-gap-lg) !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding:
    clamp(58px, 7vw, 96px)
    max(24px, calc((100vw - 1320px) / 2 + 24px)) !important;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 6vw, 108px);
  align-items: center;
  overflow: hidden;
  border-width: 1px 0 !important;
  border-style: solid !important;
  border-color: rgba(125, 211, 252, .18) !important;
  background:
    radial-gradient(circle at 12% 22%, rgba(14, 165, 233, .2), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(52, 211, 153, .15), transparent 30%),
    linear-gradient(105deg, rgba(2, 12, 27, .98), rgba(5, 34, 55, .94)) !important;
  box-shadow: none !important;
}

.portfolio-page > section.portfolio-process {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  grid-template-columns: minmax(500px, 540px) minmax(620px, 650px) !important;
  justify-content: center;
}

.portfolio-page > .portfolio-process > div:first-child {
  padding: 0 !important;
  max-width: 540px;
}

.portfolio-page > .portfolio-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(113, 213, 255, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 213, 255, .065) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .76;
}

.portfolio-page > .portfolio-process > * {
  position: relative;
  z-index: 1;
}

.portfolio-page > .portfolio-process .badge {
  border-color: rgba(133, 217, 255, .34) !important;
  background: rgba(9, 34, 58, .62) !important;
  color: #b9f0ff !important;
}

.portfolio-page > .portfolio-process .section-title {
  max-width: 540px;
  color: #fbfdff !important;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: .98;
}

.portfolio-page > .portfolio-process .section-sub {
  max-width: 500px;
  color: #cde5f5 !important;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}

.portfolio-page > .portfolio-process .portfolio-process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px) clamp(34px, 4vw, 58px) !important;
  border: 0 !important;
}

.portfolio-page > .portfolio-process .portfolio-process-steps::before {
  display: none;
}

.portfolio-page > .portfolio-process .portfolio-process-steps div {
  position: relative;
  min-height: 150px !important;
  padding: 50px clamp(18px, 2vw, 28px) 0 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(125, 211, 252, .32) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-page > .portfolio-process .portfolio-process-steps div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #7dd3fc;
  box-shadow: 0 0 0 8px rgba(125, 211, 252, .13), 0 0 28px rgba(45, 212, 191, .38);
}

.portfolio-page > .portfolio-process .portfolio-process-steps strong {
  display: block;
  margin-bottom: 18px;
  color: #5eead4 !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px !important;
  letter-spacing: .1em;
}

.portfolio-page > .portfolio-process .portfolio-process-steps span {
  display: block;
  max-width: 240px;
  color: #f5fbff !important;
  font-size: clamp(20px, 1.55vw, 25px) !important;
  font-weight: 850;
  line-height: 1.12 !important;
}

@media (max-width: 980px) {
  .portfolio-page > .portfolio-process,
  .portfolio-page > section.portfolio-process {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .portfolio-page > .portfolio-process > div:first-child {
    max-width: 680px;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px !important;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps::before {
    display: none;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps div {
    min-height: 0 !important;
    padding-top: 54px !important;
  }
}

@media (max-width: 640px) {
  .portfolio-page > .portfolio-process,
  .portfolio-page > section.portfolio-process {
    padding: 42px 18px !important;
  }

  .portfolio-page > .portfolio-process .section-title {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps div {
    padding: 44px 0 22px !important;
    border-bottom: 1px solid rgba(125, 211, 252, .2) !important;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps div:last-child {
    border-bottom: 0 !important;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps div::before {
    top: 18px;
  }

  .portfolio-page > .portfolio-process .portfolio-process-steps span {
    max-width: none;
  }
}

/* Final width lock: DPPC band must escape the portfolio container. */
body .portfolio-page > section.portfolio-dppc-focus {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

body main.portfolio-page {
  padding-bottom: 0 !important;
}

body .portfolio-page > section.portfolio-process {
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {
  body .portfolio-page > section.portfolio-dppc-focus {
    left: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
}

/* Products page: cleaner product-lab presentation */
body .products-page {
  width: min(1420px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: clamp(34px, 5vw, 72px) 0 clamp(72px, 9vw, 120px) !important;
}

body .products-hero {
  position: relative;
  overflow: hidden;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: end;
  min-height: clamp(420px, 46vw, 620px);
  padding:
    clamp(42px, 7vw, 92px)
    clamp(26px, 6vw, 88px) !important;
  border: 0 !important;
  border-radius: 18px !important;
  color: #f7fbff !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, .24), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(45, 212, 191, .18), transparent 30%),
    linear-gradient(115deg, rgba(3, 16, 34, .98), rgba(7, 49, 73, .95)) !important;
  box-shadow: 0 28px 80px rgba(16, 57, 101, .22) !important;
}

body .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .075) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.45));
}

body .products-hero > * {
  position: relative;
  z-index: 1;
}

body .products-hero .badge {
  border-color: rgba(125, 211, 252, .36) !important;
  background: rgba(7, 28, 48, .72) !important;
  color: #b8efff !important;
}

body .products-hero h1 {
  max-width: 900px;
  margin: 18px 0 18px !important;
  color: #fff !important;
  font-size: clamp(52px, 7.4vw, 108px) !important;
  line-height: .9 !important;
  letter-spacing: -.04em;
  text-wrap: balance;
}

body .products-hero p {
  max-width: 760px;
  color: #cfe5f4 !important;
  font-size: clamp(17px, 1.55vw, 22px) !important;
  line-height: 1.72 !important;
}

body .products-hero-actions {
  margin-top: clamp(24px, 3.2vw, 40px);
}

body .products-hero-panel {
  display: grid;
  gap: 0 !important;
  align-self: stretch;
  align-content: end;
  border-top: 1px solid rgba(125, 211, 252, .26);
}

body .products-hero-panel div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: baseline;
  gap: 18px;
  padding: 22px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(125, 211, 252, .22) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body .products-hero-panel div:last-child {
  border-bottom: 0 !important;
}

body .products-hero-panel strong {
  color: #7dd3fc !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: .9;
}

body .products-hero-panel span {
  color: #d7eefb !important;
  font-weight: 750;
}

body .products-layout {
  margin-top: clamp(38px, 5vw, 72px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(22px, 3vw, 34px) !important;
}

body .products-featured-card,
body .products-side-card,
body .products-mini-card {
  border: 1px solid rgba(128, 165, 216, .38) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .72) !important;
  box-shadow: 0 18px 60px rgba(36, 88, 163, .10) !important;
}

body .products-featured-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr) !important;
  min-height: clamp(520px, 44vw, 680px) !important;
  background: rgba(255, 255, 255, .82) !important;
}

body .products-featured-media,
body .products-mini-media,
body .products-side-mark {
  display: grid !important;
  place-items: center;
  overflow: hidden;
  border: 0 !important;
  background:
    radial-gradient(circle at 72% 18%, rgba(56, 189, 248, .22), transparent 34%),
    linear-gradient(rgba(125, 211, 252, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .09) 1px, transparent 1px),
    #061727 !important;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

body .products-featured-media img,
body .products-side-mark img,
body .products-mini-media img {
  width: calc(100% - 44px) !important;
  height: calc(100% - 44px) !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 12px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .32));
}

body .products-featured-copy {
  justify-content: center !important;
  padding: clamp(30px, 4.5vw, 58px) !important;
}

body .products-card-label {
  align-items: center;
  margin-bottom: 22px !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
}

body .products-card-label strong {
  color: rgba(18, 54, 88, .18) !important;
  font-size: clamp(38px, 5vw, 76px) !important;
}

body .products-featured-copy h2 {
  font-size: clamp(48px, 6.5vw, 88px) !important;
  line-height: .92 !important;
  letter-spacing: -.04em;
}

body .products-featured-copy p,
body .products-side-card p,
body .products-mini-card p {
  color: #476c94 !important;
}

body .products-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

body .products-points i {
  border-radius: 999px !important;
  background: rgba(238, 248, 255, .82) !important;
  color: #24537e !important;
  font-style: normal;
  font-weight: 800;
}

body .products-side-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(20px, 3vw, 34px) !important;
}

body .products-side-card {
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr) !important;
  gap: clamp(20px, 2.8vw, 34px) !important;
  min-height: 263px !important;
  padding: clamp(18px, 2.5vw, 26px) !important;
}

body .products-side-mark {
  min-height: 240px;
  border-radius: 12px !important;
}

body .products-side-card h2 {
  font-size: clamp(28px, 2.7vw, 42px) !important;
  letter-spacing: -.025em;
}

body .products-more-grid {
  margin-top: clamp(24px, 3vw, 36px) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(22px, 3vw, 34px) !important;
}

body .products-mini-card {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) !important;
  min-height: 410px !important;
}

body .products-mini-card > div {
  justify-content: center;
}

body .products-mini-card h2 {
  font-size: clamp(34px, 3.8vw, 54px) !important;
  line-height: .98 !important;
  letter-spacing: -.035em;
}

body .products-seo-content {
  margin-top: clamp(54px, 7vw, 96px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
  gap: 0 clamp(42px, 6vw, 88px) !important;
  border-top: 1px solid rgba(128, 165, 216, .34);
  border-bottom: 1px solid rgba(128, 165, 216, .22);
  padding: clamp(34px, 5vw, 64px) 0 !important;
}

body .products-seo-content article {
  padding: clamp(22px, 3vw, 34px) 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-top: 1px solid rgba(128, 165, 216, .22) !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .products-seo-content article:nth-child(-n+2) {
  border-top: 0 !important;
}

body .products-seo-content h2 {
  font-size: clamp(26px, 2.6vw, 40px) !important;
  line-height: 1.04;
  letter-spacing: -.025em;
}

body .products-seo-content p {
  max-width: 68ch;
}

@media (max-width: 1060px) {
  body .products-hero,
  body .products-layout,
  body .products-featured-card,
  body .products-mini-card,
  body .products-seo-content {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .products-featured-card {
    background: rgba(255, 255, 255, .82) !important;
  }

  body .products-featured-media,
  body .products-mini-media {
    min-height: 360px !important;
  }

  body .products-hero-panel {
    align-self: auto;
  }

  body .products-side-list,
  body .products-more-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .products-seo-content article:nth-child(2) {
    border-top: 1px solid rgba(128, 165, 216, .22) !important;
  }
}

@media (max-width: 680px) {
  body .products-page {
    width: min(100% - 28px, 1420px) !important;
    padding-top: 24px !important;
  }

  body .products-hero {
    min-height: 0;
    padding: 34px 20px !important;
    border-radius: 14px !important;
  }

  body .products-hero h1 {
    font-size: clamp(42px, 15vw, 62px) !important;
  }

  body .products-hero-actions {
    display: grid;
  }

  body .products-hero-actions a {
    width: 100%;
    justify-content: center;
  }

  body .products-hero-panel div {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  body .products-side-card {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .products-side-mark,
  body .products-featured-media,
  body .products-mini-media {
    min-height: 260px !important;
  }

  body .products-featured-copy,
  body .products-mini-card > div {
    padding: 24px !important;
  }

body .products-card-label strong {
    font-size: 42px !important;
  }
}

/* About page: lighter rhythm, fewer boxed sections */
body .about-premium-page {
  --about-page-width: min(1280px, calc(100% - 48px));
  --about-wide-width: min(1360px, calc(100% - 48px));
  --about-section-gap: clamp(46px, 5.5vw, 78px);
  padding-bottom: clamp(72px, 9vw, 120px) !important;
}

body .about-premium-page > section:not(.about-premium-hero) {
  width: var(--about-page-width) !important;
  margin-inline: auto !important;
  margin-top: var(--about-section-gap) !important;
}

body .about-premium-page > section.about-value-showcase {
  width: var(--about-wide-width) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(34px, 5vw, 82px) !important;
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0 !important;
  border: 1px solid rgba(73, 172, 221, .28) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 86% 14%, rgba(45, 212, 191, .20), transparent 30%),
    linear-gradient(135deg, rgba(237, 249, 255, .92), rgba(255, 255, 255, .86) 54%, rgba(225, 245, 255, .88)) !important;
  box-shadow: 0 24px 70px rgba(36, 88, 163, .11) !important;
  padding-inline: clamp(26px, 4.6vw, 64px) !important;
}

body .about-value-showcase::before,
body .about-value-showcase::after {
  display: none !important;
}

body .about-value-copy {
  position: relative;
  top: auto;
  padding: 0 !important;
}

body .about-value-copy h2 {
  max-width: 580px;
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em;
  text-wrap: balance;
  color: #08223f !important;
}

body .about-value-copy p {
  max-width: 560px;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  color: #315f8a !important;
}

body .about-value-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

body .about-value-grid article {
  min-height: 0 !important;
  padding: clamp(20px, 2.6vw, 32px) 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(76, 155, 208, .30) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-value-grid article:first-child {
  border-top: 0 !important;
  padding-top: 0 !important;
}

body .about-value-grid article::after {
  display: none !important;
}

body .about-value-grid span {
  color: #0ea5e9 !important;
  font-size: clamp(24px, 2.4vw, 36px) !important;
}

body .about-value-grid h3 {
  font-size: clamp(24px, 2.4vw, 34px) !important;
  color: #0d2d50 !important;
}

body .about-value-grid p {
  color: #416b94 !important;
}

body .about-tech-flow {
  grid-column: 1 / -1;
  margin-top: clamp(14px, 2vw, 24px) !important;
  padding-top: clamp(22px, 3vw, 34px) !important;
  border-top: 1px solid rgba(76, 155, 208, .28);
}

body .about-tech-flow span {
  border-radius: 999px !important;
  border-color: rgba(14, 165, 233, .26) !important;
  background: rgba(5, 34, 58, .88) !important;
  color: #d6f5ff !important;
  box-shadow: none !important;
}

body .about-principles {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-principles::before,
body .about-principles::after {
  display: none !important;
}

body .about-principles .about-section-head {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr) !important;
  gap: clamp(28px, 5vw, 76px) !important;
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 52px) !important;
}

body .about-principles .about-section-head h2 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 76px) !important;
  line-height: .98 !important;
  color: #0a2544 !important;
}

body .about-principles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 42px) !important;
  border-top: 1px solid rgba(76, 155, 208, .36);
}

body .about-principles-grid article {
  padding: clamp(26px, 3.5vw, 44px) 0 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-principles-grid article::before,
body .about-principles-grid article::after {
  display: none !important;
}

body .about-principles-grid strong {
  color: #0ea5e9 !important;
  font-size: clamp(34px, 3vw, 52px) !important;
}

body .about-principles-grid h3 {
  color: #0d2d50 !important;
}

body .about-principles-grid p {
  color: #416b94 !important;
}

/* About principles: compact premium section */
body .about-principles {
  width: min(1240px, calc(100% - 48px)) !important;
  box-sizing: border-box;
  padding:
    clamp(38px, 5vw, 64px)
    clamp(24px, 4vw, 56px) !important;
  border-top: 1px solid rgba(76, 155, 208, .30) !important;
  border-bottom: 1px solid rgba(76, 155, 208, .18) !important;
}

body .about-principles .about-section-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center;
  gap: 18px !important;
  align-items: center !important;
  margin-bottom: clamp(34px, 4.5vw, 58px) !important;
  text-align: center;
}

body .about-principles .about-section-head .badge {
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  background: rgba(7, 46, 76, .74) !important;
  color: #d6f5ff !important;
  letter-spacing: .10em !important;
  white-space: normal;
}

body .about-principles .about-section-head h2 {
  max-width: 860px !important;
  margin: 0 !important;
  margin-inline: auto !important;
  font-size: clamp(32px, 3.8vw, 56px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.04em !important;
  text-wrap: balance;
  text-align: center !important;
}

body .about-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  border-top: 1px solid rgba(76, 155, 208, .30) !important;
}

body .about-principles-grid article {
  display: block !important;
  padding-top: clamp(26px, 3vw, 38px) !important;
}

body .about-principles-grid strong {
  display: block !important;
  font-size: clamp(22px, 2vw, 32px) !important;
  line-height: 1;
  margin: 0 0 18px !important;
}

body .about-principles-grid h3 {
  max-width: 280px;
  margin: 0 !important;
  font-size: clamp(27px, 2.45vw, 38px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.03em;
}

body .about-principles-grid p {
  margin: 0 !important;
  max-width: 34ch;
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.68 !important;
}

@media (max-width: 860px) {
  body .about-principles {
    width: min(100% - 28px, 1240px) !important;
  }

  body .about-principles .about-section-head,
  body .about-principles-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .about-principles-grid {
    gap: 0 !important;
  }

  body .about-principles-grid article {
    padding-block: 24px !important;
    border-top: 1px solid rgba(76, 155, 208, .22) !important;
  }

  body .about-principles-grid article:first-child {
    border-top: 0 !important;
  }
}

body .about-workflow {
  display: grid !important;
  grid-template-columns: minmax(360px, .75fr) minmax(0, 1.25fr) !important;
  gap: clamp(34px, 5vw, 84px) !important;
  padding:
    clamp(46px, 6vw, 78px)
    clamp(26px, 4.6vw, 64px) !important;
  border: 1px solid rgba(125, 211, 252, .18) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(56, 189, 248, .18), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(45, 212, 191, .16), transparent 32%),
    linear-gradient(120deg, rgba(3, 16, 34, .98), rgba(6, 41, 63, .94)) !important;
  box-shadow: 0 24px 70px rgba(16, 57, 101, .18) !important;
}

body .about-workflow > div:first-child {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-workflow > div:first-child::after {
  display: none !important;
}

body .about-workflow h2 {
  font-size: clamp(36px, 4.4vw, 66px) !important;
  line-height: 1 !important;
  color: #f8fcff !important;
}

body .about-workflow .badge {
  border-color: rgba(125, 211, 252, .36) !important;
  background: rgba(5, 34, 58, .74) !important;
  color: #b9f0ff !important;
}

body .about-workflow p {
  color: #cbe4f4 !important;
}

body .about-workflow-steps {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 clamp(34px, 4vw, 60px) !important;
}

body .about-workflow-steps article {
  min-height: 0 !important;
  padding: clamp(24px, 3vw, 36px) 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(125, 211, 252, .24) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-workflow-steps span {
  color: #5eead4 !important;
}

body .about-workflow-steps h3 {
  color: #f8fcff !important;
}

body .about-content-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
  gap: clamp(36px, 5vw, 76px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body .about-prose {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .about-prose h2 {
  max-width: 840px;
  color: #0a2544 !important;
}

body .about-prose p,
body .about-prose li {
  max-width: 76ch;
  color: #416b94 !important;
}

body .about-fit-card {
  position: sticky;
  top: 110px;
  align-self: start;
  border-radius: 16px !important;
  box-shadow: 0 18px 54px rgba(36, 88, 163, .12) !important;
}

@media (max-width: 980px) {
  body .about-premium-page {
    --about-page-width: min(100% - 28px, 1280px);
    --about-wide-width: min(100% - 28px, 1360px);
    --about-section-gap: clamp(46px, 8vw, 72px);
  }

  body .about-premium-page > section.about-value-showcase,
  body .about-principles .about-section-head,
  body .about-workflow,
  body .about-content-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .about-value-copy,
  body .about-fit-card {
    position: relative;
    top: auto;
  }

  body .about-principles-grid,
  body .about-workflow-steps {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .about-principles-grid article,
  body .about-workflow-steps article {
    padding-block: 24px !important;
  }
}

@media (max-width: 560px) {
  body .about-value-copy h2,
  body .about-principles .about-section-head h2,
  body .about-workflow h2 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  body .about-premium-page > section.about-value-showcase {
    padding-block: 30px !important;
  }

  body .about-tech-flow {
    gap: 8px !important;
  }

  body .about-tech-flow span {
    font-size: 11px !important;
  }
}
