:root {
  --bg: #07111f;
  --surface: #101d33;
  --surface-2: #16273f;
  --surface-3: #1d3050;
  --ink: #f3f6fc;
  --ink-2: #c7d2e5;
  --muted: #98a6bd;
  --muted-2: #758399;
  --line: rgba(255, 255, 255, .1);
  --line-dark: rgba(255, 255, 255, .18);
  --blue: #5b7cfa;
  --blue-2: #82a0ff;
  --violet: #9b7dfa;
  --cyan: #43d9e0;
  --green: #4ade95;
  --dark: #0a1526;
  --dark-2: #0f1f38;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, .35);
  --shadow: 0 24px 70px rgba(0, 0, 0, .5);
  --ease: cubic-bezier(.2, .75, .2, 1);
  --page: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

body.nav-open {
  overflow: hidden
}

::selection {
  background: var(--blue);
  color: #fff
}

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

button,
input,
textarea {
  font: inherit
}

button {
  color: inherit
}

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

p {
  margin: 0
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  letter-spacing: -.035em
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: top .2s
}

.skip-link:focus {
  top: 16px
}

.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 1000;
  background: transparent
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center
}

/* Header */
.topline {
  background: var(--dark);
  color: #c7d2e5;
  font-size: 11.5px
}

.topline-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px
}

.availability span,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(70, 185, 139, .12);
  flex: 0 0 auto
}

.topline-meta {
  display: flex;
  gap: 24px;
  color: #8f9db2
}

.topline-meta a:hover {
  color: #fff
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 20px;
  transition: padding .3s var(--ease)
}

.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px
}

.navbar {
  max-width: var(--page);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 11px 12px 11px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(8, 15, 27, .72);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
  transition: box-shadow .3s, background .3s
}

.site-header.is-scrolled .navbar {
  background: rgba(6, 11, 20, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5)
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap
}

.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(79, 109, 245, .2)
}

.brand>span>span {
  color: var(--blue)
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1
}

.nav-links>a,
.nav-drop>a {
  position: relative;
  padding: 10px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s
}

.nav-links>a::after,
.nav-drop>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1.5px;
  background: var(--blue);
  transition: right .3s var(--ease)
}

.nav-links>a:hover,
.nav-links>a.active,
.nav-drop>a:hover,
.nav-drop>a.active {
  color: var(--ink)
}

.nav-links>a:hover::after,
.nav-links>a.active::after,
.nav-drop>a:hover::after,
.nav-drop>a.active::after {
  right: 0
}

.nav-drop {
  position: relative
}

.nav-drop>a {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-drop>a i {
  font-style: normal;
  font-size: 12px;
  transition: transform .25s
}

.nav-drop:hover>a i {
  transform: rotate(180deg)
}

.drop-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: 520px;
  transform: translate(-50%, 8px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  background: rgba(12, 20, 35, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .25s var(--ease)
}

.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.drop-panel a {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1px 8px;
  padding: 13px;
  border-radius: 12px;
  transition: background .2s
}

.drop-panel a:hover {
  background: var(--surface-2)
}

.drop-panel a span {
  grid-row: 1/3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  padding-top: 2px
}

.drop-panel a b {
  font-size: 13px;
  letter-spacing: -.01em
}

.drop-panel a small {
  font-size: 11.5px;
  color: var(--muted)
}

.nav-actions {
  display: flex;
  align-items: center
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto
}

.nav-burger span {
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s
}

.nav-burger.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg)
}

.nav-burger.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg)
}

.nav-mobile {
  display: none;
  max-width: var(--page);
  margin: 8px auto 0;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.nav-mobile a:not(.btn) {
  display: block;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.nav-mobile .btn {
  margin-top: 10px;
  width: 100%;
  justify-content: center
}

/* Foundations */
.site-main {
  min-height: 60vh
}

.site-main>section {
  max-width: var(--page);
  margin: 0 auto;
  padding: 108px 28px;
  border-top: 1px solid var(--line)
}

.site-main>section.no-border,
.site-main>section:first-child {
  border-top: 0
}

.site-main>section.compact-section {
  padding-top: 35px;
  padding-bottom: 35px
}

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px
}

.kicker.light {
  color: #8ea7ff
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(91, 124, 250, .28);
  border-radius: 999px;
  background: rgba(91, 124, 250, .1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .09em;
  color: #a9bcff;
  margin-bottom: 22px
}

.text-gradient {
  background: linear-gradient(100deg, var(--blue) 5%, var(--violet) 55%, #4cb8c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.section-intro {
  margin-bottom: 50px
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: end
}

.section-intro h2,
.system-head h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  max-width: 850px
}

.section-intro>p,
.section-action p,
.system-head>p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 500px
}

.section-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s, gap .2s
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  gap: 13px
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.inline-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: 11.5px;
  color: var(--muted)
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s
}

.btn span {
  font-size: 15px
}

.btn:hover {
  transform: translateY(-2px)
}

.btn:focus-visible {
  outline: 3px solid rgba(79, 109, 245, .25);
  outline-offset: 3px
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3e5de7, #6f83ff);
  box-shadow: 0 12px 28px rgba(79, 109, 245, .25)
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(79, 109, 245, .34)
}

.btn-secondary {
  background: rgba(255, 255, 255, .05);
  border-color: var(--line);
  color: var(--ink)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24)
}

.btn-light {
  background: #fff;
  color: #0a1428;
  margin-top: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
}

.btn-sm {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 11px;
  font-size: 12.5px
}

.motion-card {
  transform-style: preserve-3d;
  will-change: transform
}

/* Scroll motion */
.js-ready [data-reveal],
.js-ready [data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.js-ready [data-reveal].is-visible,
.js-ready [data-aos].is-visible,
.js-ready [data-aos].in-view {
  opacity: 1;
  transform: none
}

.js-ready [data-reveal="left"],
.js-ready [data-aos="fade-left"] {
  transform: translateX(34px)
}

.js-ready [data-reveal="right"],
.js-ready [data-aos="fade-right"] {
  transform: translateX(-34px)
}

.js-ready [data-aos="zoom-in"] {
  transform: scale(.96)
}

/* Home hero */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 76px;
  align-items: center;
  min-height: 760px;
  padding-top: 82px !important;
  padding-bottom: 90px !important
}

.hero-copy {
  position: relative;
  z-index: 2
}

.hero h1 {
  font-size: clamp(54px, 6vw, 82px);
  line-height: .98;
  max-width: 690px
}

.hero-lead {
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 630px
}

.hero .cta-row {
  margin-top: 34px
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  max-width: 650px
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero-proof b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  letter-spacing: -.02em
}

.hero-proof span {
  font-size: 11.5px;
  color: var(--muted)
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  opacity: .75;
  pointer-events: none
}

.glow-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(79, 109, 245, .32), transparent 67%);
  left: 4%;
  top: 5%
}

.glow-two {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(140, 109, 246, .23), transparent 68%);
  right: -4%;
  bottom: 3%
}

.product-window {
  position: relative;
  width: min(100%, 620px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: #0b1526;
  box-shadow: 0 50px 100px rgba(9, 18, 39, .28), 0 0 0 1px rgba(12, 26, 51, .08);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg)
}

.window-bar {
  height: 43px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111d31;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #75839a;
  font-size: 9px
}

.window-dots {
  display: flex;
  gap: 5px
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38445a
}

.window-dots span:first-child {
  background: #ff6b6b
}

.window-dots span:nth-child(2) {
  background: #ffd166
}

.window-dots span:last-child {
  background: #47c98b
}

.window-address {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace
}

.window-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #93a3b9
}

.window-live span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4bd69b
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 430px
}

.dashboard-nav {
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #091220;
  border-right: 1px solid rgba(255, 255, 255, .06)
}

.dash-logo {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: grid;
  place-items: center;
  color: #fff;
  font: 700 12px 'Space Grotesk'
}

.dashboard-nav span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #1b2a41;
  position: relative
}

.dashboard-nav span.active {
  background: #4f6df5
}

.dashboard-nav span.active:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  left: 7px;
  top: 7px
}

.nav-spacer {
  flex: 1
}

.dashboard-main {
  padding: 22px;
  color: #eef3fb
}

.dash-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px
}

.dash-heading small {
  display: block;
  color: #69788e;
  font-size: 9px;
  margin-bottom: 4px
}

.dash-heading h3 {
  font-size: 17px;
  letter-spacing: -.02em
}

.dash-heading .ui-add {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #4f6df5;
  color: #fff;
  display: grid;
  place-items: center
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.metric-grid article {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 11px;
  background: #101d31
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: #718097;
  font-size: 8px
}

.metric-grid b {
  display: block;
  font-family: 'Space Grotesk';
  font-size: 17px;
  margin: 8px 0 5px
}

.metric-grid small.up {
  color: #58d5a0
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 10px;
  margin-top: 10px
}

.dashboard-grid article {
  background: #101d31;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 13px
}

.panel-title {
  display: flex;
  justify-content: space-between;
  font-size: 9px
}

.panel-title small {
  color: #718097
}

.chart-bars {
  height: 95px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.chart-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #7186ff, #3e5de7);
  opacity: .85
}

.activity-panel {
  display: flex;
  flex-direction: column;
  align-items: center
}

.activity-panel .panel-title {
  align-self: stretch
}

.ring {
  width: 68px;
  height: 68px;
  margin: 17px auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#6f83ff 0 76%, #1b2940 76%);
  position: relative
}

.ring:after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #101d31
}

.ring b {
  position: relative;
  z-index: 1;
  font-size: 12px
}

.mini-lines {
  width: 100%;
  display: grid;
  gap: 5px
}

.mini-lines span {
  height: 4px;
  border-radius: 4px;
  background: #22324a
}

.mini-lines span:nth-child(2) {
  width: 75%
}

.mini-lines span:nth-child(3) {
  width: 55%
}

.dash-table {
  margin-top: 10px;
  padding: 4px 12px;
  background: #101d31;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px
}

.dash-table>div {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dash-table>div:last-child {
  border: 0
}

.table-icon {
  grid-row: 1/3;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #4f6df5
}

.table-icon.violet {
  background: #8c6df6
}

.dash-table b {
  font-size: 9px
}

.dash-table small {
  font-size: 7px;
  color: #6f7d92
}

.dash-table em {
  grid-column: 3;
  grid-row: 1/3;
  align-self: center;
  font-style: normal;
  font-size: 7px;
  color: #5cd3a1;
  background: rgba(92, 211, 161, .1);
  padding: 4px 6px;
  border-radius: 999px
}

.floating-code,
.floating-metric {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  background: rgba(11, 20, 36, .85);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px)
}

.floating-code {
  left: -5%;
  top: 10%;
  min-width: 190px
}

.floating-code .code-label {
  font: 9px 'JetBrains Mono';
  color: var(--muted)
}

.floating-code strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 7px 0 3px;
  font-size: 11px
}

.floating-code strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4acb93;
  box-shadow: 0 0 0 4px rgba(74, 203, 147, .14)
}

.floating-code small,
.floating-metric small {
  font-size: 8.5px;
  color: var(--muted)
}

.floating-metric {
  right: -1%;
  bottom: 7%;
  display: grid
}

.floating-metric span {
  font-size: 9px;
  color: var(--muted)
}

.floating-metric b {
  font: 700 25px 'Space Grotesk';
  color: var(--blue);
  margin: 3px 0
}

/* Trust */
.trust-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center
}

.trust-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.trust-intro i {
  width: 55px;
  height: 1px;
  background: var(--line)
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: marquee 28s linear infinite
}

.marquee:hover .marquee-track {
  animation-play-state: paused
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

.logo-chip {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap
}

/* Bento */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.capability-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .35s
}

.capability-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at 15% -10%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 62%);
  opacity: 0;
  transition: opacity .45s;
  z-index: 0
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: 0 26px 55px rgba(0, 0, 0, .35)
}

.capability-card:hover:before {
  opacity: 1
}

.capability-card:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease)
}

.capability-card:hover:after {
  transform: scaleX(1)
}

.cap-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 17%, var(--surface-2));
  color: var(--accent);
  font-size: 18px
}

.cap-index {
  font: 600 10px 'JetBrains Mono', monospace;
  color: var(--muted-2)
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18.5px;
  line-height: 1.25;
  letter-spacing: -.01em
}

.capability-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin-top: 10px
}

.cap-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.cap-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 9.5px;
  color: var(--muted)
}

@media(max-width:1100px) {
  .capability-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .capability-grid {
    grid-template-columns: 1fr
  }
}

/* Case studies home */
.case-list {
  display: grid;
  gap: 22px
}

.case-study {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 50px;
  align-items: center;
  min-height: 520px;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden
}

.case-study.reverse {
  grid-template-columns: 1.22fr .78fr
}

.case-study.reverse .case-copy {
  order: 2
}

.case-study.reverse .case-visual {
  order: 1
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  font: 10px 'JetBrains Mono';
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.case-meta span:first-child {
  color: var(--blue)
}

.case-copy h3 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  margin-top: 21px
}

.case-copy>p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin-top: 19px
}

.case-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0
}

.case-outcomes span {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--surface-2);
  font-size: 10px;
  color: var(--muted)
}

.case-visual {
  min-height: 390px;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(20, 32, 58, .18)
}

.clinic-ui {
  background: #dfe9e8;
  padding: 28px
}

.ui-browser {
  height: 32px;
  background: #fff;
  border-radius: 11px 11px 0 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8b969e;
  font-size: 8px
}

.ui-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd2d8
}

.ui-browser span {
  margin-left: auto;
  margin-right: auto
}

.clinic-layout {
  display: grid;
  grid-template-columns: 44px 1fr;
  background: #f7fbfa;
  min-height: 315px;
  border-radius: 0 0 11px 11px
}

.clinic-side {
  background: #153c42;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px
}

.clinic-side b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #e9bd7d;
  color: #153c42;
  font-size: 9px
}

.clinic-side span {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .12)
}

.clinic-content {
  padding: 24px
}

.clinic-content>small {
  font-size: 8px;
  color: #7a8887
}

.clinic-content h4 {
  font-size: 17px;
  margin: 5px 0 17px
}

.appointment-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 11px;
  border: 1px solid #e2eae8;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 8px
}

.appointment-row>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d3ece6, #80b9aa)
}

.appointment-row b,
.appointment-row small {
  display: block
}

.appointment-row b {
  font-size: 9px
}

.appointment-row small {
  font-size: 7px;
  color: #879391;
  margin-top: 2px
}

.appointment-row em {
  font-style: normal;
  font-size: 7px;
  color: #2c846d;
  background: #e4f5ee;
  padding: 4px 6px;
  border-radius: 999px
}

.clinic-panels {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  margin-top: 12px
}

.clinic-panels span {
  height: 50px;
  border-radius: 9px;
  background: #e8f0ef
}

.clinic-panels span:first-child {
  background: #153c42
}

.pos-ui {
  background: #101522;
  padding: 25px;
  color: #fff
}

.pos-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 15px;
  background: #1b2231;
  border-radius: 12px 12px 0 0;
  font-size: 9px
}

.pos-top strong {
  font-size: 11px;
  margin-right: auto
}

.pos-top span {
  color: #ffb95d
}

.pos-top em {
  font-style: normal;
  color: #8b97a8
}

.pos-body {
  display: grid;
  grid-template-columns: 1fr 165px;
  gap: 12px;
  background: #151c2a;
  padding: 15px;
  border-radius: 0 0 12px 12px;
  min-height: 307px
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px
}

.menu-grid>span {
  background: #1e2635;
  border: 1px solid #293244;
  border-radius: 10px;
  padding: 10px
}

.menu-grid i {
  display: block;
  height: 50px;
  border-radius: 7px;
  background: linear-gradient(145deg, #3a2a29, #ca7f57);
  margin-bottom: 8px
}

.menu-grid span:nth-child(2) i {
  background: linear-gradient(145deg, #2d332c, #8dba73)
}

.menu-grid span:nth-child(3) i {
  background: linear-gradient(145deg, #2c2637, #a986d7)
}

.menu-grid span:nth-child(4) i {
  background: linear-gradient(145deg, #293640, #6ca6c2)
}

.menu-grid b,
.menu-grid small {
  display: block
}

.menu-grid b {
  font-size: 8px
}

.menu-grid small {
  font-size: 7px;
  color: #93a0b0;
  margin-top: 3px
}

.order-panel {
  background: #f8f3ec;
  color: #25201c;
  padding: 14px;
  border-radius: 10px
}

.order-panel>small {
  font-size: 7px;
  color: #8f8173
}

.order-panel>div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e4ddd4;
  font-size: 8px
}

.order-panel>em {
  display: flex;
  justify-content: space-between;
  font-style: normal;
  font-size: 8px;
  margin: 20px 0 12px
}

.order-panel .ui-action {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 8px;
  background: #e05f3d;
  color: #fff;
  padding: 9px;
  font-size: 8px
}

.perfume-ui {
  background: #f0ebe2;
  padding: 25px
}

.perfume-nav {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: #f9f6f1;
  font-size: 7px;
  color: #6e665d
}

.perfume-nav b {
  font: 700 11px 'Space Grotesk';
  letter-spacing: .1em
}

.perfume-nav span {
  margin: auto
}

.perfume-nav i {
  font-style: normal
}

.perfume-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #827066, #4a403b);
  color: #fff
}

.perfume-hero small {
  font-size: 7px;
  letter-spacing: .12em;
  color: #d8cec7
}

.perfume-hero h4 {
  font-family: 'Space Grotesk';
  font-size: 27px;
  line-height: 1.05;
  max-width: 290px;
  margin: 14px 0 24px
}

.perfume-hero>div>span {
  font-size: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 4px
}

.bottle {
  justify-self: center;
  width: 105px;
  height: 180px;
  background: linear-gradient(145deg, #e5d2aa, #8b6c45);
  border-radius: 9px 9px 18px 18px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #3b3026
}

.bottle i {
  position: absolute;
  top: -25px;
  width: 48px;
  height: 30px;
  border-radius: 6px 6px 0 0;
  background: #262321
}

.bottle b {
  font: 600 16px 'Space Grotesk';
  letter-spacing: .16em
}

/* Dark process */
.dark-section {
  max-width: calc(var(--page) - 56px) !important;
  padding: 76px 56px !important;
  background: var(--dark);
  color: #fff;
  border: 0 !important;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden
}

.dark-section:before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  right: -220px;
  top: -300px;
  background: radial-gradient(circle, rgba(79, 109, 245, .25), transparent 68%)
}

.system-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .6fr;
  gap: 65px;
  align-items: end
}

.system-head>p {
  color: #98a5b8
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, .13)
}

.process-grid article {
  padding: 26px 23px 0 0;
  position: relative
}

.process-grid article:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7790ff;
  box-shadow: 0 0 0 6px rgba(119, 144, 255, .09)
}

.process-grid span {
  font: 10px 'JetBrains Mono';
  color: #7185e9
}

.process-grid h3 {
  font-size: 19px;
  margin-top: 30px
}

.process-grid p {
  color: #92a0b4;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 9px
}

.system-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.system-footer span {
  font-size: 10px;
  color: #b7c1d1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06)
}

/* Reachflux */
.reachflux-panel {
  position: relative
}

.reachflux-panel .reachflux-section {
  position: relative;
  padding: 56px;
  border: 1px solid rgba(91, 124, 250, .28);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 12% 15%, rgba(91, 124, 250, .1), transparent 55%), radial-gradient(circle at 88% 85%, rgba(67, 217, 224, .08), transparent 55%), var(--surface);
  box-shadow: 0 40px 100px rgba(8, 14, 26, .45);
  overflow: hidden
}

.owned-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(74, 222, 149, .32);
  border-radius: 999px;
  background: rgba(74, 222, 149, .08);
  color: #8ff0c0;
  font: 600 11px 'JetBrains Mono';
  letter-spacing: .03em;
  margin-bottom: 18px
}

.owned-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74, 222, 149, .15);
  flex: 0 0 auto
}

.reachflux-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: center
}

.reachflux-copy h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02
}

.reachflux-copy>p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 22px 0
}

.reachflux-copy .inline-tags {
  margin-bottom: 30px
}

.reachflux-visual {
  min-height: 460px;
  display: grid;
  grid-template-columns: 60px 1fr;
  background: #0b1527;
  border-radius: 25px;
  border: 1px solid #182945;
  box-shadow: 0 40px 90px rgba(13, 25, 50, .25);
  overflow: hidden;
  color: #fff
}

.rf-sidebar,
.fp-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 19px 13px;
  background: #09111f;
  border-right: 1px solid rgba(255, 255, 255, .06)
}

.rf-sidebar b,
.fp-side b {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: grid;
  place-items: center
}

.rf-sidebar span,
.fp-side span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #17253a
}

.rf-sidebar i,
.fp-side i {
  flex: 1
}

.rf-main {
  padding: 25px
}

.rf-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.rf-top small {
  color: #718097;
  font-size: 9px
}

.rf-top h3 {
  font-size: 19px;
  margin-top: 4px
}

.rf-top .ui-button {
  border-radius: 9px;
  background: #526df1;
  color: #fff;
  padding: 9px 12px;
  font-size: 8px
}

.rf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px
}

.rf-grid article {
  height: 160px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: #101e32;
  border-radius: 13px;
  padding: 15px;
  position: relative;
  overflow: hidden
}

.rf-grid small,
.rf-grid span {
  display: block;
  font-size: 8px;
  color: #75849a
}

.rf-grid b {
  display: block;
  font: 700 25px 'Space Grotesk';
  margin: 10px 0 4px
}

.rf-grid article:first-child span {
  color: #59d3a0
}

.rf-chart {
  height: 52px;
  margin-top: 14px;
  position: relative;
  background: linear-gradient(180deg, rgba(79, 109, 245, .22), transparent);
  clip-path: polygon(0 80%, 12% 65%, 25% 72%, 36% 38%, 48% 50%, 62% 20%, 76% 35%, 90% 5%, 100% 16%, 100% 100%, 0 100%)
}

.rf-chart i {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #6680ff
}

.rf-bars {
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 15px
}

.rf-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #344764
}

.rf-bars i:nth-child(1) {
  height: 35%
}

.rf-bars i:nth-child(2) {
  height: 60%
}

.rf-bars i:nth-child(3) {
  height: 78%;
  background: #5a72ed
}

.rf-bars i:nth-child(4) {
  height: 50%
}

.rf-table {
  display: grid;
  grid-template-columns: 1fr .45fr .35fr;
  margin-top: 12px;
  padding: 13px;
  background: #101e32;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  color: #75849a;
  font-size: 8px
}

.rf-table>div {
  display: contents
}

.rf-table>div>* {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.rf-table b {
  color: #d8e0ec;
  font-size: 9px
}

.rf-table em {
  font-style: normal;
  color: #58d1a0
}

.rf-table i {
  font-style: normal;
  color: #aab5c6
}

/* Testimonials + CTA */
.testimonial-orbit {
  margin-top: 56px
}

.to-stage {
  position: relative;
  height: 400px;
  perspective: 1700px
}

.to-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 460px;
  margin-left: -230px;
  padding: 42px 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
  will-change: transform, opacity
}

.to-quote {
  display: block;
  font: 800 50px/1 'Space Grotesk', sans-serif;
  color: var(--blue-2);
  opacity: .35;
  margin-bottom: 2px
}

.to-stars {
  color: #ffb648;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px
}

.to-card p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -.015em;
  color: var(--ink-2)
}

.to-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.to-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font: 700 14px 'Space Grotesk', sans-serif
}

.to-card footer div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.to-card footer b {
  font-size: 13.5px;
  color: var(--ink)
}

.to-card footer span {
  font-size: 11.5px;
  color: var(--muted)
}

.to-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px
}

.to-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 15px;
  transition: background .3s, border-color .3s, transform .3s
}

.to-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px)
}

.to-dots {
  display: flex;
  align-items: center;
  gap: 8px
}

.to-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s
}

.to-dots button.active {
  background: var(--blue);
  transform: scale(1.4)
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 80px;
  align-items: end;
  max-width: calc(var(--page) - 56px) !important;
  margin-bottom: 100px !important;
  padding: 75px 60px !important;
  border: 0 !important;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #314ee0, #705fe9);
  color: #fff;
  overflow: hidden
}

.final-cta h2 {
  font-size: clamp(38px, 5vw, 67px);
  line-height: 1.01;
  max-width: 780px
}

.final-cta>div:last-child {
  position: relative;
  z-index: 2
}

.final-cta p {
  color: #dce2ff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 27px
}

.cta-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  right: -130px;
  top: -215px
}

.cta-orbit:before,
.cta-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  inset: 50px
}

.cta-orbit:after {
  inset: 115px;
  background: rgba(255, 255, 255, .05)
}

/* Portfolio */
.page-hero {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 80px;
  align-items: center;
  min-height: 540px;
  padding-top: 85px !important
}

.page-hero-copy h1 {
  font-size: clamp(58px, 7vw, 92px);
  line-height: .96;
  max-width: 900px
}

.page-hero-copy>p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  max-width: 720px;
  margin-top: 28px
}

.portfolio-orbit {
  position: relative;
  width: 330px;
  height: 330px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: grid;
  place-items: center
}

.portfolio-orbit:before {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite
}

.portfolio-orbit:after {
  content: "";
  position: absolute;
  inset: 95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 109, 245, .18), transparent 70%)
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg)
  }
}

.orbit-core {
  position: relative;
  z-index: 2;
  text-align: center
}

.orbit-core b {
  display: block;
  font: 700 44px 'Space Grotesk';
  color: var(--blue)
}

.orbit-core span {
  font-size: 10px;
  color: var(--muted)
}

.orbit-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font: 10px 'JetBrains Mono';
  color: var(--blue)
}

.node-a {
  left: 5px;
  top: 66px
}

.node-b {
  right: -4px;
  top: 110px
}

.node-c {
  bottom: 6px;
  left: 92px
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden
}

.metric-band article {
  padding: 25px 28px;
  border-right: 1px solid var(--line)
}

.metric-band article:last-child {
  border-right: 0
}

.metric-band b,
.metric-band span {
  display: block
}

.metric-band b {
  font: 700 28px 'Space Grotesk';
  letter-spacing: -.04em
}

.metric-band span {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 5px
}

.portfolio-case-stack {
  display: grid;
  gap: 30px
}

.portfolio-case {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 55px;
  align-items: center;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden
}

.portfolio-case-dark {
  background: var(--dark-2);
  color: #fff;
  border-color: rgba(255, 255, 255, .09)
}

.case-number {
  font: 10px 'JetBrains Mono';
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue)
}

.portfolio-case-dark .case-number {
  color: #8da3ff
}

.portfolio-case-copy h3 {
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.03;
  margin-top: 18px
}

.portfolio-case-copy>p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 20px
}

.portfolio-case-dark .portfolio-case-copy>p {
  color: #9aa8bb
}

.portfolio-case-copy dl {
  margin: 25px 0;
  display: grid;
  gap: 0
}

.portfolio-case-copy dl div {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 10px
}

.portfolio-case-dark dl div {
  border-color: rgba(255, 255, 255, .1)
}

.portfolio-case-copy dt {
  color: var(--muted);
  font-weight: 500
}

.portfolio-case-dark dt {
  color: #718096
}

.portfolio-case-copy dd {
  margin: 0
}

.portfolio-case-dark .inline-tags span {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .11);
  color: #aeb9ca
}

.portfolio-device {
  min-height: 500px;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(23, 34, 61, .18);
  overflow: hidden
}

.clinic-device {
  background: #e6efed;
  padding: 25px
}

.device-top {
  height: 38px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px
}

.device-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd4d5
}

.device-top b {
  margin-left: auto;
  margin-right: auto;
  font-size: 8px;
  color: #61706e
}

.device-body {
  display: grid;
  grid-template-columns: 50px 1fr;
  background: #f8fbfa;
  min-height: 405px;
  border-radius: 0 0 12px 12px
}

.device-body aside {
  padding: 15px 11px;
  background: #143e42;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px
}

.device-body aside i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #e4b971;
  border-radius: 8px;
  font: 700 9px 'Space Grotesk';
  font-style: normal
}

.device-body aside span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12)
}

.device-content {
  padding: 25px
}

.device-heading {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.device-heading small {
  font-size: 8px;
  color: #7d8c8a
}

.device-heading h4 {
  font-size: 19px;
  margin-top: 5px
}

.device-heading .ui-button {
  border-radius: 8px;
  padding: 8px 10px;
  background: #163f43;
  color: #fff;
  font-size: 7px
}

.device-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px
}

.device-metrics span {
  padding: 13px;
  border: 1px solid #e1e9e7;
  border-radius: 10px;
  background: #fff
}

.device-metrics small,
.device-metrics b {
  display: block
}

.device-metrics small {
  font-size: 7px;
  color: #81908e
}

.device-metrics b {
  font: 700 20px 'Space Grotesk';
  margin-top: 5px
}

.device-table {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #e1e9e7;
  border-radius: 10px;
  padding: 4px 12px
}

.device-table div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  grid-template-rows: auto auto;
  gap: 1px 9px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e9eeed
}

.device-table div:last-child {
  border: 0
}

.device-table i {
  grid-row: 1/3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9e5de, #77b8a7)
}

.device-table b {
  font-size: 8px
}

.device-table small {
  font-size: 7px;
  color: #869290
}

.device-table em {
  grid-column: 3;
  grid-row: 1/3;
  font-style: normal;
  font-size: 7px;
  color: #267763;
  background: #e4f4ef;
  padding: 4px 6px;
  border-radius: 999px
}

.pos-device {
  background: #0c1320;
  padding: 22px
}

.pos-device-nav {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 13px;
  background: #151f2e;
  border-radius: 12px 12px 0 0;
  color: #8795a8;
  font-size: 8px
}

.pos-device-nav b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: #e65e3f;
  color: #fff;
  border-radius: 8px
}

.pos-device-nav i {
  font-style: normal;
  margin-left: auto
}

.pos-device-body {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 12px;
  padding: 15px;
  background: #111a28;
  border-radius: 0 0 12px 12px
}

.pos-search {
  height: 34px;
  border-radius: 8px;
  background: #1d2838;
  color: #69788c;
  padding: 10px;
  font-size: 7px
}

.pos-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px
}

.pos-card-grid span {
  padding: 8px;
  background: #1b2636;
  border-radius: 9px
}

.pos-card-grid i {
  display: block;
  height: 60px;
  border-radius: 7px;
  background: linear-gradient(145deg, #5e3228, #db815f)
}

.pos-card-grid span:nth-child(2) i,
.pos-card-grid span:nth-child(5) i {
  background: linear-gradient(145deg, #314235, #89b16d)
}

.pos-card-grid span:nth-child(3) i {
  background: linear-gradient(145deg, #48313a, #c97984)
}

.pos-card-grid span:nth-child(4) i {
  background: linear-gradient(145deg, #3f3428, #c29967)
}

.pos-card-grid span:nth-child(6) i {
  background: linear-gradient(145deg, #2f3d4c, #6ca9cf)
}

.pos-card-grid b,
.pos-card-grid small {
  display: block
}

.pos-card-grid b {
  font-size: 7px;
  margin-top: 6px
}

.pos-card-grid small {
  font-size: 6px;
  color: #8795a8;
  margin-top: 2px
}

.pos-checkout {
  background: #f7f2ea;
  color: #27211d;
  border-radius: 10px;
  padding: 16px
}

.pos-checkout>small {
  font-size: 7px;
  color: #98897a
}

.pos-checkout h4 {
  font-size: 16px;
  margin: 4px 0 18px
}

.pos-checkout>div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e2d9cf;
  font-size: 8px
}

.pos-checkout em {
  display: flex;
  justify-content: space-between;
  font-style: normal;
  font-size: 9px;
  margin: 25px 0 13px
}

.pos-checkout .ui-action {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  background: #e45f3f;
  color: #fff;
  font-size: 8px
}

.brand-device {
  background: #e7ddd1;
  padding: 22px
}

.brand-device-nav {
  height: 43px;
  display: flex;
  align-items: center;
  background: #faf7f1;
  padding: 0 15px;
  font-size: 7px;
  color: #665e56
}

.brand-device-nav b {
  letter-spacing: .12em
}

.brand-device-nav span {
  margin: auto
}

.brand-device-nav i {
  font-style: normal
}

.brand-device-main {
  min-height: 415px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #74655b, #382f2b);
  color: #fff
}

.brand-device-main small {
  font-size: 7px;
  letter-spacing: .13em;
  color: #d4cac4
}

.brand-device-main h4 {
  font-size: 31px;
  line-height: 1.03;
  margin: 15px 0
}

.brand-device-main p {
  font-size: 9px;
  line-height: 1.6;
  color: #d2c9c4;
  max-width: 270px
}

.brand-device-main>div>span {
  display: inline-block;
  font-size: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  margin-top: 22px;
  padding-bottom: 4px
}

.brand-bottle {
  justify-self: center;
  width: 125px;
  height: 235px;
  background: linear-gradient(145deg, #e5cfa3, #826340);
  border-radius: 8px 8px 22px 22px;
  box-shadow: 0 30px 45px rgba(0, 0, 0, .32);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #34291f
}

.brand-bottle i {
  position: absolute;
  top: -32px;
  width: 58px;
  height: 36px;
  background: #1c1a18;
  border-radius: 7px 7px 0 0
}

.brand-bottle b {
  font: 700 20px 'Space Grotesk';
  letter-spacing: .15em
}

.brand-bottle small {
  color: #4a3a2e;
  margin-top: 8px
}

.work-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px
}

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

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  padding: 8px 13px;
  font-size: 10.5px;
  color: var(--muted);
  cursor: pointer;
  transition: .25s
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.work-card {
  min-height: 320px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: opacity .3s, transform .3s, border-color .3s
}

.work-card.is-filtered {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  position: absolute
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 10px 'JetBrains Mono'
}

.work-card small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue)
}

.work-card h3 {
  font-size: 24px;
  margin-top: 9px
}

.work-card p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 9px
}

.work-pattern {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 75px
}

.work-pattern i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--surface-2);
  height: 45%
}

.work-pattern i:nth-child(2) {
  height: 80%;
  background: rgba(91, 124, 250, .35)
}

.work-pattern i:nth-child(3) {
  height: 62%;
  background: rgba(67, 217, 224, .3)
}

.featured-product {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 60px;
  align-items: center;
  max-width: calc(var(--page) - 56px) !important;
  padding: 65px !important;
  background: var(--dark);
  color: #fff;
  border: 0 !important;
  border-radius: var(--radius-lg)
}

.featured-product-copy h2 {
  font-size: 48px
}

.featured-product-copy>p {
  color: #9ca9bb;
  line-height: 1.7;
  font-size: 14px;
  margin: 18px 0
}

.featured-product-copy .inline-tags {
  margin-bottom: 28px
}

.featured-product-copy .inline-tags span {
  color: #b7c2d1;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1)
}

.featured-product-ui {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: #0c192c;
  display: grid;
  grid-template-columns: 57px 1fr;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25)
}

.fp-main {
  padding: 24px
}

.fp-title {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.fp-title small,
.fp-title b {
  display: block
}

.fp-title small {
  font-size: 8px;
  color: #748399
}

.fp-title b {
  font-size: 16px;
  margin-top: 3px
}

.fp-title .ui-button {
  border-radius: 8px;
  background: #526df0;
  color: #fff;
  padding: 8px 10px;
  font-size: 8px
}

.fp-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 22px
}

.fp-metrics article {
  background: #122138;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 15px
}

.fp-metrics small,
.fp-metrics b,
.fp-metrics i {
  display: block
}

.fp-metrics small {
  font-size: 8px;
  color: #748399
}

.fp-metrics b {
  font: 700 25px 'Space Grotesk';
  margin: 9px 0 4px
}

.fp-metrics i {
  font-style: normal;
  font-size: 8px;
  color: #58d2a0
}

.fp-chart {
  height: 180px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  background: #122138;
  position: relative;
  overflow: hidden
}

.fp-chart span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(82, 109, 240, .3), transparent);
  clip-path: polygon(0 80%, 12% 62%, 24% 69%, 38% 35%, 51% 50%, 64% 20%, 75% 38%, 89% 8%, 100% 18%, 100% 100%, 0 100%)
}

.fp-chart i {
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  height: 1px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 42px rgba(255, 255, 255, .06), 0 84px rgba(255, 255, 255, .06)
}

/* About */
.about-hero {
  grid-template-columns: 1.15fr .85fr
}

.manifesto-wrap {
  position: relative;
  align-self: stretch
}

.manifesto-card {
  min-height: 400px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%
}

.manifesto-card:before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -160px;
  top: -150px;
  background: radial-gradient(circle, rgba(79, 109, 245, .34), transparent 68%);
  pointer-events: none
}

.manifesto-card>span {
  font: 10px 'JetBrains Mono';
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8ea3c1;
  position: relative
}

.manifesto-card h2 {
  font-size: 33px;
  line-height: 1.15;
  position: relative
}

.manifesto-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9cabbf;
  font-size: 10px
}

.manifesto-meta i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57d1a0
}

.manifesto-badge {
  position: absolute;
  top: -18px;
  left: 32px;
  z-index: 3;
  padding: 11px 16px;
  border-radius: 13px;
  background: rgba(10, 18, 32, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .4);
  backdrop-filter: blur(14px);
  font: 500 10.5px Inter, sans-serif;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px
}

.manifesto-badge b {
  font: 700 13px 'Space Grotesk', sans-serif;
  color: #fff
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px
}

.approach-primary {
  min-height: 590px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #101f38, #0a1626);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column
}

.large-index {
  font: 11px 'JetBrains Mono';
  color: var(--blue)
}

.approach-primary h3 {
  font-size: 43px;
  line-height: 1.05;
  margin-top: auto
}

.approach-primary>p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 600px
}

.workflow-map {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px
}

.workflow-map span {
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 9px
}

.workflow-map i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  position: relative
}

.workflow-map i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border-left: 5px solid rgba(255, 255, 255, .2);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent
}

.approach-stack {
  display: grid;
  gap: 18px
}

.approach-stack article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface)
}

.approach-stack span {
  font: 10px 'JetBrains Mono';
  color: var(--blue)
}

.approach-stack h3 {
  font-size: 24px;
  margin-top: 35px
}

.approach-stack p {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--muted);
  margin-top: 10px
}

.principle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  margin-top: 60px
}

.principle-grid article {
  background: var(--dark);
  padding: 30px 35px
}

.principle-grid span {
  font: 10px 'JetBrains Mono';
  color: #7185e9
}

.principle-grid h3 {
  font-size: 24px;
  margin-top: 30px
}

.principle-grid p {
  color: #929fb1;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 440px
}

.team-layout {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 22px
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.team-card {
  min-height: 305px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface)
}

.team-avatar {
  height: 125px;
  border-radius: 16px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.team-avatar:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 109, 245, .22), transparent 70%)
}

.team-avatar span {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font: 700 16px 'Space Grotesk';
  box-shadow: 0 12px 25px rgba(79, 109, 245, .25)
}

.team-avatar i {
  position: absolute;
  width: 110px;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  transform: rotate(-32deg)
}

.team-card>small {
  display: block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.team-card h3 {
  font-size: 20px;
  margin-top: 5px
}

.team-card p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin-top: 8px
}

.team-note {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.team-note h3 {
  font-size: 32px;
  line-height: 1.08
}

.team-note ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px
}

.team-note li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55
}

.team-note li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue)
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line)
}

.journey-line article {
  padding: 30px 25px 0 0;
  position: relative
}

.journey-line article:before {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue)
}

.journey-line span {
  font: 10px 'JetBrains Mono';
  color: var(--blue)
}

.journey-line h3 {
  font-size: 18px;
  margin-top: 24px
}

.journey-line p {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 7px
}

.about-statement {
  text-align: center;
  padding-top: 85px !important;
  padding-bottom: 85px !important
}

.about-statement>div {
  display: flex;
  justify-content: center;
  gap: 8px
}

.about-statement>div span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--blue-2);
  font: 10px 'JetBrains Mono'
}

.about-statement h2 {
  font-size: clamp(43px, 5vw, 68px);
  max-width: 900px;
  margin: 25px auto 0
}

.about-statement p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

/* Services — dedicated cards */
/* Interactive service explorer (list + live preview panel) */
.service-explorer {
  display: grid;
  grid-template-columns: 360px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm)
}

.se-list {
  border-right: 1px solid var(--line);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.se-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 19px 16px;
  background: transparent;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  text-align: left;
  color: var(--muted);
  transition: background .35s, color .35s;
  font-family: inherit
}

.se-row:hover {
  background: var(--surface-2);
  color: var(--ink)
}

.se-row.active {
  background: color-mix(in srgb, var(--accent) 15%, var(--surface-2));
  color: var(--ink)
}

.se-num {
  font: 700 11px 'JetBrains Mono', monospace;
  color: var(--accent);
  width: 22px;
  flex: 0 0 auto
}

.se-title {
  flex: 1;
  font: 600 15px 'Inter', sans-serif;
  letter-spacing: -.01em
}

.se-arrow {
  opacity: 0;
  transform: translateX(-6px) rotate(0deg);
  transition: opacity .35s, transform .35s;
  color: var(--accent);
  flex: 0 0 auto
}

.se-row.active .se-arrow,
.se-row:hover .se-arrow {
  opacity: 1;
  transform: translateX(0) rotate(45deg)
}

.se-panels {
  position: relative;
  min-height: 430px
}

.se-panel {
  position: absolute;
  inset: 0;
  padding: 54px 56px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.se-panel.active {
  opacity: 1;
  pointer-events: auto
}

.se-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at 88% 12%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 62%);
  pointer-events: none
}

.se-panel-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 17%, var(--surface-2));
  color: var(--accent);
  font-size: 23px;
  margin-bottom: 28px
}

.se-panel h3 {
  position: relative;
  font-size: 29px;
  letter-spacing: -.02em
}

.se-panel p {
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-top: 15px;
  max-width: 480px
}

.se-panel ul {
  position: relative;
  list-style: none;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 26px;
  max-width: 560px
}

.se-panel li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.5
}

.se-panel li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex: 0 0 auto
}

@media(max-width:900px) {
  .service-explorer {
    grid-template-columns: 1fr
  }

  .se-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    -webkit-overflow-scrolling: touch
  }

  .se-row {
    flex: 0 0 auto;
    padding: 12px 15px;
    white-space: nowrap
  }

  .se-title {
    font-size: 13px
  }

  .se-arrow {
    display: none
  }

  .se-panels {
    min-height: 0
  }

  .se-panel {
    position: static;
    display: none;
    opacity: 1
  }

  .se-panel.active {
    display: flex
  }

  .se-panel {
    padding: 34px 26px
  }

  .se-panel ul {
    grid-template-columns: 1fr
  }
}

/* Services hero — mini site-preview mockup (nav > heading > media w/ overlaid stats > CTA) */
.services-hero {
  grid-template-columns: 1.08fr .92fr
}

.services-spotlight {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px
}

.spotlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px 18px 28px;
  overflow: visible
}

.spotlight-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 9px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  margin-bottom: 26px
}

.spotlight-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 700 12.5px 'Space Grotesk', sans-serif;
  color: var(--ink)
}

.spotlight-logo i {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: block
}

.spotlight-nav-links {
  display: none
}

.spotlight-nav-cta {
  font: 600 9.5px Inter, sans-serif;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  white-space: nowrap
}

.spotlight-heading {
  text-align: center;
  padding: 0 10px 26px
}

.spotlight-heading .sp-kicker {
  display: inline-block;
  font: 600 9.5px 'JetBrains Mono', monospace;
  letter-spacing: .1em;
  color: var(--blue-2);
  text-transform: uppercase;
  margin-bottom: 9px
}

.spotlight-heading h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.02em
}

.spotlight-heading p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6
}

.spotlight-media {
  position: relative;
  height: 230px;
  margin: 0 6px
}

.media-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06)
}

.spotlight-media:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(8, 15, 28, .55), rgba(8, 15, 28, .15) 45%, rgba(8, 15, 28, .6));
  z-index: 1;
  pointer-events: none
}

.spotlight-tags {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right
}

.spotlight-tags span {
  font: 600 8.5px Inter, sans-serif;
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5)
}

.spotlight-badge {
  position: absolute;
  padding: 10px 13px;
  border-radius: 13px;
  background: rgba(8, 15, 28, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .4);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 3
}

.spotlight-badge b {
  font: 700 17px 'Space Grotesk', sans-serif;
  color: var(--ink);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 3px
}

.spotlight-badge b i {
  font-style: normal;
  color: #ffb648;
  font-size: 12px;
  position: static;
  filter: none
}

.spotlight-badge span {
  font-size: 8px;
  color: var(--muted);
  white-space: nowrap
}

.badge-projects {
  left: 12px;
  top: -16px
}

.badge-rating {
  right: -14px;
  top: 42%;
  transform: translateY(-50%)
}

.badge-reach {
  left: -14px;
  bottom: -16px
}

.sp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 24px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: 600 11.5px Inter, sans-serif;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s
}

.sp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 124, 250, .35)
}

@media(max-width:1100px) {
  .services-spotlight {
    max-width: 400px
  }
}

@media(max-width:900px) {
  .services-hero {
    grid-template-columns: 1fr
  }

  .services-spotlight {
    justify-self: center;
    margin-top: 24px
  }
}

@media(max-width:640px) {
  .services-spotlight {
    max-width: 320px
  }

  .spotlight-media {
    height: 190px
  }

  .spotlight-badge {
    padding: 8px 10px
  }

  .spotlight-badge b {
    font-size: 14px
  }

  .badge-rating {
    right: -10px
  }

  .badge-reach {
    left: -10px
  }
}

/* Shared/legacy page compatibility */
section>h1 {
  font-size: clamp(44px, 5vw, 68px)
}

.section-head {
  margin-bottom: 38px
}

.section-head .k {
  font: 10px 'JetBrains Mono';
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue)
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin-top: 12px
}

.section-head p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 12px;
  max-width: 650px
}

.grid2,
.grid3,
.grid4 {
  display: grid;
  gap: 16px
}

.grid2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid4 {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  display: block;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s, box-shadow .3s, transform .3s
}

.card:hover {
  border-color: rgba(255, 255, 255, .22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px)
}

.card .ic,
.feature .ic,
.info-item .ic {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(91, 124, 250, .14);
  color: var(--blue-2);
  font: 600 11px 'JetBrains Mono';
  margin-bottom: 18px
}

.card h3 {
  font-size: 20px
}

.card p {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--muted);
  margin-top: 9px
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 7px
}

.card li {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  gap: 8px
}

.card li:before {
  content: "↗";
  color: var(--blue)
}

.stats {
  max-width: calc(var(--page) - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface)
}

.stat {
  padding: 25px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border: 0
}

.stat b,
.stat span {
  display: block
}

.stat b {
  font: 700 28px 'Space Grotesk'
}

.stat span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px
}

.num-list {
  display: grid
}

.num-row {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid var(--line)
}

.num-row .n {
  font: 700 30px 'Space Grotesk';
  color: var(--surface-3)
}

.num-row h3 {
  font-size: 25px
}

.num-row p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px
}

.num-row .chips,
.real-proj .chips,
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px
}

.num-row .chips span,
.real-proj .chips span,
.tech-chip,
.tag {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 10px;
  color: var(--blue-2)
}

.readmore {
  display: inline-flex;
  gap: 7px;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue)
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line)
}

.step {
  padding: 25px 20px 0 0;
  position: relative
}

.step:before {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue)
}

.step .num {
  font: 10px 'JetBrains Mono';
  color: var(--blue);
  margin-top: 15px
}

.step h4 {
  font-size: 17px;
  margin-top: 25px
}

.step p {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 8px
}

.faq-group {
  display: grid;
  gap: 10px
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 21px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary:after {
  content: "+";
  font-size: 19px;
  color: var(--blue);
  font-weight: 400
}

.faq-item[open] summary:after {
  content: "–"
}

.faq-item .a {
  padding: 0 21px 20px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 900px
}

.cta-banner {
  padding: 55px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #304eda, #675be7);
  color: #fff;
  text-align: center
}

.cta-banner h2 {
  font-size: 42px
}

.cta-banner p {
  color: #dce2ff;
  margin-top: 12px
}

.cta-banner .cta-row {
  justify-content: center;
  margin-top: 24px
}

.real-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.real-proj,
.proj,
.testimonial,
.blog-card,
.blog-featured,
.spotlight,
.member {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface)
}

.real-proj h3,
.proj h3 {
  font-size: 20px
}

.real-proj p,
.proj p {
  font-size: 12px;
  line-height: 1.68;
  color: var(--muted);
  margin-top: 10px
}

.proj {
  overflow: hidden;
  padding: 0
}

.proj .thumb {
  height: 150px;
  background: linear-gradient(145deg, #101f38, #0a1626);
  display: grid;
  place-items: center
}

.proj .thumb-ic {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--blue-2);
  box-shadow: var(--shadow-sm)
}

.proj .body {
  padding: 22px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.why-item {
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface)
}

.why-item .ic {
  width: 35px;
  height: 35px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: rgba(91, 124, 250, .14);
  display: grid;
  place-items: center;
  color: var(--blue-2);
  font: 10px 'JetBrains Mono'
}

.why-item span {
  font-size: 11px;
  font-weight: 600
}

.feature {
  display: flex;
  gap: 14px
}

.feature .ic {
  flex: 0 0 39px;
  margin: 0
}

.feature h4 {
  font-size: 17px
}

.feature p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 7px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px
}

.field {
  margin-bottom: 17px
}

.field label {
  display: block;
  font: 10px 'JetBrains Mono';
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 7px
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(79, 109, 245, .12);
  border-color: var(--blue)
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.info-item {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line)
}

.info-item .ic {
  margin: 0;
  flex: 0 0 39px
}

.info-item b,
.info-item span {
  display: block
}

.info-item b {
  font-size: 12px
}

.info-item span {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px
}

.map-block {
  height: 160px;
  margin-top: 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 11px
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center
}

.blog-featured .thumb,
.blog-card .thumb,
.post-hero-thumb {
  overflow: hidden;
  border-radius: 14px
}

.blog-featured h3 {
  font-size: 30px
}

.blog-featured p,
.blog-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px
}

.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font: 9px 'JetBrains Mono';
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px
}

.blog-card {
  padding: 0;
  overflow: hidden
}

.blog-card .body {
  padding: 22px
}

.blog-card h3 {
  font-size: 20px
}

.cat-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 25px
}

.cat-pills button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 10px;
  cursor: pointer
}

.cat-pills button.active {
  background: var(--blue);
  color: #fff
}

.post-body {
  max-width: 790px;
  margin: 0 auto
}

.post-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px
}

.post-body h2 {
  font-size: 30px;
  margin: 40px 0 15px
}

.author-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-top: 40px
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-weight: 700
}

.about-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 800px
}

.team,
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.member {
  text-align: center
}

.member .avatar {
  margin: 0 auto 12px
}

.timeline {
  display: grid;
  gap: 20px
}

.tl-item {
  padding-left: 25px;
  border-left: 1px solid var(--line);
  position: relative
}

.tl-item:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue)
}

.tl-item b {
  font: 10px 'JetBrains Mono';
  color: var(--blue)
}

.tl-item h4 {
  font-size: 17px;
  margin-top: 5px
}

.tl-item p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 80px max(28px, calc((100vw - var(--page))/2 + 28px)) 0
}

.footer-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  right: -250px;
  top: -360px
}

.footer-orbit:after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%
}

.foot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .65fr .65fr .9fr;
  gap: 55px;
  padding-bottom: 65px
}

.brand-light {
  color: #fff
}

.foot-brand p {
  color: #93a1b5;
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 330px;
  margin-top: 18px
}

.footer-email {
  display: inline-flex;
  gap: 10px;
  margin-top: 27px;
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 5px
}

.foot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px
}

.foot-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #77869b;
  margin-bottom: 8px
}

.foot-col a {
  font-size: 12.5px;
  color: #bac4d3
}

.foot-col a:hover {
  color: #fff
}

.foot-contact p {
  font-size: 12px;
  line-height: 1.65;
  color: #93a1b5;
  margin-bottom: 5px
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px
}

.footer-socials a {
  font-size: 10px
}

.foot-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #78869a;
  font-size: 10px
}

.foot-row>span:nth-child(2) {
  text-align: center
}

.foot-row>div {
  display: flex;
  gap: 16px
}

.foot-row a:hover {
  color: #fff
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  color: #0a1428;
  box-shadow: var(--shadow);
  font-size: 13px
}

.whatsapp-fab small {
  font-size: 10px;
  font-weight: 600
}

/* Responsive */
@media(max-width:1100px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto
  }

  .hero-stage {
    min-height: 560px
  }

  .hero-copy {
    max-width: 850px
  }

  .hero h1 {
    max-width: 820px
  }

  .case-study,
  .case-study.reverse {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .case-study.reverse .case-copy,
  .case-study.reverse .case-visual {
    order: initial
  }

  .case-copy {
    max-width: 750px
  }

  .reachflux-section {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .reachflux-copy {
    max-width: 750px
  }

  .portfolio-case {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .portfolio-case-copy {
    max-width: 800px
  }

  .page-hero {
    grid-template-columns: 1fr
  }

  .portfolio-orbit {
    display: none
  }

  .manifesto-card {
    min-height: 330px
  }

  .about-hero {
    grid-template-columns: 1fr
  }

  .team-layout {
    grid-template-columns: 1fr
  }

  .team-note {
    min-height: 370px
  }

  .foot-grid {
    grid-template-columns: 1.2fr .7fr .7fr
  }

  .foot-contact {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center
  }

  .foot-contact h5,
  .foot-contact p {
    grid-column: 1
  }

  .foot-contact .btn {
    grid-column: 2;
    grid-row: 1/3
  }

  .footer-socials {
    grid-column: 1/-1
  }
}

@media(max-width:900px) {
  .topline-meta span {
    display: none
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px
  }

  .nav-links,
  .nav-actions {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .nav-mobile.open {
    display: block
  }

  .navbar {
    gap: 14px
  }

  .site-main>section {
    padding: 82px 22px
  }

  .split-intro,
  .system-head {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start
  }

  .section-intro {
    margin-bottom: 38px
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr)
  }

  .dark-section {
    max-width: calc(100% - 28px) !important;
    padding: 55px 28px !important
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px
  }

  .process-grid article {
    padding-right: 10px
  }

  .final-cta {
    max-width: calc(100% - 28px) !important;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 55px 32px !important;
    margin-bottom: 70px !important
  }

  .final-cta>div:last-child {
    max-width: 550px
  }

  .metric-band {
    max-width: calc(100% - 44px);
    grid-template-columns: repeat(2, 1fr)
  }

  .metric-band article:nth-child(2) {
    border-right: 0
  }

  .metric-band article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .work-card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .featured-product {
    max-width: calc(100% - 28px) !important;
    grid-template-columns: 1fr;
    padding: 45px 28px !important
  }

  .approach-grid {
    grid-template-columns: 1fr
  }

  .approach-primary {
    min-height: 520px
  }

  .principle-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .journey-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0
  }

  .grid3,
  .grid4,
  .team,
  .values {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .real-projects {
    grid-template-columns: 1fr
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .blog-featured {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .foot-brand,
  .foot-contact {
    grid-column: 1/-1
  }

  .foot-contact {
    display: flex
  }

  .foot-row {
    grid-template-columns: 1fr auto
  }

  .foot-row>span:nth-child(2) {
    display: none
  }
}

@media(max-width:640px) {
  .topline {
    display: none
  }

  .site-header {
    top: 0
  }

  .navbar {
    border-radius: 15px;
    padding: 9px 10px 9px 13px
  }

  .brand {
    font-size: 16px
  }

  .brand-mark {
    width: 29px;
    height: 29px
  }

  .site-main>section {
    padding: 67px 18px
  }

  .home-hero {
    padding-top: 48px !important
  }

  .hero h1,
  .page-hero-copy h1 {
    font-size: 47px
  }

  .hero-lead,
  .page-hero-copy>p {
    font-size: 15px
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr
  }

  .hero-proof div:last-child {
    grid-column: 1/-1
  }

  .hero-stage {
    min-height: 410px;
    margin: 0 -8px
  }

  .product-window {
    border-radius: 18px
  }

  .dashboard-shell {
    grid-template-columns: 42px 1fr;
    min-height: 330px
  }

  .dashboard-nav {
    padding: 12px 8px;
    gap: 13px
  }

  .dashboard-nav span {
    width: 16px;
    height: 16px
  }

  .dashboard-main {
    padding: 13px
  }

  .dash-heading h3 {
    font-size: 13px
  }

  .dash-heading button {
    width: 25px;
    height: 25px
  }

  .metric-grid {
    gap: 6px
  }

  .metric-grid article {
    padding: 8px
  }

  .metric-grid b {
    font-size: 12px
  }

  .dashboard-grid {
    grid-template-columns: 1fr
  }

  .activity-panel {
    display: none
  }

  .chart-bars {
    height: 70px
  }

  .dash-table {
    display: none
  }

  .floating-code {
    left: 2%;
    top: -5%;
    transform: scale(.82)
  }

  .floating-metric {
    right: 1%;
    bottom: 0;
    transform: scale(.82)
  }

  .trust-section {
    grid-template-columns: 1fr;
    gap: 15px
  }

  .trust-intro i {
    flex: 1
  }

  .section-intro h2,
  .system-head h2 {
    font-size: 38px
  }

  .section-intro>p {
    font-size: 13.5px
  }

  .capability-card {
    padding: 24px 22px
  }

  .case-study {
    padding: 25px;
    border-radius: 22px;
    min-height: auto
  }

  .case-copy h3 {
    font-size: 34px
  }

  .case-visual {
    min-height: 300px
  }

  .clinic-ui,
  .pos-ui,
  .perfume-ui {
    padding: 12px
  }

  .clinic-layout {
    min-height: 265px
  }

  .clinic-content {
    padding: 15px
  }

  .clinic-panels {
    display: none
  }

  .appointment-row {
    padding: 8px
  }

  .pos-body {
    grid-template-columns: 1fr
  }

  .order-panel {
    display: none
  }

  .perfume-hero {
    min-height: 260px;
    padding: 20px
  }

  .perfume-hero h4 {
    font-size: 21px
  }

  .bottle {
    width: 75px;
    height: 140px
  }

  .dark-section {
    max-width: calc(100% - 16px) !important;
    padding: 45px 20px !important;
    border-radius: 22px
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process-grid article {
    padding-top: 20px
  }

  .system-footer {
    gap: 7px
  }

  .reachflux-visual {
    grid-template-columns: 42px 1fr;
    min-height: 370px
  }

  .rf-sidebar {
    padding: 13px 8px;
    gap: 14px
  }

  .rf-main {
    padding: 13px
  }

  .rf-grid {
    grid-template-columns: 1fr
  }

  .rf-grid article:last-child {
    display: none
  }

  .rf-table {
    display: none
  }

  .to-card {
    width: 86vw;
    margin-left: -43vw;
    padding: 30px 26px 26px
  }

  .to-card p {
    font-size: 15px
  }

  .to-stage {
    height: 460px
  }

  .to-quote {
    font-size: 40px
  }

  .final-cta {
    max-width: calc(100% - 16px) !important;
    padding: 42px 22px !important;
    margin-bottom: 55px !important;
    border-radius: 22px
  }

  .final-cta h2 {
    font-size: 39px
  }

  .page-hero {
    min-height: auto;
    padding-top: 55px !important
  }

  .metric-band {
    max-width: calc(100% - 36px)
  }

  .metric-band article {
    padding: 20px
  }

  .metric-band b {
    font-size: 23px
  }

  .portfolio-case {
    padding: 25px;
    border-radius: 22px
  }

  .portfolio-case-copy h3 {
    font-size: 34px
  }

  .portfolio-device {
    min-height: 350px
  }

  .clinic-device,
  .pos-device,
  .brand-device {
    padding: 11px
  }

  .device-body {
    grid-template-columns: 37px 1fr;
    min-height: 315px
  }

  .device-body aside {
    padding: 10px 6px
  }

  .device-body aside span {
    width: 16px;
    height: 16px
  }

  .device-content {
    padding: 13px
  }

  .device-heading h4 {
    font-size: 14px
  }

  .device-metrics span {
    padding: 8px
  }

  .device-metrics b {
    font-size: 14px
  }

  .device-table div:last-child {
    display: none
  }

  .pos-device-body {
    grid-template-columns: 1fr;
    min-height: 330px
  }

  .pos-checkout {
    display: none
  }

  .pos-card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pos-card-grid span:nth-child(n+5) {
    display: none
  }

  .brand-device-main {
    min-height: 330px;
    padding: 20px
  }

  .brand-device-main h4 {
    font-size: 22px
  }

  .brand-bottle {
    width: 85px;
    height: 165px
  }

  .work-card-grid {
    grid-template-columns: 1fr
  }

  .featured-product {
    max-width: calc(100% - 16px) !important;
    padding: 35px 20px !important
  }

  .featured-product-ui {
    grid-template-columns: 42px 1fr;
    min-height: 320px
  }

  .fp-side {
    padding: 12px 8px
  }

  .fp-main {
    padding: 13px
  }

  .fp-metrics article {
    padding: 10px
  }

  .fp-chart {
    height: 130px
  }

  .approach-primary {
    min-height: 480px;
    padding: 26px
  }

  .approach-primary h3 {
    font-size: 35px
  }

  .workflow-map {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .workflow-map i {
    display: none
  }

  .approach-stack article {
    padding: 25px
  }

  .principle-grid article {
    padding: 27px 20px
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .team-note {
    padding: 28px;
    min-height: auto
  }

  .journey-line {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .about-statement h2 {
    font-size: 40px
  }

  .grid2,
  .grid3,
  .grid4,
  .team,
  .values {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .process {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100% - 36px)
  }

  .stat:nth-child(2) {
    border-right: 0
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .num-row {
    grid-template-columns: 48px 1fr
  }

  .blog-featured {
    padding: 16px
  }

  .cta-banner {
    padding: 40px 20px
  }

  .cta-banner h2 {
    font-size: 34px
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .foot-brand,
  .foot-contact {
    grid-column: auto
  }

  .foot-contact {
    display: flex
  }

  .foot-row {
    grid-template-columns: 1fr
  }

  .foot-row>div {
    margin-top: 3px
  }

  .whatsapp-fab small {
    display: none
  }

  .whatsapp-fab {
    width: 45px;
    height: 45px;
    justify-content: center;
    padding: 0;
    border-radius: 50%
  }
}

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

  *,
  *:before,
  *:after {
    animation: none !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important
  }

  .motion-card,
  .depth-layer {
    transform: none !important
  }
}

@media(max-width:640px) {
  .home-hero {
    overflow: hidden
  }

  .hero-stage {
    max-width: 100%;
    overflow: hidden;
    border-radius: 22px
  }

  .stage-glow {
    max-width: 100%
  }
}

.cat-pills {
  flex-wrap: wrap
}

@media(max-width:640px) {

  .js-ready [data-aos="fade-left"],
  .js-ready [data-aos="fade-right"] {
    transform: translateY(22px)
  }
}

/* Portfolio project screenshots supplied for the selected-work refresh */
.project-image {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #0b1527;
  border: 1px solid rgba(17, 31, 55, .12);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-visual.project-image,
.portfolio-device.project-image,
.reachflux-visual.project-image,
.featured-product-ui.project-image {
  min-height: 0;
}

.reachflux-visual.project-image,
.featured-product-ui.project-image {
  display: block;
}

.reachflux-visual.project-image {
  position: relative;
  display: block;
  min-height: 460px;
}

.reachflux-visual.project-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-case-dark .portfolio-device.project-image {
  border-color: rgba(255, 255, 255, .12);
}

@media(max-width:640px) {

  .case-visual.project-image,
  .portfolio-device.project-image,
  .reachflux-visual.project-image,
  .featured-product-ui.project-image {
    min-height: 0;
  }
}


/* ===== BLUECODES HUB END LEVEL MOTION UI ===== */
html {
  scroll-behavior: smooth
}

body {
  background: #07111f;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, .12), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(124, 92, 255, .14), transparent 35%);
}

.hero h1,
.page-hero h1 {
  letter-spacing: -.045em;
}

.motion-card,
.service-card,
.work-card {
  position: relative;
  isolation: isolate;
}

.motion-card:before,
.service-card:before,
.work-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, #38d9ff, transparent);
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.motion-card:hover:before,
.service-card:hover:before,
.work-card:hover:before {
  opacity: .5
}

.capability-card,
.case-study,
.to-card,
.card,
.team-card,
.faq-item {
  transition: transform .4s var(--ease), border-color .35s, box-shadow .35s
}

.service-card {
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), border .3s;
}

.service-card:hover {
  transform: translateY(-14px) rotateX(3deg)
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -.04em
}

.text-gradient {
  background: linear-gradient(90deg, #38d9ff, #8b5cf6, #fff);
  background-size: 200%;
  animation: gradientMove 5s infinite;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes gradientMove {
  50% {
    background-position: 100%
  }
}

@media(max-width:700px) {
  .section-head h2 {
    font-size: 40px
  }
}

/* ===== ADVANCED MOTION SYSTEM ===== */

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: #050b16;
  overflow: hidden
}

.preloader:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(91, 124, 250, .16), transparent 60%)
}

.preloader-mark {
  position: relative;
  display: flex;
  font: 600 20px 'Space Grotesk', sans-serif;
  letter-spacing: -.02em;
  color: var(--ink);
  overflow: hidden
}

.preloader-mark .pl-accent {
  color: var(--blue-2)
}

.preloader-bar {
  position: relative;
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden
}

.preloader-bar span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.preloader-count {
  position: relative;
  font: 500 11px 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  color: var(--muted-2)
}

.preloader-curtain {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 2
}

html.preload-lock,
html.preload-lock body {
  overflow: hidden;
  height: 100%
}

@media(prefers-reduced-motion:reduce) {
  .preloader {
    display: none
  }
}

/* Custom cursor (fine pointers only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  will-change: transform;
  transform: translate(-50%, -50%)
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  opacity: 0
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .35);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .35s var(--ease), height .35s var(--ease), border-color .35s, background .35s
}

.cursor-ring span {
  font: 600 9.5px 'JetBrains Mono', monospace;
  letter-spacing: .06em;
  color: var(--ink);
  opacity: 0;
  transition: opacity .25s;
  text-transform: uppercase;
  white-space: nowrap
}

html.has-fine-cursor .cursor-dot,
html.has-fine-cursor .cursor-ring {
  opacity: 1
}

html.has-fine-cursor {
  cursor: none
}

html.has-fine-cursor a,
html.has-fine-cursor button,
html.has-fine-cursor .motion-card {
  cursor: none
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(91, 124, 250, .12);
  border-color: rgba(91, 124, 250, .5)
}

.cursor-ring.is-hover span {
  opacity: 1
}

.cursor-ring.is-hover~.cursor-dot,
.cursor-dot.is-hidden {
  opacity: 0
}

@media(pointer:coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none
  }
}

/* Line-mask heading reveal */
.split-mask {
  overflow: hidden;
  display: block;
  padding-bottom: .06em
}

.split-inner {
  display: inline-block;
  will-change: transform
}

/* GSAP-driven reveal handoff — disable CSS transition fighting once JS owns the motion */
html.gsap-motion [data-reveal],
html.gsap-motion [data-aos] {
  transition: none
}

/* Process scroll-progress stepper */
.process-grid {
  position: relative
}

.process-progress {
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(91, 124, 250, .6)
}

.process-grid article {
  transition: opacity .4s, transform .4s
}

.process-grid article {
  opacity: .38
}

.process-grid article.is-active {
  opacity: 1
}

.process-grid article.is-active:before {
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(67, 217, 224, .14)
}

/* Case study / project image clip reveal */
.clip-reveal {
  clip-path: inset(0 0 0 0);
  will-change: clip-path
}

/* Cursor-aware magnetic buttons keep pointer affordance for touch */
@media(hover:none) {
  html.has-fine-cursor {
    cursor: auto
  }

  html.has-fine-cursor a,
  html.has-fine-cursor button {
    cursor: pointer
  }
}

/* Contact page — availability card, quick contact, location block */
.availability-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  min-height: 400px;
  justify-content: space-between
}

.availability-badge {
  position: absolute;
  top: -17px;
  left: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10, 18, 32, .94);
  border: 1px solid rgba(74, 222, 149, .32);
  color: #8ff0c0;
  font: 600 10px 'JetBrains Mono', monospace;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .4)
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 149, .5);
  animation: pulseDot 2s infinite;
  flex: 0 0 auto
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 149, .45)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(74, 222, 149, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 149, 0)
  }
}

.avail-body {
  margin-top: 16px
}

.avail-body .kicker {
  margin-bottom: 12px
}

.avail-body h3 {
  font-size: 23px;
  line-height: 1.3
}

.avail-body h3 strong {
  color: var(--blue-2)
}

.avail-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px
}

.avail-channels {
  display: grid;
  gap: 11px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.avail-channels a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12.5px;
  color: var(--ink-2);
  transition: color .3s
}

.avail-channels a:hover {
  color: var(--blue-2)
}

.avail-channels a span {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--blue-2);
  font-size: 12px;
  flex: 0 0 auto
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s, transform .3s, box-shadow .3s
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: var(--shadow-sm)
}

.quick-card .ic {
  flex: 0 0 auto;
  margin-bottom: 0
}

.quick-card h3 {
  font-size: 14.5px
}

.quick-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px
}

.qc-arrow {
  margin-left: auto;
  color: var(--muted-2);
  transition: transform .3s, color .3s;
  flex: 0 0 auto
}

.quick-card:hover .qc-arrow {
  color: var(--blue-2);
  transform: translate(3px, -3px)
}

.form-note {
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--muted-2)
}

.location-block {
  position: relative;
  height: 160px;
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.loc-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 24px 24px
}

.loc-pin {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(91, 124, 250, .15);
  display: grid;
  place-items: center;
  color: var(--blue-2);
  font-size: 14px;
  box-shadow: 0 0 0 8px rgba(91, 124, 250, .09)
}

.loc-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  color: var(--muted)
}

.loc-label b {
  display: block;
  color: var(--ink);
  font-size: 12.5px;
  margin-bottom: 2px
}

@media(max-width:900px) {
  .quick-contact-grid {
    grid-template-columns: 1fr
  }
}

/* ===== Premium hero refinements ===== */
.home-hero {
  padding-top: 35px !important;
  align-items: start !important;
  gap: 35px !important
}

.home-hero .hero-copy h1 {
  max-width: 650px;
  line-height: 1.05
}

.home-hero .hero-lead {
  max-width: 560px
}

.home-hero .hero-stage {
  margin-top: -15px;
  transform: scale(.96);
  transform-origin: top center
}

.capabilities-section .split-intro h2 {
  max-width: 560px
}

.capability-card {
  min-height: 290px
}

/* What we build upgrade */
.capability-grid {
  gap: 22px !important
}

.capability-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(245, 248, 255, .75));
  border: 1px solid rgba(80, 110, 240, .14);
  box-shadow: 0 18px 45px rgba(15, 25, 60, .08)
}

.capability-card h3 {
  font-size: 24px !important
}

/* Reachflux image fix */
.reachflux-visual {
  width: 100%;
  overflow: hidden;
  transform: none !important
}

.reachflux-main img,
.reachflux-visual img {
  max-width: 100%;
  object-fit: contain
}

.reachflux-copy h2 {
  max-width: 520px
}

/* Service/About modern screenshot style */
.page-hero {
  gap: 55px !important
}

.services-spotlight,
.manifesto-wrap,
.availability-card {
  border-radius: 32px !important;
  overflow: hidden
}

.spotlight-card {
  border-radius: 30px !important
}

.spotlight-media img {
  height: 330px !important;
  object-fit: cover !important
}

.services-spotlight {
  box-shadow: 0 35px 90px rgba(25, 40, 90, .18)
}

.page-hero-copy h1 {
  line-height: 1.05 !important
}

/* Contact redesign */
.contact-grid {
  background: linear-gradient(145deg, #fff, #f5f7ff);
  border: 1px solid rgba(80, 110, 240, .15);
  border-radius: 32px;
  padding: 35px !important;
  box-shadow: 0 25px 70px rgba(20, 35, 80, .1)
}

.contact-grid form {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(20, 30, 60, .08)
}

.quick-contact-grid .quick-card {
  border-radius: 22px !important
}

@media(max-width:900px) {
  .home-hero .hero-stage {
    transform: none;
    margin-top: 20px
  }

  .page-hero {
    gap: 25px !important
  }
}

/* ===== FINAL DESIGN PASS ===== */
/* compact ReachFlux */
.reachflux-section {
  align-items: center !important;
  padding-top: 55px !important;
  padding-bottom: 55px !important
}

.reachflux-copy h2 {
  font-size: clamp(34px, 3.5vw, 52px) !important;
  line-height: 1.05 !important;
  max-width: 460px !important
}

.reachflux-copy p {
  max-width: 430px !important
}

.reachflux-visual {
  max-height: 480px !important
}

.reachflux-visual.project-image img {
  height: 430px !important;
  object-fit: cover !important;
  object-position: center !important
}

/* service hero closer to reference */
.services-hero {
  grid-template-columns: 1fr !important;
  max-width: 1180px;
  margin: auto;
  text-align: center;
  padding-top: 70px !important
}

.services-hero .page-hero-copy {
  margin: auto;
  max-width: 850px
}

.services-hero .page-hero-copy h1 {
  font-size: clamp(42px, 5vw, 72px) !important
}

.services-hero .page-hero-copy>p {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px
}

.services-spotlight {
  width: min(900px, 100%);
  margin: 40px auto 0 !important
}

.spotlight-card {
  background: #fff !important;
  color: #111 !important;
  padding: 25px !important
}

.spotlight-media {
  border-radius: 28px !important;
  overflow: hidden
}

.spotlight-media img {
  height: 390px !important
}

/* about hero premium */
.about-hero {
  grid-template-columns: 1fr .9fr !important
}

.about-hero .manifesto-card {
  background: #0d1728 !important;
  border-radius: 32px !important
}

.about-hero .page-hero-copy h1 {
  font-size: clamp(42px, 5vw, 76px) !important
}

/* home hero */
.home-hero .hero-copy {
  padding-top: 0 !important
}

.home-hero .hero-stage {
  margin-top: -35px !important
}

/* contact */
.contact-grid {
  gap: 30px !important
}

.contact-grid input,
.contact-grid textarea,
.contact-grid select {
  border-radius: 16px !important;
  padding: 15px !important
}

@media(max-width:900px) {
  .services-hero {
    grid-template-columns: 1fr !important
  }

  .reachflux-visual.project-image img {
    height: auto !important
  }

  .home-hero .hero-stage {
    margin-top: 0 !important
  }
}


/* Final reference hero + reachflux refinements */
.services-hero {
  display: block !important;
  max-width: 1180px;
  margin: 20px auto 0;
  min-height: auto !important;
  padding: 35px 0 70px !important;
  text-align: center;
}

.services-hero .page-hero-copy {
  max-width: 760px;
  margin: 0 auto 34px;
}

.services-hero .page-hero-copy h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  max-width: 760px;
  margin: 12px auto;
}

.services-hero .page-hero-copy>p {
  max-width: 560px;
  margin: 18px auto 0;
}

.services-hero .cta-row {
  justify-content: center
}

.services-spotlight {
  max-width: 620px !important;
  margin: 0 auto;
}

.spotlight-card {
  background: #fff !important;
  color: #101d33;
  border-color: #e8edf7 !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

.spotlight-nav {
  background: #f7f9ff !important;
  border-color: #e5eaf5 !important;
}

.spotlight-logo {
  color: #101d33 !important
}

.spotlight-media {
  height: 300px !important
}

.media-art {
  object-position: center;
  filter: none
}

.spotlight-heading h3,
.spotlight-heading p {
  color: #101d33
}

.spotlight-badge {
  background: #fff !important;
  border-color: #e5eaf5 !important;
  box-shadow: 0 15px 35px rgba(20, 30, 60, .12);
}

.spotlight-badge b {
  color: #101d33
}

.spotlight-tags span {
  color: #334155;
  text-shadow: none
}

.sp-cta {
  background: #5b7cfa !important;
  color: #fff !important
}

/* compact ReachFlux section */
.reachflux-section {
  padding: 38px !important;
}

.reachflux-section .reachflux-copy h2 {
  font-size: clamp(34px, 3.6vw, 48px) !important;
  max-width: 470px;
}

.reachflux-section .reachflux-copy>p {
  max-width: 430px;
}

.reachflux-section .reachflux-visual {
  min-height: 330px !important;
}

.reachflux-section .reachflux-visual img {
  object-fit: contain !important;
  padding: 10px;
}

.reachflux-section {
  display: grid;
}

@media(min-width:900px) {
  .reachflux-section {
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
    align-items: center
  }
}

/* Final services hero refinement */
.services-hero {
  display: block !important;
  background: #fff;
  color: #10206b;
  border-radius: 28px;
  margin: 24px auto;
  max-width: 1240px;
  padding: 54px 70px 48px;
  min-height: auto;
}

.services-hero .page-hero-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.services-hero .eyebrow {
  justify-content: center;
  color: #5b6b9b;
}

.services-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  color: #101f70;
  margin: 18px auto 16px;
}

.services-hero p {
  color: #6b7899;
  max-width: 620px;
  margin: 0 auto;
}

.services-hero .cta-row {
  justify-content: center;
  display: flex;
}

.services-spotlight {
  max-width: 760px;
  margin: 0 auto;
}

.spotlight-card {
  background: #fff;
  border: 1px solid #e7eaf5;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(20, 40, 90, .12);
  padding: 18px 18px 22px;
}

.spotlight-nav {
  display: none;
}

.spotlight-heading {
  text-align: center;
  margin-bottom: 22px;
}

.spotlight-heading h3 {
  color: #12206b;
  font-size: 26px;
}

.spotlight-heading p {
  font-size: 14px;
}

.spotlight-media {
  height: 330px;
  border-radius: 24px;
  overflow: visible;
}

.spotlight-media .media-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.spotlight-badge {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.badge-projects {
  left: -45px !important;
  top: 25px !important;
}

.badge-rating {
  right: -45px !important;
  top: 55px !important;
}

.badge-reach {
  left: -20px !important;
  bottom: 25px !important;
}

.spotlight-tags {
  position: absolute;
  right: 40px;
  bottom: -28px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.sp-cta {
  display: block;
  width: max-content;
  margin: 55px auto 0;
  background: #5068ed;
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
}

@media(max-width:768px) {
  .services-hero {
    padding: 35px 20px
  }

  .spotlight-media {
    height: 240px
  }

  .badge-projects,
  .badge-rating {
    display: none
  }

  .spotlight-tags {
    display: none
  }
}

/* requested refinements */
.text-gradient {
  background: linear-gradient(90deg, #4f8cff, #9b7dfa, #43d9e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

h1,
h2,
h3 {
  color: #f8fbff
}

.btn:hover {
  color: #fff !important
}

.whatsapp-fab {
  animation: waPulse 2s infinite
}

.wa-icon {
  font-size: 26px;
  line-height: 1
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

.service-details-cta {
  padding: 40px 0;
  text-align: center
}

.view-details {
  display: inline-flex
}

/* Final visual refinement overrides */
.brand>span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -.04em;
  background: linear-gradient(90deg, #5b8cff, #9b7cff, #37d7d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.brand-mark {
  filter: saturate(1.2)
}

.manifesto-card:before {
  display: none
}

.manifesto-card {
  overflow: hidden
}

.manifesto-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 109, 245, .08), transparent 45%);
  pointer-events: none
}

.field label {
  color: #25334d
}

.field input,
.field textarea {
  color: var(--muted-2);
}

.faq-item {
  background: linear-gradient(135deg, #101f38, #0b1628);
  transition: .3s;
  border-radius: 18px
}

.faq-item:hover {
  transform: translateY(-3px)
}

.faq-item summary {
  font-size: 15px;
  padding: 24px
}

.faq-item .a {
  font-size: 14px
}

.service-card,
.service-item,
.card {
  position: relative;
  overflow: hidden
}

.service-card:before,
.service-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 15, 30, .8));
  pointer-events: none
}

.service-card:hover,
.service-item:hover {
  transform: translateY(-5px)
}

.preloader-mark {
  font-family: 'Space Grotesk';
  font-size: 28px;
  letter-spacing: -.05em
}

.preloader-mark span {
  background: linear-gradient(90deg, #5b8cff, #9b7cff, #37d7d8);
  -webkit-background-clip: text;
  color: transparent
}

.portfolio-orbit {
  display: none
}

.about-hero .manifesto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px
}


/* Final visual polish */
.services-grid .service-card h3,
.services-grid .service-card .service-title {
  color: #101b32 !important;
  text-shadow: none;
}

.services-grid .service-card p {
  color: #536582 !important;
}

.services-grid .service-card {
  position: relative;
  overflow: hidden;
}

.services-grid .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .35));
  pointer-events: none;
}

.services-grid .service-card>* {
  position: relative;
  z-index: 1;
}

.brand span,
.preloader-mark span {
  font-weight: 900;
  background: linear-gradient(90deg, #5b7cfa, #43d9e0, #9b7dfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
}

.preloader-mark {
  transform: perspective(500px) rotateX(18deg);
  text-shadow: 0 15px 35px rgba(91, 124, 250, .45);
  font-size: clamp(32px, 5vw, 64px) !important;
  font-weight: 900;
}

.approach-primary,
.approach-stack article {
  position: relative;
  overflow: hidden;
}

.approach-primary:before,
.approach-stack article:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.approach-primary:before {
  background-image: url('../images/software.png');
}

.approach-stack article:nth-child(1):before {
  background-image: url('../images/banking.png');
}

.approach-stack article:nth-child(2):before {
  background-image: url('../images/employee-attendance-management.webp');
}

.approach-stack article:nth-child(3):before {
  background-image: url('../images/reachflux-ai-outreach.webp');
}

.approach-primary>*,
.approach-stack article>* {
  position: relative;
  z-index: 1
}

.btn.btn-light:hover,
.magnetic:hover {
  color: #07111f !important;
  background: #ffffff !important;
}

.whatsapp-fab small {
  color: #07111f !important;
  font-weight: 700
}


/* Final visual polish overrides */
.service-card h2,
.service-card h3,
.service-card .title {
  color: #16233b !important;
  text-shadow: none;
}

.service-card p {
  color: #425574 !important;
}

.service-card .tag,
.service-card .pill {
  color: #fff;
}

/* 3D brand treatment */
.brand>span {
  background: linear-gradient(135deg, #ffffff 0%, #63d8ff 35%, #5b7cfa 65%, #9b7dfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 8px 24px rgba(91, 124, 250, .45);
  transform: translateZ(0);
}

.preloader-mark {
  font-size: 28px !important;
  letter-spacing: -.06em !important;
  background: linear-gradient(135deg, #fff, #5ee7ff, #6c7cff, #b58cff);
  -webkit-background-clip: text;
  color: transparent !important;
  text-shadow: 0 12px 35px rgba(91, 124, 250, .5);
  animation: brandFloat 2.8s ease-in-out infinite;
}

@keyframes brandFloat {
  50% {
    transform: translateY(-6px) scale(1.03)
  }
}

/* About approach cards image layers */
.approach-primary,
.approach-stack article {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.approach-primary:before,
.approach-stack article:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: -1;
}

.approach-primary:before {
  background-image: linear-gradient(90deg, #07111fdd, #07111f88), url("images/about.jfif");
}

.approach-stack article:nth-child(1):before {
  background-image: linear-gradient(90deg, #07111fdd, #07111f88), url("images/banking.png");
}

.approach-stack article:nth-child(2):before {
  background-image: linear-gradient(90deg, #07111fdd, #07111f88), url("images/foodapi.png");
}

.approach-stack article:nth-child(3):before {
  background-image: linear-gradient(90deg, #07111fdd, #07111f88), url("images/ecommerce.png");
}

/* FAQ premium styling */
.faq-group {
  gap: 16px !important;
}

.faq-item {
  border-radius: 22px !important;
  background: linear-gradient(145deg, #111f38, #0b172b) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.faq-item summary {
  padding: 24px 26px !important;
  font-size: 15px !important;
}

.faq-item summary:after {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(91, 124, 250, .15);
}

.faq-item .a {
  padding: 0 26px 24px !important;
  font-size: 14px !important;
}


/* Final responsive polish */
.brand,
.preloader-mark,
.site-footer .brand,
.navbar .brand {
  font-family: 'Space Grotesk', sans-serif !important
}

.preloader-mark .pl-accent,
.brand>span>span {
  color: var(--blue) !important
}

.preloader {
  font-family: 'Space Grotesk', sans-serif !important
}

.nav-drop .drop-panel {
  top: calc(100% + 4px);
  padding-top: 14px
}

.nav-drop:hover .drop-panel {
  pointer-events: auto
}

.drop-panel:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px
}

.drop-panel {
  position: absolute
}

/* home service cards */
.service-card h3,
.service-card h2,
.services-card h3 {
  color: #f7f9ff !important
}

.service-card p,
.services-card p {
  color: #9fb1cc !important
}

/* service explorer mobile */
@media(max-width:820px) {
  .service-explorer {
    grid-template-columns: 1fr !important
  }

  .se-tabs,
  .service-tabs {
    display: flex !important;
    overflow-x: auto;
    flex-direction: row !important;
    gap: 10px !important
  }

  .se-tab,
  .service-tab {
    min-width: 220px !important
  }

  .se-panel,
  .se-content {
    min-height: auto !important
  }

  .service-explorer .active {
    transform: none !important
  }
}

/* portfolio spacing */
.portfolio-case-stack {
  gap: 48px !important
}

.portfolio-case {
  margin-bottom: 0 !important
}

@media(max-width:700px) {
  .portfolio-case-stack {
    gap: 22px !important
  }

  .portfolio-case {
    padding: 22px !important
  }
}

/* whatsapp */
.whatsapp-fab .wa-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

/* latest requested fixes */
.portfolio-case-stack {
  gap: 48px !important;
}

.work-card-grid {
  column-gap: 28px !important;
  row-gap: 32px !important;
}

@media(max-width:900px) {
  .portfolio-case-stack {
    gap: 28px !important
  }

  .work-card-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important
  }
}

.capability-card h3 {
  color: #15233c !important;
}

.whatsapp-fab {
  gap: 10px !important;
  padding: 14px 22px !important;
}

.wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  font-size: 22px !important;
  font-family: Arial;
}

/* final whatsapp button polish */
.whatsapp-fab .wa-icon {
  background: #25D366 !important;
  color: #fff !important;
  font-size: 18px !important;
}

.whatsapp-fab small {
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

@media(max-width:900px) {
  .whatsapp-fab small {
    display: block !important
  }
}


/* refinements */

/* Preloader BlueCodesHub gradient match */
.preloader-mark span {
  background: linear-gradient(90deg,
      #ffffff 0%,
      #5b8cff 45%,
      #9b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.preloader-mark .pl-accent {
  background: linear-gradient(90deg,
      #5b8cff,
      #9b7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}


/* Portfolio cards spacing */
.portfolio-case-stack {
  gap: 70px !important;
}


@media(max-width:900px) {

  .portfolio-case-stack {
    gap: 35px !important;
  }

  /* Footer center alignment */
  .site-footer {
    text-align: center;
  }

  .foot-grid,
  .foot-col,
  .foot-contact {
    align-items: center !important;
    text-align: center !important;
  }

  .foot-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-email {
    justify-content: center;
  }

  .foot-contact .btn {
    margin: auto;
  }


  /* Mobile menu alignment */
  .nav-mobile {
    text-align: center;
  }

  .nav-mobile a {
    text-align: center;
  }

  .navbar .brand {
    justify-content: center;
  }


  /* WhatsApp mobile */
  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  .whatsapp-fab .wa-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-fab small {
    font-size: 12px;
  }
}


/* Premium WhatsApp button */
.whatsapp-fab .wa-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366 !important;
  color: white !important;
  width: 30px;
  height: 30px;
  font-size: 0 !important;
}

.whatsapp-fab .wa-icon:after {
  content: '☎';
  font-size: 16px;
  color: #fff;
}

.new-final {
  margin-top: 25px !important;
}


/* v8 mobile fixes from latest review */

/* Services explorer: show all service panels on touch devices */
@media (max-width: 900px) {
  .service-explorer,
  .service-explorer .se-tabs,
  .service-explorer .se-panel,
  .service-explorer .service-content,
  .service-explorer .service-preview {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .service-explorer .se-tabs,
  .service-tabs {
    flex-direction: column !important;
    overflow: visible !important;
    width: 100% !important;
  }

  .service-explorer .se-tab,
  .service-tabs button,
  .service-tabs a {
    width: 100% !important;
  }

  .service-explorer .se-panel {
    margin-top: 18px !important;
  }

  /* About hero mobile */
  .about-hero {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: left;
  }

  .about-hero .manifesto-wrap,
  .about-hero img,
  .about-hero .hero-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-hero h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
    line-height: 1.05 !important;
  }

  /* WhatsApp mobile pill */
  .whatsapp-fab {
    right: 14px !important;
    bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 112px !important;
    height: 48px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
  }

  .whatsapp-fab .wa-icon {
    flex: 0 0 28px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-fab small {
    display: block !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
}

/* v9 — services explorer stability + proper mobile cards */
.se-panels {
  isolation: isolate;
}

.se-panel {
  overflow: hidden;
}

@media (max-width: 900px) {
  /* Mobile uses six independent cards instead of a detached tab strip. */
  .service-explorer {
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .service-explorer .se-list {
    display: none !important;
  }

  .service-explorer .se-panels {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
  }

  .service-explorer .se-panel,
  .service-explorer .se-panel.active {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 28px 22px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    border: 1px solid var(--line) !important;
    border-radius: 20px !important;
    background: var(--surface) !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .service-explorer .se-panel-icon {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 22px !important;
    border-radius: 15px !important;
  }

  .service-explorer .se-panel h3 {
    font-size: clamp(24px, 7.2vw, 30px) !important;
    line-height: 1.12 !important;
  }

  .service-explorer .se-panel p {
    margin-top: 13px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .service-explorer .se-panel ul {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    margin-top: 22px !important;
    padding-top: 20px !important;
  }

  .service-explorer .se-panel li {
    font-size: 12.5px !important;
  }
}

@media (max-width: 430px) {
  .service-explorer .se-panels {
    gap: 14px !important;
  }

  .service-explorer .se-panel,
  .service-explorer .se-panel.active {
    padding: 24px 18px !important;
    border-radius: 17px !important;
  }
}

@media (max-width: 900px) {
  .service-explorer .se-panel::after {
    content: attr(data-service-num);
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: var(--accent);
    font: 700 11px 'JetBrains Mono', monospace;
    letter-spacing: .04em;
    opacity: .9;
  }
}
