:root {
  color-scheme: dark;
  --bg: #020712;
  --panel: rgba(5, 18, 34, 0.78);
  --panel-strong: rgba(8, 25, 46, 0.92);
  --line: rgba(47, 215, 255, 0.24);
  --line-strong: rgba(47, 215, 255, 0.48);
  --text: #f3fbff;
  --muted: #b9cad8;
  --soft: #7e94a8;
  --cyan: #20d8ff;
  --teal: #32f0c7;
  --blue: #2f7cff;
  --purple: #816bff;
  --danger: #ff625c;
  --success: #42f0b4;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 18px;
  --max: 1320px;
  --max-wide: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Noto Sans Thai", "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(32, 216, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(129, 107, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 48% 88%, rgba(50, 240, 199, 0.14), transparent 34rem),
    linear-gradient(180deg, #020712 0%, #071221 46%, #020712 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(44, 218, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 218, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 86%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(32, 216, 255, 0.13), transparent 28%, rgba(50, 240, 199, 0.06) 62%, transparent),
    radial-gradient(circle at 50% 0%, rgba(47, 124, 255, 0.12), transparent 34rem);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.78;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.mobile-preview-panel {
  min-width: 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
}

.ambient-one {
  top: 9rem;
  right: -13rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(32, 216, 255, 0.14), transparent 68%);
}

.ambient-two {
  bottom: -14rem;
  left: -12rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(50, 240, 199, 0.1), transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  padding: 13px 0;
}

.site-header::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 76px;
  content: "";
  background: rgba(2, 7, 18, 0.78);
  border-bottom: 1px solid rgba(47, 215, 255, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #0db7ff, #32f0c7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  box-shadow: 0 0 28px rgba(32, 216, 255, 0.46), inset 0 0 16px rgba(255, 255, 255, 0.22);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: #a7bccd;
  font-size: 0.72rem;
  line-height: 1.25;
}

.nav-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  visibility: hidden;
  background: rgba(2, 8, 18, 0.97);
  border: 1px solid rgba(47, 215, 255, 0.18);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav a {
  min-height: 48px;
  padding: 13px 14px;
  color: #dbeaff;
  border-radius: 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(32, 216, 255, 0.12);
  outline: none;
}

.hero,
.section,
.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero,
.section {
  scroll-margin-top: 92px;
}

.hero {
  padding: 28px 0 34px;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-stage::before {
  position: absolute;
  top: -8%;
  right: -16%;
  z-index: -1;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(32, 216, 255, 0.24), transparent 48%),
    radial-gradient(circle, rgba(129, 107, 255, 0.16), transparent 70%);
  filter: blur(8px);
}

.hero-copy,
.hero-visual,
.benefit-strip {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.3;
  background: rgba(32, 216, 255, 0.08);
  border: 1px solid rgba(32, 216, 255, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 0 22px rgba(32, 216, 255, 0.06);
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 10.5vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span,
.project-caption span,
.flow-card .solution strong,
.seo-card span,
.step-card span {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(32, 216, 255, 0.36);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.45rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  line-height: 1.38;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: #d7e8f4;
  font-size: 1rem;
  line-height: 1.78;
}

.hero-actions,
.panel-actions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.25;
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.shortcut-card:hover,
.shortcut-card:focus-visible,
.project-card:hover,
.project-card:focus-visible,
.flow-card:hover,
.step-card:hover,
.seo-card:hover {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #00121d;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 16px 42px rgba(32, 216, 255, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 58px rgba(32, 216, 255, 0.48);
}

.button-outline {
  color: #dff8ff;
  background: rgba(1, 14, 28, 0.62);
  border: 1px solid rgba(32, 216, 255, 0.46);
  box-shadow: inset 0 0 22px rgba(32, 216, 255, 0.08);
}

.hero-visual {
  margin: 10px 0 0;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-visual::before {
  inset: -10% -6%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 44%, rgba(32, 216, 255, 0.28), transparent 52%),
    conic-gradient(from 140deg, transparent, rgba(32, 216, 255, 0.2), transparent, rgba(129, 107, 255, 0.18), transparent);
  border-radius: 50%;
  filter: blur(18px);
}

.hero-visual::after {
  inset: 9% 10%;
  z-index: 2;
  border: 1px solid rgba(32, 216, 255, 0.18);
  border-radius: 50%;
  animation: orbitPulse 7s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  background: rgba(2, 7, 18, 0.8);
  border: 1px solid rgba(47, 215, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), 0 0 54px rgba(32, 216, 255, 0.2);
  filter: saturate(1.08) contrast(1.04);
}

.system-orbit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.system-orbit span {
  position: absolute;
  min-height: 32px;
  padding: 7px 11px;
  color: #dff8ff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(4, 18, 34, 0.76);
  border: 1px solid rgba(47, 215, 255, 0.36);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(32, 216, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: floatLabel 5.5s ease-in-out infinite;
}

.system-orbit span:nth-child(1) {
  top: 4%;
  left: 8%;
}

.system-orbit span:nth-child(2) {
  top: 6%;
  right: 5%;
  animation-delay: -1s;
}

.system-orbit span:nth-child(3) {
  top: 42%;
  right: -1%;
  animation-delay: -2s;
}

.system-orbit span:nth-child(4) {
  top: 43%;
  left: -1%;
  animation-delay: -3s;
}

.system-orbit span:nth-child(5) {
  bottom: 9%;
  left: 8%;
  animation-delay: -4s;
}

.system-orbit span:nth-child(6) {
  right: 8%;
  bottom: 8%;
  animation-delay: -5s;
}

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

.benefit-strip article,
.shortcut-card,
.project-card,
.flow-card,
.step-card,
.seo-card,
.lab-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 25, 46, 0.84), rgba(2, 10, 22, 0.76)),
    radial-gradient(circle at 20% 0%, rgba(32, 216, 255, 0.08), transparent 38%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34), inset 0 0 26px rgba(32, 216, 255, 0.035);
  backdrop-filter: blur(18px);
}

.benefit-strip article::before,
.shortcut-card::before,
.flow-card::before,
.step-card::before,
.seo-card::before,
.lab-panel::before,
.cta-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(32, 216, 255, 0.7), transparent);
  opacity: 0.55;
}

.benefit-strip article {
  min-height: 86px;
  padding: 13px 10px;
  text-align: center;
}

.benefit-strip article span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
  place-items: center;
  color: var(--teal);
  font-size: 0.86rem;
  background: rgba(32, 216, 255, 0.12);
  border: 1px solid rgba(32, 216, 255, 0.26);
  border-radius: 50%;
}

.benefit-strip strong,
.benefit-strip small {
  display: block;
}

.benefit-strip strong {
  color: #f4fbff;
  font-size: 0.94rem;
}

.benefit-strip small {
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  position: relative;
  padding: 50px 0;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 960px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(47, 215, 255, 0.28), transparent);
  transform: translateX(-50%);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.portfolio-section {
  padding-top: 52px;
}

.filter-row {
  display: flex;
  gap: 9px;
  padding-bottom: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-color: rgba(32, 216, 255, 0.5) transparent;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 15px;
  color: #dcefff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  background: rgba(5, 18, 34, 0.78);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 999px;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: rgba(50, 240, 199, 0.5);
  outline: none;
}

.filter-chip.is-active {
  color: #00121d;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 0 24px rgba(32, 216, 255, 0.34);
}

.shortcut-grid,
.project-grid,
.step-grid,
.seo-grid {
  display: grid;
  gap: 14px;
}

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

.project-card {
  min-height: 300px;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card.is-hidden {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.project-card:hover {
  border-color: rgba(50, 240, 199, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46), 0 0 36px rgba(32, 216, 255, 0.2);
}

.project-card:hover img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.04);
}

.project-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 6, 14, 0.94));
}

.project-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
}

.project-caption span {
  display: inline-flex;
  min-height: 25px;
  padding: 4px 9px;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(4, 13, 26, 0.76);
  border: 1px solid rgba(32, 216, 255, 0.36);
  border-radius: 9px;
}

.project-caption h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.project-caption p {
  margin-bottom: 10px;
  color: #d0e4f2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-caption a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #00121d;
  font-size: 0.86rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(32, 216, 255, 0.25);
}

.gallery-cta {
  width: 100%;
  margin-top: 18px;
}

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

.shortcut-card {
  display: grid;
  min-height: 188px;
  align-content: start;
  justify-items: start;
  padding: 22px;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
  border-color: rgba(50, 240, 199, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 30px rgba(32, 216, 255, 0.14);
}

.shortcut-card span {
  display: grid;
  min-width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--teal);
  font-weight: 900;
  background:
    radial-gradient(circle, rgba(50, 240, 199, 0.22), rgba(32, 216, 255, 0.08)),
    rgba(32, 216, 255, 0.08);
  border: 1px solid rgba(32, 216, 255, 0.26);
  border-radius: 14px;
}

.shortcut-card strong {
  margin-bottom: 9px;
  font-size: 1.22rem;
}

.shortcut-card small {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.68;
}

.flow-list {
  display: grid;
  gap: 14px;
}

.flow-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flow-card:hover {
  border-color: rgba(32, 216, 255, 0.42);
}

.problem,
.solution {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 64px;
  padding: 13px;
  border-radius: 14px;
}

.problem {
  background: rgba(255, 98, 92, 0.08);
  border: 1px solid rgba(255, 98, 92, 0.26);
}

.solution {
  background: rgba(66, 240, 180, 0.08);
  border: 1px solid rgba(66, 240, 180, 0.26);
}

.problem span,
.solution span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  font-weight: 900;
  border-radius: 50%;
}

.problem span {
  color: var(--danger);
  border: 1px solid rgba(255, 98, 92, 0.6);
}

.solution span {
  color: var(--success);
  border: 1px solid rgba(66, 240, 180, 0.6);
}

.arrow {
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
}

.step-grid,
.seo-grid {
  grid-template-columns: 1fr;
}

.step-card,
.seo-card {
  min-height: 112px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step-card:hover,
.seo-card:hover {
  border-color: rgba(50, 240, 199, 0.44);
}

.step-card span,
.seo-card span {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.step-card h3,
.seo-card strong {
  margin: 0;
}

.lab-panel,
.cta-panel {
  padding: 25px;
}

.lab-panel {
  display: grid;
  gap: 20px;
}

.lab-panel h2,
.cta-panel h2 {
  font-size: clamp(2rem, 8vw, 3.05rem);
}

.lab-panel p,
.cta-panel p {
  font-size: 1.04rem;
}

.panel-actions {
  margin-top: 0;
}

.cta-panel {
  text-align: center;
}

.cta-panel::after {
  position: absolute;
  inset: auto -10% -44% -10%;
  height: 78%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 20%, rgba(32, 216, 255, 0.25), transparent 45%),
    radial-gradient(circle at 68% 48%, rgba(50, 240, 199, 0.12), transparent 36%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .hero-actions {
  margin-top: 22px;
}

.cta-badges {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.cta-badges span,
.site-footer span {
  color: var(--muted);
}

.cta-badges span {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 215, 255, 0.18);
  border-radius: 999px;
}

.cta-panel small {
  display: block;
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--soft);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  gap: 7px;
  min-height: 96px;
  padding: 25px 0;
  border-top: 1px solid rgba(47, 215, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLabel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: rotate(-8deg) scale(1);
  }

  50% {
    opacity: 0.72;
    transform: rotate(-8deg) scale(1.025);
  }
}

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

  .reveal,
  .system-orbit span,
  .hero-visual::after {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .shortcut-card:hover,
  .shortcut-card:focus-visible,
  .project-card:hover,
  .project-card:focus-visible,
  .flow-card:hover,
  .step-card:hover,
  .seo-card:hover {
    transform: none;
  }
}

@media (min-width: 620px) {
  .hero-actions,
  .panel-actions,
  .cta-panel .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

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

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

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

  .gallery-cta {
    width: auto;
    min-width: 260px;
  }

  .flow-card {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    align-items: center;
  }

  .cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 56px, var(--max));
  }

  .site-header {
    min-height: 78px;
    padding: 14px 0;
  }

  .site-header::before {
    height: 78px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 4px;
    width: auto;
    padding: 6px;
    visibility: visible;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(47, 215, 255, 0.15);
    border-radius: 14px;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .hero {
    padding: 76px 0 58px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 54px;
    align-items: center;
  }

  h1 {
    font-size: clamp(3.8rem, 5vw, 5.2rem);
    line-height: 1.02;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 1.17rem;
  }

  .hero-actions .button {
    min-height: 56px;
    padding: 15px 22px;
  }

  .benefit-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .benefit-strip article {
    min-height: 104px;
    padding: 16px 12px;
  }

  .benefit-strip strong {
    font-size: 1.03rem;
  }

  .section {
    padding: 78px 0;
  }

  .portfolio-section {
    padding-top: 82px;
  }

  .portfolio-section .section-heading {
    max-width: 860px;
  }

  .filter-row {
    justify-content: center;
    overflow: visible;
  }

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

  .project-card,
  .project-card img {
    min-height: 332px;
  }

  .project-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .project-caption h3 {
    font-size: 1.18rem;
  }

  .project-caption p {
    font-size: 0.95rem;
  }

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

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .flow-card {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    padding: 18px;
  }

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

  .seo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .lab-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 42px;
  }

  .panel-actions {
    justify-content: flex-end;
  }

  .cta-panel {
    padding: 48px;
  }
}

@media (min-width: 1360px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 72px, var(--max-wide));
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
    gap: 66px;
  }

  .project-card,
  .project-card img {
    min-height: 360px;
  }
}

@media (max-width: 619px) {
  .brand-text small {
    display: none;
  }

  .hero,
  .section {
    scroll-margin-top: 84px;
  }

  .hero,
  .section,
  .site-footer,
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 20px;
  }

  .hero-visual {
    margin-top: 2px;
  }

  .hero-visual img {
    border-radius: 20px;
  }

  .system-orbit span {
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .system-orbit span:nth-child(3),
  .system-orbit span:nth-child(4) {
    top: 47%;
  }

  .benefit-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .benefit-strip article {
    grid-column: span 2;
    padding-right: 6px;
    padding-left: 6px;
  }

  .benefit-strip article:nth-child(n + 4) {
    grid-column: span 3;
  }

  .project-card,
  .project-card img {
    min-height: 286px;
  }

  .lab-panel,
  .cta-panel {
    padding: 22px;
  }
}

/* Lower sections polish */
.service-shortcuts,
.pain-section,
.workflow-section,
.seo-section,
.final-cta,
.site-footer {
  isolation: isolate;
}

.service-shortcuts::after,
.pain-section::after,
.workflow-section::after,
.seo-section::after {
  position: absolute;
  right: -12%;
  bottom: 4%;
  z-index: -1;
  width: 55%;
  height: 52%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(32, 216, 255, 0.12) 38% 39%, transparent 39%),
    linear-gradient(45deg, transparent 0 46%, rgba(50, 240, 199, 0.08) 46% 47%, transparent 47%);
  opacity: 0.8;
}

.shortcut-grid {
  align-items: stretch;
}

.shortcut-card {
  grid-template-rows: auto auto auto 1fr;
  min-height: 300px;
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(10, 31, 56, 0.92), rgba(3, 12, 26, 0.88) 52%, rgba(5, 27, 39, 0.86)),
    linear-gradient(135deg, rgba(32, 216, 255, 0.16), transparent 40%);
  border-color: rgba(47, 215, 255, 0.25);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 38px rgba(32, 216, 255, 0.04);
}

.shortcut-card::after {
  position: absolute;
  inset: auto 18px 16px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(32, 216, 255, 0.55), transparent 72%);
  opacity: 0.5;
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
  border-color: rgba(50, 240, 199, 0.62);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(32, 216, 255, 0.18),
    inset 0 0 42px rgba(50, 240, 199, 0.055);
}

.shortcut-card .service-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #eaffff;
  font-size: 1.05rem;
  background:
    linear-gradient(135deg, rgba(32, 216, 255, 0.34), rgba(50, 240, 199, 0.12)),
    rgba(2, 14, 28, 0.72);
  border-color: rgba(50, 240, 199, 0.38);
  border-radius: 16px;
  box-shadow:
    0 0 28px rgba(32, 216, 255, 0.22),
    inset 0 0 22px rgba(255, 255, 255, 0.08);
}

.shortcut-card strong {
  color: #f6fcff;
  font-size: 1.28rem;
}

.shortcut-card small {
  max-width: 32rem;
  color: #c8dbea;
}

.service-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  color: #e6f6ff;
  font-size: 0.91rem;
  line-height: 1.48;
  list-style: none;
}

.service-points li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
}

.service-points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(50, 240, 199, 0.5);
  transform: translateY(-50%);
}

.pain-section .section-heading {
  max-width: 880px;
}

.flow-list {
  position: relative;
}

.flow-card {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(5, 18, 34, 0.88), rgba(2, 9, 20, 0.86)),
    linear-gradient(90deg, rgba(255, 98, 92, 0.055), transparent 42%, rgba(66, 240, 180, 0.065));
}

.flow-card::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: calc(var(--radius) - 5px);
}

.problem,
.solution {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 112px;
  padding: 16px;
  border-radius: 16px;
}

.problem {
  background:
    linear-gradient(135deg, rgba(255, 98, 92, 0.16), rgba(255, 98, 92, 0.045)),
    rgba(3, 13, 26, 0.72);
  border-color: rgba(255, 98, 92, 0.34);
}

.solution {
  background:
    linear-gradient(135deg, rgba(66, 240, 180, 0.16), rgba(32, 216, 255, 0.045)),
    rgba(3, 18, 28, 0.76);
  border-color: rgba(66, 240, 180, 0.36);
}

.problem span,
.solution span {
  width: 38px;
  height: 38px;
  background: rgba(1, 10, 22, 0.58);
}

.problem small,
.solution small {
  display: inline-flex;
  margin-bottom: 5px;
  color: #99b4c7;
  font-size: 0.74rem;
  font-weight: 900;
}

.problem strong,
.solution strong {
  display: block;
  color: #f5fbff;
  font-size: 1.05rem;
  line-height: 1.38;
}

.problem p,
.solution p {
  margin: 4px 0 0;
  color: #bcd0df;
  font-size: 0.9rem;
  line-height: 1.48;
}

.solution strong {
  color: #dffff7;
}

.flow-connector {
  display: grid;
  min-height: 32px;
  place-items: center;
}

.flow-connector span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #00121d;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(32, 216, 255, 0.28);
}

.workflow-section {
  padding-top: 86px;
}

.workflow-section .section-heading {
  max-width: 760px;
}

.step-grid {
  position: relative;
}

.step-grid::before {
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 29px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(32, 216, 255, 0.04), rgba(32, 216, 255, 0.52), rgba(50, 240, 199, 0.08));
}

.step-card {
  min-height: 182px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(8, 27, 48, 0.92), rgba(3, 11, 24, 0.88)),
    repeating-linear-gradient(135deg, rgba(32, 216, 255, 0.055) 0 1px, transparent 1px 18px);
}

.step-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  color: #00121d;
  font-size: 0.92rem;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(32, 216, 255, 0.24);
  text-shadow: none;
}

.step-card::after {
  position: absolute;
  top: 33px;
  left: -7px;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--teal);
  border: 3px solid #061224;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(50, 240, 199, 0.7);
}

.step-card h3 {
  color: #f4fbff;
  font-size: 1.07rem;
}

.step-card p {
  margin: 0;
  color: #bed4e3;
  font-size: 0.94rem;
  line-height: 1.62;
}

.step-card.final-step {
  border-color: rgba(50, 240, 199, 0.56);
  background:
    linear-gradient(145deg, rgba(5, 42, 48, 0.92), rgba(4, 14, 28, 0.9)),
    linear-gradient(135deg, rgba(50, 240, 199, 0.12), transparent 45%);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.44),
    0 0 38px rgba(50, 240, 199, 0.14);
}

.lab-panel {
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 29, 52, 0.96), rgba(2, 9, 20, 0.9) 52%, rgba(5, 34, 42, 0.88)),
    repeating-linear-gradient(90deg, rgba(32, 216, 255, 0.045) 0 1px, transparent 1px 64px);
  border-color: rgba(47, 215, 255, 0.34);
}

.lab-panel::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(32, 216, 255, 0.14), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(50, 240, 199, 0.1), transparent) right / 1px 100% no-repeat;
  border-radius: calc(var(--radius) - 7px);
}

.lab-copy,
.lab-preview {
  position: relative;
  z-index: 1;
  min-width: 0;
}

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

.lab-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 22px 0;
}

.lab-stats span {
  display: grid;
  gap: 3px;
  min-height: 86px;
  padding: 15px;
  color: #e9f8ff;
  background: rgba(2, 12, 26, 0.58);
  border: 1px solid rgba(47, 215, 255, 0.2);
  border-radius: 16px;
}

.lab-stats strong {
  color: var(--cyan);
  font-size: clamp(1.8rem, 8vw, 2.75rem);
  line-height: 1;
}

.lab-stats small {
  color: #afc4d5;
  font-size: 0.84rem;
  line-height: 1.35;
}

.lab-panel .panel-actions {
  justify-content: start;
  margin-top: 20px;
}

.lab-window {
  padding: 13px;
  background: rgba(1, 10, 23, 0.7);
  border: 1px solid rgba(47, 215, 255, 0.24);
  border-radius: 18px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 0 28px rgba(32, 216, 255, 0.06);
}

.lab-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 6px 10px;
  color: #bdd4e4;
  font-size: 0.8rem;
}

.lab-window-top span {
  width: 8px;
  height: 8px;
  background: rgba(32, 216, 255, 0.44);
  border-radius: 50%;
}

.lab-window-top strong {
  margin-left: auto;
  color: var(--teal);
  font-size: 0.82rem;
}

.lab-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lab-stack article {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 15px;
  box-shadow: inset 0 -60px 56px rgba(0, 6, 14, 0.76);
}

.lab-stack img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.lab-stack article::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 8, 18, 0.94));
}

.lab-stack article span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 9px;
  color: #eaffff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(2, 12, 25, 0.78);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 9px;
}

.seo-section {
  padding-top: 86px;
}

.seo-layout {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}

.seo-copy {
  min-width: 0;
}

.seo-visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 25, 46, 0.94), rgba(2, 9, 20, 0.9)),
    repeating-linear-gradient(0deg, rgba(32, 216, 255, 0.05) 0 1px, transparent 1px 26px);
  border: 1px solid rgba(47, 215, 255, 0.27);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(32, 216, 255, 0.055);
}

.seo-visual::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 38%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: rgba(1, 11, 24, 0.82);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 14px;
}

.search-bar span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.search-bar strong {
  min-width: 0;
  overflow: hidden;
  color: #f4fbff;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result {
  padding: 16px;
  margin: 0;
  background: rgba(3, 18, 34, 0.74);
  border: 1px solid rgba(50, 240, 199, 0.24);
  border-radius: 16px;
}

.search-result small {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-weight: 900;
}

.search-result h3 {
  color: #dff7ff;
  font-size: 1.03rem;
}

.search-result p {
  margin: 0;
  font-size: 0.92rem;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.keyword-chips span {
  padding: 7px 10px;
  color: #d9efff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(32, 216, 255, 0.08);
  border: 1px solid rgba(47, 215, 255, 0.2);
  border-radius: 999px;
}

.seo-grid {
  align-items: stretch;
}

.seo-card {
  min-height: 176px;
  padding: 21px;
  background:
    linear-gradient(150deg, rgba(7, 26, 48, 0.9), rgba(2, 9, 20, 0.86)),
    linear-gradient(135deg, rgba(32, 216, 255, 0.08), transparent 46%);
}

.seo-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--cyan);
  background: rgba(32, 216, 255, 0.09);
  border: 1px solid rgba(47, 215, 255, 0.26);
  border-radius: 12px;
}

.seo-card strong {
  display: block;
  color: #f3fbff;
  font-size: 1rem;
  line-height: 1.42;
}

.seo-card p {
  margin: 10px 0 0;
  color: #bdd2e2;
  font-size: 0.9rem;
  line-height: 1.55;
}

.final-cta {
  padding-bottom: 74px;
}

.cta-panel {
  display: grid;
  gap: 24px;
  min-height: 360px;
  padding: 34px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(8, 34, 58, 0.96), rgba(2, 9, 20, 0.9) 48%, rgba(3, 38, 42, 0.9)),
    repeating-linear-gradient(120deg, rgba(32, 216, 255, 0.045) 0 1px, transparent 1px 26px);
  border-color: rgba(50, 240, 199, 0.36);
}

.cta-panel::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, transparent, rgba(32, 216, 255, 0.18), transparent) 0 22% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(50, 240, 199, 0.12), transparent) 0 78% / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(32, 216, 255, 0.08) 0 1px, transparent 1px 76px);
  opacity: 0.7;
}

.cta-copy,
.cta-orb,
.cta-badges,
.cta-panel small {
  position: relative;
  z-index: 1;
}

.cta-orb {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #00121d;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 18px;
  box-shadow: 0 0 42px rgba(32, 216, 255, 0.36);
}

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

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

.cta-panel .hero-actions {
  justify-content: start;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.cta-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #dff7ff;
  background: rgba(2, 14, 28, 0.62);
  border-color: rgba(50, 240, 199, 0.23);
}

.cta-panel small {
  max-width: 760px;
  margin: 0;
  color: #9db6c9;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  min-height: 0;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(47, 215, 255, 0.18);
}

.site-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 46%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-brand strong,
.footer-contact strong {
  color: #f4fbff;
  font-size: 1.03rem;
}

.footer-brand span,
.footer-contact span,
.site-footer small {
  color: #aabed0;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  min-height: 38px;
  padding: 8px 11px;
  color: #dcefff;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(32, 216, 255, 0.055);
  border: 1px solid rgba(47, 215, 255, 0.16);
  border-radius: 999px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #00121d;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  outline: none;
}

@media (min-width: 620px) {
  .flow-card {
    grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
    align-items: stretch;
  }

  .flow-connector span {
    margin-top: 36px;
  }

  .lab-panel .panel-actions,
  .cta-panel .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .site-footer > small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .workflow-section,
  .seo-section {
    padding-top: 96px;
  }

  .step-grid::before {
    top: 46px;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(32, 216, 255, 0.04), rgba(32, 216, 255, 0.5), rgba(50, 240, 199, 0.08));
  }

  .step-card::after {
    top: -7px;
    left: 28px;
  }

  .lab-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
    gap: 38px;
    padding: 48px;
  }

  .lab-window {
    transform: perspective(1200px) rotateY(-4deg);
    transform-origin: center;
  }

  .seo-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
    gap: 38px;
    margin-bottom: 26px;
  }

  .seo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 54px;
  }

  .cta-badges,
  .cta-panel small {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.1fr) auto minmax(220px, 0.45fr);
    gap: 28px;
    align-items: center;
  }

  .site-footer > small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 619px) {
  .shortcut-card {
    min-height: 0;
    padding: 22px;
  }

  .shortcut-card .service-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .problem,
  .solution {
    min-height: 98px;
  }

  .flow-connector span {
    transform: rotate(90deg);
  }

  .step-grid {
    gap: 12px;
  }

  .step-card {
    min-height: 0;
    padding: 20px 20px 20px 24px;
  }

  .lab-panel {
    padding: 22px;
  }

  .lab-stats {
    grid-template-columns: 1fr;
  }

  .lab-stack {
    gap: 8px;
  }

  .lab-stack article,
  .lab-stack img {
    min-height: 112px;
  }

  .seo-card {
    min-height: 0;
  }

  .cta-panel {
    padding: 24px;
    text-align: left;
  }

  .cta-orb {
    width: 62px;
    height: 62px;
    font-size: 1.55rem;
    border-radius: 16px;
  }

  .search-bar {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .search-bar strong {
    white-space: normal;
  }
}

/* SME-001 audit redesign pass */
.hero-lead {
  max-width: 720px;
}

.portfolio-section {
  z-index: 1;
}

.portfolio-section::after {
  position: absolute;
  inset: 36px -4% 22px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 8%, rgba(32, 216, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(129, 107, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(5, 21, 39, 0.2), transparent 65%);
  border: 1px solid rgba(47, 215, 255, 0.08);
  border-radius: 28px;
}

.portfolio-section .section-heading {
  max-width: 940px;
}

.project-grid {
  gap: 16px;
}

.project-card {
  min-height: 330px;
  border-color: rgba(47, 215, 255, 0.28);
}

.project-card::before {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(32, 216, 255, 0.85), transparent) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(50, 240, 199, 0.75), transparent) top right / 1px 100% no-repeat;
  opacity: 0.82;
}

.project-card::after {
  height: 68%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 7, 18, 0.36) 26%, rgba(0, 6, 14, 0.96) 100%),
    radial-gradient(circle at 18% 100%, rgba(32, 216, 255, 0.22), transparent 45%);
}

.project-card img {
  min-height: 330px;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
}

.project-caption {
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.project-caption span {
  color: #dffff7;
  background: rgba(3, 16, 31, 0.82);
  border-color: rgba(50, 240, 199, 0.32);
}

.project-caption h3 {
  font-size: 1.16rem;
}

.project-caption p {
  max-width: 96%;
  color: #e0eff8;
  font-size: 0.95rem;
}

.project-caption a {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.shortcut-card {
  grid-template-rows: auto auto auto auto 1fr;
}

.shortcut-card em {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: rgba(32, 216, 255, 0.07);
  border: 1px solid rgba(47, 215, 255, 0.16);
  border-radius: 999px;
}

.shortcut-card:nth-child(2n) {
  background:
    linear-gradient(150deg, rgba(8, 27, 52, 0.92), rgba(2, 11, 24, 0.88) 52%, rgba(9, 28, 50, 0.86)),
    linear-gradient(135deg, rgba(129, 107, 255, 0.12), transparent 42%);
}

.shortcut-card:nth-child(3n) {
  background:
    linear-gradient(150deg, rgba(8, 31, 48, 0.92), rgba(3, 12, 26, 0.88) 52%, rgba(8, 38, 34, 0.84)),
    linear-gradient(135deg, rgba(50, 240, 199, 0.12), transparent 42%);
}

.service-points {
  margin-top: 16px;
}

.workflow-section {
  padding-bottom: 74px;
}

.step-grid {
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  align-content: start;
}

.step-card span {
  grid-row: span 3;
}

.step-card i {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
  background: rgba(32, 216, 255, 0.08);
  border: 1px solid rgba(47, 215, 255, 0.2);
  border-radius: 10px;
}

.step-card h3,
.step-card p {
  grid-column: 2;
}

.step-card h3 {
  margin-top: 2px;
}

.lab-stats {
  max-width: 660px;
}

.lab-roadmap {
  display: grid;
  gap: 8px;
  padding: 13px;
  margin-top: 12px;
  background: rgba(2, 12, 26, 0.62);
  border: 1px solid rgba(47, 215, 255, 0.18);
  border-radius: 15px;
}

.lab-roadmap span {
  position: relative;
  min-height: 34px;
  padding: 8px 10px 8px 30px;
  color: #dcefff;
  font-size: 0.84rem;
  font-weight: 900;
  background: rgba(32, 216, 255, 0.055);
  border-radius: 11px;
}

.lab-roadmap span::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(50, 240, 199, 0.55);
  transform: translateY(-50%);
}

.seo-copy p {
  max-width: 720px;
}

.seo-card {
  border-color: rgba(47, 215, 255, 0.22);
}

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

@media (min-width: 620px) {
  .lab-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .project-grid {
    gap: 20px;
  }

  .project-card,
  .project-card img {
    min-height: 372px;
  }

  .shortcut-grid {
    gap: 20px;
  }

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

  .step-grid::before {
    right: 11%;
    left: 11%;
  }

  .step-card {
    min-height: 192px;
  }

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

@media (min-width: 1360px) {
  .project-card,
  .project-card img {
    min-height: 390px;
  }
}

@media (max-width: 619px) {
  .portfolio-section::after {
    inset: 18px -2% 18px;
    border-radius: 22px;
  }

  .project-card,
  .project-card img {
    min-height: 314px;
  }

  .project-caption h3 {
    font-size: 1.05rem;
  }

  .project-caption p {
    font-size: 0.88rem;
  }

  .step-card {
    grid-template-columns: auto 1fr;
  }

  .step-card i {
    width: 30px;
    height: 30px;
  }

  .lab-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 919px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    width: auto;
    padding: 12px;
    visibility: hidden;
    background: rgba(2, 8, 18, 0.97);
    border: 1px solid rgba(47, 215, 255, 0.18);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body .site-header .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Workflow visual fix */
.workflow-section {
  padding-top: 76px;
  padding-bottom: 64px;
}

.workflow-section .section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.workflow-section .section-heading p {
  max-width: 760px;
}

.workflow-section .step-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.workflow-section .step-grid::before {
  display: none;
}

.workflow-section .step-card {
  display: flex;
  min-height: 0;
  padding: 22px;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(7, 24, 45, 0.94), rgba(2, 10, 22, 0.9)),
    radial-gradient(circle at 10% 0%, rgba(32, 216, 255, 0.12), transparent 36%);
  border-color: rgba(47, 215, 255, 0.28);
  border-radius: 18px;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.workflow-section .step-card::after {
  display: none;
}

.workflow-section .step-card::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 216, 255, 0.7), rgba(50, 240, 199, 0.18), transparent 72%);
  opacity: 0.8;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.workflow-section .step-card .step-head span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin: 0;
  flex: 0 0 auto;
  place-items: center;
  color: #00121d;
  font-size: 0.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(32, 216, 255, 0.24);
  text-shadow: none;
}

.workflow-section .step-card .step-head i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin: 0;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
  background: rgba(32, 216, 255, 0.08);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 12px;
}

.step-head small {
  min-width: 0;
  color: #83a6bb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-section .step-card h3,
.workflow-section .step-card p {
  grid-column: auto;
}

.workflow-section .step-card h3 {
  margin: 4px 0 0;
  color: #f6fcff;
  font-size: 1.16rem;
  line-height: 1.35;
}

.workflow-section .step-card p {
  max-width: 30rem;
  margin: 0;
  color: #c5d9e6;
  font-size: 0.95rem;
  line-height: 1.58;
}

.workflow-section .step-card.final-step {
  border-color: rgba(50, 240, 199, 0.48);
  background:
    linear-gradient(145deg, rgba(4, 35, 43, 0.94), rgba(2, 12, 25, 0.9)),
    radial-gradient(circle at 14% 0%, rgba(50, 240, 199, 0.16), transparent 38%);
}

@media (min-width: 760px) {
  .workflow-section .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .workflow-section .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .workflow-section .step-card {
    min-height: 178px;
    padding: 24px;
  }
}

@media (max-width: 619px) {
  .workflow-section {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .workflow-section .step-card {
    padding: 20px;
  }

  .workflow-section .step-card .step-head span {
    width: 44px;
    height: 44px;
  }

  .workflow-section .step-card .step-head i {
    width: 34px;
    height: 34px;
  }
}

/* Problem section art redesign */
.pain-section {
  padding-top: 86px;
  padding-bottom: 88px;
}

.pain-section .section-heading {
  max-width: 880px;
}

.pain-section .section-heading h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.pain-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  isolation: isolate;
}

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

.pain-map::before {
  inset: 10% 4%;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 216, 255, 0.18), transparent 30%),
    linear-gradient(90deg, transparent 0 18%, rgba(32, 216, 255, 0.2) 18% 18.25%, transparent 18.25% 81.75%, rgba(50, 240, 199, 0.14) 81.75% 82%, transparent 82%),
    linear-gradient(180deg, transparent 0 22%, rgba(32, 216, 255, 0.12) 22% 22.25%, transparent 22.25% 77.75%, rgba(50, 240, 199, 0.1) 77.75% 78%, transparent 78%);
  opacity: 0.75;
}

.pain-map::after {
  inset: -18px;
  background:
    radial-gradient(circle at 50% 16%, rgba(129, 107, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(50, 240, 199, 0.12), transparent 28%);
  opacity: 0.9;
}

.pain-core,
.pain-node {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 215, 255, 0.24);
  border-radius: 20px;
  backdrop-filter: blur(18px);
}

.pain-core {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 216, 255, 0.24), transparent 34%),
    radial-gradient(circle at 50% 64%, rgba(50, 240, 199, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(6, 26, 48, 0.9), rgba(1, 9, 22, 0.86));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 0 44px rgba(32, 216, 255, 0.08);
}

.pain-core::before {
  position: absolute;
  inset: 50%;
  width: 104px;
  height: 104px;
  content: "";
  background:
    linear-gradient(135deg, var(--cyan), var(--teal)),
    rgba(32, 216, 255, 0.16);
  border-radius: 28px;
  box-shadow:
    0 0 52px rgba(32, 216, 255, 0.44),
    0 0 96px rgba(50, 240, 199, 0.16);
  transform: translate(-50%, -50%) rotate(45deg);
}

.pain-core::after {
  position: absolute;
  inset: 50%;
  width: 52px;
  height: 52px;
  content: "AI";
  display: grid;
  place-items: center;
  color: #00121d;
  font-size: 1.28rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.core-badge,
.pain-core strong,
.pain-core small {
  position: relative;
  z-index: 1;
}

.core-badge {
  align-self: start;
  padding: 7px 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(1, 12, 25, 0.72);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 999px;
}

.pain-core strong {
  margin-top: 102px;
  color: #f4fbff;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.08;
}

.pain-core small {
  max-width: 310px;
  color: #bcd2e2;
  font-size: 0.94rem;
  line-height: 1.55;
}

.core-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(32, 216, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.core-orbit-one {
  width: 210px;
  height: 210px;
}

.core-orbit-two {
  width: 280px;
  height: 280px;
  border-color: rgba(50, 240, 199, 0.12);
}

.pain-node {
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(6, 23, 43, 0.94), rgba(2, 10, 22, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(255, 98, 92, 0.12), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(50, 240, 199, 0.1), transparent 40%);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pain-node::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 98, 92, 0.8), rgba(32, 216, 255, 0.45), transparent 70%);
}

.pain-node::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 86px;
  height: 86px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(32, 216, 255, 0.32), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(50, 240, 199, 0.24), transparent) right / 1px 100% no-repeat;
  opacity: 0.55;
}

.pain-node-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.pain-node-head span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #00121d;
  font-size: 0.88rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff746f, var(--cyan));
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(32, 216, 255, 0.2);
}

.pain-node-head small {
  color: #8eacc0;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pain-node h3 {
  margin-bottom: 8px;
  color: #f7fcff;
  font-size: 1.22rem;
  line-height: 1.36;
}

.pain-node p {
  margin-bottom: 16px;
  color: #bfd4e4;
  font-size: 0.94rem;
  line-height: 1.65;
}

.pain-node strong {
  display: inline-flex;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  padding: 8px 11px;
  color: #dffff7;
  font-size: 0.88rem;
  line-height: 1.45;
  background: rgba(50, 240, 199, 0.08);
  border: 1px solid rgba(50, 240, 199, 0.2);
  border-radius: 12px;
}

@media (min-width: 760px) {
  .pain-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-core {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (min-width: 1120px) {
  .pain-map {
    grid-template-areas:
      "node1 core node2"
      "node3 core node4";
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
  }

  .pain-core {
    grid-area: core;
    grid-column: auto;
    min-height: 438px;
  }

  .pain-node {
    min-height: 210px;
  }

  .pain-node:nth-of-type(1) {
    grid-area: node1;
  }

  .pain-node:nth-of-type(2) {
    grid-area: node2;
  }

  .pain-node:nth-of-type(3) {
    grid-area: node3;
  }

  .pain-node:nth-of-type(4) {
    grid-area: node4;
  }
}

@media (max-width: 619px) {
  .pain-section {
    padding-top: 64px;
    padding-bottom: 62px;
  }

  .pain-map {
    gap: 12px;
  }

  .pain-core {
    min-height: 250px;
    padding: 22px;
  }

  .pain-core::before {
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }

  .core-orbit-one {
    width: 180px;
    height: 180px;
  }

  .core-orbit-two {
    width: 236px;
    height: 236px;
  }

  .pain-core strong {
    margin-top: 86px;
  }

  .pain-node {
    min-height: 0;
    padding: 20px;
  }
}

/* Service studio redesign */
.service-studio {
  padding-top: 88px;
  padding-bottom: 92px;
  overflow: hidden;
}

.service-studio .service-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.service-studio .section-heading {
  max-width: 790px;
  margin-bottom: 0;
}

.service-studio .section-heading h2 {
  max-width: 760px;
}

.service-signal {
  display: grid;
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(7, 25, 44, 0.92), rgba(2, 11, 24, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(255, 188, 92, 0.16), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(50, 240, 199, 0.13), transparent 42%);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 22px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-signal span {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 12px;
  background: rgba(2, 13, 28, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.service-signal strong {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #00121d;
  font-size: 0.8rem;
  font-weight: 950;
  background: linear-gradient(135deg, #20d8ff, #32f0c7 72%, #ffbc5c);
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(32, 216, 255, 0.24);
}

.service-signal small {
  min-width: 0;
  color: #d8ebf7;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.42;
}

.service-studio .shortcut-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-studio .shortcut-card {
  --service-glow: rgba(32, 216, 255, 0.18);
  --service-tint: rgba(32, 216, 255, 0.11);
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px;
  color: #f5fbff;
  background:
    linear-gradient(150deg, rgba(8, 29, 52, 0.96), rgba(2, 10, 22, 0.9) 58%, rgba(6, 22, 39, 0.92)),
    radial-gradient(circle at 18% 0%, var(--service-tint), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255, 188, 92, 0.08), transparent 38%);
  border-color: rgba(47, 215, 255, 0.28);
  border-radius: 22px;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 44px rgba(32, 216, 255, 0.035);
}

.service-studio .shortcut-card:nth-child(2) {
  --service-glow: rgba(129, 107, 255, 0.2);
  --service-tint: rgba(129, 107, 255, 0.12);
}

.service-studio .shortcut-card:nth-child(3),
.service-studio .shortcut-card:nth-child(6) {
  --service-glow: rgba(255, 188, 92, 0.18);
  --service-tint: rgba(255, 188, 92, 0.11);
}

.service-studio .shortcut-card:nth-child(4),
.service-studio .shortcut-card:nth-child(5) {
  --service-glow: rgba(50, 240, 199, 0.18);
  --service-tint: rgba(50, 240, 199, 0.11);
}

.service-studio .shortcut-card::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 216, 255, 0.76), rgba(50, 240, 199, 0.28), transparent 68%);
  opacity: 0.75;
}

.service-studio .shortcut-card::after {
  right: 20px;
  bottom: 20px;
  left: auto;
  width: 92px;
  height: 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, var(--service-glow), transparent) right / 1px 100% no-repeat;
  opacity: 0.8;
}

.service-studio .shortcut-card:hover,
.service-studio .shortcut-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(50, 240, 199, 0.58);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.54),
    0 0 38px var(--service-glow),
    inset 0 0 50px rgba(50, 240, 199, 0.045);
  outline: none;
}

.service-studio .shortcut-card .service-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin: 0 0 18px;
  color: #00121d;
  font-size: 1.1rem;
  font-weight: 950;
  background:
    linear-gradient(135deg, #20d8ff, #32f0c7 68%, #ffbc5c),
    rgba(32, 216, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow:
    0 0 32px var(--service-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(222, 243, 255, 0.32);
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-studio .shortcut-card em {
  min-height: 28px;
  padding: 4px 10px;
  margin-bottom: 12px;
  color: #a8f7ed;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(50, 240, 199, 0.075);
  border-color: rgba(50, 240, 199, 0.18);
}

.service-studio .shortcut-card strong {
  max-width: 28rem;
  margin-bottom: 10px;
  color: #f7fcff;
  font-size: clamp(1.22rem, 2.2vw, 1.48rem);
  line-height: 1.28;
}

.service-studio .shortcut-card small {
  max-width: 34rem;
  color: #c5d8e6;
  font-size: 0.97rem;
  line-height: 1.64;
}

.service-deliverable {
  width: 100%;
  padding: 14px 0 0 14px;
  margin-top: 18px;
  border-left: 2px solid rgba(50, 240, 199, 0.42);
}

.service-studio .shortcut-card .service-deliverable span {
  display: block;
  width: auto;
  min-width: 0;
  height: auto;
  margin: 0 0 3px;
  color: #78a9bd;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: 0;
  border-radius: 0;
}

.service-deliverable b {
  display: block;
  color: #e6f7ff;
  font-size: 0.92rem;
  line-height: 1.46;
}

.service-studio .service-points {
  width: 100%;
  gap: 7px;
  margin-top: 16px;
  color: #dceef8;
  font-size: 0.9rem;
}

.service-studio .service-points li::before {
  background: linear-gradient(135deg, #ffbc5c, #32f0c7);
}

.service-studio .shortcut-card .service-link {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: auto;
  align-items: center;
  gap: 8px;
  margin: auto 0 0;
  padding-top: 18px;
  color: #58e9ff;
  font-size: 0.92rem;
  font-weight: 950;
  background: none;
  border: 0;
  border-radius: 0;
}

.service-studio .shortcut-card .service-link i {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #00121d;
  font-style: normal;
  background: linear-gradient(135deg, #20d8ff, #32f0c7);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(32, 216, 255, 0.26);
}

@media (min-width: 760px) {
  .service-studio .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
    align-items: end;
  }

  .service-studio .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .service-studio .shortcut-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .service-studio .shortcut-card {
    grid-column: span 2;
    min-height: 424px;
    padding: 28px;
  }

  .service-studio .shortcut-card:nth-child(1),
  .service-studio .shortcut-card:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 619px) {
  .service-studio {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .service-signal {
    padding: 12px;
  }

  .service-signal span {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 58px;
    padding: 8px 10px;
  }

  .service-signal strong {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .service-studio .shortcut-card {
    padding: 22px;
    border-radius: 20px;
  }

  .service-studio .shortcut-card .service-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .service-number {
    top: 21px;
    right: 21px;
  }
}

/* Service suite art pass */
.service-suite {
  padding-top: 94px;
  padding-bottom: 98px;
}

.service-suite .service-hero {
  max-width: 830px;
  margin-bottom: 28px;
}

.service-suite .section-heading h2 {
  max-width: 760px;
}

.service-board {
  display: grid;
  gap: 18px;
  align-items: start;
}

.service-command-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(7, 28, 47, 0.96), rgba(2, 10, 22, 0.92) 60%, rgba(6, 34, 34, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(255, 188, 92, 0.17), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(50, 240, 199, 0.14), transparent 34%);
  border: 1px solid rgba(47, 215, 255, 0.3);
  border-radius: 24px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 54px rgba(32, 216, 255, 0.04);
}

.service-command-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #20d8ff, rgba(50, 240, 199, 0.36), transparent 72%);
}

.service-command-card::after {
  position: absolute;
  right: -18%;
  bottom: -20%;
  width: 56%;
  height: 42%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(32, 216, 255, 0.17) 42% 43%, transparent 43%),
    linear-gradient(45deg, transparent 0 54%, rgba(255, 188, 92, 0.12) 54% 55%, transparent 55%);
  opacity: 0.8;
}

.service-command-card h3 {
  max-width: 520px;
  margin-bottom: 10px;
  color: #f7fcff;
  font-size: 1.52rem;
  line-height: 1.25;
}

.service-command-card > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 20px;
  color: #c4d9e8;
  font-size: 0.98rem;
  line-height: 1.68;
}

.service-stack-art {
  position: relative;
  min-height: 330px;
  margin: 12px 0 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 216, 255, 0.18), transparent 23%),
    radial-gradient(circle at 50% 50%, rgba(50, 240, 199, 0.1), transparent 43%),
    linear-gradient(rgba(32, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 216, 255, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  border: 1px solid rgba(47, 215, 255, 0.14);
  border-radius: 22px;
}

.service-stack-art::before,
.service-stack-art::after {
  position: absolute;
  inset: 50%;
  content: "";
  border: 1px solid rgba(32, 216, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-stack-art::before {
  width: 228px;
  height: 228px;
}

.service-stack-art::after {
  width: 296px;
  height: 296px;
  border-color: rgba(255, 188, 92, 0.13);
}

.stack-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  padding: 16px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(6, 29, 52, 0.96), rgba(1, 10, 23, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(32, 216, 255, 0.32), transparent 58%);
  border: 1px solid rgba(50, 240, 199, 0.38);
  border-radius: 30px;
  box-shadow:
    0 0 48px rgba(32, 216, 255, 0.28),
    inset 0 0 28px rgba(50, 240, 199, 0.07);
  transform: translate(-50%, -50%) rotate(45deg);
}

.stack-core span,
.stack-core strong {
  display: block;
  transform: rotate(-45deg);
}

.stack-core span {
  color: #32f0c7;
  font-size: 1.28rem;
  font-weight: 950;
}

.stack-core strong {
  color: #f4fbff;
  font-size: 0.8rem;
  line-height: 1;
}

.stack-pill {
  position: absolute;
  z-index: 3;
  min-height: 34px;
  padding: 8px 12px;
  color: #eaffff;
  font-size: 0.76rem;
  font-weight: 950;
  background: rgba(2, 14, 30, 0.86);
  border: 1px solid rgba(47, 215, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(32, 216, 255, 0.14);
}

.stack-pill-a {
  top: 42px;
  left: 32px;
}

.stack-pill-b {
  top: 44px;
  right: 28px;
}

.stack-pill-c {
  top: 49%;
  right: 10px;
}

.stack-pill-d {
  bottom: 56px;
  right: 32px;
}

.stack-pill-e {
  bottom: 48px;
  left: 28px;
}

.stack-pill-f {
  top: 50%;
  left: 14px;
}

.service-suite .service-signal {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-suite .service-signal span {
  display: block;
  min-height: 0;
  padding: 12px 10px;
  text-align: center;
  background: rgba(2, 14, 30, 0.66);
  border: 1px solid rgba(47, 215, 255, 0.14);
  border-radius: 16px;
}

.service-suite .service-signal strong {
  width: auto;
  height: auto;
  margin-bottom: 4px;
  color: #32f0c7;
  font-size: 0.78rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.service-suite .service-signal small {
  color: #c9ddec;
  font-size: 0.78rem;
  line-height: 1.42;
}

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

.service-suite .service-track {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-height: 246px;
  padding: 14px;
  align-items: stretch;
  background:
    linear-gradient(150deg, rgba(5, 22, 42, 0.96), rgba(2, 10, 22, 0.9) 58%, rgba(5, 28, 36, 0.88)),
    radial-gradient(circle at 0% 0%, var(--service-tint), transparent 42%);
  border-radius: 22px;
}

.service-suite .service-track::after {
  right: 18px;
  bottom: 18px;
  width: 70px;
  height: 70px;
}

.service-thumb {
  width: 112px;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05) brightness(0.9);
  border: 1px solid rgba(47, 215, 255, 0.18);
  border-radius: 17px;
}

.service-suite .service-track .service-icon {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 15px;
}

.service-suite .service-track .service-number {
  top: 18px;
  right: 20px;
  color: rgba(222, 243, 255, 0.24);
}

.service-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 8px 8px 0;
}

.service-suite .service-track em {
  margin-bottom: 8px;
}

.service-suite .service-track strong {
  font-size: 1.12rem;
}

.service-suite .service-track small {
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-suite .service-track .service-deliverable {
  padding-top: 10px;
  margin-top: 12px;
}

.service-suite .service-track .service-points {
  grid-template-columns: 1fr;
  margin-top: 12px;
  font-size: 0.84rem;
}

.service-suite .service-track .service-link {
  grid-column: 2;
  padding: 0 8px 8px 0;
  margin-top: 0;
}

@media (min-width: 980px) {
  .service-board {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.45fr);
    gap: 22px;
  }

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

  .service-suite .service-track {
    grid-column: auto;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .service-suite .service-track:nth-child(1),
  .service-suite .service-track:nth-child(2) {
    grid-column: auto;
  }

  .service-thumb {
    grid-row: 1 / span 2;
    width: 96px;
    min-height: 100%;
  }

  .service-command-card {
    min-height: 850px;
  }
}

@media (min-width: 1280px) {
  .service-board {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.48fr);
  }

  .service-suite .service-track {
    min-height: 252px;
  }
}

@media (max-width: 759px) {
  .service-suite .service-hero {
    margin-bottom: 18px;
  }

  .service-stack-art {
    min-height: 300px;
  }

  .stack-pill-a,
  .stack-pill-b,
  .stack-pill-c,
  .stack-pill-d,
  .stack-pill-e,
  .stack-pill-f {
    font-size: 0.7rem;
  }
}

@media (max-width: 619px) {
  .service-suite {
    padding-top: 66px;
    padding-bottom: 68px;
  }

  .service-command-card {
    padding: 22px;
    border-radius: 22px;
  }

  .service-command-card h3 {
    font-size: 1.32rem;
  }

  .service-stack-art {
    min-height: 278px;
    margin-bottom: 16px;
  }

  .service-stack-art::before {
    width: 188px;
    height: 188px;
  }

  .service-stack-art::after {
    width: 240px;
    height: 240px;
  }

  .stack-core {
    width: 100px;
    height: 100px;
    border-radius: 24px;
  }

  .stack-pill {
    min-height: 30px;
    padding: 6px 9px;
  }

  .stack-pill-a {
    top: 34px;
    left: 14px;
  }

  .stack-pill-b {
    top: 34px;
    right: 12px;
  }

  .stack-pill-c {
    right: 4px;
  }

  .stack-pill-d {
    right: 12px;
    bottom: 42px;
  }

  .stack-pill-e {
    bottom: 36px;
    left: 12px;
  }

  .stack-pill-f {
    left: 6px;
  }

  .service-suite .service-signal {
    grid-template-columns: 1fr;
  }

  .service-suite .service-track {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px;
  }

  .service-thumb {
    width: 100%;
    height: 150px;
    min-height: 150px;
  }

  .service-card-copy {
    padding: 2px 4px 0;
  }

  .service-suite .service-track .service-icon {
    top: 26px;
    left: 26px;
  }

  .service-suite .service-track .service-link {
    grid-column: 1;
    padding: 0 4px 6px;
  }
}

/* Icon and card QA polish */
.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  overflow: visible;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
  filter:
    drop-shadow(0 0 6px rgba(32, 216, 255, 0.34))
    drop-shadow(0 0 14px rgba(50, 240, 199, 0.12));
}

.button .button-icon {
  width: 1.05rem;
  height: 1.05rem;
  margin-left: 6px;
  stroke-width: 3.2;
}

.benefit-strip article span .icon {
  width: 17px;
  height: 17px;
}

.service-suite .service-track {
  border-color: rgba(47, 215, 255, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-suite .service-track:hover {
  transform: translateY(-3px);
  border-color: rgba(50, 240, 199, 0.58);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(32, 216, 255, 0.16),
    inset 0 0 42px rgba(50, 240, 199, 0.045);
}

.service-suite .service-track .service-icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.7;
  filter:
    drop-shadow(0 0 8px rgba(32, 216, 255, 0.4))
    drop-shadow(0 0 18px rgba(50, 240, 199, 0.16));
}

.service-suite .service-track .service-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  color: #9ff8f2;
  text-decoration: none;
}

.service-suite .service-track .service-link:hover,
.service-suite .service-track .service-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.service-suite .service-track .service-link i .icon {
  width: 16px;
  height: 16px;
  stroke-width: 3.2;
  filter: none;
}

.pain-node-head span .icon {
  width: 22px;
  height: 22px;
  color: #00121d;
  filter: none;
}

.pain-node strong {
  gap: 8px;
}

.pain-node strong .icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #32f0c7;
  stroke-width: 3;
}

.lab-roadmap span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lab-roadmap span .icon {
  width: 16px;
  height: 16px;
  color: #32f0c7;
}

.lab-mini-cards {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.lab-mini-cards span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: #dff9ff;
  font-size: 0.84rem;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(32, 216, 255, 0.11), rgba(50, 240, 199, 0.055)),
    rgba(2, 12, 25, 0.68);
  border: 1px solid rgba(47, 215, 255, 0.2);
  border-radius: 13px;
}

.lab-mini-cards .icon {
  width: 18px;
  height: 18px;
  color: #32f0c7;
}

.search-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.search-bar span .icon {
  width: 17px;
  height: 17px;
  color: #32f0c7;
}

.seo-card span .icon {
  width: 24px;
  height: 24px;
  color: #00121d;
  filter: none;
}

.cta-orb .icon {
  width: 42px;
  height: 42px;
  color: #00121d;
  filter: none;
}

.cta-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-badges span .icon {
  width: 17px;
  height: 17px;
  color: #32f0c7;
}

@media (min-width: 620px) {
  .lab-mini-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 619px) {
  .service-suite .service-track .service-icon .icon {
    width: 25px;
    height: 25px;
  }

  .cta-orb .icon {
    width: 34px;
    height: 34px;
  }
}

/* Services icon-led card refinement */
.service-suite .service-track {
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 310px;
  padding: 24px;
}

.service-suite .service-track .service-icon {
  position: relative;
  top: auto;
  left: auto;
  grid-row: 1 / span 2;
  align-self: start;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 19px;
}

.service-suite .service-track .service-icon .icon {
  width: 32px;
  height: 32px;
}

.service-suite .service-track .service-number {
  top: 24px;
  right: 24px;
}

.service-card-copy {
  padding: 0 4px 0 0;
}

.service-suite .service-track .service-link {
  grid-column: 2;
  min-height: 38px;
  align-self: end;
  padding: 8px 10px 8px 0;
}

@media (min-width: 980px) {
  .service-suite .service-track {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 326px;
  }

  .service-suite .service-track:nth-child(1),
  .service-suite .service-track:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 619px) {
  .service-suite .service-track {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .service-suite .service-track .service-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .service-suite .service-track .service-link {
    grid-column: 1 / -1;
    padding: 4px 0 0;
  }
}

/* SME-001 hard visual redesign */
.mobile-preview-panel {
  width: 100%;
  max-width: none;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(100% - 48px, 1320px);
}

.hero {
  padding: 48px 0 54px;
}

.hero-stage {
  align-items: center;
  gap: 32px 54px;
}

.hero-copy {
  padding-top: 8px;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: 1.01;
}

.hero-lead {
  max-width: 690px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  min-height: 380px;
  aspect-ratio: 1.42;
  border-radius: 22px;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.55),
    0 0 72px rgba(32, 216, 255, 0.22);
}

.benefit-strip {
  gap: 14px;
  margin-top: 12px;
}

.benefit-strip article {
  min-height: 104px;
  padding: 17px 14px;
  border-radius: 18px;
}

.benefit-strip article span {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  border-radius: 13px;
}

.benefit-strip article span .icon {
  width: 21px;
  height: 21px;
}

.benefit-strip strong {
  font-size: 1.05rem;
}

.section {
  padding: 76px 0;
}

.portfolio-section {
  padding-top: 84px;
  padding-bottom: 92px;
}

.portfolio-section::after {
  inset: 42px -28px 36px;
  border-color: rgba(47, 215, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 216, 255, 0.18), transparent 33%),
    radial-gradient(circle at 82% 20%, rgba(129, 107, 255, 0.13), transparent 31%),
    linear-gradient(135deg, rgba(4, 24, 43, 0.5), rgba(3, 11, 24, 0.2) 62%, rgba(4, 34, 38, 0.36));
}

.portfolio-section .section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.filter-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
}

.filter-chip {
  min-height: 42px;
  padding: 9px 16px;
}

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

.project-card {
  min-height: 420px;
  border-radius: 22px;
}

.project-card img {
  min-height: 420px;
}

.project-caption {
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.project-caption span {
  min-height: 30px;
  padding: 6px 10px;
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.project-caption h3 {
  margin-bottom: 7px;
  color: #f7fcff;
  font-size: 1.24rem;
  line-height: 1.28;
}

.project-caption p {
  max-width: 100%;
  min-height: 3.1em;
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-caption a {
  min-height: 34px;
  margin-top: 10px;
  padding: 7px 12px;
  border-color: rgba(50, 240, 199, 0.32);
}

.gallery-cta {
  width: min(100%, 420px);
  margin-top: 28px;
  margin-right: auto;
  margin-left: auto;
}

.service-suite {
  padding-top: 88px;
  padding-bottom: 88px;
}

.service-suite .service-hero {
  max-width: 920px;
  margin-bottom: 30px;
}

.service-package-board {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.service-feature-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  padding: 34px;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(7, 28, 48, 0.97), rgba(2, 10, 22, 0.92) 58%, rgba(4, 38, 40, 0.9)),
    radial-gradient(circle at 85% 12%, rgba(32, 216, 255, 0.22), transparent 28%),
    radial-gradient(circle at 15% 88%, rgba(50, 240, 199, 0.15), transparent 32%);
  border: 1px solid rgba(47, 215, 255, 0.36);
  border-radius: 28px;
  box-shadow:
    0 34px 105px rgba(0, 0, 0, 0.48),
    inset 0 0 52px rgba(32, 216, 255, 0.05);
}

.service-feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), rgba(50, 240, 199, 0.42), transparent 76%);
}

.service-feature-card .service-icon,
.service-suite .service-track > .service-icon {
  display: grid;
  place-items: center;
  color: var(--teal);
  background:
    linear-gradient(145deg, rgba(32, 216, 255, 0.16), rgba(50, 240, 199, 0.07)),
    rgba(3, 18, 34, 0.72);
  border: 1px solid rgba(47, 215, 255, 0.34);
  box-shadow:
    0 0 34px rgba(32, 216, 255, 0.2),
    inset 0 0 24px rgba(50, 240, 199, 0.06);
}

.service-feature-card .service-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border-radius: 24px;
}

.service-feature-card .service-icon .icon {
  width: 44px;
  height: 44px;
}

.service-feature-card h3 {
  margin-bottom: 14px;
  color: #f7fcff;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
}

.service-feature-card > p:not(.eyebrow) {
  max-width: 34rem;
  color: #d3e5f1;
  font-size: 1.03rem;
  line-height: 1.72;
}

.service-feature-card .service-points,
.service-suite .service-track .service-points {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-feature-card .service-points li,
.service-suite .service-track .service-points li {
  position: relative;
  padding-left: 22px;
  color: #dff7ff;
  font-weight: 800;
  line-height: 1.45;
}

.service-feature-card .service-points li::before,
.service-suite .service-track .service-points li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(50, 240, 199, 0.68);
}

.service-feature-card .service-stack-art {
  min-height: 245px;
  margin: 28px 0 22px;
}

.service-feature-card .stack-pill-a {
  top: 35px;
  left: 30px;
}

.service-feature-card .stack-pill-b {
  top: 36px;
  right: 30px;
}

.service-feature-card .stack-pill-c {
  top: 49%;
  right: 18px;
}

.service-feature-card .stack-pill-d {
  bottom: 40px;
  left: 32px;
}

.service-feature-card .service-link,
.service-suite .service-track .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: #a7fff4;
  font-weight: 900;
}

.service-suite .service-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-suite .service-track {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 282px;
  padding: 26px;
  align-content: start;
  gap: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(6, 24, 45, 0.96), rgba(2, 10, 22, 0.92) 60%, rgba(5, 31, 42, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(32, 216, 255, 0.16), transparent 42%);
}

.service-suite .service-track > .service-icon {
  position: relative;
  top: auto;
  left: auto;
  grid-row: 1 / span 2;
  width: 68px;
  min-width: 68px;
  height: 68px;
  margin: 0;
  align-self: start;
  border-radius: 20px;
}

.service-suite .service-track > .service-icon .icon {
  width: 34px;
  height: 34px;
}

.service-suite .service-track .service-number {
  top: 24px;
  right: 24px;
  color: rgba(224, 245, 255, 0.24);
  font-size: 0.85rem;
}

.service-card-copy {
  grid-column: 2;
  padding: 0 8px 0 0;
}

.service-suite .service-track strong {
  color: #f7fcff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.service-suite .service-track small {
  margin-top: 8px;
  color: #c8dce9;
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-suite .service-track .service-link {
  grid-column: 2;
  align-self: end;
  padding: 0;
}

.service-suite .service-track:hover,
.service-feature-card:hover {
  border-color: rgba(50, 240, 199, 0.58);
  box-shadow:
    0 34px 105px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(32, 216, 255, 0.17),
    inset 0 0 48px rgba(50, 240, 199, 0.045);
}

.pain-section {
  padding-top: 90px;
  padding-bottom: 92px;
}

.pain-section .section-heading {
  max-width: 940px;
}

.pain-map {
  gap: 22px;
}

.pain-core {
  min-height: 100%;
  border-radius: 28px;
}

.pain-node {
  display: grid;
  min-height: 250px;
  padding: 26px;
  align-content: space-between;
  gap: 22px;
  border-radius: 24px;
}

.pain-problem {
  min-width: 0;
}

.pain-node-head {
  margin-bottom: 14px;
}

.pain-node h3 {
  margin-bottom: 8px;
  color: #f7fcff;
  font-size: 1.35rem;
}

.pain-node p {
  max-width: 34rem;
  color: #bfd4e4;
  font-size: 0.98rem;
  line-height: 1.62;
}

.pain-node strong {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 15px 17px;
  color: #eaffff;
  font-size: 1.04rem;
  line-height: 1.42;
  background:
    linear-gradient(135deg, rgba(50, 240, 199, 0.18), rgba(32, 216, 255, 0.08)),
    rgba(2, 18, 28, 0.82);
  border: 1px solid rgba(50, 240, 199, 0.28);
  border-radius: 17px;
  box-shadow: inset 0 0 24px rgba(50, 240, 199, 0.045);
}

.pain-node strong .icon {
  width: 22px;
  height: 22px;
}

.lab-panel {
  padding: 44px;
  gap: 36px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 30, 52, 0.97), rgba(2, 9, 20, 0.92) 54%, rgba(4, 42, 44, 0.88)),
    linear-gradient(90deg, rgba(32, 216, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(32, 216, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  border-color: rgba(47, 215, 255, 0.38);
}

.lab-copy h2 {
  max-width: 660px;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
}

.lab-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #d2e4ef;
  font-size: 1.03rem;
}

.lab-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
}

.lab-stats span {
  min-height: 96px;
  padding: 18px;
}

.lab-window {
  padding: 16px;
  border-radius: 24px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
}

.lab-stack {
  gap: 12px;
}

.lab-stack article,
.lab-stack img {
  min-height: 178px;
  border-radius: 18px;
}

.lab-roadmap,
.lab-mini-cards {
  margin-top: 14px;
}

.lab-mini-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  grid-template-columns: 1.35fr auto auto;
  align-items: start;
  gap: 32px;
  padding: 42px 0 48px;
}

.site-footer > small {
  grid-column: 1 / -1;
}

.footer-brand strong {
  font-size: 1.18rem;
}

.footer-brand span {
  max-width: 620px;
}

@media (min-width: 980px) {
  .hero-stage {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  }

  .benefit-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-package-board {
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.45fr);
  }

  .service-suite .service-track:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 236px;
  }

  .pain-map {
    grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .pain-core {
    grid-row: 1 / span 2;
    grid-column: 1;
  }

  .pain-node:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .pain-node:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .pain-node:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .pain-node:nth-of-type(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .lab-panel {
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.08fr);
    align-items: center;
  }

  .panel-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

@media (min-width: 1280px) {
  .project-card,
  .project-card img {
    min-height: 450px;
  }

  .service-feature-card {
    min-height: 664px;
  }

  .service-suite .service-track {
    min-height: 304px;
  }
}

@media (max-width: 979px) {
  .hero-actions,
  .panel-actions {
    grid-template-columns: 1fr;
  }

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

  .service-suite .service-track-grid {
    grid-template-columns: 1fr;
  }

  .service-suite .service-track:nth-child(5) {
    grid-column: auto;
  }

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

  .lab-window {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1320px);
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-visual img {
    min-height: 260px;
    border-radius: 18px;
  }

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

  .benefit-strip article:nth-child(5) {
    grid-column: 1 / -1;
  }

  .section {
    padding: 58px 0;
  }

  .portfolio-section {
    padding-top: 64px;
    padding-bottom: 66px;
  }

  .filter-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-card,
  .project-card img {
    min-height: 328px;
  }

  .project-caption p {
    min-height: 0;
  }

  .service-suite {
    padding-top: 60px;
    padding-bottom: 62px;
  }

  .service-feature-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .service-feature-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .service-feature-card .service-icon .icon {
    width: 34px;
    height: 34px;
  }

  .service-feature-card .service-stack-art {
    min-height: 260px;
  }

  .service-suite .service-track {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
    gap: 14px;
  }

  .service-suite .service-track > .service-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .service-suite .service-track > .service-icon .icon {
    width: 28px;
    height: 28px;
  }

  .service-suite .service-track strong {
    font-size: 1.12rem;
  }

  .service-card-copy,
  .service-suite .service-track .service-link {
    grid-column: 1 / -1;
  }

  .pain-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pain-core {
    min-height: 300px;
  }

  .pain-node {
    min-height: 0;
    padding: 22px;
  }

  .pain-node h3 {
    font-size: 1.18rem;
  }

  .pain-node strong {
    font-size: 0.96rem;
  }

  .lab-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .lab-stats,
  .lab-mini-cards {
    grid-template-columns: 1fr;
  }

  .lab-stack article,
  .lab-stack img {
    min-height: 132px;
  }
}

/* Gallery card composition hardening */
.project-grid {
  align-items: stretch;
}

.project-card {
  display: grid;
  grid-template-rows: 266px 1fr;
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(7, 24, 44, 0.96), rgba(2, 9, 20, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(32, 216, 255, 0.1), transparent 38%);
}

.project-card::after {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-caption {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 176px;
  padding: 18px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(2, 10, 22, 0.92), rgba(2, 8, 18, 0.98)),
    radial-gradient(circle at 0% 100%, rgba(32, 216, 255, 0.13), transparent 44%);
  border-top: 1px solid rgba(47, 215, 255, 0.2);
}

.project-caption h3 {
  font-size: 1.18rem;
}

.project-caption p {
  min-height: 0;
  margin-bottom: 12px;
}

.project-caption a {
  width: fit-content;
  margin-top: auto;
}

@media (min-width: 1280px) {
  .project-card {
    grid-template-rows: 286px 1fr;
  }

  .project-card,
  .project-card img {
    min-height: 0;
  }
}

@media (max-width: 979px) {
  .project-card {
    grid-template-rows: 250px 1fr;
  }
}

@media (max-width: 720px) {
  .project-card {
    grid-template-rows: 218px 1fr;
  }

  .project-caption {
    min-height: 154px;
    padding: 16px;
  }
}

/* SME-001 visual polish correction */
.portfolio-section .section-heading h2,
.service-suite .section-heading h2,
.lab-copy h2 {
  text-wrap: balance;
}

.project-card {
  grid-template-rows: 292px 1fr;
  background:
    linear-gradient(180deg, rgba(7, 30, 52, 0.98), rgba(3, 12, 25, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(32, 216, 255, 0.14), transparent 42%);
  border-color: rgba(73, 213, 255, 0.38);
  box-shadow:
    0 26px 84px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card::before {
  opacity: 0.96;
}

.project-card img {
  filter: saturate(1.16) contrast(1.08) brightness(1.08);
  background: #041323;
}

.project-caption {
  min-height: 188px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(7, 25, 45, 0.98), rgba(2, 10, 21, 0.99)),
    radial-gradient(circle at 12% 100%, rgba(50, 240, 199, 0.13), transparent 44%);
  border-top-color: rgba(73, 213, 255, 0.3);
}

.project-caption span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: #dffff9;
  background: rgba(9, 35, 58, 0.9);
  border-color: rgba(50, 240, 199, 0.36);
}

.project-caption span .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
  stroke-width: 3;
}

.project-caption h3 {
  margin-top: 2px;
  font-size: 1.28rem;
}

.project-caption p {
  color: #d9eafa;
  font-size: 0.98rem;
}

.project-caption a {
  min-height: 38px;
  padding: 8px 14px;
  color: #00121d;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border: 0;
  box-shadow: 0 12px 30px rgba(32, 216, 255, 0.24);
}

.service-package-board {
  align-items: start;
}

.service-feature-card {
  min-height: 0;
  background:
    linear-gradient(150deg, rgba(9, 36, 60, 0.98), rgba(3, 13, 27, 0.96) 58%, rgba(5, 42, 43, 0.9)),
    radial-gradient(circle at 82% 16%, rgba(32, 216, 255, 0.18), transparent 26%);
}

.service-feature-card .eyebrow {
  margin-bottom: 14px;
}

.service-feature-card > p:not(.eyebrow) {
  color: #dcecf6;
}

.service-feature-card .service-stack-art {
  display: none;
}

.service-feature-card .service-link {
  margin-top: 26px;
}

.service-suite .service-track {
  min-height: 270px;
  background:
    linear-gradient(150deg, rgba(8, 31, 54, 0.98), rgba(3, 13, 28, 0.96) 58%, rgba(5, 36, 42, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(32, 216, 255, 0.13), transparent 42%);
  border-color: rgba(73, 213, 255, 0.32);
}

.service-suite .service-track strong {
  font-size: 1.28rem;
}

.service-suite .service-track small {
  color: #d5e8f3;
}

.service-suite .service-track .service-link {
  width: fit-content;
  min-height: 36px;
  padding: 6px 10px 6px 0;
}

.service-suite .service-track .service-icon,
.service-feature-card .service-icon {
  color: #cffff7;
}

.lab-panel {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(10, 39, 63, 0.98), rgba(3, 12, 27, 0.95) 52%, rgba(5, 45, 44, 0.92)),
    radial-gradient(circle at 86% 12%, rgba(32, 216, 255, 0.18), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(50, 240, 199, 0.14), transparent 34%);
}

.lab-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lab-trust-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #dff8ff;
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(8, 34, 56, 0.72);
  border: 1px solid rgba(47, 215, 255, 0.22);
  border-radius: 999px;
}

.lab-trust-row .icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.lab-panel .button-primary {
  box-shadow:
    0 18px 48px rgba(32, 216, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

/* SME-001 copy/mockup/icon polish */
.service-suite .service-hero {
  align-items: end;
}

.service-suite .service-signal {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 420px);
  justify-self: end;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(8, 31, 54, 0.92), rgba(2, 10, 22, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(32, 216, 255, 0.18), transparent 36%);
  border: 1px solid rgba(73, 213, 255, 0.28);
  border-radius: 24px;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-suite .service-signal span {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 10px 12px;
  text-align: left;
  background: rgba(3, 17, 32, 0.72);
  border: 1px solid rgba(47, 215, 255, 0.18);
  border-radius: 18px;
}

.service-suite .service-signal strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #dffff8;
  background:
    linear-gradient(145deg, rgba(32, 216, 255, 0.22), rgba(50, 240, 199, 0.08)),
    rgba(3, 18, 34, 0.88);
  border: 1px solid rgba(50, 240, 199, 0.32);
  border-radius: 16px;
  box-shadow:
    0 0 26px rgba(32, 216, 255, 0.18),
    inset 0 0 18px rgba(50, 240, 199, 0.08);
}

.service-suite .service-signal .icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
  stroke-width: 3;
}

.service-suite .service-signal small {
  color: #dff4ff;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.42;
}

@media (min-width: 1280px) {
  .project-card {
    grid-template-rows: 304px 1fr;
  }
}

@media (max-width: 979px) {
  .service-suite .service-signal {
    width: 100%;
    justify-self: stretch;
  }

  .project-card {
    grid-template-rows: 260px 1fr;
  }
}

@media (max-width: 720px) {
  .service-suite .service-signal {
    padding: 12px;
  }

  .service-suite .service-signal span {
    min-height: 56px;
  }

  .project-card {
    grid-template-rows: 220px 1fr;
  }

  .project-caption {
    min-height: 160px;
  }

  .service-suite .service-track {
    min-height: 0;
  }

  .lab-trust-row {
    display: grid;
  }
}

/* Reference target redesign */
:root {
  --font-thai: "Noto Sans Thai", "Inter", "Segoe UI", Tahoma, sans-serif;
  --font-latin: "Inter", "Noto Sans Thai", system-ui, sans-serif;
  --target-bg: #020914;
  --target-panel: rgba(4, 18, 32, 0.82);
  --target-panel-2: rgba(6, 24, 42, 0.72);
  --target-line: rgba(72, 214, 255, 0.22);
  --target-line-strong: rgba(72, 214, 255, 0.48);
  --target-text: #f5fbff;
  --target-soft: #a8c2cf;
  --target-cyan: #23dfff;
  --target-teal: #18f3d4;
  --target-radius: 16px;
  --target-max: 1300px;
}

body {
  color: var(--target-text);
  font-family: var(--font-thai);
  background:
    radial-gradient(circle at 14% 9%, rgba(0, 200, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 24%, rgba(0, 118, 255, 0.17), transparent 30rem),
    linear-gradient(180deg, #020914 0%, #06131f 48%, #020914 100%);
}

body::before {
  background-size: 48px 48px;
  opacity: 0.8;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(100% - 64px, var(--target-max));
}

.site-header {
  min-height: 72px;
  padding: 12px 0;
}

.site-header::before {
  height: 72px;
  background: rgba(2, 9, 20, 0.82);
  border-bottom-color: rgba(72, 214, 255, 0.12);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.brand-text strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand-text small {
  margin-top: 3px;
  color: #b7c9d5;
  font-family: var(--font-latin);
  font-size: 12px;
}

.site-nav {
  min-height: 46px;
  padding: 0 14px;
  gap: 18px;
  background: rgba(3, 12, 24, 0.42);
  border: 1px solid rgba(72, 214, 255, 0.12);
  border-radius: 999px;
}

.site-nav a {
  position: relative;
  padding: 14px 8px;
  color: #e7f6ff;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:first-child::after {
  position: absolute;
  right: 8px;
  bottom: 6px;
  left: 8px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--target-cyan), var(--target-teal));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(35, 223, 255, 0.55);
}

.hero {
  padding: 42px 0 0;
}

.hero-device {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 34px;
  align-items: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-stage::before {
  display: none;
}

.hero-copy {
  max-width: 520px;
  padding-top: 10px;
}

.hero-pill {
  display: none;
}

.hero h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-thai);
  font-size: clamp(3.25rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}

.hero h1 span {
  color: var(--target-cyan);
  text-shadow: 0 0 28px rgba(35, 223, 255, 0.46);
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 26px;
  color: #c5d4de;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 850;
}

.button-primary {
  color: #00131d;
  background: linear-gradient(135deg, #26dcff, #18f3d4);
  box-shadow: 0 18px 42px rgba(0, 206, 255, 0.2);
}

.button-outline {
  background: rgba(5, 21, 36, 0.62);
  border-color: rgba(88, 220, 255, 0.38);
}

.hero-visual {
  min-height: 430px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual::before,
.hero-visual::after,
.system-orbit {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
  filter: saturate(1.17) contrast(1.08) drop-shadow(0 0 42px rgba(0, 153, 255, 0.26));
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.benefit-strip article {
  min-height: 148px;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(7, 31, 49, 0.76), rgba(3, 16, 28, 0.74));
  border: 1px solid rgba(72, 214, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.benefit-strip article span {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.benefit-strip article span .icon {
  width: 38px;
  height: 38px;
  color: var(--target-cyan);
  filter: drop-shadow(0 0 12px rgba(35, 223, 255, 0.62));
}

.benefit-strip strong {
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.18;
}

.benefit-strip small {
  color: #c6d8e3;
  font-size: 0.98rem;
  line-height: 1.42;
}

.section {
  padding: 42px 0;
}

.portfolio-section {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.portfolio-section::after {
  display: none;
}

.portfolio-section .section-heading {
  margin-bottom: 20px;
}

.eyebrow {
  min-height: 31px;
  padding: 5px 16px;
  color: var(--target-teal);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 800;
  background: rgba(14, 244, 220, 0.09);
  border: 1px solid rgba(72, 214, 255, 0.22);
  border-radius: 999px;
}

.section-heading h2,
.lab-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
}

.section-heading.center p:not(.eyebrow) {
  max-width: 720px;
  color: #a9bdcb;
  font-size: 15px;
}

.filter-row {
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  min-height: 34px;
  padding: 0 16px;
  color: #d8e8f2;
  font-size: 13px;
  font-weight: 800;
  background: rgba(4, 22, 37, 0.72);
  border: 1px solid rgba(150, 225, 255, 0.2);
  border-radius: 999px;
}

.filter-chip.is-active {
  color: #02131b;
  background: linear-gradient(135deg, #25dfff, #18f3d4);
  border-color: transparent;
}

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

.project-card {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: rgba(3, 15, 27, 0.92);
  border: 1px solid rgba(39, 211, 255, 0.26);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: none;
}

.project-card::before,
.project-card::after {
  display: none;
}

.project-card img {
  width: 100%;
  height: 170px;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(1.16) contrast(1.08);
}

.project-caption {
  min-height: 126px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(5, 22, 39, 0.95), rgba(2, 12, 23, 0.98));
  border-top: 1px solid rgba(72, 214, 255, 0.16);
}

.project-caption span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  color: #7efcf0;
  font-size: 11px;
  font-weight: 850;
  background: rgba(21, 245, 209, 0.1);
  border: 1px solid rgba(21, 245, 209, 0.25);
  border-radius: 999px;
}

.project-caption span .icon {
  width: 14px;
  height: 14px;
}

.project-caption h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.project-caption p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #a8c2cf;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-caption a {
  display: none;
}

.project-card:hover {
  border-color: rgba(34, 230, 255, 0.55);
  box-shadow: 0 24px 70px rgba(0, 200, 255, 0.13);
  transform: translateY(-4px);
}

.gallery-cta {
  width: fit-content;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 8px;
}

.categories-section {
  padding-top: 18px;
  padding-bottom: 30px;
}

.category-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(35, 223, 255, 0.13), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(24, 243, 212, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(5, 23, 39, 0.88), rgba(2, 12, 23, 0.82));
  border: 1px solid rgba(72, 214, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.category-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background-image: radial-gradient(rgba(105, 228, 255, 0.26) 1px, transparent 1px);
  background-size: 9px 9px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 66%);
}

.category-panel h2,
.category-grid {
  position: relative;
  z-index: 1;
}

.category-panel h2 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 900;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.category-grid article {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 116px;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(72, 214, 255, 0.12);
}

.category-grid article:last-child {
  border-right: 0;
}

.category-grid .icon {
  width: 42px;
  height: 42px;
  color: var(--target-cyan);
  filter: drop-shadow(0 0 14px rgba(35, 223, 255, 0.56));
}

.category-grid strong {
  color: #eaf8ff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.lab-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: 32px;
  align-items: center;
  margin-top: 4px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(6, 24, 42, 0.94), rgba(2, 12, 24, 0.9)),
    radial-gradient(circle at 86% 18%, rgba(35, 223, 255, 0.16), transparent 34%);
  border: 1px solid rgba(72, 214, 255, 0.28);
  border-radius: 22px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

.lab-copy h2 {
  margin-bottom: 14px;
}

.lab-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: #b3c7d5;
  font-size: 15px;
}

.lab-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 20px;
}

.lab-stats span {
  padding: 0;
  background: transparent;
  border: 0;
}

.lab-stats strong {
  color: var(--target-cyan);
  font-size: 2.3rem;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(35, 223, 255, 0.38);
}

.lab-stats small {
  color: #9fb4c4;
  font-size: 13px;
}

.lab-window {
  padding: 18px;
  background: rgba(3, 14, 26, 0.78);
  border: 1px solid rgba(72, 214, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(35, 223, 255, 0.08), 0 0 48px rgba(35, 223, 255, 0.22);
  transform: none;
}

.lab-window-top {
  height: 34px;
  margin-bottom: 12px;
}

.lab-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lab-stack article,
.lab-stack img {
  min-height: 0;
  border-radius: 10px;
}

.lab-stack img {
  height: 98px;
}

.lab-roadmap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.lab-roadmap::before {
  content: "";
}

.lab-mini-cards {
  margin-top: 14px;
}

.lab-trust-row {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(120px, 0.65fr) minmax(160px, 0.75fr) minmax(300px, 1.55fr);
  gap: 30px;
  padding: 32px 0 24px;
  margin-top: 28px;
  background: transparent;
  border-top: 1px solid rgba(80, 205, 255, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.site-footer::before {
  display: none;
}

.footer-column {
  min-width: 0;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo span:last-child {
  display: grid;
}

.footer-logo strong,
.footer-column > strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.footer-logo small {
  color: #9fb3c2;
  font-family: var(--font-latin);
  font-size: 12px;
}

.footer-brand p,
.footer-contact p,
.footer-contact span,
.footer-links a {
  color: #9fb3c2;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 4px;
  color: #7892a5;
  border-top: 1px solid rgba(80, 205, 255, 0.1);
}

.footer-bottom small,
.footer-bottom span {
  color: #7892a5;
  font-size: 12px;
}

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

  .hero-copy {
    max-width: 720px;
  }

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

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

  .category-grid article:nth-child(3n) {
    border-right: 0;
  }

  .lab-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--target-max));
  }

  .site-nav {
    min-height: 0;
    padding: 18px 24px;
    border-radius: 0 0 18px 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .benefit-strip article:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .project-card img {
    height: 220px;
  }

  .filter-row {
    justify-content: flex-start;
    padding-bottom: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .category-panel {
    padding: 24px 16px;
  }

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

  .category-grid article,
  .category-grid article:nth-child(3n) {
    border-right: 0;
  }

  .lab-panel {
    padding: 24px 16px;
  }

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

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

  .lab-roadmap,
  .lab-mini-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }
}

/* Reference target lock v2 */
:root {
  --font-thai: "Noto Sans Thai", "Inter", "Segoe UI", Tahoma, sans-serif;
  --font-latin: "Inter", "Noto Sans Thai", system-ui, sans-serif;
  --ref-bg: #020914;
  --ref-navy: #061522;
  --ref-panel: rgba(4, 20, 35, 0.78);
  --ref-panel-strong: rgba(5, 22, 38, 0.92);
  --ref-line: rgba(72, 214, 255, 0.24);
  --ref-line-strong: rgba(50, 232, 255, 0.48);
  --ref-cyan: #22e6ff;
  --ref-teal: #15f5d1;
  --ref-text: #f6fbff;
  --ref-soft: #b7cfda;
  --ref-muted: #7f98a9;
  --ref-max: 1280px;
}

html {
  scroll-padding-top: 92px;
}

body {
  color: var(--ref-text);
  font-family: var(--font-thai);
  background:
    radial-gradient(circle at 10% 8%, rgba(24, 222, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 22%, rgba(45, 125, 255, 0.17), transparent 32rem),
    radial-gradient(circle at 50% 55%, rgba(21, 245, 209, 0.07), transparent 42rem),
    linear-gradient(180deg, #020914 0%, #031321 48%, #020914 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(64, 202, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 202, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 1;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent 26%, transparent 74%, rgba(45, 125, 255, 0.09)),
    linear-gradient(180deg, transparent 0, rgba(9, 53, 72, 0.3) 47%, transparent 100%);
}

.mobile-preview-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mobile-preview-panel::before,
.mobile-preview-panel::after,
.hero-device::before,
.hero-device::after,
.portfolio-section::after {
  display: none;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(100% - 64px, var(--ref-max));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 72px;
  padding: 12px 0;
  background: transparent;
  border: 0;
}

.site-header::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 72px;
  content: "";
  background: rgba(2, 9, 20, 0.84);
  border-bottom: 1px solid rgba(80, 205, 255, 0.13);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #19f1ff 0%, #107dff 100%);
  box-shadow: 0 0 28px rgba(34, 230, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.brand-text strong {
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.05;
}

.brand-text small {
  margin-top: 3px;
  color: #a9bdcc;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-nav a {
  position: relative;
  padding: 13px 0;
  color: #dbe9f2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav a:first-child::after {
  right: 50%;
  bottom: 3px;
  left: auto;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--ref-cyan), var(--ref-teal));
  border-radius: 999px;
  transform: translateX(50%);
  box-shadow: 0 0 18px rgba(34, 230, 255, 0.7);
}

.hero {
  padding: 42px 0 24px;
}

.hero-device {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-copy {
  max-width: 540px;
  padding-top: 2px;
}

.hero-pill {
  display: none;
}

.hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--font-thai);
  font-size: clamp(50px, 4.9vw, 72px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}

.hero h1 span {
  color: var(--ref-cyan);
  background: linear-gradient(90deg, var(--ref-cyan), var(--ref-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 28px;
  color: #c0d4df;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.button-primary {
  color: #02111d;
  background: linear-gradient(135deg, #24e9ff 0%, #14dcc6 100%);
  border: 1px solid rgba(114, 255, 247, 0.5);
  box-shadow: 0 0 30px rgba(34, 230, 255, 0.32);
}

.button-outline {
  color: #e8f7ff;
  background: rgba(5, 22, 36, 0.76);
  border: 1px solid rgba(180, 238, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual::before {
  position: absolute;
  inset: 6% 4% 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(35, 223, 255, 0.28), transparent 58%);
  filter: blur(22px);
}

.hero-visual img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(1.14) contrast(1.05) brightness(1.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.system-orbit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.system-orbit span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  background: rgba(4, 22, 37, 0.86);
  border: 1px solid rgba(50, 232, 255, 0.44);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(34, 230, 255, 0.2);
}

.system-orbit span:nth-child(1) {
  top: 11%;
  left: 23%;
}

.system-orbit span:nth-child(2) {
  top: 12%;
  right: 8%;
}

.system-orbit span:nth-child(3) {
  top: 40%;
  right: 1%;
}

.system-orbit span:nth-child(4) {
  top: 33%;
  left: 2%;
}

.system-orbit span:nth-child(5) {
  bottom: 18%;
  left: 26%;
}

.system-orbit span:nth-child(6) {
  right: 16%;
  bottom: 16%;
}

.benefit-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.benefit-strip article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 20px 16px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 223, 255, 0.16), transparent 50%),
    rgba(5, 24, 39, 0.76);
  border: 1px solid rgba(72, 214, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefit-strip article::before {
  opacity: 0.55;
}

.benefit-strip article span {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: var(--ref-cyan);
  background: rgba(34, 230, 255, 0.08);
  border: 1px solid rgba(34, 230, 255, 0.22);
  border-radius: 12px;
}

.benefit-strip article span .icon {
  width: 26px;
  height: 26px;
}

.benefit-strip strong {
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
}

.benefit-strip small {
  max-width: 130px;
  color: #bad0dc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
}

.portfolio-section {
  position: relative;
  margin-top: 30px;
  padding: 42px 30px 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 7%, rgba(21, 245, 209, 0.1), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(45, 125, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 31, 49, 0.76), rgba(3, 16, 28, 0.72));
  border: 1px solid rgba(66, 213, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.portfolio-section .section-heading {
  max-width: 760px;
  margin: 0 auto 18px;
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  padding: 6px 14px;
  color: #68fff0;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  background: rgba(21, 245, 209, 0.1);
  border: 1px solid rgba(21, 245, 209, 0.3);
  border-radius: 999px;
}

.section-heading.center h2 {
  margin: 14px 0 4px;
  color: #ffffff;
  font-size: clamp(34px, 3.3vw, 46px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading.center p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #b6cbd8;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
}

.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 18px auto 22px;
}

.filter-chip {
  min-height: 34px;
  padding: 0 15px;
  color: #d9edf7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  background: rgba(4, 22, 37, 0.7);
  border: 1px solid rgba(150, 225, 255, 0.2);
  border-radius: 999px;
}

.filter-chip.is-active {
  color: #02111d;
  background: linear-gradient(135deg, #24e9ff, #15f5d1);
  border-color: rgba(114, 255, 247, 0.45);
  box-shadow: 0 0 24px rgba(34, 230, 255, 0.28);
}

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

.project-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(35, 223, 255, 0.12), transparent 34%),
    rgba(3, 15, 27, 0.92);
  border: 1px solid rgba(39, 211, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card::before,
.project-card::after {
  display: none;
}

.project-card img {
  width: 100%;
  height: 190px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #061321;
  border-radius: 0;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(34, 230, 255, 0.56);
  box-shadow: 0 24px 70px rgba(0, 200, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-caption {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 13px 14px 14px;
  background: linear-gradient(180deg, rgba(5, 24, 39, 0.74), rgba(3, 15, 27, 0.96));
  border-top: 1px solid rgba(72, 214, 255, 0.16);
}

.project-caption span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 4px 8px;
  color: #7efcf0;
  font-family: var(--font-latin);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
  background: rgba(21, 245, 209, 0.1);
  border: 1px solid rgba(21, 245, 209, 0.24);
  border-radius: 999px;
}

.project-caption span .icon {
  width: 14px;
  height: 14px;
}

.project-caption h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.36;
  letter-spacing: 0;
}

.project-caption p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #adc4d0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.54;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-caption a {
  display: none;
}

.gallery-cta {
  width: max-content;
  min-height: 42px;
  margin: 24px auto 0;
  padding: 0 22px;
  font-size: 14px;
}

.categories-section {
  margin-top: 34px;
}

.category-panel {
  position: relative;
  padding: 34px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 28%, rgba(21, 245, 209, 0.1), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(45, 125, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(5, 24, 39, 0.78), rgba(4, 18, 32, 0.84));
  border: 1px solid rgba(70, 220, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-panel::before {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background-image:
    radial-gradient(circle, rgba(97, 225, 255, 0.25) 1px, transparent 1.5px),
    linear-gradient(90deg, transparent, rgba(34, 230, 255, 0.08), transparent);
  background-size: 12px 12px, 100% 100%;
  opacity: 0.2;
  pointer-events: none;
}

.category-panel h2 {
  position: relative;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  min-height: 126px;
  padding: 6px 18px 0;
  text-align: center;
  border-right: 1px solid rgba(72, 214, 255, 0.14);
}

.category-grid article:last-child {
  border-right: 0;
}

.category-grid .icon {
  width: 46px;
  height: 46px;
  color: var(--ref-cyan);
  filter: drop-shadow(0 0 16px rgba(34, 230, 255, 0.36));
}

.category-grid strong {
  color: #eefaff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.lab-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: 36px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(35, 223, 255, 0.12), transparent 32%),
    radial-gradient(circle at 94% 78%, rgba(21, 245, 209, 0.1), transparent 32%),
    rgba(5, 24, 39, 0.8);
  border: 1px solid rgba(66, 213, 255, 0.26);
  border-radius: 28px;
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.3), 0 0 48px rgba(34, 230, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lab-copy h2 {
  max-width: 520px;
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 0;
}

.lab-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #b8cfda;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.78;
}

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

.lab-stats span {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.lab-stats strong {
  color: var(--ref-cyan);
  font-family: var(--font-latin);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.lab-stats small {
  margin-top: 6px;
  color: #91aab8;
  font-size: 13px;
}

.panel-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.lab-trust-row {
  display: none;
}

.lab-preview {
  min-width: 0;
}

.lab-window {
  position: relative;
  min-height: 366px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 18, 32, 0.96), rgba(2, 12, 24, 0.98));
  border: 1px solid rgba(72, 214, 255, 0.48);
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(35, 223, 255, 0.08), 0 0 48px rgba(35, 223, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.lab-window::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 0%, rgba(35, 223, 255, 0.16), transparent 34%);
  pointer-events: none;
}

.lab-window-top {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: center;
  height: 30px;
  margin-bottom: 12px;
  color: #dff8ff;
  font-family: var(--font-latin);
}

.lab-window-top span {
  width: 9px;
  height: 9px;
  background: #168caa;
  border-radius: 999px;
}

.lab-window-top strong {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 850;
}

.lab-window-top em {
  margin-left: auto;
  color: #9db4c2;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.lab-dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 14px;
}

.lab-sidebar {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  background: rgba(3, 15, 27, 0.82);
  border: 1px solid rgba(72, 214, 255, 0.12);
  border-radius: 14px;
}

.lab-sidebar strong {
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 4px;
}

.lab-sidebar span {
  padding: 8px 10px;
  color: #8fa6b7;
  font-size: 11px;
  font-weight: 800;
  border-radius: 9px;
}

.lab-sidebar .is-active {
  color: #051724;
  background: linear-gradient(135deg, #24e9ff, #15f5d1);
}

.lab-main {
  min-width: 0;
}

.lab-search {
  display: flex;
  gap: 7px;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  color: #6f8798;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  background: rgba(2, 12, 24, 0.9);
  border: 1px solid rgba(72, 214, 255, 0.14);
  border-radius: 999px;
}

.lab-search .icon {
  width: 13px;
  height: 13px;
}

.lab-main h3,
.lab-feature-head strong {
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 850;
}

.lab-main h3 {
  margin: 14px 0 10px;
}

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

.lab-type-grid span {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-height: 74px;
  padding: 10px 6px;
  color: #dff6ff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  background: rgba(10, 42, 66, 0.72);
  border: 1px solid rgba(72, 214, 255, 0.16);
  border-radius: 12px;
}

.lab-type-grid .icon {
  width: 24px;
  height: 24px;
  color: var(--ref-cyan);
}

.lab-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 9px;
}

.lab-feature-head small {
  color: var(--ref-teal);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 850;
}

.lab-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.lab-stack article {
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 6px;
  background: rgba(2, 12, 24, 0.82);
  border: 1px solid rgba(72, 214, 255, 0.16);
  border-radius: 10px;
}

.lab-stack img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 7px;
}

.lab-stack article::after {
  display: none;
}

.lab-stack article span {
  color: #c8dbe6;
  font-size: 10.5px;
  font-weight: 800;
}

.lab-roadmap,
.lab-mini-cards {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(120px, 0.58fr) minmax(160px, 0.75fr) minmax(300px, 1.45fr);
  gap: 32px;
  margin-top: 28px;
  padding: 32px 0 24px;
  background: transparent;
  border-top: 1px solid rgba(80, 205, 255, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.site-footer::before {
  display: none;
}

.footer-column {
  min-width: 0;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 14px;
}

.footer-logo span:last-child {
  display: grid;
}

.footer-logo strong,
.footer-column > strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.footer-logo small {
  color: #9fb3c2;
  font-family: var(--font-latin);
  font-size: 12px;
}

.footer-brand p,
.footer-contact p,
.footer-contact span,
.footer-links a {
  color: #9fb3c2;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 7px;
  align-content: start;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ref-cyan);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 4px;
  color: #7892a5;
  border-top: 1px solid rgba(80, 205, 255, 0.1);
}

.footer-bottom small,
.footer-bottom span {
  color: #7892a5;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 48px, var(--ref-max));
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-visual img {
    height: 420px;
  }

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

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 22px;
  }

  .category-grid article:nth-child(3n) {
    border-right: 0;
  }

  .lab-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--ref-max));
  }

  .site-header {
    min-height: 64px;
    padding: 10px 0;
  }

  .site-header::before {
    height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 14px;
    background: rgba(2, 9, 20, 0.96);
    border: 1px solid rgba(80, 205, 255, 0.16);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav a:first-child::after {
    right: auto;
    left: 10px;
    transform: none;
  }

  .hero {
    padding: 30px 0 28px;
  }

  .hero-stage {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.8vw, 56px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 14.5px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-visual img {
    height: auto;
    aspect-ratio: 1.38;
    border-radius: 18px;
  }

  .system-orbit span {
    display: none;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .benefit-strip article {
    min-height: 124px;
    padding: 16px 10px;
  }

  .benefit-strip article:nth-child(5) {
    grid-column: 1 / -1;
  }

  .benefit-strip strong {
    font-size: 21px;
  }

  .portfolio-section {
    margin-top: 20px;
    padding: 30px 14px 24px;
    border-radius: 22px;
  }

  .section-heading.center h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .filter-row {
    justify-content: flex-start;
    padding-bottom: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

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

  .project-card {
    grid-template-rows: auto 1fr;
  }

  .project-card img {
    height: auto;
    aspect-ratio: 1.78;
  }

  .project-caption {
    min-height: 106px;
  }

  .categories-section {
    margin-top: 24px;
  }

  .category-panel {
    padding: 26px 14px;
    border-radius: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .category-grid article,
  .category-grid article:nth-child(3n) {
    min-height: 118px;
    padding: 4px 8px;
    border-right: 0;
  }

  .category-grid strong {
    font-size: 15px;
  }

  .lab-panel {
    gap: 26px;
    margin-top: 24px;
    padding: 26px 14px;
    border-radius: 22px;
  }

  .lab-copy h2 {
    font-size: clamp(28px, 8.6vw, 40px);
  }

  .lab-stats {
    gap: 10px;
  }

  .lab-stats strong {
    font-size: 28px;
  }

  .panel-actions {
    display: grid;
  }

  .lab-window {
    padding: 12px;
  }

  .lab-dashboard {
    grid-template-columns: 1fr;
  }

  .lab-sidebar {
    display: none;
  }

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

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

  .lab-stack img {
    height: 88px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    width: min(100% - 28px, var(--ref-max));
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }
}
