/* ─── RESET & ROOT ─────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --ink: #0f181e;
  --ink2: #5c5c70;
  --ink3: #9898ac;
  --cream: #f5f4f0;
  --cream2: #eeede8;
  --white: #ffffff;
  /* --red:#e63329;
  --red2:#ff4438; */
  --red: #018496;
  --red2: #34b8c4;
  --border: rgba(10, 10, 15, 0.08);
  --border2: rgba(10, 10, 15, 0.13);
  --r: 8px;
  --display: 'Syne', sans-serif;
  --body: 'Inter', sans-serif;
  --trans: .18s cubic-bezier(.4, 0, .2, 1);
  --focus-ring: var(--red);
  --focus-ring-on-dark: #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

/* ─── GLOBAL KEYBOARD FOCUS ───────────────────────────── */
:where(
  a[href],
  button,
  input,
  select,
  textarea,
  summary,
  [contenteditable="true"],
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px
}

:where(.hero, .bg-ink, .footer, .product-card, .case-built)
  :where(
    a[href],
    button,
    input,
    select,
    textarea,
    summary,
    [contenteditable="true"],
    [tabindex]:not([tabindex="-1"])
  ):focus-visible {
  outline-color: var(--focus-ring-on-dark)
}

/* ─── GLOBAL REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important
  }

  .fade-in,
  .fade-in-2,
  .fade-in-3,
  .fade-in-4 {
    opacity: 1 !important;
    transform: none !important
  }

  .reveal,
  .reveal.reveal-pending,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .nav-cta:hover,
  .btn-dark:hover,
  .btn:hover .arrow,
  .svc-row:hover .svc-arrow,
  .test-card:hover,
  .work-card:hover,
  .work-card:hover .work-card-image img,
  .work-card:hover .work-card-link span,
  .blog-card:hover,
  .portfolio-card:hover,
  .events-card:hover,
  .business-unit-link:hover,
  .about-stories-footer .text-link:hover .arrow,
  .about-stories-footer .text-link:focus-visible .arrow,
  .contact-location-link:hover span,
  .submit:hover {
    transform: none !important
  }
}

/* ─── PAGE ROUTER ─────────────────────────────────────── */
.page {
  display: none
}

.page.active {
  display: block
}

/* ─── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: var(--ink2);
  border-radius: 2px
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background var(--trans), border-color var(--trans);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -.4px;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 0
}

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

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(240px, 52vw);
  mix-blend-mode: screen
}

.nav.scrolled .logo-img,
body.about-page .nav:not(.scrolled) .logo-img,
body.contact-page .nav:not(.scrolled) .logo-img,
body.careers-page .nav:not(.scrolled) .logo-img,
body.portfolio-page .nav:not(.scrolled) .logo-img,
body.products-page .nav:not(.scrolled) .logo-img,
body.events-page .nav:not(.scrolled) .logo-img,
body.blog-page .nav:not(.scrolled) .logo-img {
  mix-blend-mode: normal;
  filter: invert(1)
}

.nav .logo {
  color: #fff
}

.nav.scrolled .logo {
  color: var(--ink)
}

body.about-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.about-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.about-page .nav:not(.scrolled) .nav-a:hover,
body.about-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.about-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.contact-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.contact-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.contact-page .nav:not(.scrolled) .nav-a:hover,
body.contact-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.contact-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.careers-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.careers-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.careers-page .nav:not(.scrolled) .nav-a:hover,
body.careers-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.careers-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.portfolio-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.portfolio-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.portfolio-page .nav:not(.scrolled) .nav-a:hover,
body.portfolio-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.portfolio-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.products-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.products-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.products-page .nav:not(.scrolled) .nav-a:hover,
body.products-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.products-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.events-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.events-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.events-page .nav:not(.scrolled) .nav-a:hover,
body.events-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.events-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

body.blog-page .nav:not(.scrolled) .logo {
  color: var(--ink)
}

body.blog-page .nav:not(.scrolled) .nav-a {
  color: var(--ink2)
}

body.blog-page .nav:not(.scrolled) .nav-a:hover,
body.blog-page .nav:not(.scrolled) .nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

body.blog-page .nav:not(.scrolled) .hbg span {
  background: var(--ink)
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-left: 1px;
  margin-bottom: 10px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-group {
  position: relative
}

.nav-group-trigger {
  gap: 5px
}

.nav-group-trigger span {
  font-size: 11px;
  transition: transform var(--trans)
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 35px rgba(15, 24, 30, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity var(--trans), transform var(--trans), visibility var(--trans)
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  height: 9px
}

.nav-dropdown a {
  display: block;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--ink2);
  font-size: 13px;
  text-decoration: none
}

.nav-dropdown a:hover {
  color: var(--ink);
  background: var(--cream)
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-group:hover .nav-group-trigger span,
.nav-group:focus-within .nav-group-trigger span {
  transform: rotate(180deg)
}

.nav-a {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink2);
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  cursor: pointer;
  border: none;
  background: transparent
}

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

.nav-a:hover,
.nav-a.on {
  color: var(--ink);
  background: var(--cream)
}

.nav-cta {
  margin-left: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  cursor: pointer;
  border: none;
  letter-spacing: .1px
}

a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px)
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent
}

.hbg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--trans)
}

.hbg.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hbg.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hbg.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mob-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  z-index: 499
}

.mob-menu.open {
  display: block
}

.mob-a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--body);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: left
}

.mob-a.on,
.mob-company-label.on {
  color: var(--red)
}

body.contact-page .mob-menu > .mob-a[href="contact.html"] {
  color: var(--red)
}

body.products-page .mob-menu > .mob-a[href="platforms.html"] {
  color: var(--red)
}

.mob-cta {
  display: block;
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center
}

.mob-company-label {
  display: block;
  padding: 13px 0 7px;
  color: var(--ink3);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase
}

.mob-company-links {
  padding-left: 16px;
  border-left: 1px solid var(--border2)
}

@media(max-width:960px) {
  .nav-links,
  .nav-inner > .nav-cta {
    display: none
  }

  .hbg {
    display: flex
  }
}

/* ─── TYPOGRAPHY SYSTEM ───────────────────────────────── */
.display-xl {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--ink)
}

.display-lg {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--ink)
}

.display-md {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--ink)
}

.display-sm {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.5px;
  color: var(--ink)
}

.label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 15px;
}

.body-lg {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink2);
  font-weight: 300
}

.body-md {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2)
}

.body-sm {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink2)
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 500;
  border-radius: 7px;
  text-decoration: none;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  font-size: 14px
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 13px 28px
}

.btn-dark:hover {
  background: var(--red);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 12px 26px;
  border: 1.5px solid var(--border2)
}

.btn-outline:hover {
  background: var(--cream);
  border-color: var(--ink)
}

.btn-ghost {
  background: transparent;
  color: var(--ink2);
  padding: 12px 20px
}

.btn-ghost:hover {
  color: var(--ink)
}

.arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--trans)
}

.btn:hover .arrow {
  transform: translateX(3px)
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px
}

.section {
  padding: 100px 0
}

.section-sm {
  padding: 60px 0
}

.bg-cream {
  background: var(--cream)
}

.bg-ink {
  background: var(--ink)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

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

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

/* ─── DIVIDER ─────────────────────────────────────────── */
hr.thin {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0
}

/* ─── FADE IN ANIMATION ───────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-in {
  animation: fadeUp .6s ease forwards
}

.fade-in-2 {
  animation: fadeUp .6s .1s ease both
}

.fade-in-3 {
  animation: fadeUp .6s .2s ease both
}

.fade-in-4 {
  animation: fadeUp .6s .3s ease both
}

/* ─── SHARED SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

/* ════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════ */

/* HERO */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: #071318;
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--red) 24%, transparent), transparent 44%),
    radial-gradient(circle at 10% 88%, color-mix(in srgb, var(--red2) 14%, transparent), transparent 46%),
    linear-gradient(145deg, #050a0d 0%, #071318 52%, #0c1c24 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 15, 0.30) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--red) 20%, transparent) 0%, color-mix(in srgb, var(--red2) 8%, transparent) 52%, transparent 74%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.06)
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

.hero-kicker span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: .3px
}

.hero-headline {
  max-width: 860px;
  margin-bottom: 28px;
  line-height: 1.04;
  text-wrap: balance
}

.hero .display-xl {
  color: #fff
}

.hero-headline .accent {
  color: var(--red);
  font-style: italic
}

.hero-headline .typing-word {
  display: inline-block;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  vertical-align: bottom;
  border-right: 2px solid var(--red);
  animation: typingModern 4.2s steps(6, end) infinite, cursorBlink .7s step-end infinite;
}

@keyframes typingModern {

  0%,
  12% {
    width: 0
  }

  42%,
  58% {
    width: 6.1ch
  }

  86%,
  100% {
    width: 0
  }
}

@keyframes cursorBlink {

  0%,
  49% {
    border-right-color: var(--red)
  }

  50%,
  100% {
    border-right-color: transparent
  }
}

.hero-sub {
  max-width: 500px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.72)
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px
}

.hero-proof {
  max-width: 520px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .3px
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34)
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45)
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.72)
}

.hero .btn-ghost:hover {
  color: #fff
}

.hero .btn-dark {
  background: var(--red)
}

.hero .btn-dark:hover {
  background: var(--red)
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25)
}

.metric {
  padding: 28px 24px;
  position: relative
}

.hero .metric:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12)
}

.hero .metric:nth-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12)
}

.hero .metric-n {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 4px
}

.hero .metric-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
  letter-spacing: .5px
}

.metric-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  border-radius: 0 2px 2px 0
}

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--cream)
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  animation: scroll 60s linear infinite
}

.marquee-group {
  display: flex;
  flex-shrink: 0
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px
}

.marquee-item::after {
  content: '●';
  color: var(--red);
  font-size: 6px;
  position: relative;
  top: -1px
}

/* SERVICES SECTION */
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px
}

.svc-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 120px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), padding var(--trans);
  cursor: default;
  gap: 24px
}

.svc-row:last-child {
  border-bottom: none
}

.svc-row:hover {
  background: var(--cream);
  padding-left: 40px
}

.svc-index {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  color: var(--ink3)
}

.svc-category {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase
}

.svc-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.3px
}

.svc-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tag {
  font-size: 11px;
  color: var(--ink2);
  border: 1px solid var(--border2);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none
}

.svc-arrow {
  font-size: 18px;
  color: var(--ink3);
  text-align: right;
  transition: color var(--trans), transform var(--trans)
}

.svc-row:hover .svc-arrow {
  color: var(--red);
  transform: translateX(4px)
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px
}

.process-step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  transition: background var(--trans)
}

.process-step:hover {
  background: var(--cream)
}

.step-num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  color: var(--cream2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px
}

.step-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px
}

.step-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65
}

.step-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--trans)
}

.process-step:hover .step-line {
  background: var(--red)
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px
}

.value-cell {
  padding: 40px 32px;
  position: relative
}

.value-cell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red)
}

.value-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 24px
}

.value-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7
}

.value-icon {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
  text-transform: uppercase
}

/* TESTIMONIALS */
.test-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px
}

.test-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color var(--trans), transform var(--trans)
}

.test-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px)
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px
}

.star {
  width: 12px;
  height: 12px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.test-quote {
  font-size: 12.5px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 24px
}

.test-highlight {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.25px
}

.test-divider {
  height: 1px;
  background: var(--border);
  margin-top: auto;
  margin-bottom: 20px
}

.test-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px
}

.test-role {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5
}

.test-category {
  align-self: flex-start;
  margin-top: 14px;
  padding: 5px 9px;
  border: 1px solid var(--border2);
  border-radius: 20px;
  color: var(--ink2);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase
}

.testimonials-footer {
  display: flex;
  justify-content: center;
  margin-top: 36px
}

/* INDUSTRIES */
.ind-wrap {
  padding: 88px 0;
  border-top: 1px solid var(--border);
  background: var(--white)
}

.ind-wrap .container {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(460px, 1.2fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start
}

.ind-heading {
  position: sticky;
  top: 104px
}

.ind-heading h3 {
  max-width: 380px;
  line-height: 1.18
}

.ind-heading p {
  max-width: 330px;
  margin-top: 20px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.7
}

.ind-list {
  counter-reset: industry;
  border-bottom: 1px solid var(--border2)
}

.ind-item {
  counter-increment: industry;
  display: grid;
  grid-template-columns: 34px minmax(150px, .75fr) minmax(220px, 1.25fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-top: 1px solid var(--border2);
  transition: padding-left var(--trans), border-color var(--trans)
}

.ind-item::before {
  content: counter(industry, decimal-leading-zero);
  color: var(--ink3);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px
}

.ind-item:hover {
  padding-left: 8px;
  border-color: var(--red)
}

.ind-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  transition: color var(--trans)
}

.ind-item:hover .ind-name {
  color: var(--red)
}

.ind-desc {
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.6
}

/* SELECTED WORK */
.selected-work {
  background: var(--white)
}

.selected-work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px
}

.selected-work-head>p {
  max-width: 470px;
  padding-bottom: 5px
}

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

.work-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2, .65, .3, 1)
}

.work-card:hover {
  transform: translateY(-3px)
}

.work-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream)
}

.work-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s cubic-bezier(.2, .65, .3, 1)
}

.work-card:hover .work-card-image img {
  transform: scale(1.025)
}

.work-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 2px 0
}

.work-card-meta {
  margin-bottom: 11px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase
}

.work-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.35px
}

.work-card p {
  min-height: 64px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.65
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none
}

.work-card-link span {
  transition: transform var(--trans)
}

.work-card-link:hover {
  color: var(--red)
}

.work-card:hover .work-card-link {
  color: var(--red)
}

.work-card:hover .work-card-link span {
  transform: translateX(4px)
}

.selected-work-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--white);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans)
}

.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10, 10, 15, 0.06)
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px
}

.blog-pill {
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600
}

.blog-date {
  font-size: 12px;
  color: var(--ink3)
}

.blog-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.4px;
  color: var(--ink);
  margin-bottom: 12px
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink2);
  margin-bottom: 20px
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px
}

.blog-link:hover {
  color: var(--red)
}

.blog-hero {
  padding: 128px 0 34px;
  background: var(--cream);
  border-bottom: 1px solid var(--border)
}

.blog-hero-inner {
  max-width: 860px
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.blog-reading-time {
  font-size: 12px;
  color: var(--ink3)
}

.blog-lead {
  margin-top: 16px;
  max-width: 760px
}

.blog-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start
}

.blog-content {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px;
  background: var(--white)
}

.blog-content h2 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 26px 0 12px
}

.blog-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink2);
  margin-bottom: 12px
}

.blog-content ul {
  margin: 0 0 14px 18px
}

.blog-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink2);
  margin-bottom: 4px
}

.blog-side {
  position: sticky;
  top: 88px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  background: var(--cream)
}

.blog-side .label {
  margin-bottom: 10px
}

.blog-side a {
  display: block;
  font-size: 13.5px;
  color: var(--ink2);
  text-decoration: none;
  margin-bottom: 10px
}

.blog-side a:hover {
  color: var(--red)
}

.blog-cta {
  margin-top: 16px
}

.related-blogs {
  margin-top: 34px
}

/* PORTFOLIO PAGE */
.portfolio-hero {
  padding: clamp(142px, 14vw, 196px) 0 clamp(76px, 8vw, 112px);
  background: var(--cream);
  border-bottom: 1px solid var(--border)
}

.portfolio-hero-inner {
  max-width: 1040px
}

.portfolio-hero .label {
  margin-bottom: clamp(20px, 2.5vw, 30px)
}

.portfolio-hero-title {
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(46px, 7.2vw, 96px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: clamp(-3.5px, -.045em, -1.5px);
  overflow-wrap: normal
}

.portfolio-sub {
  max-width: 680px;
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--ink2);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7
}

.portfolio-supporting {
  margin-top: 24px;
  color: var(--ink3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px
}

.portfolio-catalogue-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px
}

.portfolio-catalogue-head .label {
  grid-column: 1 / -1;
  margin-bottom: -20px
}

.portfolio-catalogue-head .display-lg { max-width: 780px }

.portfolio-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px
}

.portfolio-filter-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-right: 6px
}

.portfolio-filter {
  border: 1px solid var(--border2);
  background: var(--white);
  color: var(--ink2);
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--body);
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans), background var(--trans)
}

.portfolio-filter.active,
.portfolio-filter:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink)
}

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

.portfolio-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color var(--trans), transform var(--trans)
}

.portfolio-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px)
}

.portfolio-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream) }
.portfolio-card-image picture,
.portfolio-card-image img { display: block; width: 100%; height: 100% }
.portfolio-card-image img { object-fit: cover; object-position: top center }
.portfolio-card-content { display: flex; flex: 1; flex-direction: column; padding: 24px }

.portfolio-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.portfolio-card-meta span {
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600
}

.portfolio-card .display-sm {
  margin-bottom: 12px
}

.portfolio-card .body-sm { margin-bottom: 22px; color: var(--ink2); line-height: 1.65 }
.portfolio-card .blog-link { align-self: flex-start; margin-top: auto }

.portfolio-load-more {
  display: flex;
  justify-content: center;
  margin-top: 30px
}

.portfolio-final-cta {
  padding: clamp(64px, 7vw, 92px) 0;
  border-top: 1px solid var(--border);
  background: var(--cream)
}

.portfolio-final-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px)
}

.portfolio-final-cta-copy { max-width: 720px }
.portfolio-final-cta .label { margin-bottom: 16px }
.portfolio-final-cta h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.8px
}

.portfolio-final-cta p {
  max-width: 610px;
  margin-top: 18px;
  color: var(--ink2);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7
}

.portfolio-final-cta .btn { flex: 0 0 auto }

@media(max-width: 768px) {
  .portfolio-final-cta-inner { align-items: flex-start; flex-direction: column }
  .portfolio-final-cta .btn { align-self: flex-start }
}

/* PRODUCTS PAGE */
.products-hero {
  padding: 150px 0 84px;
  background: linear-gradient(180deg, #fcfbf9 0%, #f3f0ea 100%);
  border-bottom: 1px solid var(--border)
}

.products-sub {
  max-width: 680px;
  margin-top: 16px
}

.products-hero h1 {
  max-width: 880px;
  text-wrap: balance
}

.products-stack {
  display: grid;
  gap: 20px
}

.product-logo-image {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px
}

.products-stack .product-card {
  margin-top: 0
}

.platform-group-header {
  max-width: 720px;
  margin-bottom: 34px
}

.platform-group-title {
  text-wrap: balance
}

.platform-group-sub {
  max-width: 620px;
  margin-top: 12px
}

.platform-group-services {
  margin-top: clamp(80px, 9vw, 120px)
}

.platform-group-services .platform-group-title {
  font-size: clamp(32px, 4vw, 44px)
}

.labs-rationale {
  margin-top: clamp(72px, 8vw, 104px);
  padding: clamp(42px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.labs-rationale-intro {
  max-width: 760px
}

.labs-rationale-intro .label {
  margin-bottom: 14px
}

.labs-rationale-intro h2 {
  text-wrap: balance
}

.labs-rationale-intro .body-md {
  max-width: 680px;
  margin-top: 16px
}

.labs-rationale-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  margin-top: clamp(34px, 4vw, 48px)
}

.labs-rationale-point h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700
}

.labs-rationale-point p {
  max-width: 330px;
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.65
}

.labs-rationale + .platform-group-services {
  margin-top: clamp(56px, 6vw, 80px)
}

.labs-final-cta {
  padding: clamp(68px, 8vw, 96px) 0;
  border-top: 1px solid var(--border);
  background: var(--cream)
}

.labs-final-cta-inner {
  max-width: 760px
}

.labs-final-cta-inner h2 {
  max-width: 690px;
  text-wrap: balance
}

.labs-final-cta-inner .body-md {
  max-width: 650px;
  margin-top: 16px
}

.labs-final-cta-inner .btn {
  margin-top: 28px
}

@media(max-width:600px) {
  .platform-group-header {
    margin-bottom: 26px
  }

  .platform-group-services {
    margin-top: 72px
  }

  .platform-group-services .platform-group-title {
    font-size: 30px
  }

  .labs-rationale {
    margin-top: 64px;
    padding: 40px 0
  }

  .labs-rationale-points {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px
  }

  .labs-rationale-point p {
    max-width: 100%
  }

  .labs-rationale + .platform-group-services {
    margin-top: 56px
  }

  .labs-final-cta {
    padding: 60px 0
  }

  .labs-final-cta-inner .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    margin-top: 24px
  }
}

/* EVENTS PAGE */
.events-hero {
  padding: 150px 0 84px;
  background: linear-gradient(180deg, #fcfbf9 0%, #f3f0ea 100%);
  border-bottom: 1px solid var(--border)
}

.events-sub {
  max-width: 700px;
  margin-top: 16px
}

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

.events-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 26px 24px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans)
}

.events-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 10, 15, 0.06)
}

.events-card-kicker {
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px
}

.events-card .display-sm {
  margin-bottom: 12px
}

.event-detail-hero {
  padding: 148px 0 72px;
  background: linear-gradient(180deg, #fcfbf9 0%, #f3f0ea 100%);
  border-bottom: 1px solid var(--border)
}

.event-detail-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 10px
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start
}

.event-detail-content {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 28px 24px
}

.event-detail-content .display-sm {
  margin: 24px 0 10px
}

.event-detail-list {
  padding-left: 20px;
  display: grid;
  gap: 10px
}

.event-detail-list li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink2)
}

.event-share {
  margin: 18px 0 8px
}

.event-share-title {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 10px
}

.event-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.event-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--white);
  color: var(--ink2);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--trans)
}

.event-share-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--cream)
}

.event-share-btn.copy {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.event-share-btn.copy:hover {
  background: var(--red);
  border-color: var(--red)
}

.event-detail-aside {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 24px;
  position: sticky;
  top: 86px
}

.event-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px
}

.event-gallery-item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--cream)
}

.event-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* CAREERS PAGE */
.careers-hero {
  padding: 150px 0 90px;
  background: linear-gradient(180deg, #fcfbf9 0%, #f4f2ed 100%);
  border-bottom: 1px solid var(--border)
}

.careers-title .accent {
  color: var(--red);
  font-style: italic
}

.careers-sub {
  max-width: 720px;
  margin-top: 18px
}

.careers-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap
}

.careers-who-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 28px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f4ef 100%);
  box-shadow: 0 12px 28px rgba(10, 10, 15, 0.05)
}

.careers-who-card .display-sm {
  margin-bottom: 10px
}

.careers-who-card .body-md {
  max-width: 920px;
  line-height: 1.75
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.careers-value-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--white)
}

.careers-value-card .display-sm {
  margin-bottom: 10px
}

.careers-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px
}

.careers-process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px
}

.careers-internship {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 30px
}

.careers-openings {
  display: grid;
  gap: 14px;
  margin-top: 30px
}

.careers-opening {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--white)
}

.careers-opening .display-sm {
  margin-bottom: 8px
}

.careers-tag {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px
}

.job-hero {
  padding: 148px 0 70px;
  background: linear-gradient(180deg, #fcfbf9 0%, #f4f2ed 100%);
  border-bottom: 1px solid var(--border)
}

.job-title {
  margin-top: 14px
}

.job-meta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px
}

.job-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: start
}

.job-content {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  background: var(--white)
}

.job-sec-title {
  margin: 28px 0 12px
}

.job-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px
}

.job-list li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink2)
}

.job-apply {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  background: var(--white);
  position: sticky;
  top: 86px
}

.job-upload-label {
  display: block;
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 8px
}

.job-file {
  width: 100%;
  font-size: 13px;
  color: var(--ink2)
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 7px
}

.cta-email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--trans)
}

.cta-email a:hover {
  color: #fff
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.about-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 30%, rgba(230, 51, 41, 0.05), transparent 70%);
  pointer-events: none
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  position: relative
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap
}

.about-story-main {
  min-width: 0;
  max-width: 720px
}

.about-story-title {
  max-width: 720px;
  margin-bottom: 24px;
  text-wrap: balance
}

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

@media(min-width:901px) and (max-width:1100px) {
  .about-story-title {
    font-size: clamp(49px, 5.45vw, 60px);
    letter-spacing: -2px
  }
}

.about-story-lead {
  max-width: 680px
}

.about-founded {
  display: inline-flex;
  align-items: center;
  margin-top: 20px
}

.about-founded span {
  color: var(--ink3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.about-story-copy {
  max-width: 680px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border)
}

.about-story-copy p + p {
  margin-top: 20px
}

@media(max-width:768px) {
  .about-story-title {
    font-size: clamp(32px, 10.2vw, 44px);
    letter-spacing: -1.5px
  }
}

.about-side-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 88px
}

.about-company-profile {
  gap: 0
}

.about-company-profile-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border)
}

.about-company-profile-header .label {
  margin-bottom: 10px
}

.company-facts {
  margin: 0
}

.company-fact {
  display: grid;
  grid-template-columns: minmax(110px, .62fr) minmax(0, 1fr);
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border)
}

.company-fact dt {
  color: var(--ink3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase
}

.company-fact dd {
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55
}

@media(max-width:480px) {
  .company-fact {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 17px 0
  }
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px
}

.info-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px
}

.info-card-val {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35
}

.info-card-sub {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px
}

.reg-tag {
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 6px
}

/* PIXZARLOOP BUSINESS UNITS */
.business-units-head {
  max-width: 820px
}

.business-units-head .label {
  margin-bottom: 12px
}

.business-units-head h2 {
  max-width: 800px;
  text-wrap: balance
}

.business-units-head .body-md {
  max-width: 650px;
  margin-top: 18px
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px
}

.pillar {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--trans)
}

.pillar:hover {
  background: var(--cream)
}

.pillar-category {
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
  text-transform: uppercase
}

.pillar-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px
}

.pillar-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 22px
}

.pillar-services {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto
}

.pillar-service {
  font-size: 12.5px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 8px
}

.pillar-service::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0
}

.business-unit-link {
  align-self: flex-start;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  margin-top: 24px;
  text-decoration: none;
  transition: color var(--trans), transform var(--trans)
}

.business-unit-link:hover {
  color: var(--red);
  transform: translateX(2px)
}

/* TEAM STATS */
.about-team-head {
  max-width: 900px
}

.about-team-head .label {
  margin-bottom: 12px
}

.about-team-head h2 {
  max-width: 900px;
  color: #fff;
  text-wrap: balance
}

.about-team-head p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .52);
  font-size: 15px;
  line-height: 1.75
}

.team-disciplines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(48px, 6vw, 72px)
}

.team-discipline {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.team-discipline span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .3);
  font-size: 10px;
  letter-spacing: 1.5px
}

.team-discipline strong {
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4
}

@media(max-width:768px) {
  .team-disciplines {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:480px) {
  .team-disciplines {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px
  }

  .team-discipline span {
    margin-bottom: 10px
  }
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px
}

.team-stat {
  padding: 36px 28px;
  text-align: center
}

.team-stat-n {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 6px
}

.team-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .5px
}

.personality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden
}

.personality-cell {
  padding: 28px 20px;
  text-align: center
}

.personality-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px
}

.personality-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3)
}

/* STORY TIMELINE */
.about-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: clamp(64px, 8vw, 112px);
  align-items: start
}

.about-journey-head {
  position: sticky;
  top: 120px;
  max-width: 520px
}

.about-journey-head .label {
  margin-bottom: 12px
}

.about-journey-head h2 {
  text-wrap: balance
}

.about-journey-head p {
  max-width: 480px;
  margin-top: 22px;
  line-height: 1.75
}

.timeline {
  margin-top: 4px;
  position: relative;
  padding-left: 24px
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border)
}

.tl-item {
  padding: 0 0 46px 28px;
  position: relative
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red)
}

.tl-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.tl-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px
}

.tl-desc {
  max-width: 580px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7
}

@media(max-width:900px) {
  .about-journey-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-journey-head {
    position: static;
    max-width: 720px
  }

  .about-journey-head p {
    max-width: 620px
  }
}

@media(max-width:480px) {
  .about-journey-layout {
    gap: 38px
  }

  .about-journey-head p {
    margin-top: 18px
  }

  .timeline {
    padding-left: 12px
  }

  .tl-item {
    padding: 0 0 36px 22px
  }

  .tl-dot {
    left: -5px;
    width: 9px;
    height: 9px
  }

  .tl-title {
    font-size: 17px
  }

  .tl-desc {
    font-size: 13.5px
  }
}

/* PRODUCT SPOTLIGHT */
.about-pos-label {
  margin-bottom: 20px
}

.product-card.about-pos-card {
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, .9fr);
  gap: clamp(42px, 6vw, 72px);
  padding: clamp(42px, 5vw, 64px)
}

.about-pos-card::before {
  display: none
}

.about-pos-card .product-card-content {
  align-self: center
}

.about-pos-category {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase
}

.about-pos-card .product-title {
  margin-bottom: 10px
}

.about-pos-card .product-desc {
  max-width: 560px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .68)
}

.about-pos-support {
  max-width: 560px;
  color: rgba(255, 255, 255, .45);
  font-size: 13.5px;
  line-height: 1.75
}

.about-pos-card .product-actions {
  margin-top: 30px
}

.about-pos-visual {
  min-width: 0;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035)
}

.about-pos-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1625 / 807;
  object-fit: contain
}

@media(max-width:900px) {
  .product-card.about-pos-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px
  }

  .about-pos-card .product-card-content,
  .about-pos-visual {
    min-width: 0
  }
}

@media(max-width:480px) {
  .about-pos-label {
    margin-bottom: 16px
  }

  .product-card.about-pos-card {
    gap: 28px;
    padding: 28px 22px 30px
  }

  .about-pos-category {
    margin-bottom: 18px;
    letter-spacing: .07em
  }

  .about-pos-card .product-title {
    margin-bottom: 9px;
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.05;
    letter-spacing: -1px
  }

  .about-pos-card .product-actions {
    margin-top: 24px
  }

  .about-pos-card .btn {
    width: 100%;
    justify-content: center
  }
}

.product-card {
  background: var(--ink);
  border-radius: 14px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  position: relative;
  overflow: hidden
}

.product-card::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(230, 51, 41, 0.08)
}

.product-card-content {
  position: relative;
  z-index: 1
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px
}

.product-badge span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: .5px
}

.product-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px
}

.product-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 440px
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px
}

.btn-white {
  background: #fff;
  color: var(--ink);
  padding: 12px 24px;
  font-weight: 500
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px)
}

.btn-ghost-light {
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12)
}

.btn-ghost-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3)
}

.product-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px 28px;
  min-width: 220px;
  position: relative;
  z-index: 1
}

.pos-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.pos-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.pos-line:last-child {
  border-bottom: none
}

.pos-k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4)
}

.pos-v {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75)
}

/* TESTIMONIALS ABOUT */
.about-stories-head {
  max-width: 760px
}

.about-stories-head .label {
  margin-bottom: 12px
}

.about-stories-head h2 {
  text-wrap: balance
}

.about-stories-head p {
  max-width: 620px;
  margin-top: 20px;
  line-height: 1.7
}

.about-stories-list {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--border)
}

.about-story-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(220px, .42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(30px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border)
}

.about-story-number {
  padding-top: 5px;
  color: var(--ink3);
  font-size: 10px;
  letter-spacing: 1.4px
}

.about-story-item blockquote {
  max-width: 690px;
  margin: 0
}

.about-story-highlight {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -.25px
}

.about-story-copy {
  max-width: 600px;
  margin: 0;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.7
}

.about-story-client {
  padding-top: 5px
}

.about-story-client h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35
}

.about-story-client p {
  margin: 0;
  color: var(--ink3);
  font-size: 11.5px;
  line-height: 1.6
}

.about-story-client span {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink2);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase
}

.about-stories-footer {
  margin-top: 32px
}

.about-stories-footer .text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink)
}

.about-stories-footer .text-link .arrow {
  transition: transform var(--trans)
}

.about-stories-footer .text-link:hover .arrow,
.about-stories-footer .text-link:focus-visible .arrow {
  transform: translateX(4px)
}

@media(max-width:768px) {
  .about-story-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 18px 20px
  }

  .about-story-client {
    grid-column: 2
  }
}

@media(max-width:480px) {
  .about-stories-head p {
    margin-top: 16px
  }

  .about-stories-list {
    margin-top: 38px
  }

  .about-story-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0
  }

  .about-story-number {
    padding-top: 0
  }

  .about-story-client {
    grid-column: 1;
    padding-top: 2px
  }

  .about-story-highlight {
    font-size: 19px
  }

  .about-story-copy {
    font-size: 12.5px
  }
}

/* ─── CONTACT SECTION ─────────────────────────────────── */
.about-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(56px, 9vw, 128px);
  align-items: end
}

.about-final-cta-heading {
  max-width: 700px
}

.about-final-cta-heading .label {
  margin-bottom: 12px
}

.about-final-cta-heading h2 {
  text-wrap: balance
}

.about-final-cta-action {
  max-width: 500px
}

.about-final-cta-action p {
  margin-bottom: 28px;
  line-height: 1.75
}

@media(max-width:768px) {
  .about-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start
  }

  .about-final-cta-action {
    max-width: 620px
  }
}

@media(max-width:480px) {
  .about-final-cta-inner {
    gap: 22px
  }

  .about-final-cta-action p {
    margin-bottom: 24px
  }

  .about-final-cta-action .btn {
    width: 100%;
    justify-content: center
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start
}

.contact-heading {
  margin-bottom: 16px
}

.contact-page .contact-hero-copy {
  max-width: min(620px, calc(100vw - 40px))
}

.contact-page .contact-hero-copy .label {
  margin-bottom: 14px
}

.contact-page .contact-hero-copy .contact-heading {
  text-wrap: balance
}

.contact-subtext {
  margin-bottom: 40px
}

.contact-page .contact-hero-copy .contact-subtext {
  max-width: 560px;
  line-height: 1.7
}

.contact-page .contact-info {
  max-width: min(560px, calc(100vw - 40px))
}

.contact-page .contact-info-group {
  padding: 22px 0;
  border-top: 1px solid var(--border)
}

.contact-page .contact-info-heading {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink)
}

.contact-page .contact-info-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px
}

.contact-page .contact-info-links a {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color var(--trans)
}

.contact-page .contact-info-links a:hover {
  color: var(--red)
}

.contact-page .contact-location + .contact-location {
  margin-top: 22px
}

.contact-page .contact-location h3 {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink)
}

.contact-page .contact-location-city {
  margin-bottom: 7px;
  color: var(--ink2);
  font-size: 13px;
  font-weight: 500
}

.contact-page .contact-location-note {
  margin-bottom: 5px;
  color: var(--ink3);
  font-size: 11px;
  line-height: 1.5
}

.contact-page .contact-location address {
  color: var(--ink2);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65
}

@media(max-width:480px) {
  .contact-page .contact-hero-copy .contact-heading {
    font-size: clamp(36px, 11.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px
  }

  .contact-page .contact-hero-copy .contact-subtext {
    font-size: 15px;
    line-height: 1.65
  }

  .contact-page .contact-info-group {
    padding: 20px 0
  }
}

/* PixzarCheques platform */
.products-stack .product-card.product-card-platform {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 44px
}

.product-card-platform .product-logo-image {
  margin-bottom: 0
}

.product-card-platform .product-category {
  margin: 14px 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .04em
}

.product-card-platform .product-status {
  padding: 5px 11px;
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045)
}

.product-card-platform .product-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .66);
  letter-spacing: .04em
}

.product-card-platform .product-status span::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--red)
}

.product-card-platform .product-visual-platform {
  min-width: 0;
  padding: 0;
  overflow: hidden
}

.product-card-platform .pos-line {
  display: grid;
  grid-template-columns: minmax(138px, .7fr) 1fr;
  gap: 16px;
  align-items: start;
  padding: 10px 0
}

.product-card-platform .pos-k {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 600
}

.product-card-platform .pos-v {
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  line-height: 1.5;
  text-align: left
}

@media(max-width:900px) {
  .products-stack .product-card.product-card-platform {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:480px) {
  .products-stack .product-card.product-card-platform {
    gap: 28px
  }

  .product-card-platform .pos-line {
    grid-template-columns: 1fr;
    gap: 3px
  }
}

@media(max-width:768px) {
  .contact-page .contact-grid {
    gap: 56px
  }

  .contact-page .contact-grid > * {
    min-width: 0
  }

  .contact-page .field input,
  .contact-page .field select,
  .contact-page .field textarea {
    min-height: 48px;
    font-size: 16px
  }

  .contact-page .submit {
    min-height: 50px;
    font-size: 16px
  }
}

@media(max-width:340px) {
  .contact-page .h-captcha {
    width: 100%;
    height: 70px;
    overflow: hidden
  }

  .contact-page .h-captcha iframe {
    transform: scale(.92);
    transform-origin: left top
  }
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px
}

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.detail-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px
}

.detail-val {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  text-decoration: none
}

.contact-location-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--ink2);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--trans)
}

.contact-location-link span {
  transition: transform var(--trans)
}

.contact-location-link:hover {
  color: var(--red)
}

.contact-location-link:hover span {
  transform: translateX(3px)
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  margin-bottom: 14px
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans);
  appearance: none;
  -webkit-appearance: none
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink)
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline-offset: 3px
}

.field textarea {
  height: 120px;
  resize: vertical
}

.field select {
  cursor: pointer;
  color: var(--ink2)
}

.field select option {
  color: var(--ink)
}

.submit {
  width: 100%;
  background: var(--ink);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--body);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.submit:hover {
  background: var(--red);
  transform: translateY(-1px)
}

.submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55
}

.form-status:empty {
  min-height: 0;
  margin-top: 0
}

.form-status.is-success {
  color: #18734c
}

.form-status.is-error {
  color: #b42318
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 72px 0 0
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.footer-brand-name {
  display: inline-flex;
  margin-bottom: 24px;
  line-height: 0;
  text-decoration: none
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(240px, 52vw);
  mix-blend-mode: normal;
  filter: none
}

.footer-statement {
  max-width: 390px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.3px
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 340px
}

.footer-col h5 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.footer-link {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color var(--trans);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--body);
  text-align: left
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9)
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25)
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .3);
  font-size: 11px
}

.footer-reg {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 1px
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media(max-width:1024px) {
  .test-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .test-layout .test-card:last-child {
    grid-column: 1 / -1
  }

  .svc-row {
    grid-template-columns: 40px 1fr 160px 40px
  }

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

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

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

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

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

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

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

  .careers-values-grid {
    grid-template-columns: 1fr 1fr
  }

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

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

  .job-apply {
    position: static
  }

  .event-detail-layout {
    grid-template-columns: 1fr
  }

  .event-detail-aside {
    position: static
  }
}

@media(max-width:768px) {
  .test-layout .test-card:last-child {
    grid-column: auto
  }

  .selected-work-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px
  }

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

  .work-card-image {
    aspect-ratio: 16 / 10
  }

  .work-card p {
    min-height: 0
  }

  .ind-wrap {
    padding: 64px 0
  }

  .ind-wrap .container {
    display: block
  }

  .ind-heading {
    position: static
  }

  .ind-list {
    margin-top: 36px
  }

  .ind-item {
    grid-template-columns: 24px 1fr;
    gap: 6px 12px;
    min-height: 0;
    padding: 19px 0
  }

  .ind-item:hover {
    padding-left: 0
  }

  .ind-desc {
    grid-column: 2
  }

  .marquee-track {
    animation-duration: 50s
  }

  .marquee-item {
    padding: 0 24px
  }

  .display-xl {
    letter-spacing: -1.5px
  }

  .display-lg {
    letter-spacing: -1px
  }

  .hero::after {
    width: 260px;
    height: 260px;
    right: -90px;
    top: -38px
  }

  .hero-inner {
    padding: 0 20px
  }

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

  .hbg {
    display: flex
  }

  .hero {
    padding: 120px 0 70px
  }

  .hero-headline {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    max-width: 100%;
    margin-bottom: 20px
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 34px
  }

  .hero-actions {
    margin-bottom: 22px;
    flex-direction: column;
    align-items: stretch
  }

  .hero-proof {
    max-width: 100%;
    margin-bottom: 36px;
    font-size: 11px;
    line-height: 1.7
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box
  }

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

  .svc-row {
    grid-template-columns: 1fr;
    padding: 22px 24px
  }

  .svc-index {
    display: none
  }

  .svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
  }

  .svc-arrow {
    text-align: left
  }

  .grid-2,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .about-hero-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box
  }

  .grid-3,
  .values-grid,
  .pillars-grid,
  .personality-grid {
    grid-template-columns: 1fr
  }

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

  .blog-content-wrap {
    grid-template-columns: 1fr
  }

  .blog-side {
    position: static
  }

  .blog-content {
    padding: 24px
  }

  .blog-content h2 {
    font-size: 24px
  }

  .blog-hero {
    padding: 104px 0 30px
  }

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

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

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

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

  .test-layout,
  .test-grid,
  .about-test-grid {
    grid-template-columns: 1fr
  }

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

  .metric {
    padding: 20px 18px
  }

  .section {
    padding: 70px 0
  }

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

  .product-card {
    grid-template-columns: 1fr;
    padding: 36px 28px
  }

  .product-visual {
    min-width: auto
  }

  .about-side-stack {
    position: static
  }

  .form-row2 {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 20px
  }

  .svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

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

  .blog-title {
    font-size: 20px
  }

  .portfolio-hero {
    padding: 112px 0 62px
  }

  .portfolio-hero-title {
    font-size: clamp(40px, 12.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -1.8px
  }

  .portfolio-sub {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65
  }

  .portfolio-supporting {
    margin-top: 20px
  }

  .portfolio-card {
    min-height: 0
  }

  .portfolio-card-content { padding: 22px 20px }
  .portfolio-catalogue-head { display: block; margin-bottom: 28px }
  .portfolio-catalogue-head .label { margin-bottom: 12px }
  .portfolio-filters {
    flex-wrap: nowrap;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 6px;
    overflow-x: auto;
    scrollbar-width: none
  }
  .portfolio-filters::-webkit-scrollbar { display: none }
  .portfolio-filter { flex: 0 0 auto }

  .events-hero {
    padding: 118px 0 60px
  }

  .events-card {
    padding: 22px 20px
  }

  .event-detail-hero {
    padding: 116px 0 56px
  }

  .event-detail-content,
  .event-detail-aside {
    padding: 22px
  }

  .products-hero {
    padding: 118px 0 60px
  }

  .products-stack .product-card {
    padding: 30px 22px
  }

  .product-logo-image {
    max-width: 190px
  }

  .careers-hero {
    padding: 118px 0 70px
  }

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

  .careers-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box
  }

  .careers-who-card {
    padding: 24px 22px
  }

  .careers-values-grid {
    grid-template-columns: 1fr
  }

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

  .careers-internship {
    grid-template-columns: 1fr;
    padding: 24px
  }

  .careers-opening {
    grid-template-columns: 1fr;
    padding: 20px
  }

  .job-hero {
    padding: 116px 0 56px
  }

  .job-content,
  .job-apply {
    padding: 22px
  }
}

@media(max-width:480px) {
  .hero {
    padding: 108px 0 60px
  }

  .hero-headline {
    font-size: clamp(32px, 11.5vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.8px
  }

  .hero-headline .typing-word {
    border-right-width: 1.5px
  }

  .hero-kicker {
    padding: 5px 12px;
    margin-bottom: 24px
  }

  .hero-kicker span {
    font-size: 11px
  }

  .hero-actions {
    gap: 10px
  }

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

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

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

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

  .blog-title {
    font-size: 18px
  }

  .blog-excerpt {
    font-size: 13.5px
  }

  .blog-content {
    padding: 20px
  }

  .blog-content h2 {
    font-size: 22px
  }

  .blog-content p,
  .blog-content li {
    font-size: 14px
  }

  .portfolio-card .display-sm {
    font-size: 20px
  }

  .careers-title {
    letter-spacing: -1px
  }

  .careers-sub {
    font-size: 14px;
    line-height: 1.65
  }
}

/* Competitive trust & AI section */
.trust-strip {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.trust-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.trust-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px
}

.trust-kpi {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  background: var(--cream)
}

.trust-kpi strong {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 9px
}

.trust-kpi span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink2);
  line-height: 1.5
}

.ai-advantage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 32px
}

.ai-copy {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: var(--white)
}

.ai-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px
}

.ai-bullet {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: var(--cream)
}

.ai-bullet-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px
}

.ai-bullet-text {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5
}

@media(max-width:1024px) {
  .trust-kpis {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .ai-advantage {
    grid-template-columns: 1fr
  }

  .ai-bullets {
    grid-template-columns: 1fr
  }

  .trust-kpis {
    grid-template-columns: 1fr 1fr
  }

  .hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-metrics .metric {
    width: 100%;
  }

  .team-stats {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }

  .team-stat {
    width: 100%;
    padding: 20px 0;
  }

  .team-stat+.team-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .personality-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }

  .personality-cell {
    width: 100%;
    padding: 20px 0;
  }

  .personality-cell+.personality-cell {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .product-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .product-actions .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media(max-width:480px) {
  .trust-kpis {
    grid-template-columns: 1fr
  }
}

.product-feature-image {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* ─── HOMEPAGE SPACING & HIERARCHY ───────────────────── */
body.home-page .section {
  padding: 96px 0
}

body.home-page .label {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 2.3px
}

body.home-page .display-lg {
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.08;
  text-wrap: balance
}

body.home-page .display-sm {
  line-height: 1.25;
  text-wrap: balance
}

body.home-page .svc-header,
body.home-page .selected-work-head {
  gap: 40px;
  margin-bottom: 48px
}

body.home-page .svc-header > div,
body.home-page .selected-work-head > div,
body.home-page .trust-head > div {
  max-width: 720px
}

body.home-page .svc-header > a,
body.home-page .selected-work-head > p {
  flex-shrink: 0
}

body.home-page .selected-work-head > p,
body.home-page #process .body-md,
body.home-page .contact-subtext,
body.home-page .ai-copy > .body-sm {
  max-width: 520px
}

body.home-page .marquee-wrap {
  padding: 88px 0 34px
}

body.home-page .marquee-wrap .svc-header {
  margin-bottom: 42px
}

body.home-page .ind-wrap {
  padding: 96px 0
}

body.home-page .process-grid,
body.home-page .values-grid,
body.home-page .test-layout {
  margin-top: 48px
}

body.home-page .process-step,
body.home-page .value-cell,
body.home-page .test-card {
  padding: 32px
}

body.home-page .selected-work-footer,
body.home-page .testimonials-footer {
  margin-top: 48px
}

body.home-page .trust-strip {
  padding: 96px 0
}

body.home-page .trust-head {
  margin-bottom: 40px
}

body.home-page .trust-kpis {
  gap: 20px;
  margin-top: 0
}

body.home-page .trust-kpi {
  padding: 26px 24px;
  border-radius: 12px
}

body.home-page .ai-advantage {
  margin-top: 40px
}

body.home-page .ai-copy {
  padding: 32px
}

body.home-page .blog-card {
  padding: 28px
}

body.home-page .contact-grid {
  gap: clamp(56px, 7vw, 80px)
}

body.home-page .contact-subtext {
  margin-bottom: 36px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

body.home-page .work-card-image picture {
  display: block;
  width: 100%;
  height: 100%
}

@media(max-width:1024px) {
  body.home-page .section,
  body.home-page .ind-wrap,
  body.home-page .trust-strip {
    padding: 80px 0
  }

  body.home-page .display-lg {
    font-size: clamp(38px, 5.5vw, 52px)
  }

  body.home-page .marquee-wrap {
    padding: 76px 0 32px
  }

  body.home-page .process-step,
  body.home-page .value-cell,
  body.home-page .test-card {
    padding: 30px 26px
  }
}

@media(max-width:768px) {
  body.home-page .section,
  body.home-page .ind-wrap,
  body.home-page .trust-strip {
    padding: 64px 0
  }

  body.home-page .display-lg {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.1
  }

  body.home-page .display-sm {
    font-size: 21px
  }

  body.home-page .marquee-wrap {
    padding: 64px 0 28px
  }

  body.home-page .svc-header,
  body.home-page .selected-work-head,
  body.home-page .trust-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px
  }

  body.home-page .svc-header .btn,
  body.home-page .selected-work-footer .btn,
  body.home-page .testimonials-footer .btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: center
  }

  body.home-page .process-grid,
  body.home-page .values-grid,
  body.home-page .test-layout {
    margin-top: 36px
  }

  body.home-page .process-step,
  body.home-page .value-cell,
  body.home-page .test-card,
  body.home-page .blog-card,
  body.home-page .trust-kpi,
  body.home-page .ai-copy {
    padding: 24px
  }

  body.home-page .selected-work-grid,
  body.home-page .blog-grid,
  body.home-page .test-layout {
    gap: 24px
  }

  body.home-page .selected-work-footer,
  body.home-page .testimonials-footer {
    margin-top: 36px
  }

  body.home-page .ai-advantage {
    margin-top: 32px
  }

  body.home-page .trust-kpis {
    margin-top: 0
  }

  body.home-page .contact-grid {
    gap: 44px
  }
}

@media(max-width:480px) {
  body.home-page .section,
  body.home-page .ind-wrap,
  body.home-page .trust-strip {
    padding: 56px 0
  }

  body.home-page .marquee-wrap {
    padding: 56px 0 24px
  }

  body.home-page .process-step,
  body.home-page .value-cell,
  body.home-page .test-card,
  body.home-page .blog-card,
  body.home-page .trust-kpi,
  body.home-page .ai-copy {
    padding: 22px 20px
  }
}

/* ─── HOMEPAGE MOBILE UX ─────────────────────────────── */
@media(max-width:768px) {
  body.home-page .nav:not(.scrolled) .hbg span {
    background: #fff
  }

  body.home-page,
  body.home-page #page-home {
    width: 100%;
    max-width: 100%;
    overflow-x: clip
  }

  body.home-page .container,
  body.home-page .hero-inner,
  body.home-page .contact-grid > *,
  body.home-page .selected-work-grid > *,
  body.home-page .blog-grid > * {
    min-width: 0
  }

  body.home-page .nav-inner {
    padding: 0 20px
  }

  body.home-page .hbg {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: -8px
  }

  body.home-page .mob-menu {
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    padding: 10px 20px 20px;
    overflow-y: auto;
    overscroll-behavior: contain
  }

  body.home-page .mob-a {
    min-height: 44px;
    padding: 12px 0;
    line-height: 20px
  }

  body.home-page .mob-company-label {
    padding-top: 15px
  }

  body.home-page .mob-company-links {
    padding-left: 14px
  }

  body.home-page .mob-cta {
    min-height: 48px;
    padding: 14px 20px
  }

  body.home-page .hero {
    padding: 106px 0 60px
  }

  body.home-page .hero-kicker {
    margin-bottom: 24px
  }

  body.home-page .hero-headline {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    margin-left: 0;
    padding: .04em 0 .07em;
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.06;
    letter-spacing: -1.1px;
    overflow: visible
  }

  body.home-page .hero-sub {
    max-width: 36em;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65
  }

  body.home-page .hero-actions {
    gap: 10px;
    margin-bottom: 20px
  }

  body.home-page .hero-actions .btn {
    min-height: 48px
  }

  body.home-page .hero-proof {
    max-width: 34em;
    margin-bottom: 32px;
    line-height: 1.65
  }

  body.home-page .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0
  }

  body.home-page .hero-metrics .metric {
    width: 100%;
    min-width: 0;
    padding: 20px
  }

  body.home-page .hero .metric:nth-child(odd) {
    border-right: 0
  }

  body.home-page .hero .metric:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12)
  }

  body.home-page .hero .metric-n {
    font-size: 25px;
    letter-spacing: -.8px
  }

  body.home-page .hero .metric-l {
    font-size: 11px
  }

  body.home-page .svc-row {
    gap: 18px;
    padding: 24px 22px
  }

  body.home-page .svc-row:hover {
    padding-left: 22px
  }

  body.home-page .svc-desc {
    font-size: 13px;
    line-height: 1.65
  }

  body.home-page .tag {
    min-height: 30px;
    padding: 6px 11px
  }

  body.home-page .ind-list {
    margin-top: 30px
  }

  body.home-page .ind-item {
    padding: 16px 0
  }

  body.home-page .work-card-image {
    width: 100%;
    aspect-ratio: 16 / 10
  }

  body.home-page .work-card-body {
    padding-top: 18px
  }

  body.home-page .work-card p {
    min-height: 0
  }

  body.home-page .work-card-link,
  body.home-page .blog-link,
  body.home-page .contact-location-link,
  body.home-page .footer-link {
    min-height: 44px;
    align-items: center
  }

  body.home-page .process-grid,
  body.home-page .values-grid {
    gap: 1px
  }

  body.home-page .step-num {
    margin-bottom: 14px;
    font-size: 42px
  }

  body.home-page .value-title {
    margin-top: 18px
  }

  body.home-page .test-highlight {
    font-size: 17px;
    line-height: 1.42
  }

  body.home-page .test-quote {
    margin-bottom: 20px;
    font-size: 13px
  }

  body.home-page .trust-kpis {
    gap: 12px
  }

  body.home-page .trust-kpi strong {
    overflow-wrap: anywhere;
    font-size: 26px
  }

  body.home-page .ai-bullets {
    gap: 10px;
    margin-top: 18px
  }

  body.home-page .field {
    margin-bottom: 16px
  }

  body.home-page .field input,
  body.home-page .field textarea,
  body.home-page .field select {
    min-height: 48px;
    padding: 14px 15px;
    font-size: 16px;
    line-height: 1.4
  }

  body.home-page .field textarea {
    min-height: 124px;
    height: 124px
  }

  body.home-page .submit {
    min-height: 50px;
    font-size: 16px
  }

  body.home-page .h-captcha {
    max-width: 100%;
    overflow: hidden
  }

  body.home-page .footer {
    padding-top: 56px
  }

  body.home-page .footer-top {
    gap: 36px;
    padding-bottom: 44px
  }

  body.home-page .footer-col h5 {
    margin-bottom: 12px
  }

  body.home-page .footer-link {
    display: flex;
    margin-bottom: 0
  }
}

@media(max-width:430px) {
  body.home-page .container,
  body.home-page .hero-inner {
    padding-right: 18px;
    padding-left: 18px
  }

  body.home-page .hero {
    padding: 100px 0 54px
  }

  body.home-page .hero-headline {
    font-size: clamp(32px, 10vw, 48px)
  }

  body.home-page .hero-proof {
    font-size: 10.5px
  }

  body.home-page .trust-kpis {
    grid-template-columns: 1fr
  }

  body.home-page .footer-top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  body.home-page .footer-brand-name {
    margin-bottom: 20px
  }

  body.home-page .footer-statement {
    font-size: 30px
  }
}

@media(max-width:340px) {
  body.home-page .container,
  body.home-page .hero-inner {
    padding-right: 16px;
    padding-left: 16px
  }

  body.home-page .logo-img {
    max-width: 185px
  }

  body.home-page .h-captcha {
    width: 304px;
    max-width: none;
    margin-bottom: -14px;
    transform: scale(.895);
    transform-origin: left top
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .hero-headline .typing-word {
    width: auto;
    border-right: 0;
    animation: none !important
  }

  body.home-page .marquee-track {
    width: auto;
    overflow-x: auto;
    animation: none !important
  }
}

/* PixzarPOS flagship platform */
.products-stack .product-card.product-card-featured {
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 52px;
  padding: 64px 52px
}

.product-card-featured .product-desc {
  max-width: 560px;
  color: rgba(255, 255, 255, .62)
}

.product-card-featured .product-logo-image {
  margin-bottom: 0
}

.product-card-featured .product-category {
  margin: 14px 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .04em
}

.product-card-featured .product-status {
  padding: 5px 11px;
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045)
}

.product-card-featured .product-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .66);
  letter-spacing: .04em
}

.product-card-featured .product-status span::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--red)
}

.product-card-featured .product-visual-featured {
  min-width: 0;
  padding: 0;
  overflow: hidden
}

.product-platform-preview {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.product-highlight-list {
  padding: 22px 24px
}

.product-card-featured .pos-line {
  display: grid;
  grid-template-columns: minmax(112px, .55fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 10px 0
}

.product-card-featured .pos-k {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 600
}

.product-card-featured .pos-v {
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  line-height: 1.5;
  text-align: left
}

@media(max-width:900px) {
  .products-stack .product-card.product-card-featured {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 34px
  }
}

@media(max-width:480px) {
  .products-stack .product-card.product-card-featured {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 22px 30px
  }

  .product-card-featured .product-card-content,
  .product-card-featured .product-visual-featured {
    display: contents
  }

  .product-card-featured .product-platform-preview {
    order: 1;
    width: 100%;
    max-height: 195px;
    margin-bottom: 22px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: left top;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px
  }

  .product-card-featured .product-status {
    order: 2;
    align-self: flex-start;
    margin-bottom: 16px
  }

  .product-card-featured .product-logo-image {
    order: 3;
    max-width: 200px
  }

  .product-card-featured .product-category {
    order: 4;
    margin: 11px 0 14px
  }

  .product-card-featured .product-desc {
    order: 5
  }

  .product-card-featured .product-highlight-list {
    order: 6;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04)
  }

  .product-card-featured .product-actions {
    order: 7;
    margin-top: 20px
  }

  .product-card-featured .pos-line {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0
  }

  .product-card-featured .pos-label {
    margin-bottom: 10px
  }

  .product-card-featured .btn {
    width: 100%;
    justify-content: center
  }
}

@media(max-width:480px) {
  .products-stack .product-card.product-card-platform {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 22px 30px
  }

  .product-card-platform .product-card-content,
  .product-card-platform .product-visual-platform {
    display: contents
  }

  .product-card-platform .product-platform-preview {
    order: 1;
    width: 100%;
    max-height: 195px;
    margin-bottom: 22px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: left top;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px
  }

  .product-card-platform .product-status {
    order: 2;
    align-self: flex-start;
    margin-bottom: 16px
  }

  .product-card-platform .product-logo-image {
    order: 3;
    max-width: 200px
  }

  .product-card-platform .product-category {
    order: 4;
    margin: 11px 0 14px
  }

  .product-card-platform .product-desc {
    order: 5
  }

  .product-card-platform .product-highlight-list {
    order: 6;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04)
  }

  .product-card-platform .product-actions {
    order: 7;
    margin-top: 20px
  }

  .product-card-platform .pos-line {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0
  }

  .product-card-platform .pos-label {
    margin-bottom: 10px
  }

  .product-card-platform .btn {
    width: 100%;
    justify-content: center
  }
}

/* DomainMail managed service */
.case-study-page .nav:not(.scrolled) .logo-img {
  mix-blend-mode: normal;
  filter: invert(1)
}

.case-study-page .nav:not(.scrolled) .nav-a { color: var(--ink2) }
.case-study-page .nav:not(.scrolled) .nav-a:hover,
.case-study-page .nav:not(.scrolled) .nav-a.on { color: var(--ink); background: var(--cream) }
.case-study-page .nav:not(.scrolled) .hbg span { background: var(--ink) }

.case-hero { padding: clamp(128px, 14vw, 190px) 0 0 }
.case-hero-copy { max-width: 980px; margin-bottom: clamp(44px, 7vw, 84px) }
.case-eyebrow { margin-bottom: 22px; color: var(--red); font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase }
.case-title { max-width: 920px; font-family: var(--display); font-size: clamp(44px, 7.6vw, 112px); font-weight: 700; line-height: .94; letter-spacing: clamp(-4px, -.05em, -1.8px); overflow-wrap: anywhere }
.case-positioning { max-width: 680px; margin-top: 28px; color: var(--ink2); font-size: clamp(17px, 2vw, 23px); font-weight: 300; line-height: 1.55 }
.case-category { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: var(--ink3); font-size: 12px; letter-spacing: .8px; text-transform: uppercase }
.case-hero-media { margin: 0 auto; width: min(100% - 48px, 1500px); aspect-ratio: 16 / 8.5; overflow: hidden; border-radius: 14px 14px 0 0; background: var(--cream2) }
.case-hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center }
.case-hero-media--wide { aspect-ratio: 1625 / 807 }
.case-section { padding: clamp(72px, 9vw, 128px) 0; border-top: 1px solid var(--border) }
.case-overview { background: var(--cream) }
.case-overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 34px 48px }
.case-fact dt { margin-bottom: 10px; color: var(--ink3); font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase }
.case-fact dd { color: var(--ink); font-family: var(--display); font-size: 17px; font-weight: 600; line-height: 1.35 }
.case-narrative { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(0, 2.15fr); gap: clamp(40px, 8vw, 120px) }
.case-section-title { font-family: var(--display); font-size: clamp(30px, 4vw, 54px); line-height: 1.05; letter-spacing: -1.5px }
.case-copy { max-width: 720px }
.case-copy p { color: var(--ink2); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.8 }
.case-copy p + p { margin-top: 22px }
.case-pending { padding-left: 20px; border-left: 2px solid var(--red); color: var(--ink3) !important; font-size: 14px !important }
.case-built { background: var(--ink); color: var(--white) }
.case-built .case-section-title { margin-bottom: 48px }
.case-capabilities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.13) }
.case-capability { min-height: 180px; padding: 28px 28px 28px 0; border-bottom: 1px solid rgba(255,255,255,.13) }
.case-capability + .case-capability { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.13) }
.case-capability h3 { margin-bottom: 12px; font-family: var(--display); font-size: 18px }
.case-capability p { color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.7 }
.case-showcase-head { max-width: 650px; margin-bottom: 44px }
.case-showcase-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px }
.case-showcase-media { min-width: 0; overflow: hidden; border-radius: 10px; background: var(--cream) }
.case-showcase-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center }
.case-showcase-media--landscape { aspect-ratio: 4 / 3 }
.case-showcase-media--portrait { aspect-ratio: 3 / 4 }
.case-related-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px }
.case-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px }
.case-related-grid .work-card-image picture { display: block; width: 100%; height: 100% }
.case-final-cta { padding: clamp(76px, 10vw, 136px) 0; background: var(--cream) }
.case-final-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px }
.case-final-cta h2 { margin-bottom: 16px; font-family: var(--display); font-size: clamp(38px, 6vw, 76px); line-height: 1; letter-spacing: -2.5px }
.case-final-cta p { color: var(--ink2); font-size: clamp(15px, 1.5vw, 18px) }

@media(max-width: 768px) {
  .case-hero { padding-top: 112px }
  .case-hero-media { width: calc(100% - 32px); aspect-ratio: 4 / 3; border-radius: 10px 10px 0 0 }
  .case-title { font-size: clamp(40px, 12.5vw, 72px) }
  .case-narrative { grid-template-columns: 1fr; gap: 28px }
  .case-capabilities { grid-template-columns: 1fr }
  .case-capability { min-height: 0; padding: 24px 0 }
  .case-capability + .case-capability { padding-left: 0; border-left: 0 }
  .case-showcase-grid { grid-template-columns: 1fr }
  .case-showcase-media--portrait { aspect-ratio: 4 / 3 }
  .case-related-grid { grid-template-columns: 1fr }
  .case-final-cta-inner { align-items: stretch; flex-direction: column }
  .case-final-cta .btn { align-self: flex-start }
}

@media(max-width: 480px) {
  .case-hero-copy { margin-bottom: 36px }
  .case-hero-media { width: calc(100% - 24px); max-height: 340px }
  .case-positioning { margin-top: 20px }
  .case-overview-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px }
  .case-related-head { align-items: flex-start; flex-direction: column }
  .case-related-grid .work-card-body { padding-top: 18px }
  .case-related-grid .work-card p { min-height: 0 }
  .case-related-grid .work-card-link { min-height: 44px; align-items: center }
}

.product-card-service .product-title {
  margin-bottom: 0
}

.product-card-service .product-service-preview {
  aspect-ratio: 16 / 9;
  padding: clamp(28px, 8vw, 52px);
  object-fit: contain;
  background: rgba(255, 255, 255, .025)
}

@media(max-width:480px) {
  .product-card-service .product-title {
    order: 3;
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.1
  }

  .product-card-service .product-service-preview {
    padding: clamp(22px, 8vw, 34px);
    object-fit: contain;
    object-position: center
  }
}
