:root {
  --page-accent: #ff6a00;
  --page-accent-soft: rgba(255, 106, 0, 0.14);
  --page-surface: rgba(243, 240, 232, 0.05);
  --page-surface-strong: rgba(243, 240, 232, 0.08);
  --page-line: rgba(243, 240, 232, 0.1);
  --page-line-strong: rgba(243, 240, 232, 0.18);
}

body.services-shell {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.09), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #0e0f10 0%, #111214 100%);
  color: var(--fg-0);
}

body.services-shell .topbar {
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.services-app {
  position: relative;
  overflow: clip;
}

.services-shell .page-wrap {
  position: relative;
  z-index: 1;
}

.services-shell .page-hero,
.services-shell .page-section {
  position: relative;
  padding-inline: 0;
}

.services-shell .page-section {
  padding-block: 84px;
}

.services-shell .page-hero {
  padding-top: 128px;
  padding-bottom: 42px;
}

.services-shell .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 32px;
  align-items: center;
}

.services-shell .page-hero .reveal {
  opacity: 1;
  transform: none;
}

.services-shell .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-shell .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--page-line);
  color: var(--fg-1);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .hero-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

.services-shell .hero-title .accent {
  color: var(--page-accent);
}

.services-shell .hero-lead {
  max-width: 60ch;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--fg-1);
}

.services-shell .hero-actions,
.services-shell .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.services-shell .ghost-btn,
.services-shell .primary-btn,
.services-shell .page-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.services-shell .primary-btn {
  padding: 16px 22px;
  background: var(--page-accent);
  color: var(--ink-0);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.22);
}

.services-shell .ghost-btn,
.services-shell .page-link {
  padding: 15px 20px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-0);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .primary-btn:hover,
.services-shell .ghost-btn:hover,
.services-shell .page-link:hover {
  transform: translateY(-2px);
  border-color: var(--page-line-strong);
}

.services-shell .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-shell .meta-chip,
.services-shell .proof-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--page-line);
  color: var(--fg-1);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, var(--page-accent-soft), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--page-line);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-shell .hero-panel::before,
.services-shell .hero-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.services-shell .hero-panel::before {
  width: 220px;
  height: 220px;
  left: -32px;
  top: -32px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 68%);
  animation: orbFloat 10s ease-in-out infinite;
}

.services-shell .hero-panel::after {
  width: 260px;
  height: 260px;
  right: -48px;
  bottom: -52px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}

.services-shell .hero-panel-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.services-shell .hero-visual-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.services-shell .hero-visual-label {
  max-width: 16ch;
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg-1);
}

.services-shell .service-hub-grid {
  margin-top: 34px;
}

.services-shell .service-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.services-shell .bento-card {
  --card-bg: #151716;
  --card-fg: var(--fg-0);
  --card-muted: rgba(243, 240, 232, 0.68);
  --card-line: rgba(243, 240, 232, 0.14);
  --card-soft: rgba(243, 240, 232, 0.07);
  --card-strong: rgba(255, 106, 0, 0.92);
  position: relative;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--card-line);
  border-radius: 22px;
  overflow: hidden;
  color: var(--card-fg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    var(--card-bg);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transform-style: preserve-3d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.services-shell .bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 240, 232, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent 70%);
  opacity: 0.5;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: opacity 0.25s ease;
}

.services-shell .bento-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-shell .bento-card:hover {
  border-color: rgba(255, 106, 0, 0.42);
}

.services-shell .bento-card:hover::before {
  opacity: 0.9;
}

.services-shell .bento-brand,
.services-shell .bento-web,
.services-shell .bento-analytics,
.services-shell .bento-ads,
.services-shell .bento-outreach,
.services-shell .bento-ai {
  grid-column: span 3;
}

.services-shell .bento-seo,
.services-shell .bento-local,
.services-shell .bento-social {
  grid-column: span 2;
}

.services-shell .bento-bone {
  --card-bg: #e8e4d8;
  --card-fg: #0e0f10;
  --card-muted: rgba(14, 15, 16, 0.66);
  --card-line: rgba(14, 15, 16, 0.15);
  --card-soft: rgba(14, 15, 16, 0.08);
  --card-strong: #0e0f10;
}

.services-shell .bento-lime {
  --card-bg: #ff6a00;
  --card-fg: #0e0f10;
  --card-muted: rgba(14, 15, 16, 0.72);
  --card-line: rgba(14, 15, 16, 0.16);
  --card-soft: rgba(14, 15, 16, 0.08);
  --card-strong: #0e0f10;
}

.services-shell .bento-top,
.services-shell .bento-foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--card-muted);
}

.services-shell .bento-top span,
.services-shell .bento-foot span {
  border: 1px solid var(--card-line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.services-shell .bento-bone .bento-top span,
.services-shell .bento-bone .bento-foot span,
.services-shell .bento-lime .bento-top span,
.services-shell .bento-lime .bento-foot span {
  background: rgba(14, 15, 16, 0.045);
}

.services-shell .bento-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 190px;
  margin: 12px -8px 8px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.services-shell .bento-stage svg {
  width: 100%;
  height: 100%;
  min-height: 205px;
  overflow: visible;
}

.services-shell .bento-stage svg * {
  vector-effect: non-scaling-stroke;
}

.services-shell .bento-stage circle,
.services-shell .bento-stage rect,
.services-shell .bento-stage path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  opacity: 0.7;
}

.services-shell .bento-stage text {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.7;
}

.services-shell .bento-stage .lime-fill,
.services-shell .bento-stage .pulse-dot,
.services-shell .bento-stage .pin path,
.services-shell .bento-stage .pin circle,
.services-shell .bento-stage .nodes circle,
.services-shell .bento-stage .bar,
.services-shell .bento-stage .target circle,
.services-shell .bento-stage .prospect,
.services-shell .bento-stage .sweep {
  fill: var(--card-strong);
  stroke: none;
  opacity: 0.94;
}

.services-shell .bento-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.services-shell .bento-copy h3 {
  max-width: 12ch;
  font-size: 42px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.services-shell .bento-copy p {
  max-width: 56ch;
  margin-top: 12px;
  color: var(--card-muted);
  font-size: 15px;
  line-height: 1.45;
}

.services-shell .bento-foot {
  justify-content: flex-start;
  margin-top: 18px;
}

.services-shell .orbit-a {
  animation: bentoSpin 18s linear infinite;
  transform-origin: 210px 128px;
}

.services-shell .orbit-b {
  animation: bentoSpinReverse 28s linear infinite;
  transform-origin: 210px 128px;
}

.services-shell .panel-float,
.services-shell .query,
.services-shell .ad-chip,
.services-shell .core-ring {
  fill: var(--card-soft);
}

.services-shell .panel-float {
  animation: bentoFloat 5s ease-in-out infinite;
}

.services-shell .pulse-dot,
.services-shell .gauge,
.services-shell .core-ring {
  transform-origin: center;
  animation: bentoPulse 2.8s ease-in-out infinite;
}

.services-shell .route-line,
.services-shell .mesh,
.services-shell .lime-route,
.services-shell .flow,
.services-shell .dash-grid path:first-of-type,
.services-shell .scan-line {
  stroke: var(--card-strong);
  stroke-width: 2.4;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: bentoDraw 4.8s ease-in-out infinite;
}

.services-shell .scan-line.slow {
  animation-duration: 6.2s;
}

.services-shell .map-grid path,
.services-shell .dash-grid rect:first-child {
  opacity: 0.28;
}

.services-shell .pin {
  transform: translate(300px, 82px);
  animation: bentoPin 4.6s ease-in-out infinite;
}

.services-shell .social-orbit {
  transform-origin: 210px 130px;
  animation: bentoSpin 24s linear infinite;
}

.services-shell .social-orbit > circle {
  opacity: 0.34;
}

.services-shell .channel text,
.services-shell .core,
.services-shell .ai-node text {
  text-anchor: middle;
  font-size: 10px;
}

.services-shell .ch-a { transform: translate(0, -112px); }
.services-shell .ch-b { transform: translate(112px, 0); }
.services-shell .ch-c { transform: translate(0, 112px); }
.services-shell .ch-d { transform: translate(-112px, 0); }

.services-shell .bar {
  transform-origin: center bottom;
  animation: bentoBars 3.2s ease-in-out infinite;
}

.services-shell .b2 { animation-delay: -0.7s; }
.services-shell .b3 { animation-delay: -1.4s; }

.services-shell .needle {
  stroke: var(--card-strong);
  stroke-width: 3;
  transform-origin: 236px 142px;
  animation: bentoNeedle 3.8s ease-in-out infinite;
}

.services-shell .radar {
  transform-origin: 210px 130px;
}

.services-shell .radar circle {
  opacity: 0.42;
}

.services-shell .sweep {
  transform-origin: 0 0;
  animation: bentoSpin 3.4s linear infinite;
}

.services-shell .t1 { transform: translate(64px, -48px); }
.services-shell .t2 { transform: translate(-82px, 34px); }
.services-shell .t3 { transform: translate(32px, 88px); }

.services-shell .second {
  animation: bentoFloat 4.7s ease-in-out infinite reverse;
}

.services-shell .prospect {
  animation: bentoProspect 4.4s ease-in-out infinite;
}

.services-shell .p2 { animation-delay: -1.2s; }
.services-shell .p3 { animation-delay: -2.4s; }

.services-shell .neural path {
  stroke: var(--card-muted);
  opacity: 0.52;
}

.services-shell .ai-node circle {
  fill: var(--card-soft);
  stroke: currentColor;
}

.services-shell .n1 { transform: translate(-98px, -62px); }
.services-shell .n2 { transform: translate(92px, -74px); }
.services-shell .n3 { transform: translate(-116px, 54px); }
.services-shell .n4 { transform: translate(110px, 50px); }
.services-shell .n5 { transform: translate(0, 108px); }

@keyframes bentoSpin {
  to { rotate: 360deg; }
}

@keyframes bentoSpinReverse {
  to { rotate: -360deg; }
}

@keyframes bentoFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes bentoPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes bentoDraw {
  0% { stroke-dashoffset: 280; opacity: 0.25; }
  45%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -280; opacity: 0.25; }
}

@keyframes bentoPin {
  0%, 100% { transform: translate(300px, 82px) scale(0.96); }
  50% { transform: translate(248px, 112px) scale(1.05); }
}

@keyframes bentoBars {
  0%, 100% { transform: scaleY(0.62); }
  50% { transform: scaleY(1.08); }
}

@keyframes bentoNeedle {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(28deg); }
}

@keyframes bentoProspect {
  0%, 100% { opacity: 0.25; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.services-shell .section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.services-shell .section-title {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.services-shell .section-lead {
  max-width: 62ch;
  color: var(--fg-1);
  line-height: 1.6;
}

.services-shell .section-grid {
  display: grid;
  gap: 18px;
}

.services-shell .section-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.services-shell .detail-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--page-line);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 40%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.services-shell .detail-card h3,
.services-shell .detail-card h4 {
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 12px;
}

.services-shell .detail-card p {
  color: var(--fg-1);
  line-height: 1.65;
}

.services-shell .detail-card .tiny {
  margin-bottom: 12px;
  color: var(--page-accent);
}

.services-shell .timeline {
  display: grid;
  gap: 16px;
}

.services-shell .timeline-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--page-line);
}

.services-shell .timeline-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.services-shell .timeline-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--page-accent);
}

.services-shell .timeline-step h4 {
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 8px;
}

.services-shell .timeline-step p {
  color: var(--fg-1);
}

.services-shell .service-footer-band {
  margin-top: 26px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--page-line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.services-shell .service-footer-band p {
  max-width: 72ch;
  color: var(--fg-1);
  line-height: 1.65;
}

.services-shell .related-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.services-shell .related-row a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  color: var(--fg-1);
  text-decoration: none;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.services-shell .related-row a:hover {
  transform: translateY(-2px);
  border-color: var(--page-line-strong);
}

.services-shell .svc-grid {
  gap: 18px;
}

.services-shell .svc-grid .svc-card {
  min-height: 420px;
}

.services-shell .svc-grid .svc-card .svc-blurb {
  line-height: 1.55;
}

.services-shell .svc-grid .svc-card .svc-expand {
  gap: 14px;
}

.services-shell .hub-sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-shell .hub-sequence .detail-card {
  min-height: 220px;
}

.services-shell .service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.services-shell .hero-card {
  min-height: 620px;
}

.services-shell .hero-card .svc-art {
  height: 240px;
}

.services-shell .hero-card .svc-title {
  font-size: clamp(32px, 4vw, 52px);
}

.services-shell .hero-card .svc-blurb {
  font-size: 16px;
}

.services-shell .hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-shell .hero-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--page-line);
}

.services-shell .hero-stat .value {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.services-shell .hero-stat .label {
  color: var(--fg-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .hub-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-shell .hub-pill-row .meta-chip {
  background: rgba(255, 255, 255, 0.03);
}

.services-shell .page-spacer {
  height: 34px;
}

.services-shell .explorer-shell {
  position: relative;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--page-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 106, 0, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.services-shell .explorer-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.services-shell .explorer-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.services-shell .explorer-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-1);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.services-shell .explorer-tab:hover {
  transform: translateY(-1px);
  border-color: var(--page-line-strong);
  color: var(--fg-0);
}

.services-shell .explorer-tab.on {
  background: var(--page-accent);
  color: var(--ink-0);
  border-color: transparent;
}

.services-shell .explorer-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(0, 180px));
  gap: 10px;
}

.services-shell .explorer-filters input,
.services-shell .explorer-filters select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-0);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.services-shell .explorer-filters input::placeholder {
  color: var(--fg-2);
}

.services-shell .explorer-filters input:focus,
.services-shell .explorer-filters select:focus {
  border-color: var(--page-accent);
  background: rgba(255, 255, 255, 0.05);
}

.services-shell .explorer-summaries {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.services-shell .explorer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-1);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .explorer-pill strong {
  color: var(--fg-0);
  font-weight: 600;
}

.services-shell .explorer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.services-shell .explorer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-shell .explorer-card {
  position: relative;
  min-height: 352px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--tone-line);
  background:
    radial-gradient(circle at 85% 15%, var(--tone-soft), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  text-align: left;
  color: var(--fg-0);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.services-shell .explorer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
  opacity: 0.45;
  pointer-events: none;
}

.services-shell .explorer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.services-shell .explorer-card.sel {
  border-color: var(--page-accent);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.18), 0 28px 70px rgba(0, 0, 0, 0.26);
}

.services-shell .explorer-top,
.services-shell .explorer-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.services-shell .explorer-chip,
.services-shell .explorer-top .tiny,
.services-shell .explorer-foot span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--tone-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tone-text);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .explorer-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 144px;
  margin-top: 4px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.services-shell .explorer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 54%, var(--tone-soft), transparent 22%),
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.08), transparent 22%);
  opacity: 0.9;
}

.services-shell .explorer-gridline,
.services-shell .explorer-orb,
.services-shell .explorer-track,
.services-shell .explorer-visual::before {
  position: absolute;
  pointer-events: none;
}

.services-shell .explorer-visual::before {
  content: "";
  inset: 18px;
  border-radius: 18px;
  border: 1px solid var(--tone-line);
}

.services-shell .explorer-gridline {
  inset: 28px;
  background-image:
    linear-gradient(var(--tone-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--tone-line) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.48;
}

.services-shell .explorer-orb {
  left: 52%;
  top: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--tone-accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 0 18px rgba(255, 255, 255, 0.02);
  animation: explorerPulse 5s ease-in-out infinite;
}

.services-shell .explorer-track {
  height: 3px;
  border-radius: 999px;
  background: var(--tone-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--tone-accent) 40%, transparent);
}

.services-shell .explorer-track.a {
  left: 18%;
  top: 28%;
  width: 36%;
  animation: explorerFloat 6s ease-in-out infinite;
}

.services-shell .explorer-track.b {
  left: 22%;
  top: 50%;
  width: 48%;
  opacity: 0.72;
  animation: explorerFloat 7.5s ease-in-out infinite reverse;
}

.services-shell .explorer-track.c {
  left: 24%;
  top: 72%;
  width: 30%;
  opacity: 0.6;
  animation: explorerFloat 8.5s ease-in-out infinite;
}

.services-shell .explorer-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.services-shell .explorer-copy h3 {
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 11ch;
}

.services-shell .explorer-copy p {
  color: var(--fg-1);
  line-height: 1.5;
  max-width: 40ch;
}

.services-shell .explorer-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.services-shell .explorer-bar {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .explorer-bar span {
  color: var(--fg-2);
}

.services-shell .explorer-bar i {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.services-shell .explorer-bar i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--tone-accent);
}

.services-shell .explorer-foot {
  align-items: center;
}

.services-shell .explorer-foot span {
  background: rgba(255, 255, 255, 0.03);
}

.services-shell .explorer-detail {
  position: sticky;
  top: 110px;
  min-height: 420px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--page-line);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.03);
}

.services-shell .explorer-detail-empty,
.services-shell .explorer-detail-card {
  display: grid;
  gap: 16px;
}

.services-shell .explorer-detail-empty h3,
.services-shell .explorer-detail-card h3 {
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

.services-shell .explorer-detail-empty p,
.services-shell .explorer-desc {
  color: var(--fg-1);
  line-height: 1.6;
}

.services-shell .explorer-detail-top {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: start;
}

.services-shell .explorer-detail-badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--page-accent);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .explorer-close {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-1);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.services-shell .explorer-scores {
  display: grid;
  gap: 12px;
}

.services-shell .explorer-score {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
}

.services-shell .explorer-score i {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.services-shell .explorer-score i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--page-accent);
}

.services-shell .explorer-score strong,
.services-shell .explorer-fact-grid strong {
  color: var(--fg-0);
  font-weight: 600;
}

.services-shell .explorer-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-shell .explorer-fact-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
}

.services-shell .explorer-group {
  display: grid;
  gap: 10px;
}

.services-shell .explorer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.services-shell .explorer-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-1);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-shell .explorer-tag.tone {
  border-color: color-mix(in srgb, var(--tone-accent) 35%, var(--page-line));
  background: color-mix(in srgb, var(--tone-bg) 72%, rgba(255, 255, 255, 0.02));
  color: var(--tone-text);
}

.services-shell .explorer-tag.muted {
  color: var(--fg-2);
}

.services-shell .explorer-card.hide {
  display: none;
}

@keyframes explorerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.72; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes explorerFloat {
  0%, 100% { transform: scaleX(0.98); opacity: 0.72; }
  50% { transform: scaleX(1.05); opacity: 1; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.06); }
}

@media (max-width: 1080px) {
  .services-shell .hero-grid,
  .services-shell .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .services-shell .bento-brand,
  .services-shell .bento-seo,
  .services-shell .bento-analytics,
  .services-shell .bento-web,
  .services-shell .bento-local,
  .services-shell .bento-social,
  .services-shell .bento-ads,
  .services-shell .bento-outreach,
  .services-shell .bento-ai {
    grid-column: span 1;
  }

  .services-shell .section-grid.cols-3,
  .services-shell .hub-sequence,
  .services-shell .hero-stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-shell .page-hero {
    padding-top: 116px;
  }

  .services-shell .hero-title {
    font-size: clamp(42px, 12vw, 72px);
  }

  .services-shell .hero-panel {
    min-height: 440px;
  }

  .services-shell .hero-card {
    min-height: 520px;
  }

  .services-shell .service-bento-grid {
    grid-template-columns: 1fr;
  }

  .services-shell .bento-card {
    min-height: 410px;
    padding: 18px;
  }

  .services-shell .bento-copy h3 {
    font-size: 32px;
  }

  .services-shell .bento-stage {
    min-height: 180px;
  }

  .services-shell .explorer-layout {
    grid-template-columns: 1fr;
  }

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

  .services-shell .explorer-detail {
    position: relative;
    top: auto;
  }

  .services-shell .timeline-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-shell .bento-card,
  .services-shell .bento-card *,
  .services-shell .bento-card::before {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
