/* adaas.services — services catalogue. Red (per-service pages re-theme by category). */
@import url("/shared/css/adaas-core.css");
@import url("/shared/css/adaas-ads.css");
/* Service inner page (shared with the adaas.market marketplace). Must stay up here:
   CSS @import rules are only honoured before any other rule. */
@import url("/shared/css/adaas-service-detail.css");
:root { --accent: #dc382a; }

/* ===========================================================================
   SERVICES HUB — immersive catalogue (ported from adaas-static, wired to the
   network API). Only used on /adaas.services/services/index.html.
   =========================================================================== */
.svc-hub-page {
  min-height: 100vh; display: flex; flex-direction: column;
  background: radial-gradient(125% 120% at 50% 42%, #16161b 0%, #0c0c0f 55%, #08080a 100%);
  color: var(--ink);
}
html[data-theme="light"] .svc-hub-page {
  background: radial-gradient(125% 120% at 50% 42%, #f6f5f2 0%, #eceae5 60%, #e3e1db 100%);
}

.svc-hub-page .top-header {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(58px, 8vh, 80px); padding: 0 clamp(32px, 6vw, 104px);
  position: relative; z-index: 5;
}
.svc-hub-page .brand-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); color: var(--ink-strong); text-decoration: none;
}
.svc-hub-page .brand-link .brand-wm { display: block; height: 24px; width: auto; aspect-ratio: 1577 / 667; }
html[data-theme="dark"] .svc-hub-page .brand-link .brand-wm-black { display: none; }
html[data-theme="light"] .svc-hub-page .brand-link .brand-wm-white { display: none; }
.svc-hub-page .brand-link .brand-sub {
  padding-left: 9px; margin-left: 1px; border-left: 1px solid var(--line);
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); line-height: 1;
}
.svc-hub-page .back-home {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint);
  text-decoration: none; transition: color .2s;
}
.svc-hub-page .back-home:hover { color: var(--ink); }

.hub {
  position: relative;
  height: calc(100vh - clamp(58px, 8vh, 80px));
  min-height: 500px; overflow: hidden;
  background: radial-gradient(125% 120% at 50% 42%, #16161b 0%, #0c0c0f 55%, #08080a 100%);
}
html[data-theme="light"] .hub {
  background: radial-gradient(125% 120% at 50% 42%, #f6f5f2 0%, #eceae5 60%, #e3e1db 100%);
}

/* Ambient accent bloom behind the pyramid + a soft vignette for depth, so the
   3D form reads as a glowing backdrop (mirrors the landing monogram). */
.hub::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: min(620px, 56vw); height: min(600px, 64vh); border-radius: 50%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 62%);
  filter: blur(34px); opacity: .26;
}
.hub::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(130% 120% at 50% 42%, transparent 52%, rgba(0,0,0,.55) 100%);
}
html[data-theme="light"] .hub::after { background: radial-gradient(130% 120% at 50% 42%, transparent 55%, rgba(20,18,14,.16) 100%); }

.hub-3d {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  width: min(66vw, 780px); height: 100vh; pointer-events: none; z-index: 1; opacity: .9;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, .5));
  transition: transform .9s cubic-bezier(.4,0,.2,1), opacity .8s ease, filter .8s ease;
}
html[data-theme="light"] .hub-3d {
  opacity: 1;
  filter: drop-shadow(0 22px 48px rgba(40, 30, 24, .22));
}
.hub-3d canvas { display: block; width: 100%; height: 100%; }
.hub.detail-open[data-side="left"]  .hub-3d { transform: translate(calc(-50% + 18vw), -50%) scale(.78); opacity: .55; filter: saturate(1.15); }
.hub.detail-open[data-side="right"] .hub-3d { transform: translate(calc(-50% - 18vw), -50%) scale(.78); opacity: .55; filter: saturate(1.15); }

.cat-column {
  position: absolute; top: 0; bottom: 0; right: clamp(40px, 7vw, 140px); z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px, 5vh, 64px) 0; width: clamp(170px, 20vw, 260px);
  text-align: right; pointer-events: auto; transition: opacity .3s ease;
}
.hub.detail-open .cat-column { opacity: 0; pointer-events: none; }

.cat-panel { position: relative; cursor: pointer; padding: clamp(16px, 2.8vh, 26px) 0; transition: opacity .25s ease; }
.cat-panel::before {
  content: ''; position: absolute; top: 50%; right: 100%; margin-right: 16px;
  width: clamp(120px, 22vw, 380px); height: 1px;
  background: linear-gradient(to left, var(--cat-color, var(--ink-faint)) 0%, rgba(0,0,0,0) 92%);
  opacity: .5; transition: opacity .25s ease;
}
.cat-panel:hover::before { opacity: .9; }
.hub[data-focus] .cat-panel { opacity: .4; }
.hub[data-focus] .cat-panel.is-focus { opacity: 1; }

.cat-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cat-color, var(--ink-faint)); margin-bottom: 6px;
}
.cat-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 1.6vw, 32px); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink-strong); margin: 0 0 4px;
}
.cat-tag { font-family: var(--font-display); font-weight: 400; font-size: clamp(13px, 1vw, 16px); line-height: 1.3; color: var(--ink-dim); }
.cat-enter {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cat-color, var(--ink-faint)); text-decoration: none; cursor: pointer;
  border-bottom: 1px solid var(--cat-color, var(--ink-faint)); transition: color .2s, border-color .2s;
}

/* ---- Detail overlay ---- */
.detail-overlay { position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0; transition: opacity .45s ease; }
.hub.detail-open .detail-overlay { opacity: 1; pointer-events: auto; }
.detail-card {
  position: absolute; top: clamp(60px, 10vh, 120px); bottom: clamp(50px, 8vh, 100px);
  width: min(46vw, 560px); display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s ease .2s, transform .55s ease .2s;
  --svc-accent: var(--accent); overflow: hidden;
}
.hub.detail-open .detail-card { opacity: 1; transform: translateY(0); }
.hub[data-side="left"]  .detail-card { left: clamp(24px, 5vw, 80px); align-items: flex-start; text-align: left; }
.hub[data-side="right"] .detail-card { right: clamp(24px, 5vw, 80px); align-items: flex-start; text-align: left; }
.detail-eyebrow, .detail-title, .detail-sub { flex-shrink: 0; }
.detail-eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--svc-accent); }
.detail-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 78px); line-height: .92; letter-spacing: -0.03em; color: var(--ink-strong); margin: 0; }
.detail-sub { font-family: var(--font-display); font-weight: 500; font-size: clamp(15px, 1.4vw, 20px); line-height: 1.45; color: var(--ink-dim); margin: 0; max-width: 480px; }

.detail-scroll {
  display: flex; flex-direction: column; overflow-y: auto; min-height: 0; flex: 1;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.18) transparent;
  padding-right: 4px; margin-top: 4px;
}
html[data-theme="light"] .detail-scroll { scrollbar-color: rgba(20,20,28,0.2) transparent; }
.detail-scroll::-webkit-scrollbar { width: 6px; }
.detail-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 6px; }
html[data-theme="light"] .detail-scroll::-webkit-scrollbar-thumb { background: rgba(20,20,28,0.14); }

.svc-row {
  display: flex; flex-direction: column; gap: 3px; width: 100%; padding: 14px 0;
  text-decoration: none; color: inherit; border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row .code { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--svc-accent); opacity: .85; }
.svc-row .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--ink-strong); margin: 0; transition: color .2s; }
.svc-row:hover .name { color: var(--svc-accent); }
.svc-row .dek { font-family: var(--font-body); font-size: 13px; line-height: 1.55; color: var(--ink-dim); margin: 1px 0 0; }
.svc-row-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-faint); margin-top: 4px; }

.detail-close {
  position: absolute; top: clamp(14px, 2.2vh, 22px); right: clamp(18px, 2.2vw, 28px);
  width: 44px; height: 44px; border-radius: 50%; z-index: 6;
  border: 1px solid var(--line); background: transparent; color: var(--ink-dim);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
  font-family: var(--font-body); opacity: 0; transform: scale(.85); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .2s, color .2s, border-color .2s;
}
.hub.detail-open .detail-close { opacity: 1; transform: scale(1); pointer-events: auto; transition-delay: .15s; }
.detail-close:hover { background: var(--surface-2); color: var(--ink-strong); border-color: var(--ink-faint); }

.scroll-down-hint {
  position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint);
  pointer-events: none; white-space: nowrap; transition: opacity .3s ease;
}
.scroll-down-hint .arrow { width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); animation: svcHintBob 1.6s ease-in-out infinite; }
@keyframes svcHintBob { 0%,100% { transform: rotate(45deg) translate(-2px,-2px); } 50% { transform: rotate(45deg) translate(0,0); } }
.hub.detail-open .scroll-down-hint { opacity: 0; }

@media (max-width: 760px) {
  .hub-3d { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100vw; height: 100vh; opacity: .35; }
  .hub.detail-open[data-side="left"] .hub-3d, .hub.detail-open[data-side="right"] .hub-3d { transform: translate(-50%, -50%) scale(.78); opacity: .55; filter: saturate(1.15); }
  .cat-column { right: clamp(14px, 3vw, 24px); width: clamp(150px, 40vw, 220px); padding: 24px 0; }
  .detail-card { width: min(80vw, 460px); }
  .hub[data-side="left"] .detail-card { left: clamp(14px, 3vw, 32px); }
  .hub[data-side="right"] .detail-card { right: clamp(14px, 3vw, 32px); }
}

/* ---- Left content column: eyebrow + headline + lede + search + framework -
   A single cohesive editorial column (matches the landing voice), so the
   search reads as the primary action rather than a floating element. -------- */
.hub-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right, rgba(8,8,10,.94) 0%, rgba(8,8,10,.72) 20%, rgba(8,8,10,.28) 38%, transparent 52%);
}
html[data-theme="light"] .hub-scrim {
  background: linear-gradient(to right, rgba(233,231,225,.96) 0%, rgba(233,231,225,.7) 20%, rgba(233,231,225,.26) 38%, transparent 52%);
}
.hub-hero {
  position: absolute; z-index: 4;
  left: clamp(40px, 7vw, 140px); top: 50%; transform: translateY(-50%);
  width: min(430px, 44vw); display: flex; flex-direction: column;
  transition: opacity .35s ease, transform .35s ease;
}
.hub.detail-open .hub-hero { opacity: 0; pointer-events: none; transform: translateY(calc(-50% - 8px)); }
.hub-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.hub-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 54px); line-height: .98; letter-spacing: -0.035em; color: var(--ink-strong); margin: 12px 0 0; }
.hub-lede { font-family: var(--font-body); font-size: clamp(13px, 1vw, 15px); line-height: 1.6; color: var(--ink-dim); margin: 12px 0 0; }

/* ---- Search across services (rainbow input) ------------------------------ */
.hub-search {
  position: relative; width: 100%; margin-top: 22px; z-index: 6;
  transition: opacity .35s ease, transform .35s ease;
}
.hub-search-field { box-shadow: 0 18px 50px -26px rgba(0, 0, 0, .8); }
.hub-search-field input { font-size: 14px; padding: 13px 20px; }
.hub-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  border-radius: 16px; overflow-y: auto; max-height: min(46vh, 340px);
  background: color-mix(in srgb, var(--bg-soft) 96%, transparent);
  border: 1px solid var(--line); backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .85);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.hub-search-results.is-open { opacity: 1; transform: none; pointer-events: auto; }
.hub-search-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px;
  padding: 12px 18px; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--line); transition: background .18s ease;
}
.hub-search-row:last-child { border-bottom: none; }
.hub-search-row:hover { background: color-mix(in srgb, var(--row-c, var(--accent)) 12%, transparent); }
.hsr-code { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--row-c, var(--accent)); }
.hsr-name { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink-strong); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hsr-cat { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.hub-search-empty { padding: 16px 18px; font-family: var(--font-body); font-size: 13px; color: var(--ink-dim); }

/* ---- ReSRCE framework — compact strip under the search, same left column - */
.resrce {
  position: relative; z-index: 3; width: 100%;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
}
.resrce-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); }
.resrce-copy { font-family: var(--font-body); font-size: clamp(12.5px, 0.95vw, 13.5px); line-height: 1.55; color: var(--ink-dim); margin: 8px 0 0; }
.resrce-copy a { color: var(--ink-strong); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent) 55%, transparent); transition: border-color .2s, color .2s; }
.resrce-copy a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.resrce-list { list-style: none; margin: 15px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.resrce-list li { display: grid; grid-template-columns: 30px minmax(0, 1fr); align-items: start; gap: 11px; }
.resrce-list .rl-px {
  display: inline-flex; align-items: center; justify-content: center; height: 20px; padding: 0 5px; min-width: 30px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .04em; color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 6px;
  background: color-mix(in srgb, var(--ink-strong) 6%, transparent);
}
.resrce-list .rl-text { font-family: var(--font-body); font-size: clamp(11.5px, 0.9vw, 12.5px); line-height: 1.4; color: var(--ink-dim); }
.resrce-list .rl-text b { font-weight: 700; color: var(--ink-strong); }
@media (max-width: 900px) {
  .hub-hero { width: min(320px, 58vw); }
  .hub-lede { display: none; }
  .resrce-copy { display: none; }
}

/* ===========================================================================
   SERVICES LANDING TABS — category tabs that filter a row of service cards
   along the bottom of the adaas.services hero. Only used on index.html.
   =========================================================================== */
/* Single, fixed-height screen (NO scroll): the whole catalogue lives in a
   docked band along the bottom of the hero. A soft gradient grounds it and
   fades the monogram legs behind so the list reads as its own surface. */
.landing-marquee::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(300px, 46vh, 460px); z-index: 1; pointer-events: none;
  background: linear-gradient(to top,
    #08080a 0%, #08080a 34%, rgba(9, 9, 12, 0.94) 62%, rgba(9, 9, 12, 0.45) 84%, transparent 100%);
}
html[data-theme="light"] .landing-marquee::after {
  background: linear-gradient(to top,
    #e6e4de 0%, #e6e4de 34%, rgba(233, 231, 225, 0.94) 62%, rgba(233, 231, 225, 0.4) 84%, transparent 100%);
}
/* Landing header logotype — real wordmark image (matches the interior topbar
   and the catalogue header) instead of the plain text lockup. */
.landing-marquee .landing-top .wordmark-logo { display: inline-flex; align-items: center; }
.landing-marquee .landing-top .brand-wm { display: block; height: 22px; width: auto; aspect-ratio: 1577 / 667; }
html[data-theme="dark"] .landing-marquee .brand-wm-black { display: none; }
html[data-theme="light"] .landing-marquee .brand-wm-white { display: none; }

.svc-tabs {
  position: absolute; left: 0; right: 0; bottom: clamp(22px, 4vh, 44px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.svc-tabs-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 6px; border-radius: 999px;
  background: color-mix(in srgb, var(--surface-2) 60%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.svc-tab {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-dim); background: transparent; border: 0; cursor: pointer;
  padding: 8px 16px; border-radius: 999px; white-space: nowrap;
  transition: color .2s ease, background .2s ease;
  --tab-accent: var(--accent);
}
.svc-tab:hover { color: var(--ink-strong); }
.svc-tab.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--tab-accent), color-mix(in srgb, var(--tab-accent) 62%, #000));
  box-shadow: 0 8px 20px -10px color-mix(in srgb, var(--tab-accent) 80%, transparent);
}
html[data-theme="light"] .svc-tab.is-active { color: #fff; }
.svc-tab-count {
  margin-left: 7px; font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--ink-faint);
}
.svc-tab.is-active .svc-tab-count { color: rgba(255, 255, 255, 0.75); }

/* Caption under the ledger: shown-vs-total count + a link into the full
   catalogue, so the landing scales to any number of services. */
.svc-tabs-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: min(980px, 86vw); margin: 0 auto;
  font-family: var(--font-body); font-size: 11.5px;
}
.svc-tabs-count { color: var(--ink-faint); letter-spacing: 0.02em; }
.svc-tabs-all {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-dim); text-decoration: none; font-weight: 600; letter-spacing: 0.04em;
  transition: color .2s ease;
}
.svc-tabs-all span { transition: transform .2s ease; }
.svc-tabs-all:hover { color: var(--accent); }
.svc-tabs-all:hover span { transform: translateX(4px); }

.svc-tabs-view { width: 100%; display: flex; justify-content: center; align-items: flex-start; min-height: 216px; }
.svc-tabs-track {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px); row-gap: 0;
  width: min(980px, 86vw); margin: 0 auto;
  border-top: 1px solid var(--line);
}
.svc-tabs-track.is-in .svc-lrow { animation: svcCardIn .42s cubic-bezier(.2, .7, .3, 1) backwards; }
.svc-tabs-track.is-in .svc-lrow:nth-child(2) { animation-delay: .05s; }
.svc-tabs-track.is-in .svc-lrow:nth-child(3) { animation-delay: .1s; }
.svc-tabs-track.is-in .svc-lrow:nth-child(4) { animation-delay: .15s; }
.svc-tabs-track.is-in .svc-lrow:nth-child(5) { animation-delay: .2s; }
.svc-tabs-track.is-in .svc-lrow:nth-child(6) { animation-delay: .25s; }
@keyframes svcCardIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.svc-lrow {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
  gap: 4px 18px; padding: clamp(11px, 1.7vh, 17px) 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; pointer-events: auto;
  --row-accent: var(--accent); transition: background .2s ease;
}
.svc-lrow:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); }
.svc-lrow-main { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.svc-lrow-head { min-width: 0; display: flex; align-items: baseline; gap: 10px; }
.svc-lrow-code {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; flex: 0 0 auto;
}
.svc-lrow-name {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(14px, 1.5vw, 16.5px); line-height: 1.2;
  color: var(--ink-strong); margin: 0; transition: color .2s ease;
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.svc-lrow:hover .svc-lrow-name { color: var(--ink-strong); }
.svc-lrow-dek {
  margin: 0; font-family: var(--font-body); font-size: 12px; line-height: 1.35;
  color: var(--ink-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.svc-lrow-meta { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.svc-lrow-price { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--ink-strong); }
.svc-lrow-go {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.svc-lrow-go span { transition: transform .2s ease; }
.svc-lrow:hover .svc-lrow-go { color: var(--ink-dim); }
.svc-lrow:hover .svc-lrow-go span { transform: translateX(4px); }

@media (max-width: 880px) {
  .svc-tabs-track { grid-template-columns: 1fr; width: min(440px, 92vw); }
  .svc-tabs-view { min-height: 288px; }
}

/* Keep the hero within one screen: lift it and cap the headline by viewport
   height so it never grows down into the docked ledger. */
@media (min-width: 881px) {
  .landing-marquee .landing-hero { top: 40%; }
  .landing-marquee .landing-hero h1 { font-size: clamp(40px, min(6vw, 7.6vh), 82px); }
  .landing-marquee .landing-hero p { font-size: clamp(14px, 1.4vw, 19px); margin-top: 12px; }
}

/* ===========================================================================
   SERVICE DETAIL — the inner service page styles now live in the shared partial
   /shared/css/adaas-service-detail.css (imported at the top of this file), so
   the service design renders identically here and inside the adaas.market
   marketplace (both use #svc-root + /shared/js/adaas-service.js).
   =========================================================================== */

