/* SEOWD 2026 — editorial design-engineering system */
:root {
  --v2-ink: #08090b;
  --v2-paper: #f4f2ec;
  --v2-white: #fffef9;
  --v2-sky: #b9dcf3;
  --v2-sky-deep: #7eafe4;
  --v2-acid: #a8ff1e;
  --v2-orange: #ff5b35;
  --v2-cobalt: #2452d6;
  --v2-muted: #656963;
  --v2-line: rgba(8, 9, 11, .16);
  --v2-line-soft: rgba(8, 9, 11, .08);
  --v2-gutter: clamp(1rem, 4.2vw, 4rem);
  --v2-max: 1440px;
  --v2-mono: "Inconsolata", "Courier New", monospace;
  --v2-sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--v2-paper);
  color: var(--v2-ink);
  scroll-behavior: smooth;
}

body.seowd-v2,
body {
  margin: 0;
  background-color: var(--v2-paper) !important;
  background-image:
    linear-gradient(to right, var(--v2-line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--v2-line-soft) 1px, transparent 1px);
  background-size: calc((100vw - (var(--v2-gutter) * 2)) / 4) 100%, 100% 8rem;
  background-position: var(--v2-gutter) 0, 0 0;
  color: var(--v2-ink) !important;
  font-family: var(--v2-sans) !important;
  overflow-x: clip;
}

body::before { display: none !important; }

::selection { background: var(--v2-acid); color: var(--v2-ink); }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }

button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--v2-orange) !important;
  outline-offset: 3px;
}

img { max-width: 100%; }

/* Motion layer — loader, cursor, page transition and scroll position */
.v2-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: var(--v2-gutter);
  overflow: hidden;
  background: var(--v2-ink);
  color: white;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  animation: v2-loader-failsafe .75s cubic-bezier(.77, 0, .18, 1) 1.2s forwards;
  transition: clip-path .85s cubic-bezier(.77, 0, .18, 1), visibility 0s linear .85s;
}

.v2-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: calc((100vw - (var(--v2-gutter) * 2)) / 4) 100%, 100% 25%;
  background-position: var(--v2-gutter) 0, 0 0;
}

.v2-loader__brand {
  position: relative;
  align-self: center;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .72;
}

.v2-loader__brand span {
  position: absolute;
  top: -.15em;
  margin-left: .12em;
  color: var(--v2-acid);
  font-family: var(--v2-mono);
  font-size: .08em;
  letter-spacing: 0;
}

.v2-loader__track {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.22);
}

.v2-loader__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--v2-acid);
  transform: scaleX(0);
  transform-origin: left;
  animation: v2-load-line 1.05s cubic-bezier(.65, 0, .2, 1) forwards;
}

.v2-loader__meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .8rem;
  color: rgba(255,255,255,.65);
  font-family: var(--v2-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v2-loader.is-complete {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  animation: none;
}

.v2-scroll-progress {
  position: fixed;
  z-index: 5200;
  top: 50%;
  right: .65rem;
  width: 3px;
  height: min(28vh, 14rem);
  overflow: hidden;
  background: rgba(8,9,11,.16);
  transform: translateY(-50%);
}

.v2-scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--v2-ink);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.v2-cursor-orbit {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid var(--v2-ink);
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: transparent;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) scale(.55);
  transition: width .22s ease, height .22s ease, background .22s ease, color .22s ease, opacity .2s ease, transform .12s linear;
}

.v2-cursor-orbit span {
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v2-cursor-orbit.is-visible { opacity: 1; }
.v2-cursor-orbit.is-active {
  width: 5.4rem;
  height: 5.4rem;
  border-color: var(--v2-ink);
  background: var(--v2-acid);
  color: var(--v2-ink);
}

.v2-page-transition {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: var(--v2-cobalt);
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
  transition: clip-path .42s cubic-bezier(.77, 0, .18, 1);
}

body.is-leaving .v2-page-transition { clip-path: inset(0 0 0 0); }

.v2-shell {
  width: min(100%, var(--v2-max));
  margin-inline: auto;
  padding-inline: var(--v2-gutter);
}

.v2-mono,
.v2-kicker,
.v2-nav a,
.v2-nav button,
.v2-utility,
.v2-index,
.v2-chip {
  font-family: var(--v2-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Shared site header */
.v2-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  color: var(--v2-ink);
  transition: background .25s ease, box-shadow .25s ease;
}

.v2-site-header.is-scrolled {
  background: color-mix(in srgb, var(--v2-paper) 92%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--v2-line);
}

.v2-utility {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--v2-gutter);
  border-bottom: 1px solid var(--v2-line);
  font-size: .72rem;
  background: rgba(244, 242, 236, .8);
}

.v2-utility-status { display: flex; align-items: center; gap: .55rem; }
.v2-utility-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--v2-acid);
  box-shadow: 0 0 0 4px rgba(168, 255, 30, .18);
}

.v2-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-inline: var(--v2-gutter);
  border-bottom: 1px solid var(--v2-line);
  background: rgba(244, 242, 236, .78);
  backdrop-filter: blur(14px);
}

.v2-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.v2-brand img {
  display: block;
  width: clamp(8rem, 11vw, 9.7rem);
  height: auto;
}

.v2-nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2.3vw, 2.3rem); }

.v2-nav-links > a,
.v2-nav-dropdown > button {
  position: relative;
  padding: .5rem 0;
  border: 0;
  background: none;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.v2-nav-links > a::after,
.v2-nav-dropdown > button::after {
  content: "";
  position: absolute;
  inset: auto 0 .15rem;
  height: 2px;
  background: var(--v2-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.v2-nav-links > a:hover::after,
.v2-nav-dropdown > button:hover::after,
.v2-nav-dropdown.is-open > button::after,
.v2-nav-dropdown:focus-within > button::after,
.v2-nav-dropdown > button.active-page::after,
.v2-nav-links > a.active-page::after { transform: scaleX(1); transform-origin: left; }

.v2-nav-dropdown {
  position: relative;
  z-index: 20;
}

.v2-nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.v2-dropdown-symbol {
  display: inline-block;
  color: var(--v2-cobalt);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .2s ease;
}

.v2-nav-dropdown.is-open .v2-dropdown-symbol,
.v2-nav-dropdown:hover .v2-dropdown-symbol,
.v2-nav-dropdown:focus-within .v2-dropdown-symbol { transform: rotate(45deg); }

.v2-services-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 1.2rem);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(28rem, 1.8fr);
  width: min(47rem, calc(100vw - (var(--v2-gutter) * 2)));
  border: 1px solid var(--v2-ink);
  background: var(--v2-white);
  box-shadow: 1rem 1rem 0 rgba(8, 9, 11, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, .7rem);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.v2-services-menu::before {
  content: "";
  position: absolute;
  inset: -1.25rem 0 auto;
  height: 1.25rem;
}

.v2-nav-dropdown.is-open .v2-services-menu,
.v2-nav-dropdown:hover .v2-services-menu,
.v2-nav-dropdown:focus-within .v2-services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.v2-services-menu-intro {
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
  border-right: 1px solid var(--v2-ink);
  background: var(--v2-sky);
}

.v2-services-eyebrow {
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-services-menu-intro p {
  margin: 1.15rem 0 1.5rem;
  font-size: .88rem;
  line-height: 1.55;
}

.v2-services-all {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

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

.v2-services-menu-grid a {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  align-content: center;
  min-height: 5.6rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--v2-line);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.v2-services-menu-grid a:nth-child(odd) { border-right: 1px solid var(--v2-line); }
.v2-services-menu-grid a:last-child {
  grid-column: 1 / -1;
  min-height: 4.8rem;
  border-right: 0;
  border-bottom: 0;
}
.v2-services-menu-grid a:hover,
.v2-services-menu-grid a:focus-visible { background: var(--v2-ink); color: white; }

.v2-services-menu-grid a > span {
  grid-row: 1 / 3;
  color: var(--v2-cobalt);
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
}

.v2-services-menu-grid a:hover > span,
.v2-services-menu-grid a:focus-visible > span { color: var(--v2-acid); }

.v2-services-menu-grid strong {
  font-size: .88rem;
  line-height: 1.25;
}

.v2-services-menu-grid small {
  margin-top: .2rem;
  color: var(--v2-muted);
  font-size: .69rem;
  line-height: 1.35;
}

.v2-services-menu-grid a:hover small,
.v2-services-menu-grid a:focus-visible small { color: rgba(255,255,255,.7); }

.v2-nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white;
  font-family: var(--v2-mono);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.v2-nav-cta:hover { background: var(--v2-acid); color: var(--v2-ink); transform: translateY(-2px); }

.v2-mobile-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--v2-ink);
  background: var(--v2-paper);
  font-size: 1.25rem;
  cursor: pointer;
}

.v2-mobile-menu {
  display: none;
  position: fixed;
  inset: 110px 0 auto;
  padding: 1rem var(--v2-gutter) 1.5rem;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-paper);
  max-height: calc(100svh - 110px);
  overflow-y: auto;
}

.v2-mobile-menu:not(.hidden) { display: grid; }
.v2-mobile-menu a,
.v2-mobile-menu button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  background: none;
  font-family: var(--v2-mono);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.v2-mobile-submenu { padding-left: 1rem; }
.v2-mobile-submenu.hidden { display: none; }
.v2-mobile-submenu a { font-size: .84rem; font-weight: 600; }

/* Homepage */
.v2-home { padding-top: 110px; }

.v2-hero {
  position: relative;
  min-height: calc(100svh - 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 35%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(135deg, #c9e8fa 0%, var(--v2-sky) 52%, #9cc8ef 100%);
  border-bottom: 1px solid var(--v2-ink);
}

.v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--v2-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--v2-line) 1px, transparent 1px);
  background-size: calc((100vw - (var(--v2-gutter) * 2)) / 4) 100%, 100% 22%;
  background-position: var(--v2-gutter) 0, 0 0;
  pointer-events: none;
}

.v2-hero::after {
  content: "";
  position: absolute;
  width: 45vw;
  height: 14vw;
  min-width: 22rem;
  min-height: 7rem;
  top: 22%;
  left: 39%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  filter: blur(36px);
  transform: rotate(-24deg);
  animation: v2-hero-light 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.v2-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 0;
  padding-top: clamp(2rem, 5vh, 4rem);
}

.v2-hero-grid > div {
  min-height: 8rem;
  padding: 1rem clamp(.9rem, 2vw, 1.8rem);
  border-right: 1px solid var(--v2-line);
}
.v2-hero-grid > div:first-child { padding-left: 0; }
.v2-hero-grid > div:last-child { border-right: 0; }

.v2-hero-grid .v2-hero-lead {
  margin: 0;
  max-width: none;
  color: var(--v2-ink) !important;
  font-family: var(--v2-sans);
  font-size: clamp(1.25rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.05em;
}

.v2-hero-grid p {
  margin: 0;
  max-width: 34rem;
  color: var(--v2-ink) !important;
  font-family: var(--v2-mono);
  font-size: clamp(.8rem, 1.2vw, 1rem);
  line-height: 1.35;
}

.v2-hero-object {
  position: absolute;
  z-index: 1;
  width: clamp(22rem, 49vw, 46rem);
  aspect-ratio: 1;
  top: 13%;
  left: 50%;
  transform: translateX(-34%) rotate(-8deg);
  filter: drop-shadow(0 35px 28px rgba(24, 69, 130, .28));
  transition: transform .18s ease-out;
  pointer-events: none;
}

.v2-orb {
  position: absolute;
  inset: 22% 22%;
  border-radius: 47% 53% 58% 42% / 43% 38% 62% 57%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255,255,255,.98) 0 7%, rgba(236,248,255,.72) 8% 18%, transparent 19%),
    radial-gradient(circle at 38% 32%, #d9efff 0%, #8dbcf0 38%, #4f81d3 67%, #1d3e79 100%);
  box-shadow:
    inset -28px -35px 55px rgba(12, 42, 94, .38),
    inset 24px 22px 36px rgba(255,255,255,.74),
    0 30px 70px rgba(34, 80, 147, .35);
  animation: v2-morph 9s ease-in-out infinite alternate;
}

.v2-ring,
.v2-ring::before {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.v2-ring-one {
  inset: 18% 2% 22% 0;
  border: clamp(2rem, 4.8vw, 4.5rem) solid rgba(116, 166, 226, .88);
  border-left-color: rgba(225, 244, 255, .92);
  border-top-color: rgba(185, 219, 250, .96);
  box-shadow: inset 20px 18px 28px rgba(255,255,255,.62), 20px 28px 40px rgba(34,73,135,.2);
  transform: rotate(-22deg) skewX(-8deg);
  animation: v2-orbit-one 11s ease-in-out infinite alternate;
}

.v2-ring-two {
  inset: 5% 23% 3% 24%;
  border: clamp(1.2rem, 3vw, 2.8rem) solid rgba(74, 126, 204, .78);
  border-right-color: rgba(214, 238, 255, .9);
  box-shadow: inset -18px -12px 25px rgba(22,55,112,.3), 16px 20px 32px rgba(34,73,135,.18);
  transform: rotate(31deg) skewY(7deg);
  animation: v2-orbit-two 13s ease-in-out infinite alternate;
}

.v2-cursor-shape {
  position: absolute;
  z-index: 2;
  right: 7%;
  top: 54%;
  width: clamp(3rem, 7vw, 6.5rem);
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 52%, 57% 65%, 43% 100%);
  background: linear-gradient(145deg, #7db4f0, #356ec8);
  box-shadow: 0 18px 24px rgba(21, 62, 125, .25);
  transform: rotate(-15deg);
  animation: v2-cursor-float 3.2s ease-in-out infinite alternate;
}

.v2-hero-title {
  position: absolute;
  z-index: 4;
  left: var(--v2-gutter);
  right: var(--v2-gutter);
  bottom: 12%;
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.7rem, 7.7vw, 8.7rem);
  line-height: .87;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.v2-hero-title span {
  display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(42%);
  animation: v2-hero-line .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.v2-hero-title span:nth-child(1) { animation-delay: .9s; }
.v2-hero-title span:nth-child(2) { animation-delay: 1.02s; }
.v2-hero-title span:nth-child(3) { animation-delay: 1.14s; }
.v2-hero-title .v2-outline { color: transparent; -webkit-text-stroke: 2px var(--v2-ink); }

.v2-hero-footer {
  position: absolute;
  z-index: 5;
  inset: auto var(--v2-gutter) 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.v2-hero-meta { display: flex; gap: clamp(1rem, 6vw, 6rem); font-size: .76rem; }

.v2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1.1rem;
  background: var(--v2-acid);
  border: 1px solid var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--v2-ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.v2-hero-cta:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--v2-ink); }

.v2-home-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 2rem var(--v2-gutter);
  border-top: 1.25rem solid var(--v2-acid);
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-paper);
}

.v2-home-share__label {
  margin-right: .15rem;
  color: var(--v2-ink);
  font-size: .9rem;
  font-weight: 750;
}

.v2-home-share__button {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 2.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white;
  box-shadow: 5px 5px 0 var(--v2-acid);
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease;
}

.v2-home-share__button:hover,
.v2-home-share__button:focus-visible {
  box-shadow: 2px 2px 0 var(--v2-acid);
  transform: translate(3px, 3px);
}

.v2-home-share__button svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }
.v2-home-share__button[href*="facebook.com"] { background: #2563eb; }
.v2-home-share__button[href*="twitter.com"] { background: #050505; }
.v2-home-share__button[href*="linkedin.com"] { background: #2878d8; }
.v2-home-share__button[href*="wa.me"] { background: #22a95a; }
.v2-home-share__button[href^="mailto:"] { background: #515763; }

.v2-signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white;
}

.v2-signal-track {
  display: flex;
  width: max-content;
  animation: v2-marquee 28s linear infinite;
}

.v2-signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2.6rem 1rem 0;
  font-family: var(--v2-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v2-signal-track span::after { content: "✦"; color: var(--v2-acid); }

.v2-section {
  position: relative;
  padding: clamp(5rem, 11vw, 10rem) 0;
  border-bottom: 1px solid var(--v2-ink);
}

.v2-section-head {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 3fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.v2-kicker {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: .78rem;
  font-weight: 700;
}

.v2-kicker::before { content: ""; width: .65rem; height: .65rem; background: var(--v2-acid); }

.v2-display-copy {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.2rem, 5.8vw, 6.3rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.v2-display-copy em { color: var(--v2-muted); font-style: normal; }

.v2-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(4rem, 8vw, 8rem);
  background: var(--v2-line);
  border: 1px solid var(--v2-line);
}

.v2-intro-card { padding: clamp(1.5rem, 4vw, 4rem); background: var(--v2-paper); }
.v2-intro-card p { margin: 0; font-size: clamp(1.05rem, 1.8vw, 1.45rem); line-height: 1.5; color: var(--v2-ink) !important; }
.v2-intro-card strong { display: block; margin-bottom: 1.2rem; font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: .9; }

/* Selected work — stacked, interactive project theatre */
.v2-selected-work {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) 0 clamp(5rem, 9vw, 9rem);
  overflow: clip;
  border-bottom: 1px solid var(--v2-ink);
  background:
    linear-gradient(to right, var(--v2-line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--v2-line-soft) 1px, transparent 1px),
    var(--v2-paper);
  background-size: calc((100vw - (var(--v2-gutter) * 2)) / 4) 100%, 100% 8rem, auto;
  background-position: var(--v2-gutter) 0, 0 0, 0 0;
}

.v2-selected-work::before {
  content: "LIVE / SELECTED / SYSTEMS";
  position: absolute;
  top: 2rem;
  right: var(--v2-gutter);
  font-family: var(--v2-mono);
  font-size: .7rem;
  letter-spacing: .06em;
}

.v2-selected-work__intro {
  display: grid;
  grid-template-columns: .6fr 1.7fr .75fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.v2-selected-work__intro .v2-display-copy { max-width: 12ch; }
.v2-selected-work__summary {
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

.v2-work-deck {
  width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-max));
  margin-inline: auto;
  padding-bottom: 8vh;
}

.v2-work-card {
  --work-x: 0px;
  --work-y: 0px;
  position: sticky;
  top: 7.2rem;
  display: grid;
  min-height: min(76vh, 48rem);
  margin-bottom: 10vh;
  overflow: hidden;
  border: 1px solid var(--v2-ink);
  background: var(--v2-sky);
  color: var(--v2-ink);
  box-shadow: 0 -1.4rem 0 rgba(244,242,236,.86), 0 1.5rem 3rem rgba(8,9,11,.12);
  isolation: isolate;
  text-decoration: none;
}

.v2-work-card:nth-child(2) { top: 7.8rem; }
.v2-work-card:nth-child(3) { top: 8.4rem; margin-bottom: 0; }
.v2-work-card--orange { background: var(--v2-orange); }
.v2-work-card--acid { background: var(--v2-acid); }

.v2-work-card__visual {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 36%;
  overflow: hidden;
  border-left: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  transform: translate3d(var(--work-x), var(--work-y), 0);
  transition: transform .18s ease-out;
}

.v2-work-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,11,.22), transparent 35%, rgba(8,9,11,.08));
  pointer-events: none;
}

.v2-work-card__visual img {
  display: block;
  width: calc(100% + 2rem);
  max-width: none;
  height: calc(100% + 2rem);
  object-fit: cover;
  object-position: top;
  filter: saturate(.55) contrast(1.04);
  transform: translate(-1rem, -1rem) scale(1.03);
  transition: filter .6s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}

.v2-work-card:hover .v2-work-card__visual img,
.v2-work-card:focus-visible .v2-work-card__visual img {
  filter: saturate(1) contrast(1.02);
  transform: translate(-1rem, -1rem) scale(1.085);
}

.v2-work-card__stamp {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: .5rem .7rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-acid);
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v2-work-card__meta {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  display: grid;
  gap: .3rem;
  max-width: 28%;
  font-family: var(--v2-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v2-work-card__meta span:last-child { color: rgba(8,9,11,.58); }
.v2-work-card__title {
  align-self: end;
  max-width: 5ch;
  margin: 0 0 5.8rem 1.4rem;
  color: var(--v2-ink) !important;
  font-size: clamp(3.8rem, 8.5vw, 9rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .78;
  text-transform: uppercase;
}

.v2-work-card__action {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-white);
  font-family: var(--v2-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(1rem);
  transition: opacity .3s ease, transform .3s ease;
}

.v2-work-card:hover .v2-work-card__action,
.v2-work-card:focus-visible .v2-work-card__action { opacity: 1; transform: translateY(0); }

.v2-selected-work__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
}

.v2-selected-work__footer p { margin: 0; font-size: .72rem; text-transform: uppercase; }
.v2-selected-work__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: min(100%, 23rem);
  gap: 2rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white;
  font-family: var(--v2-mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--v2-acid);
  transition: transform .2s ease, box-shadow .2s ease;
}

.v2-selected-work__footer a:hover { transform: translate(4px, 4px); box-shadow: 3px 3px 0 var(--v2-acid); }

.v2-service-list { margin-top: clamp(3rem, 6vw, 6rem); border-top: 1px solid var(--v2-ink); }
.v2-service-row {
  display: grid;
  grid-template-columns: 5rem minmax(12rem, 1fr) 1.3fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--v2-ink);
  text-decoration: none;
  transition: padding .25s ease, background .25s ease;
}
.v2-service-row:hover { padding-inline: 1.25rem; background: var(--v2-sky); }
.v2-service-title { margin: 0; font-size: clamp(1.5rem, 3vw, 3.2rem); font-weight: 700; letter-spacing: -.05em; }
.v2-service-row p { margin: 0; color: var(--v2-muted) !important; }
.v2-service-row:hover p { color: var(--v2-ink) !important; }
.v2-service-arrow { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border: 1px solid var(--v2-ink); border-radius: 50%; font-size: 1.35rem; }

.v2-proof {
  border-top: 1px solid var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-paper);
  color: var(--v2-ink);
}
.v2-proof .v2-kicker,
.v2-proof .v2-display-copy { color: var(--v2-ink) !important; }
.v2-proof .v2-kicker::before { background: var(--v2-cobalt); }

.v2-proof-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; margin-top: 5rem; }
.v2-case {
  position: relative;
  min-height: 30rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--v2-ink);
  background: var(--v2-sky);
  color: var(--v2-ink);
}
.v2-case:nth-child(2) { background: var(--v2-acid); }
.v2-case-label { display: flex; justify-content: space-between; font-size: .75rem; }
.v2-case .v2-case-title { position: absolute; inset: auto 1.5rem 1.5rem; margin: 0; color: var(--v2-ink) !important; font-size: clamp(2.4rem, 5vw, 5.6rem); font-weight: 700; line-height: .9; letter-spacing: -.065em; }
.v2-case-stat { position: absolute; right: 1.5rem; top: 28%; font-size: clamp(3rem, 7vw, 7rem); font-weight: 800; letter-spacing: -.07em; }

.v2-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border: 1px solid var(--v2-ink); }
.v2-step { min-height: 22rem; padding: 1.5rem; border-right: 1px solid var(--v2-ink); background: var(--v2-white); }
.v2-step:last-child { border-right: 0; }
.v2-step-number { display: flex; justify-content: space-between; font-family: var(--v2-mono); font-size: .8rem; }
.v2-step h3 { margin: 8rem 0 1rem; font-size: clamp(1.35rem, 2.2vw, 2.2rem); letter-spacing: -.045em; }
.v2-step p { color: var(--v2-muted) !important; }

.v2-quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border: 1px solid var(--v2-ink); }
.v2-quote { display: flex; flex-direction: column; min-height: 22rem; padding: 1.6rem; border-right: 1px solid var(--v2-ink); background: var(--v2-paper); }
.v2-quote:last-child { border-right: 0; }
.v2-quote blockquote { margin: 0; font-size: clamp(1.25rem, 2vw, 1.85rem); line-height: 1.25; letter-spacing: -.03em; }
.v2-quote footer { margin-top: auto; padding: 0; border: 0; font-family: var(--v2-mono); font-size: .78rem; text-transform: uppercase; }

.v2-audit {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 42rem;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-orange);
}
.v2-audit-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 6vw, 6rem) var(--v2-gutter); border-right: 1px solid var(--v2-ink); }
.v2-audit h2 { margin: 0; max-width: 9ch; font-size: clamp(3rem, 7vw, 8rem); line-height: .88; letter-spacing: -.075em; text-transform: uppercase; }
.v2-audit-panel { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; padding: clamp(2rem, 5vw, 5rem); }
.v2-audit-panel p { max-width: 32rem; color: var(--v2-ink) !important; font-size: 1.1rem; }
.v2-audit-panel input { width: 100%; padding: 1rem 0; border: 0; border-bottom: 2px solid var(--v2-ink); background: transparent; color: var(--v2-ink); font-family: var(--v2-mono); }
.v2-audit-panel button { align-self: flex-start; padding: 1rem 1.4rem; border: 1px solid var(--v2-ink); background: var(--v2-ink); color: white; font-family: var(--v2-mono); font-weight: 700; text-transform: uppercase; cursor: pointer; }

/* Shared footer */
.v2-footer { padding: clamp(4rem, 9vw, 9rem) var(--v2-gutter) 2rem; background: var(--v2-ink); color: white; border-top: 1px solid var(--v2-ink); }
.v2-footer-title { margin: 0 0 5rem; max-width: 11ch; font-size: clamp(3.5rem, 9vw, 10rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.v2-footer-title em { display: block; color: var(--v2-acid); font-style: normal; }
.v2-footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.3); }
.v2-footer .v2-footer-heading { margin: 0 0 1rem; color: rgba(255,255,255,.55) !important; font-family: var(--v2-mono); font-size: .72rem; text-transform: uppercase; }
.v2-footer a { display: block; width: fit-content; margin: .45rem 0; color: white; text-decoration: none; }
.v2-footer a:hover { color: var(--v2-acid); }
.v2-footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.3); font-family: var(--v2-mono); font-size: .72rem; text-transform: uppercase; }

/* Existing content pages — new common art direction */
body:not(.v2-home-body) > main,
body:not(.v2-home-body) main { padding-top: 110px; }

body:not(.v2-home-body) .v2-content-root {
  padding-top: 110px !important;
}

body:not(.v2-home-body) .page-container { padding-top: 0 !important; }

body:not(.v2-home-body) main > section,
body:not(.v2-home-body) .page-container > section {
  position: relative;
  border-bottom: 1px solid var(--v2-ink) !important;
  background-color: transparent !important;
  background-image: none !important;
}

body:not(.v2-home-body) .v2-page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100vw !important;
  max-width: none !important;
  margin-left: 50% !important;
  padding: clamp(8rem, 14vw, 13rem) var(--v2-gutter) clamp(3rem, 7vw, 7rem) !important;
  transform: translateX(-50%);
  text-align: left !important;
  background: var(--v2-sky) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--v2-ink) !important;
}

body:not(.v2-home-body) .v2-page-hero::before {
  content: "SEOWD / DIGITAL SYSTEMS / SOUTH AFRICA";
  position: absolute;
  top: 2rem;
  left: var(--v2-gutter);
  font-family: var(--v2-mono);
  font-size: .73rem;
  letter-spacing: .05em;
}

body:not(.v2-home-body) :is(main, .v2-content-root) h1 {
  max-width: 14ch;
  color: var(--v2-ink) !important;
  font-size: clamp(3rem, 7.5vw, 8.2rem) !important;
  line-height: .9 !important;
  letter-spacing: -.07em !important;
  text-shadow: none !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) h2 {
  color: var(--v2-ink) !important;
  font-size: clamp(2rem, 4vw, 4.5rem) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) h3 { color: var(--v2-ink) !important; letter-spacing: -.035em; }
body:not(.v2-home-body) :is(main, .v2-content-root) p { color: var(--v2-muted) !important; }

body:not(.v2-home-body) :is(main, .v2-content-root) :is(.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl) { width: min(calc(100% - (var(--v2-gutter) * 2)), var(--v2-max)) !important; max-width: var(--v2-max) !important; }

body:not(.v2-home-body) :is(main, .v2-content-root) :is(.rounded-xl, .rounded-2xl, .rounded-3xl, .rounded-lg) {
  border-radius: 0 !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) :is(.bg-white, .dark\:bg-dark-card, .dark\:bg-gray-800, .dark\:bg-gray-900) {
  background: var(--v2-white) !important;
  color: var(--v2-ink) !important;
  border-color: var(--v2-ink) !important;
  box-shadow: none !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) :is(.bg-gradient-to-r, .bg-gradient-to-br, .bg-gradient-to-b) {
  background-image: none !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) a[class*="bg-primary"],
body:not(.v2-home-body) :is(main, .v2-content-root) button[class*="bg-primary"],
body:not(.v2-home-body) :is(main, .v2-content-root) a[class*="from-primary"],
body:not(.v2-home-body) :is(main, .v2-content-root) button[class*="from-primary"] {
  border: 1px solid var(--v2-ink) !important;
  border-radius: 0 !important;
  background: var(--v2-ink) !important;
  color: white !important;
  box-shadow: 5px 5px 0 var(--v2-acid) !important;
}

body:not(.v2-home-body) :is(main, .v2-content-root) img { filter: saturate(.82) contrast(1.02); }

body:not(.v2-home-body) .v2-content-root > article:first-child > header:first-child {
  margin-inline: calc(var(--v2-gutter) * -1);
  margin-bottom: clamp(3rem, 8vw, 8rem) !important;
  padding: clamp(7rem, 13vw, 12rem) var(--v2-gutter) clamp(3rem, 7vw, 7rem);
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-sky);
}

body:not(.v2-home-body) .v2-content-root.relative.pt-44 {
  min-height: 62vh !important;
  padding-top: clamp(10rem, 16vw, 15rem) !important;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-sky) !important;
}

/* Complete interior-page system */
body:not(.v2-home-body) .v2-content-root {
  background: var(--v2-paper) !important;
}

body:not(.v2-home-body) .v2-page-shell {
  background: transparent !important;
}

body:not(.v2-home-body) .v2-page-block:not(.v2-page-hero) {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(5.5rem, 9vw, 9rem) var(--v2-gutter) clamp(4.5rem, 8vw, 8rem) !important;
  border-bottom: 1px solid var(--v2-ink) !important;
  background: var(--v2-white) !important;
  color: var(--v2-ink) !important;
}

body:not(.v2-home-body) .v2-page-block:not(.v2-page-hero):nth-child(even) {
  background: var(--v2-sky) !important;
}

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-hero-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-hero-shell::before {
  display: none;
}

body:not(.v2-home-body) .v2-page-block:not(.v2-page-hero)::before {
  content: attr(data-v2-index) " / " attr(data-v2-label);
  position: absolute;
  top: 1.7rem;
  left: var(--v2-gutter);
  max-width: calc(100% - (var(--v2-gutter) * 2));
  color: var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .055em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body:not(.v2-home-body) .v2-page-block > :is(.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl),
body:not(.v2-home-body) .v2-page-block > div > :is(.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl) {
  width: min(100%, var(--v2-max)) !important;
  max-width: var(--v2-max) !important;
  margin-inline: auto !important;
}

body:not(.v2-home-body) .v2-page-hero h1,
body:not(.v2-home-body) .v2-page-hero > p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body:not(.v2-home-body) .v2-page-hero > p {
  max-width: 48rem !important;
  font-size: clamp(1rem, 1.7vw, 1.35rem) !important;
  line-height: 1.55 !important;
}

body:not(.v2-home-body) .v2-page-block :is(h2, h3) {
  max-width: 16ch;
  text-wrap: balance;
}

body:not(.v2-home-body) .v2-page-block h4,
body:not(.v2-home-body) .v2-page-block :is(.text-xs, .text-sm)[class*="uppercase"] {
  font-family: var(--v2-mono) !important;
  letter-spacing: .055em !important;
  text-transform: uppercase;
}

body:not(.v2-home-body) .v2-content-root :is(.rounded-full, .rounded-md, .rounded-lg, .rounded-xl, .rounded-2xl, .rounded-3xl),
body:not(.v2-home-body) .v2-content-root [class*="rounded-["] {
  border-radius: 0 !important;
}

body:not(.v2-home-body) .v2-content-root [class*="shadow"] {
  box-shadow: none !important;
}

body:not(.v2-home-body) .v2-content-root .flex > * {
  min-width: 0;
}

body:not(.v2-home-body) .v2-page-block :is(
  [class~="bg-gray-50"], [class~="bg-blue-50"], [class~="bg-purple-50"],
  [class~="bg-slate-50"], [class~="bg-primary-50"], [class~="bg-white"]
) {
  background: var(--v2-white) !important;
}

body:not(.v2-home-body) .v2-page-block :is(
  [class*="text-primary-"], [class*="text-blue-"], [class*="text-purple-"],
  [class*="text-cyan-"], [class*="text-teal-"]
) {
  color: var(--v2-cobalt) !important;
}

body:not(.v2-home-body) .v2-content-root .text-transparent.bg-clip-text {
  color: var(--v2-cobalt) !important;
  -webkit-text-fill-color: currentColor !important;
  background: none !important;
}

body:not(.v2-home-body) .v2-page-block :is(.grid, .flex) > :is(article, a, div)[class*="border"] {
  border-color: var(--v2-ink) !important;
}

body:not(.v2-home-body) .v2-page-block .grid:has(> :is(article, a, div)[class*="rounded"]) {
  gap: 0 !important;
  border-top: 1px solid var(--v2-ink);
  border-left: 1px solid var(--v2-ink);
}

body:not(.v2-home-body) .v2-page-block .grid:has(> :is(article, a, div)[class*="rounded"]) > :is(article, a, div) {
  min-height: 100%;
  border: 0 !important;
  border-right: 1px solid var(--v2-ink) !important;
  border-bottom: 1px solid var(--v2-ink) !important;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

body:not(.v2-home-body) .v2-page-block .grid:has(> :is(article, a, div)[class*="rounded"]) > :is(article, a, div):hover {
  z-index: 1;
  background: var(--v2-acid) !important;
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--v2-ink) !important;
}

body:not(.v2-home-body) .v2-content-root :is(input, textarea, select) {
  border: 0 !important;
  border-bottom: 1px solid var(--v2-ink) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.v2-home-body) .v2-content-root :is(a, button)[class*="bg-"] {
  border: 1px solid var(--v2-ink) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--v2-acid) !important;
  font-family: var(--v2-mono) !important;
  font-weight: 700 !important;
  letter-spacing: .035em;
  text-transform: uppercase;
}

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-ink {
  background: var(--v2-ink) !important;
  color: white !important;
}

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-ink::before { color: var(--v2-acid); }
body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-ink :is(h2, h3, h4, p, li, blockquote) { color: white !important; }
body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-ink :is([class*="bg-white"], [class*="bg-gray-50"]) :is(h2, h3, h4, p, li) { color: var(--v2-ink) !important; }

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-acid {
  background: var(--v2-acid) !important;
  color: var(--v2-ink) !important;
}

body:not(.v2-home-body) .v2-content-root .v2-page-block.v2-tone-acid :is(h2, h3, h4, p, li) { color: var(--v2-ink) !important; }

/* Service and location pages */
.v2-type-service .v2-page-block > .content-page,
.v2-type-service .v2-page-block > div > .content-page,
.v2-type-location .v2-page-block > div {
  width: min(100%, var(--v2-max)) !important;
  margin-inline: auto !important;
}

.v2-type-service .v2-page-block :is(.space-y-8, .space-y-10, .space-y-12) > div,
.v2-type-location .v2-page-block :is(.space-y-8, .space-y-10, .space-y-12) > div {
  border-color: var(--v2-ink) !important;
}

.v2-type-service .v2-page-block ul li,
.v2-type-location .v2-page-block ul li {
  padding-block: .55rem;
  border-bottom: 1px solid var(--v2-line);
}

/* Insights and long-form reading */
.v2-type-article .v2-page-block:not(.v2-page-hero) > div,
.v2-type-article .v2-page-block:not(.v2-page-hero) > article {
  width: min(100%, 960px) !important;
  margin-inline: auto !important;
}

.v2-type-article .v2-page-block :is(h2, h3) {
  margin-top: clamp(3rem, 7vw, 6rem) !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--v2-ink);
}

.v2-type-article .v2-page-block p,
.v2-type-article .v2-page-block li {
  font-size: clamp(1rem, 1.35vw, 1.16rem) !important;
  line-height: 1.8 !important;
}

.v2-type-insights-index .v2-page-block article,
.v2-type-insights-index .v2-page-block a[class*="group"] {
  border: 1px solid var(--v2-ink) !important;
  background: var(--v2-white) !important;
}

/* Portfolio — technical case-study gallery */
.v2-page-portfolio .v2-content-root { padding-bottom: 0 !important; }
.v2-page-portfolio .v2-block-1 { background: var(--v2-sky) !important; }

.portfolio-launches {
  width: min(100%, var(--v2-max));
  margin: 0 auto clamp(5rem, 9vw, 9rem);
  border: 1px solid var(--v2-ink);
  background: var(--v2-paper);
  box-shadow: 14px 14px 0 rgba(8, 9, 11, .14);
}

.portfolio-launches__header {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  border-bottom: 1px solid var(--v2-ink);
}

.portfolio-launches__header > div,
.portfolio-launches__header > p { padding: clamp(1.5rem, 4vw, 3.5rem); }
.portfolio-launches__header > div { border-right: 1px solid var(--v2-ink); }
.portfolio-launches__header > span { font-family: var(--v2-mono); }

.portfolio-launches__header span {
  display: block;
  margin-bottom: 2rem;
  color: var(--v2-cobalt);
  font-family: var(--v2-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.v2-page-portfolio .v2-content-root .portfolio-launches__header h2 {
  margin: 0;
  max-width: 10ch;
  color: var(--v2-ink) !important;
  font-size: clamp(3.3rem, 7vw, 7.7rem) !important;
  line-height: .84 !important;
  letter-spacing: -.075em !important;
  text-transform: uppercase;
}

body.v2-page-portfolio .v2-content-root .portfolio-launches__header > p {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: clamp(1rem, 1.55vw, 1.3rem) !important;
  line-height: 1.55 !important;
}

.portfolio-launch-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--v2-ink);
}

.portfolio-launch-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--v2-white);
  color: var(--v2-ink);
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}

.portfolio-launch-card--lead { grid-column: span 7; }
.portfolio-launch-card--feature { grid-column: span 5; }
.portfolio-launch-card--half { grid-column: span 6; }

.portfolio-launch-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--v2-ink);
}

.portfolio-launch-card--lead .portfolio-launch-card__visual,
.portfolio-launch-card--feature .portfolio-launch-card__visual { aspect-ratio: 16 / 8.5; }

.portfolio-launch-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(.7) contrast(1.04) !important;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .25s ease;
}

.portfolio-launch-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,9,11,.5));
  pointer-events: none;
}

.portfolio-launch-card__visual > span {
  position: absolute;
  z-index: 2;
  inset: 1rem auto auto 1rem;
  padding: .45rem .65rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-acid);
  color: var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.portfolio-launch-card__content {
  display: flex;
  min-height: 15rem;
  padding: clamp(1.25rem, 2.4vw, 2.1rem);
  flex-direction: column;
}

.portfolio-launch-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 2.5rem !important;
  font-family: var(--v2-mono);
  font-size: .68rem !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.v2-page-portfolio .v2-content-root .portfolio-launch-card h3 {
  margin: 0 0 1rem;
  color: inherit !important;
  font-size: clamp(2rem, 3.4vw, 4.2rem) !important;
  line-height: .92 !important;
  letter-spacing: -.06em !important;
}

body.v2-page-portfolio .v2-content-root .portfolio-launch-card__content > p:not(.portfolio-launch-card__meta) {
  max-width: 48ch;
  margin: 0 0 2rem;
  color: var(--v2-muted) !important;
  font-size: .9rem !important;
  line-height: 1.6 !important;
}

.portfolio-launch-card__content strong {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-family: var(--v2-mono);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.portfolio-launch-card:hover,
.portfolio-launch-card:focus-visible { background: var(--v2-ink); color: white; }
.portfolio-launch-card:hover .portfolio-launch-card__visual img,
.portfolio-launch-card:focus-visible .portfolio-launch-card__visual img { transform: scale(1.035); filter: saturate(1) contrast(1.02) !important; }
body.v2-page-portfolio .v2-content-root .portfolio-launch-card:hover .portfolio-launch-card__content > p,
body.v2-page-portfolio .v2-content-root .portfolio-launch-card:focus-visible .portfolio-launch-card__content > p { color: rgba(255,255,255,.68) !important; }

.portfolio-launch-card--dark .portfolio-launch-card__visual > span { background: var(--v2-orange); }
.portfolio-launch-card--care .portfolio-launch-card__visual > span { background: #ffd7e8; }
.portfolio-launch-card--energy .portfolio-launch-card__visual > span { background: #ffe548; }
.portfolio-launch-card--finance .portfolio-launch-card__visual > span { background: var(--v2-sky); }

.v2-page-portfolio .v2-block-1 > .flex {
  height: clamp(34rem, 72vh, 48rem) !important;
  gap: 0 !important;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
}

.v2-page-portfolio .panel {
  border: 0 !important;
  border-right: 1px solid var(--v2-paper) !important;
  border-radius: 0 !important;
}

.v2-page-portfolio .panel:last-child { border-right: 0 !important; }
body.v2-page-portfolio .v2-content-root .panel h2,
body.v2-page-portfolio .v2-content-root .panel h3,
body.v2-page-portfolio .v2-content-root .panel p { color: white !important; }
.v2-page-portfolio .panel > div:nth-of-type(1) > span {
  border: 1px solid var(--v2-ink) !important;
  background: var(--v2-acid) !important;
  color: var(--v2-ink) !important;
}
.v2-page-portfolio .panel > div:nth-of-type(1) > div:last-child {
  color: var(--v2-acid) !important;
  font-family: var(--v2-mono);
  text-transform: uppercase;
}
.v2-page-portfolio .panel.active { flex: 6 1 0% !important; }
.v2-page-portfolio .panel:not(.active) { flex: .72 1 0% !important; }
.v2-page-portfolio .panel > img { filter: saturate(.45) contrast(1.08); }
.v2-page-portfolio .panel.active > img { filter: saturate(.82) contrast(1.05); }

.v2-page-portfolio .v2-block-2 { background: var(--v2-paper) !important; }
.v2-page-portfolio .v2-block-2 > .grid {
  width: min(100%, var(--v2-max));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--v2-ink);
}

.v2-page-portfolio .v2-block-2 > .grid:first-child { border-top: 0; }
.v2-page-portfolio .v2-block-2 .inline-block[class*="rounded"] {
  border: 1px solid var(--v2-ink) !important;
  background: var(--v2-acid) !important;
  color: var(--v2-ink) !important;
}

.v2-page-portfolio .v2-block-2 .grid > div[class*="relative"] {
  border: 1px solid var(--v2-ink) !important;
  background: var(--v2-ink);
  box-shadow: 10px 10px 0 var(--v2-cobalt) !important;
}

.v2-page-portfolio .v2-block-2 :is(.bg-gray-50, .bg-blue-50, .bg-purple-50, .bg-slate-50) {
  border: 1px solid var(--v2-ink) !important;
  background: var(--v2-sky) !important;
}

.v2-page-portfolio .v2-block-3 blockquote {
  max-width: 22ch;
  font-size: clamp(2rem, 4.5vw, 5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em;
}

body.v2-page-portfolio .v2-content-root .v2-block-4 { background: var(--v2-orange) !important; }
body.v2-page-portfolio .v2-content-root .v2-block-5 {
  background: var(--v2-acid) !important;
  border-radius: 0 !important;
}

/* Contact */
.v2-page-contact #contact > div {
  width: min(100%, var(--v2-max));
  margin-inline: auto;
}

.v2-page-contact #contact form {
  padding: clamp(1.5rem, 4vw, 3.5rem) !important;
  border: 1px solid var(--v2-ink) !important;
  border-radius: 0 !important;
  background: var(--v2-white) !important;
  box-shadow: 9px 9px 0 var(--v2-cobalt) !important;
}

.v2-page-contact #contact button[type="submit"] {
  background: var(--v2-ink) !important;
  color: white !important;
}

.v2-page-contact #contact :is(a, button)[class*="bg-green"] {
  background: var(--v2-acid) !important;
  color: var(--v2-ink) !important;
}

/* Homepage app-development showcase */
.v2-home-body #app-development.v2-product-feature {
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) var(--v2-gutter) clamp(5rem, 8vw, 8rem) !important;
  background: var(--v2-acid) !important;
  color: var(--v2-ink) !important;
  border-bottom: 1px solid var(--v2-ink);
}

#app-development.v2-product-feature::before {
  content: "04 / APP DEVELOPMENT / PRODUCT SYSTEMS";
  display: block;
  width: min(100%, var(--v2-max));
  margin: 0 auto 2rem;
  font-family: var(--v2-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.v2-product-feature__intro,
.v2-product-stage,
.v2-product-capabilities,
.v2-product-build-bar {
  width: min(100%, var(--v2-max));
  margin-inline: auto;
}

.v2-product-feature__eyebrow,
.v2-product-stage__tag,
.v2-product-capabilities article > span {
  font-family: var(--v2-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.v2-product-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: .55rem .8rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-white);
}

.v2-product-feature__intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.v2-home-body #app-development h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: clamp(3rem, 6.8vw, 7.4rem) !important;
  line-height: .88 !important;
  letter-spacing: -.072em !important;
  font-weight: 800 !important;
  text-wrap: balance;
}

.v2-product-feature__summary p {
  margin: 0 0 2rem;
  color: var(--v2-ink) !important;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.v2-product-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.v2-product-feature__actions a,
.v2-product-build-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white !important;
  font-family: var(--v2-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.v2-product-feature__actions a:nth-child(2) {
  background: var(--v2-white);
  color: var(--v2-ink) !important;
}

.v2-product-feature__actions a:hover,
.v2-product-build-bar a:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--v2-cobalt);
}

.v2-product-stage {
  position: relative;
  min-height: clamp(42rem, 70vw, 56rem);
  margin-top: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  border: 1px solid var(--v2-ink);
  background:
    linear-gradient(to right, rgba(8,9,11,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(8,9,11,.09) 1px, transparent 1px),
    linear-gradient(145deg, #f6ffe7 0%, #d7ff89 55%, #b8ff2c 100%);
  background-size: 8rem 100%, 100% 8rem, 100% 100%;
}

.v2-product-stage__copy {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: clamp(2rem, 5vw, 5rem);
}

.v2-product-stage__tag {
  display: inline-block;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--v2-ink);
}

.v2-home-body #app-development .v2-product-stage h3 {
  max-width: 11ch;
  margin: clamp(3rem, 6vw, 6rem) 0 1.5rem;
  color: var(--v2-ink) !important;
  font-size: clamp(3.2rem, 6.4vw, 7rem) !important;
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 800 !important;
}

.v2-product-stage__copy > p {
  max-width: 31rem;
  color: var(--v2-ink) !important;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.v2-product-word-chip {
  display: inline-block;
  padding: .08em .2em .13em;
  border: 1px solid var(--v2-ink);
  background: var(--v2-cobalt);
  color: white;
  transform: rotate(-2deg);
}

.v2-product-word-chip--orange {
  background: var(--v2-orange);
  transform: rotate(2deg);
}

.v2-product-device-cluster {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -4rem;
  width: 52%;
  height: 88%;
}

.v2-product-phone {
  position: absolute;
  bottom: 0;
  width: min(46%, 23rem);
  padding: .55rem;
  border: 1px solid var(--v2-ink);
  border-radius: 2.1rem;
  background: var(--v2-ink);
  box-shadow: 0 2rem 2.5rem rgba(8,9,11,.25);
}

.v2-product-screen {
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 1.55rem;
  background: var(--v2-white);
}

.v2-product-screen__top {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-sky);
  font-family: var(--v2-mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.v2-product-phone--back .v2-product-screen__top { background: var(--v2-orange); }

.v2-product-screen__body { padding: 1.25rem 1rem 1rem; }
.v2-product-screen__body > small {
  font-family: var(--v2-mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
}

.v2-product-screen__body > strong {
  display: block;
  margin-top: 1.2rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: -.07em;
}

.v2-product-screen__body > p {
  margin: .45rem 0 1.3rem;
  color: var(--v2-muted) !important;
  font-size: .7rem !important;
}

.v2-product-screen__body .v2-product-ui-title {
  margin: 1rem 0 1.5rem;
  color: var(--v2-ink) !important;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
}

.v2-product-bars {
  display: flex;
  align-items: end;
  gap: .35rem;
  height: 6.5rem;
  margin-bottom: 1.3rem;
  padding: .8rem;
  border: 1px solid var(--v2-ink);
  background: #e7d9ff;
}

.v2-product-bars i { flex: 1; height: 38%; background: var(--v2-cobalt); }
.v2-product-bars i:nth-child(2) { height: 56%; }
.v2-product-bars i:nth-child(3) { height: 48%; }
.v2-product-bars i:nth-child(4) { height: 76%; background: var(--v2-orange); }
.v2-product-bars i:nth-child(5) { height: 92%; background: var(--v2-ink); }

.v2-product-screen__task,
.v2-product-action-card {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .7rem;
  align-items: center;
  margin-top: .65rem;
  padding: .75rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-white);
  font-size: .67rem;
}

.v2-product-screen__task > span,
.v2-product-action-card > span {
  display: grid;
  place-items: center;
  grid-row: 1 / 3;
  width: 2rem;
  height: 2rem;
  background: var(--v2-acid);
  font-family: var(--v2-mono);
  font-weight: 700;
}

.v2-product-action-card { grid-template-columns: 2rem 1fr auto; }
.v2-ui-label { font-weight: 700; }
.v2-product-action-card > em { color: var(--v2-muted); font-size: .57rem; font-style: normal; }
.v2-product-action-card:nth-of-type(2) > span { background: var(--v2-orange); }

.v2-product-screen__body button {
  width: 100%;
  margin-top: 1.1rem;
  padding: .85rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
  color: white;
  font-family: var(--v2-mono);
  font-size: .66rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.v2-product-phone--back {
  left: 0;
  transform: translateY(8%) rotate(-8deg);
}

.v2-product-phone--front {
  right: 7%;
  z-index: 2;
  transform: rotate(5deg);
}

.v2-product-status-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 15rem;
  padding: .8rem 1rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-white);
  box-shadow: 7px 7px 0 var(--v2-ink);
}

.v2-product-status-card strong,
.v2-product-status-card small { display: block; }
.v2-product-status-card strong { font-size: .86rem; }
.v2-product-status-card small { margin-top: .15rem; color: var(--v2-muted); font-size: .7rem; }
.v2-product-status-card--match { top: 18%; right: 2%; }
.v2-product-status-card--live { right: 28%; bottom: 14%; }

.v2-product-status-dot {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-acid);
  font-weight: 800;
}

.v2-product-status-dot--orange { background: var(--v2-orange); }

.v2-product-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--v2-ink);
  border-left: 1px solid var(--v2-ink);
}

.v2-product-capabilities article {
  min-height: 22rem;
  padding: 1.5rem;
  border-right: 1px solid var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-white);
}

.v2-product-capabilities article:nth-child(2) { background: var(--v2-sky); }
.v2-product-capabilities article:nth-child(3) { background: var(--v2-orange); }
.v2-product-capabilities article:nth-child(4) { background: #e7d9ff; }

.v2-home-body #app-development .v2-product-capability-title {
  margin: 8rem 0 1rem;
  color: var(--v2-ink) !important;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem) !important;
  line-height: 1;
  font-weight: 800 !important;
}

.v2-product-capabilities article p { color: var(--v2-ink) !important; }

.v2-product-build-bar {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--v2-ink);
  color: white;
}

.v2-product-build-bar p { margin: 0; color: white !important; }
.v2-product-build-bar p span {
  display: block;
  margin-bottom: .4rem;
  color: var(--v2-acid);
  font-family: var(--v2-mono);
  font-size: .75rem;
  text-transform: uppercase;
}

.v2-product-build-bar a {
  flex: 0 0 auto;
  border-color: white;
  background: var(--v2-acid);
  color: var(--v2-ink) !important;
}

/* App-development page — live product examples */
.v2-page-app-development .v2-app-showcase {
  margin-top: clamp(5rem, 10vw, 10rem);
  padding-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid var(--v2-ink);
}

.v2-page-app-development .v2-app-showcase__intro {
  display: grid;
  grid-template-columns: .6fr 1.25fr .85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

body.v2-page-app-development .v2-content-root .v2-app-showcase__intro > p:first-child {
  align-self: start;
  margin: .3rem 0 0;
  color: var(--v2-cobalt) !important;
  font-size: .72rem !important;
  font-weight: 700;
  letter-spacing: .065em;
  line-height: 1.45 !important;
  text-transform: uppercase;
}

body.v2-page-app-development .v2-content-root .v2-app-showcase__intro h2 {
  max-width: 9ch;
  margin: 0 !important;
  color: var(--v2-ink) !important;
  font-size: clamp(3.5rem, 7vw, 7rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.075em !important;
  line-height: .86 !important;
  text-transform: uppercase;
}

body.v2-page-app-development .v2-content-root .v2-app-showcase__intro > p:last-child {
  max-width: 32rem;
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: clamp(1rem, 1.35vw, 1.2rem) !important;
  line-height: 1.6 !important;
}

.v2-page-app-development .v2-app-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--v2-ink);
  background: var(--v2-ink);
}

.v2-page-app-development .v2-app-example {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--v2-white);
}

.v2-page-app-development .v2-app-example__visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--v2-ink);
  background: var(--v2-ink);
}

.v2-page-app-development .v2-app-example__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,9,11,.04), rgba(8,9,11,.22));
}

body.v2-page-app-development .v2-content-root .v2-app-example__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(.82) contrast(1.04);
  transition: filter .55s ease, transform .55s ease;
}

.v2-page-app-development .v2-app-example:hover .v2-app-example__visual img,
.v2-page-app-development .v2-app-example:focus-within .v2-app-example__visual img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.v2-page-app-development .v2-app-example__visual > span {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  padding: .48rem .7rem;
  border: 1px solid var(--v2-ink);
  background: var(--v2-acid);
  color: var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.v2-page-app-development .v2-app-example__content {
  display: flex;
  min-height: 29rem;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.v2-page-app-development .v2-app-example--scul .v2-app-example__content { background: var(--v2-sky); }
.v2-page-app-development .v2-app-example--sitesync .v2-app-example__content { background: #dfffaa; }

body.v2-page-app-development .v2-content-root .v2-app-example__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: var(--v2-ink) !important;
  font-family: var(--v2-mono);
  font-size: .67rem !important;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

body.v2-page-app-development .v2-content-root .v2-app-example h3 {
  max-width: none;
  margin: clamp(3rem, 7vw, 6rem) 0 1rem !important;
  color: var(--v2-ink) !important;
  font-size: clamp(3rem, 6vw, 6.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.075em !important;
  line-height: .86 !important;
}

body.v2-page-app-development .v2-content-root .v2-app-example__content > p:not(.v2-app-example__meta) {
  max-width: 39rem;
  margin: 0;
  color: var(--v2-ink) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.v2-page-app-development .v2-app-example ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.v2-page-app-development .v2-app-example li {
  padding: .46rem .65rem;
  border: 1px solid var(--v2-ink);
  background: rgba(255,255,255,.52);
  color: var(--v2-ink);
  font-family: var(--v2-mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.v2-page-app-development .v2-app-example__link {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
  padding: 1rem 0 .85rem;
  border-top: 1px solid var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
  color: var(--v2-ink) !important;
  font-family: var(--v2-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

.v2-page-app-development .v2-app-example__link span { transition: transform .2s ease; }
.v2-page-app-development .v2-app-example__link:hover span,
.v2-page-app-development .v2-app-example__link:focus-visible span { transform: translate(.25rem, -.25rem); }

@media (max-width: 760px) {
  .v2-page-app-development .v2-app-showcase__intro,
  .v2-page-app-development .v2-app-examples { grid-template-columns: 1fr; }
  .v2-page-app-development .v2-app-showcase__intro { gap: 1.5rem; }
  body.v2-page-app-development .v2-content-root .v2-app-showcase__intro h2 { font-size: clamp(3.2rem, 16vw, 5rem) !important; }
  .v2-page-app-development .v2-app-example__content { min-height: 24rem; }
  body.v2-page-app-development .v2-content-root .v2-app-example h3 { margin-top: 3.5rem !important; }
}

/* Social sharing — compact square controls with a high-contrast offset */
body:not(.v2-home-body) section.v2-page-block:has(a[href*="facebook.com/sharer"]) {
  padding: 2.4rem var(--v2-gutter) !important;
  border-top: 1px solid var(--v2-ink) !important;
  border-bottom: 1px solid var(--v2-ink) !important;
  background: var(--v2-paper) !important;
}

body:not(.v2-home-body) section.v2-page-block:has(a[href*="facebook.com/sharer"])::before {
  display: none !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) > div {
  width: min(100%, var(--v2-max)) !important;
  max-width: var(--v2-max) !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) > div > div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) span:first-child {
  margin-right: .1rem;
  color: var(--v2-ink) !important;
  font-size: .9rem !important;
  font-weight: 750 !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a {
  display: inline-flex !important;
  width: 2.55rem !important;
  height: 2.55rem !important;
  min-width: 2.55rem !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid var(--v2-ink) !important;
  border-radius: 0 !important;
  color: white !important;
  box-shadow: 5px 5px 0 var(--v2-acid) !important;
  transform: translate(0, 0);
  transition: box-shadow .18s ease, transform .18s ease !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a:hover,
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a:focus-visible {
  box-shadow: 2px 2px 0 var(--v2-acid) !important;
  transform: translate(3px, 3px);
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a:focus-visible {
  outline: 3px solid var(--v2-cobalt);
  outline-offset: 4px;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) svg {
  width: 1.15rem !important;
  height: 1.15rem !important;
  color: white !important;
  fill: currentColor !important;
}

body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href*="facebook.com"] { background: #2563eb !important; }
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href*="twitter.com"] { background: #050505 !important; }
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href*="linkedin.com"] { background: #2878d8 !important; }
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href*="wa.me"],
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href*="whatsapp.com"] { background: #22a95a !important; }
body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) a[href^="mailto:"] { background: #515763 !important; }

@media (max-width: 980px) {
  .v2-product-feature__intro-grid { grid-template-columns: 1fr; }
  .v2-product-stage { min-height: 62rem; }
  .v2-product-stage__copy { width: 100%; }
  .v2-product-device-cluster { width: 82%; height: 56%; }
  .v2-product-capabilities { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .v2-home-body #app-development.v2-product-feature {
    padding: 5.5rem 1rem 4.5rem !important;
  }

  .v2-product-feature__intro-grid { gap: 2rem; }
  .v2-home-body #app-development h2 { font-size: clamp(2.8rem, 14vw, 4.4rem) !important; }
  .v2-product-feature__actions { display: grid; }
  .v2-product-feature__actions a { width: 100%; }
  .v2-product-stage { min-height: 58rem; background-size: 50% 100%, 100% 8rem, 100% 100%; }
  .v2-product-stage__copy { padding: 1.5rem; }
  .v2-home-body #app-development .v2-product-stage h3 { font-size: clamp(2.7rem, 13vw, 4rem) !important; }
  .v2-product-device-cluster { right: -8%; bottom: -2rem; width: 116%; height: 48%; }
  .v2-product-phone { width: 46%; }
  .v2-product-screen { min-height: 27rem; border-radius: 1.2rem; }
  .v2-product-phone { padding: .35rem; border-radius: 1.55rem; }
  .v2-product-screen__body { padding: .85rem .65rem; }
  .v2-product-action-card { grid-template-columns: 1.7rem 1fr; padding: .55rem; }
  .v2-product-action-card > em { display: none; }
  .v2-product-screen__task { padding: .55rem; }
  .v2-product-status-card { min-width: 12rem; padding: .65rem; }
  .v2-product-status-card--match { top: 4%; right: 10%; }
  .v2-product-status-card--live { right: 34%; bottom: 11%; }
  .v2-product-capabilities { grid-template-columns: 1fr; }
  .v2-product-capabilities article { min-height: 15rem; }
  .v2-home-body #app-development .v2-product-capability-title { margin-top: 4rem; }
  .v2-product-build-bar { align-items: stretch; flex-direction: column; }
  .v2-product-build-bar a { width: 100%; }
}

.v2-reveal {
  opacity: 0;
  filter: blur(9px);
  clip-path: inset(0 0 12% 0);
  transform: translateY(54px) scale(.985);
  transition:
    opacity .85s cubic-bezier(.16, 1, .3, 1),
    filter .85s cubic-bezier(.16, 1, .3, 1),
    clip-path .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--v2-delay, 0ms);
}
.v2-reveal.is-visible { opacity: 1; filter: blur(0); clip-path: inset(0 0 0 0); transform: translateY(0) scale(1); }

@keyframes v2-load-line { to { transform: scaleX(1); } }

@keyframes v2-loader-failsafe {
  0% { visibility: visible; clip-path: inset(0 0 0 0); }
  99% { visibility: visible; }
  100% { visibility: hidden; clip-path: inset(0 0 100% 0); }
}

@keyframes v2-hero-line {
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes v2-hero-light {
  0% { opacity: .55; transform: translate(-3%, -2%) rotate(-28deg) scale(.9); }
  100% { opacity: 1; transform: translate(5%, 5%) rotate(-17deg) scale(1.12); }
}

@keyframes v2-orbit-one {
  0% { transform: rotate(-28deg) skewX(-10deg) scale(.96); }
  100% { transform: rotate(-4deg) skewX(-5deg) scale(1.05); }
}

@keyframes v2-orbit-two {
  0% { transform: rotate(22deg) skewY(4deg) scale(1.04); }
  100% { transform: rotate(48deg) skewY(10deg) scale(.94); }
}

@keyframes v2-cursor-float {
  0% { transform: translateY(-10px) rotate(-19deg) scale(.96); }
  100% { transform: translateY(16px) rotate(-8deg) scale(1.05); }
}

@keyframes v2-morph {
  0% { border-radius: 47% 53% 58% 42% / 43% 38% 62% 57%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 57% 43% 39% 61% / 52% 61% 39% 48%; transform: rotate(8deg) scale(1.04); }
}

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

@media (max-width: 980px) {
  .v2-nav { grid-template-columns: 1fr auto; }
  .v2-nav-links, .v2-nav-cta { display: none; }
  .v2-mobile-toggle { display: block; }
  .v2-hero-grid { grid-template-columns: 1fr 1fr; }
  .v2-hero-grid > div:nth-child(2) { display: none; }
  .v2-hero-grid > div:last-child { border-right: 0; }
  .v2-hero-object { width: 66vw; top: 19%; left: 56%; }
  .v2-hero-title { bottom: 14%; max-width: 10ch; }
  .v2-selected-work__intro { grid-template-columns: .55fr 1.45fr; }
  .v2-selected-work__summary { grid-column: 2; }
  .v2-work-card__visual { inset-inline-start: 28%; }
  .v2-work-card__meta { max-width: 22%; }
  .v2-service-row { grid-template-columns: 3rem 1fr auto; }
  .v2-service-row p { display: none; }
  .v2-proof-grid { grid-template-columns: 1fr; }
  .v2-process-grid { grid-template-columns: 1fr 1fr; }
  .v2-step:nth-child(2) { border-right: 0; }
  .v2-step:nth-child(-n+2) { border-bottom: 1px solid var(--v2-ink); }
  .v2-quote-grid { grid-template-columns: 1fr; }
  .v2-quote { min-height: 16rem; border-right: 0; border-bottom: 1px solid var(--v2-ink); }
  .v2-quote:last-child { border-bottom: 0; }
  .v2-audit { grid-template-columns: 1fr; }
  .v2-audit-copy { min-height: 32rem; border-right: 0; border-bottom: 1px solid var(--v2-ink); }
  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-launches__header { grid-template-columns: 1fr; }
  .portfolio-launches__header > div { border-right: 0; border-bottom: 1px solid var(--v2-ink); }
  .portfolio-launch-card,
  .portfolio-launch-card--lead,
  .portfolio-launch-card--feature,
  .portfolio-launch-card--half { grid-column: span 6; }
  .portfolio-launch-card__visual,
  .portfolio-launch-card--lead .portfolio-launch-card__visual,
  .portfolio-launch-card--feature .portfolio-launch-card__visual { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  body { background-size: 50% 100%, 100% 7rem; }
  .v2-utility { font-size: .62rem; }
  .v2-utility > span:last-child { display: none; }
  .v2-nav { min-height: 68px; }
  .v2-brand img { width: 7.7rem; }
  .portfolio-launches { margin-bottom: 4.5rem; box-shadow: 8px 8px 0 rgba(8, 9, 11, .14); }
  .portfolio-launches__header > div,
  .portfolio-launches__header > p { padding: 1.4rem; }
  .portfolio-launches__header span { margin-bottom: 1.4rem; }
  .portfolio-launch-card,
  .portfolio-launch-card--lead,
  .portfolio-launch-card--feature,
  .portfolio-launch-card--half { grid-column: 1 / -1; }
  .portfolio-launch-card__content { min-height: 14rem; padding: 1.3rem; }
  .portfolio-launch-card__meta { margin-bottom: 2rem !important; }
  .v2-mobile-menu { inset-block-start: 102px; }
  .v2-home { padding-top: 102px; }
  .v2-hero { min-height: 46rem; }
  .v2-hero::before { background-size: 50% 100%, 100% 20%; }
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-hero-grid > div:last-child { display: none; }
  .v2-hero-grid > div:first-child { border-right: 0; }
  .v2-hero-object { width: 100vw; top: 16%; left: 47%; transform: translateX(-42%) rotate(-8deg); }
  .v2-cursor-shape { right: 1rem; top: 50%; }
  .v2-hero-title { bottom: 15%; font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .v2-hero-footer { align-items: flex-end; }
  .v2-hero-meta { display: none; }
  .v2-home-share {
    flex-wrap: wrap;
    min-height: 8.5rem;
    padding: 1.75rem 1rem;
    border-top-width: .8rem;
  }
  .v2-home-share__label { flex: 1 0 100%; margin: 0 0 .3rem; text-align: center; }
  .v2-loader { padding: 1rem; }
  .v2-loader__brand { font-size: clamp(4.6rem, 25vw, 8rem); }
  .v2-loader__meta { font-size: .58rem; }
  .v2-scroll-progress { right: .25rem; }
  .v2-cursor-orbit { display: none; }
  .v2-section-head { grid-template-columns: 1fr; }
  .v2-display-copy { font-size: clamp(2.4rem, 11vw, 4rem); }
  .v2-intro-grid { grid-template-columns: 1fr; }
  .v2-selected-work { padding-top: 6.5rem; }
  .v2-selected-work__intro { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .v2-selected-work__summary { grid-column: auto; }
  .v2-work-deck { width: calc(100% - 2rem); padding-bottom: 2rem; }
  .v2-work-card,
  .v2-work-card:nth-child(2),
  .v2-work-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: 39rem;
    margin-bottom: 1.2rem;
    box-shadow: 7px 7px 0 var(--v2-ink);
  }
  .v2-work-card__visual { inset: 0; border-left: 0; opacity: .5; mix-blend-mode: multiply; }
  .v2-work-card__visual::after { background: linear-gradient(180deg, rgba(255,255,255,.38), transparent 32%, rgba(8,9,11,.16)); }
  .v2-work-card__meta { max-width: 62%; }
  .v2-work-card__title { position: absolute; left: 1rem; bottom: 5.5rem; margin: 0; font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .v2-work-card__action { left: 1rem; bottom: 1rem; opacity: 1; transform: none; }
  .v2-work-card__stamp { top: auto; right: 1rem; bottom: 1rem; }
  .v2-selected-work__footer { align-items: stretch; flex-direction: column; }
  .v2-selected-work__footer a { width: 100%; }
  .v2-service-row { grid-template-columns: 2.3rem 1fr auto; gap: .75rem; }
  .v2-service-title { font-size: 1.35rem; }
  .v2-service-arrow { width: 2.6rem; height: 2.6rem; }
  .v2-case { min-height: 24rem; }
  .v2-process-grid { grid-template-columns: 1fr; }
  .v2-step { min-height: 17rem; border-right: 0; border-bottom: 1px solid var(--v2-ink); }
  .v2-step:last-child { border-bottom: 0; }
  .v2-step h3 { margin-top: 4rem; }
  .v2-audit-copy { min-height: 26rem; }
  .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-footer-bottom { flex-direction: column; }
  body:not(.v2-home-body) > main,
  body:not(.v2-home-body) main { padding-top: 102px; }

  body:not(.v2-home-body) .v2-page-block:not(.v2-page-hero) {
    padding: 5.25rem 1rem 4.5rem !important;
  }

  body:not(.v2-home-body) .v2-page-block:not(.v2-page-hero)::before {
    left: 1rem;
    max-width: calc(100% - 2rem);
  }

  body:not(.v2-home-body) .v2-page-hero {
    min-height: 36rem;
    padding-inline: 1rem !important;
  }

  body:not(.v2-home-body) section.v2-page-block:has(a[href*="facebook.com/sharer"]) {
    padding: 2.25rem 1rem !important;
  }

  body:not(.v2-home-body) section:has(a[href*="facebook.com/sharer"]) span:first-child {
    flex: 1 0 100%;
    margin: 0 0 .35rem;
    text-align: center;
  }

  .v2-page-portfolio .v2-block-1 > .flex {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
  }

  .v2-page-portfolio .panel,
  .v2-page-portfolio .panel.active,
  .v2-page-portfolio .panel:not(.active) {
    flex: none !important;
    min-height: 22rem;
    border-right: 0 !important;
    border-bottom: 1px solid var(--v2-paper) !important;
  }

  .v2-page-portfolio .panel:last-child { border-bottom: 0 !important; }
  .v2-page-portfolio .panel > div:nth-of-type(1) { opacity: 1 !important; }
  .v2-page-portfolio .panel > div:nth-of-type(2) { display: none !important; }
  .v2-page-portfolio .panel h2 { font-size: 2.25rem !important; }

  .v2-page-portfolio .v2-block-2 > .grid {
    padding-block: 4rem;
  }

  .v2-page-contact #contact form { box-shadow: 6px 6px 0 var(--v2-cobalt) !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .v2-loader { display: none; }
  .v2-reveal { opacity: 1; filter: none; clip-path: none; transform: none; }
  .v2-hero-title span { opacity: 1; clip-path: none; transform: none; }
}
