:root {
  --ink: #0c0c0e;
  --ink-soft: #17171b;
  --paper: #f3f1eb;
  --white: #ffffff;
  --muted: #696971;
  --line: rgba(12, 12, 14, 0.14);
  --purple: #7557ff;
  --purple-soft: #ddd6ff;
  --lime: #d7ff58;
  --orange: #ff6c3a;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shadow: 0 28px 90px rgba(12, 12, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
.brand {
  font-family: "Manrope", sans-serif;
}

.shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--purple);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(243, 241, 235, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #39393f;
  font-size: 0.84rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: #515159;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 145px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero-copy h1 span {
  display: block;
  color: var(--purple);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(12, 12, 14, 0.13);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(117, 87, 255, 0.2);
  border-radius: 50%;
}

.visual-orbit-one {
  width: 520px;
  height: 520px;
}

.visual-orbit-two {
  width: 390px;
  height: 390px;
}

.product-window {
  position: relative;
  z-index: 2;
  width: min(100%, 505px);
  overflow: hidden;
  border: 1px solid rgba(12, 12, 14, 0.12);
  border-radius: 28px;
  background: #fefefe;
  box-shadow: 0 45px 110px rgba(29, 24, 52, 0.22);
  transform: rotate(-2.5deg);
}

.window-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #e8e8eb;
}

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

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

.window-label {
  color: #8b8b92;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.window-content {
  min-height: 395px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.mini-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  background: var(--ink);
}

.mini-logo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
}

.mini-sidebar i {
  width: 18px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.mini-sidebar i.active {
  background: var(--purple);
}

.mini-dashboard {
  padding: 25px;
}

.mini-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mini-heading div {
  display: grid;
  gap: 4px;
}

.mini-heading small,
.mini-stats small,
.progress-panel small,
.dashboard-cards small {
  color: #96969c;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.mini-heading strong {
  font-size: 1.08rem;
}

.mini-heading > span {
  height: max-content;
  padding: 5px 8px;
  border-radius: 99px;
  background: #e9ffe9;
  color: #3c8c47;
  font-size: 0.47rem;
  font-weight: 800;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.mini-stats article {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #e7e7ea;
  border-radius: 11px;
}

.mini-stats b {
  font-size: 0.92rem;
}

.mini-stats em {
  color: #3d9c52;
  font-size: 0.48rem;
  font-style: normal;
}

.mini-chart {
  position: relative;
  height: 145px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #ececef;
  border-radius: 13px;
  background: linear-gradient(180deg, #f8f6ff, #fff);
}

.chart-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 35px, rgba(12,12,14,.06) 35px 36px);
}

.mini-chart svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: calc(100% - 20px);
}

.mini-chart path {
  fill: none;
  stroke: var(--purple);
  stroke-width: 4;
}

.mini-table {
  display: grid;
  gap: 8px;
  margin-top: 17px;
}

.mini-table span {
  height: 7px;
  border-radius: 99px;
  background: #ececef;
}

.mini-table span:nth-child(1) { width: 92%; }
.mini-table span:nth-child(2) { width: 77%; }
.mini-table span:nth-child(3) { width: 85%; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(12, 12, 14, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(12, 12, 14, 0.12);
  backdrop-filter: blur(14px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.55rem;
}

.floating-card strong {
  font-size: 0.72rem;
}

.floating-card-top {
  top: 45px;
  right: -16px;
}

.floating-card-bottom {
  bottom: 54px;
  left: -16px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  font-weight: 800;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--ink);
  font-size: 0.57rem;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.trust-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--ink);
  color: var(--white);
}

.marquee {
  overflow: hidden;
}

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

.marquee-track span {
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-track i {
  color: var(--lime);
  font-style: normal;
}

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

.products-section {
  background: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-intro h2,
.services-heading h2,
.about-copy h2,
.contact-panel h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-showcase {
  display: grid;
  gap: 24px;
}

.flagship-card {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 45px;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.flagship-purple {
  background: #ddd5ff;
}

.flagship-dark {
  background: var(--ink);
  color: var(--white);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-topline a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.flagship-copy h3 {
  margin: 70px 0 20px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.flagship-copy > p {
  max-width: 540px;
  color: inherit;
  opacity: .78;
}

.flagship-copy ul {
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.flagship-copy li::before {
  content: "↳";
  margin-right: 10px;
}

.flagship-ui {
  align-self: end;
  transform: translateY(70px) rotate(2deg);
}

.flagship-dark .flagship-ui {
  transform: translateY(65px) rotate(-2deg);
}

.ui-browser {
  overflow: hidden;
  border: 1px solid rgba(12,12,14,.12);
  border-radius: 24px 24px 0 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 36px 90px rgba(12,12,14,.22);
}

.ui-browser-top {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #e8e8eb;
}

.ui-browser-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8ce;
}

.ui-browser-top i {
  margin-left: auto;
  color: #9b9ba2;
  font-size: 0.52rem;
  font-style: normal;
}

.ui-layout {
  min-height: 365px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.ui-layout aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 19px;
  background: #f3f1f8;
}

.ui-layout aside b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--purple);
  color: white;
  font-size: .64rem;
}

.ui-layout aside span {
  width: 19px;
  height: 6px;
  border-radius: 99px;
  background: #d5d3dd;
}

.ui-layout aside span.selected {
  background: var(--purple);
}

.ui-main {
  padding: 28px;
}

.ui-main h4 {
  margin: 6px 0 22px;
  font-size: 1.35rem;
}

.subject-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.subject-row span {
  padding: 11px 8px;
  border-radius: 10px;
  background: #f0edff;
  color: #6b4af2;
  font-size: .56rem;
  font-weight: 700;
  text-align: center;
}

.progress-panel {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 24px;
  border-radius: 16px;
  background: #f7f7fa;
}

.progress-panel div:first-child {
  display: grid;
}

.progress-panel b {
  font-size: 2.2rem;
}

.ring {
  width: 92px;
  height: 92px;
  border: 14px solid #e8e5f4;
  border-top-color: var(--purple);
  border-right-color: var(--purple);
  border-radius: 50%;
  transform: rotate(20deg);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-cards span {
  display: grid;
  gap: 5px;
  padding: 17px;
  border: 1px solid #e8e8ec;
  border-radius: 13px;
}

.dashboard-cards b {
  font-size: 1.35rem;
}

.data-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 150px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #f7f7fa;
}

.data-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--purple);
}

.data-bars i:nth-child(1) { height: 45%; }
.data-bars i:nth-child(2) { height: 70%; }
.data-bars i:nth-child(3) { height: 55%; }
.data-bars i:nth-child(4) { height: 88%; }
.data-bars i:nth-child(5) { height: 67%; }

.work-section {
  background: var(--paper);
}

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

.work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.work-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
}

.work-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.work-card-wide .work-visual {
  min-height: 480px;
}

.work-copy {
  padding: 23px 25px 28px;
}

.work-card-wide .work-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.work-copy > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-bottom: 7px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.work-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.visual-oasis {
  display: grid;
  place-items: center;
  padding: 42px;
  background: #e53329;
}

.site-frame {
  width: min(100%, 700px);
  min-height: 345px;
  padding: 29px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(60,0,0,.22);
  transform: rotate(-2deg);
}

.site-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececee;
}

.site-top span {
  font-weight: 800;
}

.site-top i {
  color: #8a8a92;
  font-size: .65rem;
  font-style: normal;
}

.site-hero-shape {
  height: 135px;
  margin-top: 24px;
  border-radius: 15px;
  background: linear-gradient(135deg, #111 0 52%, #f2c844 52%);
}

.site-copy-lines {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.site-copy-lines b,
.site-copy-lines span {
  height: 9px;
  border-radius: 99px;
  background: #e9e9ec;
}

.site-copy-lines b { width: 45%; background: #161619; }
.site-copy-lines span:nth-child(2) { width: 84%; }
.site-copy-lines span:nth-child(3) { width: 66%; }

.visual-rehab {
  display: grid;
  place-items: center;
  padding: 35px;
  background: #d8f4eb;
}

.site-frame.compact {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotate(2deg);
}

.health-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0e6b5f;
  color: white;
  font-weight: 800;
}

.site-frame.compact h4 {
  margin: 34px 0 24px;
  font-size: 2.3rem;
  line-height: 1;
}

.fake-button {
  width: 105px;
  height: 34px;
  border-radius: 99px;
  background: #0e6b5f;
}

.visual-zak {
  display: grid;
  place-items: center;
  background: #dad7cf;
}

.architect-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(12,12,14,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(12,12,14,.1) 1px, transparent 1px);
  background-size: 45px 45px;
}

.zak-word {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -.09em;
}

.visual-zak small {
  position: absolute;
  margin-top: 105px;
  letter-spacing: .35em;
}

.visual-store {
  display: grid;
  place-items: center;
  background: #f1d6e7;
}

.store-bag {
  width: 180px;
  height: 205px;
  display: grid;
  place-items: center;
  border-radius: 18px 18px 30px 30px;
  background: #111;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  box-shadow: 0 25px 55px rgba(12,12,14,.25);
  transform: rotate(-4deg);
}

.store-bag span {
  color: #ff88cc;
}

.store-tag {
  position: absolute;
  right: 24px;
  bottom: 23px;
  padding: 8px 12px;
  border-radius: 99px;
  background: white;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.visual-staffing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 48px;
  background: #1665d8;
  color: white;
}

.staffing-copy {
  display: grid;
  gap: 18px;
}

.staffing-copy span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.staffing-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -.065em;
  line-height: .95;
}

.staffing-panels {
  display: flex;
  align-items: end;
  gap: 13px;
  height: 220px;
}

.staffing-panels i {
  width: 45px;
  border-radius: 9px 9px 0 0;
  background: rgba(255,255,255,.28);
}

.staffing-panels i:nth-child(1) { height: 45%; }
.staffing-panels i:nth-child(2) { height: 75%; }
.staffing-panels i:nth-child(3) { height: 100%; background: var(--lime); }

.visual-motors {
  display: grid;
  place-items: center;
  background: #202024;
  color: white;
}

.road {
  position: absolute;
  width: 140%;
  height: 70px;
  background: #111;
  transform: rotate(-18deg);
}

.road::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 4px dashed rgba(255,255,255,.55);
}

.motor-type {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -.1em;
}

.visual-motors > span {
  position: absolute;
  z-index: 2;
  margin-top: 130px;
  color: var(--lime);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.more-work {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.more-work p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.services-section {
  background: var(--ink);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(480px, 1.28fr);
  gap: clamp(60px, 9vw, 130px);
}

.services-heading {
  position: sticky;
  top: 135px;
  align-self: start;
}

.services-heading h2 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

.services-heading > p:last-child {
  max-width: 490px;
  margin-top: 28px;
  color: rgba(255,255,255,.62);
}

.services-list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.service-item {
  display: grid;
  grid-template-columns: 55px 1fr 25px;
  gap: 26px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.service-item > span {
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 700;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  letter-spacing: -.045em;
}

.service-item p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}

.service-item i {
  color: var(--lime);
  font-style: normal;
  font-size: 1.2rem;
}

.process-section {
  background: var(--white);
}

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

.process-grid article {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article > span {
  color: var(--purple);
  font-size: .7rem;
  font-weight: 800;
}

.process-grid h3 {
  margin: 78px 0 15px;
  font-size: 1.55rem;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .85rem;
}

.testimonial-section {
  padding-top: 0;
  background: var(--white);
}

.testimonial-card {
  position: relative;
  padding: clamp(42px, 7vw, 92px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: white;
}

.quote-mark {
  position: absolute;
  top: -35px;
  right: 35px;
  color: rgba(255,255,255,.12);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  max-width: 980px;
  margin-bottom: 42px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.person-monogram {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--purple);
  font-size: .68rem;
  font-weight: 800;
}

.testimonial-person div:last-child {
  display: grid;
}

.testimonial-person strong {
  font-size: .84rem;
}

.testimonial-person span {
  color: rgba(255,255,255,.65);
  font-size: .7rem;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 8vw, 115px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.portrait-frame {
  overflow: hidden;
  border-radius: 160px 160px 26px 26px;
  background: #ccc;
}

.portrait-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.about-stamp {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 155px;
  height: 155px;
  display: grid;
  place-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  transform: rotate(8deg);
}

.about-stamp span {
  font-size: .47rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.about-stamp strong {
  font-size: .8rem;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-lead {
  color: var(--ink) !important;
  font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
  font-weight: 500;
}

.about-copy > p {
  max-width: 720px;
  color: var(--muted);
}

.about-facts {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts span {
  color: var(--muted);
  font-size: .7rem;
}

.about-facts strong {
  font-size: .82rem;
}

.contact-section {
  padding-top: 0;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  padding: clamp(42px, 7vw, 84px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
}

.contact-panel h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.contact-panel p:not(.eyebrow) {
  max-width: 750px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.button-light {
  background: var(--lime);
  color: var(--ink);
  white-space: nowrap;
}

.contact-text-link {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
}

.site-footer {
  padding: 35px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-grid p,
.footer-grid > span {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.footer-grid > span {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

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

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

  .hero-visual {
    min-height: 560px;
  }

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

  .flagship-ui {
    width: min(100%, 760px);
    justify-self: end;
  }

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

  .services-heading {
    position: static;
  }

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

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 30px, 1240px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-shell {
    min-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
  }

  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: white;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 80px 30px;
    background: var(--ink);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -.05em;
  }

  .nav-cta {
    margin-top: 12px;
    background: var(--lime);
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 13vw, 6rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-proof div {
    grid-template-columns: 110px 1fr;
    align-items: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flagship-card {
    min-height: auto;
    padding: 30px;
    border-radius: 28px;
  }

  .flagship-copy h3 {
    margin-top: 45px;
  }

  .flagship-ui {
    transform: translateY(50px) rotate(1deg);
  }

  .work-card-wide {
    grid-column: auto;
    display: block;
  }

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

  .work-card-wide .work-visual,
  .work-visual {
    min-height: 390px;
  }

  .work-card-wide .work-copy {
    padding: 25px;
  }

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

  .about-visual {
    max-width: 520px;
  }

  .contact-panel {
    border-radius: 28px;
  }

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

  .footer-grid > span {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

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

  .visual-orbit-one {
    width: 350px;
    height: 350px;
  }

  .visual-orbit-two {
    width: 260px;
    height: 260px;
  }

  .window-content {
    min-height: 300px;
    grid-template-columns: 45px 1fr;
  }

  .mini-dashboard {
    padding: 18px;
  }

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

  .mini-stats article:nth-child(n+2) {
    display: none;
  }

  .mini-chart {
    height: 110px;
  }

  .floating-card {
    display: none;
  }

  .section-intro h2,
  .services-heading h2,
  .about-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .flagship-card {
    padding: 22px;
  }

  .card-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .flagship-copy h3 {
    margin-top: 35px;
    font-size: 3rem;
  }

  .ui-layout {
    grid-template-columns: 44px 1fr;
    min-height: 280px;
  }

  .ui-main {
    padding: 18px;
  }

  .subject-row {
    grid-template-columns: 1fr;
  }

  .subject-row span:nth-child(n+2) {
    display: none;
  }

  .progress-panel {
    min-height: 125px;
  }

  .ring {
    width: 65px;
    height: 65px;
    border-width: 10px;
  }

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

  .dashboard-cards span:nth-child(2) {
    display: none;
  }

  .data-bars {
    height: 105px;
  }

  .work-visual,
  .work-card-wide .work-visual {
    min-height: 300px;
  }

  .visual-oasis,
  .visual-staffing {
    padding: 25px;
  }

  .site-frame {
    min-height: 255px;
    padding: 20px;
  }

  .staffing-copy strong {
    font-size: 2.8rem;
  }

  .staffing-panels {
    display: none;
  }

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

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

  .testimonial-card {
    border-radius: 28px;
  }

  .portrait-frame img {
    height: 460px;
  }

  .about-stamp {
    right: 5px;
  }

  .about-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-panel {
    padding: 30px 22px;
  }

  .button-light {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.flagship-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.flagship-copy h3 {
  margin: 42px 0 18px;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.flagship-copy > p {
  max-width: 520px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.flagship-copy ul {
  margin-top: 22px;
  font-size: 0.8rem;
}

.flagship-ui {
  width: 115%;
  margin-top: auto;
  align-self: center;
  transform: translateY(48px) rotate(1.5deg);
}

.flagship-dark .flagship-ui {
  transform: translateY(48px) rotate(-1.5deg);
}

.ui-layout {
  min-height: 300px;
}

.ui-main {
  padding: 22px;
}

.progress-panel {
  min-height: 135px;
}

.data-bars {
  height: 120px;
}

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

  .flagship-card {
    min-height: auto;
  }

  .flagship-ui {
    width: min(100%, 760px);
  }
}

.flagship-card {
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
}

/* =========================================
   COMMERCIAL PROJECT COLLAGE
   ========================================= */

.project-collage-section {
  overflow: hidden;
  background: #f7f6f2;
}

.project-collage-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.project-collage-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.project-collage-heading > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Desktop collage canvas */
.project-collage {
  position: relative;
  min-height: 780px;
}

/* Base project item */
.collage-project {
  position: absolute;
  display: block;
  overflow: visible;
  border-radius: 18px;
  outline: none;
}

.collage-project > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 20px 55px rgba(12, 12, 14, 0.1);
  transition:
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 300ms ease,
    filter 300ms ease;
}

.collage-project:hover > img,
.collage-project:focus-visible > img {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 34px 80px rgba(12, 12, 14, 0.18);
  filter: brightness(0.78);
}

/* Desktop project positions */
.project-zak {
  top: 170px;
  left: 0;
  width: 24%;
  height: 245px;
}

.project-store {
  top: 20px;
  left: 24.5%;
  width: 34%;
  height: 285px;
}

.project-rehab {
  top: 120px;
  left: 60%;
  width: 18%;
  height: 190px;
}

.project-staffing {
  top: 180px;
  right: 0;
  width: 23%;
  height: 220px;
}

.project-motors {
  top: 335px;
  left: 24.5%;
  width: 17%;
  height: 245px;
}

.project-oasis {
  top: 325px;
  left: 43%;
  width: 35%;
  height: 255px;
}

/* Floating hover detail */
.project-hover-card {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;

  width: min(350px, 92vw);
  min-height: 225px;

  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 16px;
  align-items: start;

  padding: 26px;

  border: 1px solid rgba(12, 12, 14, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 25px 70px rgba(12, 12, 14, 0.2);
  backdrop-filter: blur(18px);

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collage-project:hover .project-hover-card,
.collage-project:focus-visible .project-hover-card {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-number {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.project-category {
  display: block;
  margin-bottom: 9px;
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-hover-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.project-hover-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.project-arrow {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.68rem;
}

/* Hide mobile descriptions on desktop */
.mobile-project-copy {
  display: none;
}

.additional-projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.additional-projects span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.additional-projects p {
  margin: 0;
  font-size: 0.8rem;
}

/* Medium desktop */
@media (max-width: 1100px) {
  .project-collage {
    min-height: 700px;
  }

  .project-zak {
    width: 25%;
    height: 220px;
  }

  .project-store {
    width: 35%;
    height: 260px;
  }

  .project-rehab {
    width: 19%;
  }

  .project-staffing {
    width: 22%;
    height: 205px;
  }

  .project-motors {
    height: 225px;
  }

  .project-oasis {
    height: 235px;
  }
}

/* Tablet and mobile: normal cards */
@media (max-width: 820px) {
  .project-collage-heading {
    margin-bottom: 32px;
  }

  .project-collage {
    position: static;
    min-height: 0;

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

  .collage-project,
  .project-zak,
  .project-store,
  .project-rehab,
  .project-staffing,
  .project-motors,
  .project-oasis {
    position: static;
    width: auto;
    height: auto;

    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
  }

  .collage-project > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: top;
  }

  .collage-project:hover > img,
  .collage-project:focus-visible > img {
    transform: none;
    filter: none;
    box-shadow: none;
  }

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

  .mobile-project-copy {
    display: block;
    padding: 20px;
  }

  .mobile-project-copy > span {
    display: block;
    margin-bottom: 9px;
    color: var(--purple);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-project-copy h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
  }

  .mobile-project-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.55;
  }
}

@media (max-width: 600px) {
  .project-collage {
    grid-template-columns: 1fr;
  }

  .project-collage-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .mobile-project-copy {
    padding: 18px;
  }

  .additional-projects {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* No hover available */
@media (hover: none) {
  .collage-project > img {
    filter: none;
  }
}

/* =========================================
   STABLE MOBILE NAVIGATION
   ========================================= */

@media (max-width: 820px) {
  .site-header {
    width: 100%;
    transform: none;
  }

  .nav-shell {
    position: relative;
    z-index: 1003;
  }

  .menu-toggle {
    position: relative;
    z-index: 1004;
    flex: 0 0 44px;
    padding: 0;
    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1002;

    width: 100%;
    height: 100dvh;
    min-height: 100vh;

    padding:
      max(105px, calc(env(safe-area-inset-top) + 85px))
      30px
      max(40px, env(safe-area-inset-bottom));

    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    background: var(--ink);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px);

    transition:
      opacity 200ms ease,
      visibility 200ms ease,
      transform 200ms ease;
  }

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

  .site-header.scrolled .menu-toggle {
    box-shadow: 0 8px 25px rgba(12, 12, 14, 0.16);
  }
}