@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0b0d0f;
  --ink-soft: #15181a;
  --paper: #f4f3ed;
  --paper-2: #ecebe4;
  --white: #ffffff;
  --teal: #10988b;
  --teal-dark: #08776d;
  --lime: #d8ff63;
  --coral: #ff6a4b;
  --muted: #6b6d6b;
  --line: rgba(11, 13, 15, .16);
  --line-dark: rgba(255, 255, 255, .15);
  --radius: 28px;
  --shell: 1500px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

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

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
}

.section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 120px clamp(22px, 5vw, 80px);
}

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

.section-index {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.section-dark .section-index,
.section-top.light .section-index {
  color: #8c9192;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 65px;
}

.section-top h2,
.standard-title h2,
.process-head h2,
.ads-copy h2,
.testimonial-heading h2,
.faq-heading h2,
.pre-contact-inner h2,
.contact-copy h2 {
  font-size: clamp(52px, 7.4vw, 116px);
  line-height: .88;
  letter-spacing: -.07em;
  margin: 0;
  font-weight: 800;
}

.section-top h2 em,
.standard-title h2 em,
.process-head h2 em,
.ads-copy h2 em,
.testimonial-heading h2 em,
.faq-heading h2 em,
.pre-contact-inner h2 em,
.contact-copy h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-top>p,
.section-top .top-action>p {
  font-size: 17px;
  line-height: 1.7;
  color: #545755;
  margin: 0;
}

.section-top.light>p {
  color: #a9adad;
}

.top-action {
  display: grid;
  gap: 25px;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}

.text-link span {
  transition: transform .3s var(--ease);
}

.text-link:hover span {
  transform: translateX(6px);
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(18px, 3.2vw, 54px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(11, 13, 15, .72);
  color: white;
  backdrop-filter: blur(18px);
  transition: background .3s, transform .3s;
}

.site-header.scrolled {
  background: rgba(11, 13, 15, .94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, .25);
}

.brand-symbol i {
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-22deg);
  opacity: .55;
}

.brand-symbol b {
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: -.06em;
}

.brand-copy {
  display: grid;
  line-height: 1;
  gap: 4px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: .18em;
  font-weight: 900;
}

.brand-copy small {
  color: #a9adad;
  font-size: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
}

.desktop-nav>a,
.services-trigger {
  padding: 30px 0;
  color: white;
  text-decoration: none;
  opacity: .86;
  transition: opacity .2s;
}

.desktop-nav>a:hover,
.services-trigger:hover {
  opacity: 1;
}

.services-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 700;
}

.services-trigger span {
  display: inline-block;
  margin-left: 4px;
  transition: transform .25s;
}

.nav-services:hover .services-trigger span,
.nav-services:focus-within .services-trigger span {
  transform: rotate(45deg);
}

.nav-services {
  position: static;
}

.mega-menu {
  position: absolute;
  left: clamp(18px, 3.2vw, 54px);
  right: clamp(18px, 3.2vw, 54px);
  top: 69px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  background: #111416;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .28s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

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

.mega-intro {
  padding: 18px 35px 18px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
}

.mega-intro span {
  color: #777e7e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.mega-intro strong {
  font-size: 34px;
  line-height: 1;
  max-width: 340px;
  margin: auto 0 14px;
  letter-spacing: -.04em;
}

.mega-intro p {
  color: #989d9c;
  line-height: 1.55;
  max-width: 380px;
  margin: 0;
  font-size: 13px;
}

.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding-left: 24px;
}

.mega-links a {
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid transparent;
  transition: .25s var(--ease);
}

.mega-links a:hover {
  background: var(--teal);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, .22);
}

.mega-links a span {
  font-size: 9px;
  color: #7f8787;
}

.mega-links a:hover span {
  color: white;
}

.mega-links a b {
  font-size: 13px;
  font-weight: 650;
}

.mega-links a i {
  font-style: normal;
  font-size: 18px;
}

.header-cta {
  min-width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 17px;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 900;
  border-radius: 2px;
}

.header-cta b {
  font-size: 17px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 13px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: .25s;
  transform-origin: center;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 0;
  background: var(--ink);
  color: white;
  padding: 105px 24px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: .3s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu-inner {
  max-width: 720px;
  margin: auto;
}

.mobile-menu-inner>a,
.mobile-menu summary {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  font-size: clamp(26px, 7vw, 46px);
  letter-spacing: -.04em;
  cursor: pointer;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-inner>a span,
.mobile-menu summary span {
  font-size: 9px;
  color: #8e9494;
  letter-spacing: .15em;
}

.mobile-service-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 0 24px;
}

.mobile-service-links a {
  color: white;
  text-decoration: none;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  font-size: 12px;
}

.mobile-main-cta {
  margin-top: 24px;
  background: var(--lime);
  color: var(--ink) !important;
  padding: 0 20px;
  border: 0 !important;
}

.hero {
  min-height: 100svh;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 140px clamp(22px, 5vw, 80px) 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, .75) 70%, transparent 100%);
  opacity: .65;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .25;
}

.glow-one {
  width: 480px;
  height: 480px;
  background: var(--teal);
  top: 9%;
  right: 10%;
  filter: blur(80px);
}

.glow-two {
  width: 350px;
  height: 350px;
  background: var(--coral);
  bottom: 13%;
  left: -10%;
  filter: blur(90px);
  opacity: .16;
}

.hero-kicker {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 800;
  color: #d9dada;
}

.hero-kicker i {
  font-style: normal;
  color: #72797a;
  margin-left: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(216, 255, 99, .1);
}

.hero-heading-wrap {
  max-width: var(--shell);
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0;
  font-size: clamp(64px, 10.6vw, 172px);
  line-height: .82;
  letter-spacing: -.08em;
  font-weight: 840;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.hero-title .line {
  display: block;
  width: fit-content;
}

.hero-title .line-b {
  margin-left: 12vw;
}

.hero-title .line-c {
  margin-left: 2.5vw;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.hero-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
  color: var(--teal);
}

.hero-arrow {
  display: inline-grid;
  place-items: center;
  width: clamp(62px, 7vw, 108px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: .38em;
  letter-spacing: 0;
}

.hero-orbit {
  position: absolute;
  width: clamp(230px, 22vw, 365px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: 2%;
  top: -2%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .025);
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .23);
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  top: -4px;
  left: 50%;
}

.r1 {
  width: 45%;
  height: 45%;
}

.r2 {
  width: 70%;
  height: 70%;
  animation-direction: reverse;
  animation-duration: 24s;
}

.r3 {
  width: 95%;
  height: 95%;
  animation-duration: 30s;
}

.orbit-core {
  width: 27%;
  height: 27%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  font-weight: 900;
  letter-spacing: -.05em;
}

.orbit-tag {
  position: absolute;
  font-size: 8px;
  letter-spacing: .14em;
  background: var(--paper);
  color: var(--ink);
  padding: 7px 9px;
  font-weight: 900;
}

.t1 {
  top: 10%;
  left: 12%;
}

.t2 {
  right: -1%;
  top: 46%;
}

.t3 {
  bottom: 8%;
  left: 28%;
}

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

.hero-lower {
  max-width: var(--shell);
  margin: 52px auto 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7vw;
  align-items: end;
  position: relative;
  z-index: 4;
  padding-left: min(19vw, 290px);
}

.hero-lower p {
  max-width: 700px;
  margin: 0;
  color: #afb3b3;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s;
}

.button b {
  font-size: 18px;
  font-weight: 500;
}

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

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

.button-primary:hover {
  background: var(--teal-dark);
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, .35);
}

.button-outline:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

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

.button-lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.metric-ribbon {
  position: relative;
  z-index: 5;
  max-width: none;
  margin: 0 calc(-1 * clamp(22px, 5vw, 80px));
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
}

.metric-ribbon>div {
  min-height: 105px;
  padding: 20px clamp(18px, 2vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-intro span,
.metric span {
  color: #7f8585;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .14em;
}

.metric-intro b {
  margin-top: 4px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.pulse-line {
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--lime), transparent);
  animation: pulseBar 1.8s ease-in-out infinite;
}

@keyframes pulseBar {
  50% {
    width: 120px;
    opacity: .4;
  }
}

.metric strong {
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 7px;
}

.partner-strip {
  background: var(--teal);
  color: white;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
}

.partner-strip>p {
  margin: 0;
  padding: 0 clamp(22px, 5vw, 80px);
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.partner-strip>div {
  width: max-content;
  display: flex;
  gap: 34px;
  align-items: center;
  padding-left: 34px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  animation: marquee 26s linear infinite;
}

.partner-strip i {
  font-style: normal;
  color: var(--lime);
}

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

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1200px;
}

.industry-card {
  min-height: 305px;
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease), background .3s, box-shadow .45s;
}

.industry-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  right: -70px;
  bottom: -80px;
  transition: .4s var(--ease);
}

.industry-card:hover {
  transform: translateY(-8px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  background: white;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .07);
}

.industry-card:hover::after {
  opacity: .12;
  transform: scale(1.25);
}

.industry-card>span {
  font-size: 9px;
  letter-spacing: .15em;
  color: #858784;
}

.industry-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 42px 0 40px;
  border: 1px solid var(--line);
  font-size: 22px;
  transition: .35s var(--ease);
}

.industry-card:hover .industry-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: rotate(-8deg) scale(1.07);
}

.industry-card h3 {
  font-size: 24px;
  letter-spacing: -.045em;
  margin: 0 0 12px;
  max-width: 250px;
}

.industry-card p {
  color: #61645f;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: 290px;
}

.industry-card>i {
  position: absolute;
  right: 24px;
  top: 24px;
  font-style: normal;
  font-size: 19px;
  transition: .3s;
}

.industry-card:hover>i {
  transform: translate(4px, -4px);
}

.services {
  padding: 1px 0;
}

.services .section {
  max-width: var(--shell);
}

.service-stack {
  border-top: 1px solid var(--line-dark);
}

.service-row {
  color: white;
  text-decoration: none;
  min-height: 176px;
  display: grid;
  grid-template-columns: 90px 1.15fr .35fr 45px;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease);
  z-index: 0;
}

.service-row>* {
  position: relative;
  z-index: 1;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: #747b7c;
  font-size: 10px;
  letter-spacing: .16em;
  transition: color .3s;
}

.service-row:hover .service-number {
  color: white;
}

.service-copy {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1.2fr);
  gap: 45px;
  align-items: center;
}

.service-copy h3 {
  font-size: clamp(30px, 3.7vw, 58px);
  letter-spacing: -.055em;
  line-height: .95;
  margin: 0;
  font-weight: 600;
}

.service-copy p {
  color: #9da2a2;
  margin: 0;
  line-height: 1.55;
  font-size: 14px;
  transition: color .3s;
}

.service-row:hover .service-copy p {
  color: rgba(255, 255, 255, .82);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tags b {
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 6px 8px;
  border-radius: 30px;
}

.service-mark {
  justify-self: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  color: #7f8585;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: .35s var(--ease);
}

.service-row:hover .service-mark {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: rotate(8deg) scale(1.05);
}

.service-row>i {
  font-style: normal;
  font-size: 28px;
  transition: .3s;
}

.service-row:hover>i {
  transform: translate(6px, -6px);
}

.standard {
  padding-bottom: 140px;
}

.standard-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: end;
}

.standard-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #555954;
  margin: 0 0 32px;
}

.standard-cards {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.standard-card {
  min-height: 380px;
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.standard-card.feature {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(28px);
}

.standard-card>span {
  font-size: 9px;
  color: #7c807c;
  letter-spacing: .14em;
}

.standard-card.feature>span {
  color: rgba(255, 255, 255, .65);
}

.standard-card .glyph {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  margin: auto 0 55px;
  font-size: 22px;
}

.standard-card h3 {
  font-size: 28px;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 0 17px;
  max-width: 310px;
}

.standard-card p {
  color: #656963;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.standard-card.feature p {
  color: rgba(255, 255, 255, .78);
}

.process {
  padding: 1px 0;
}

.process-head {
  display: grid;
  grid-template-columns: 1fr .42fr;
  gap: 7vw;
  align-items: end;
}

.process-head .section-index {
  grid-column: 1/-1;
}

.process-head p {
  color: #9da2a2;
  line-height: 1.65;
  margin: 0;
}

.process-layout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 45px;
  margin-top: 75px;
}

.process-rail {
  background: rgba(255, 255, 255, .1);
  position: relative;
}

.process-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--lime);
}

.process-list {
  border-top: 1px solid var(--line-dark);
}

.process-step {
  min-height: 200px;
  border-bottom: 1px solid var(--line-dark);
  padding: 35px 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}

.process-step::after {
  content: attr(data-stage);
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 94px;
  line-height: 1;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .025);
  font-weight: 900;
}

.process-step .stage {
  color: #7f8687;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-step h3 {
  font-size: clamp(30px, 4vw, 58px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 600;
}

.process-step p {
  color: #989e9e;
  max-width: 830px;
  line-height: 1.65;
  margin: 0;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.deliverables b {
  color: var(--ink);
  background: var(--lime);
  padding: 8px 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.showcase-card {
  min-width: 0;
}

.showcase-visual {
  height: 480px;
  position: relative;
  overflow: hidden;
  padding: 55px;
  display: grid;
  place-items: center;
}

.showcase-visual.coral {
  background: var(--coral);
}

.showcase-visual.teal {
  background: var(--teal);
}

.browser-mock {
  width: min(92%, 640px);
  height: 76%;
  background: #f8f8f3;
  border: 1px solid var(--ink);
  box-shadow: 22px 24px 0 rgba(0, 0, 0, .14);
  padding: 14px;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  border-bottom: 1px solid #bbb;
}

.browser-top span {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.browser-top i {
  margin-left: auto;
  font-style: normal;
  font-size: 7px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.browser-body {
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.chart-bars {
  height: 68%;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 16px 10px 0;
  border-bottom: 1px solid #aaa;
}

.chart-bars i {
  flex: 1;
  height: var(--h);
  background: var(--teal);
}

.chart-value {
  font-size: clamp(34px, 4.6vw, 68px);
  letter-spacing: -.06em;
  font-weight: 900;
  padding: 10px;
}

.floating-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  letter-spacing: .13em;
  font-weight: 900;
}

.dashboard-mock {
  width: min(86%, 540px);
  height: 78%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .12);
}

.dashboard-mock::before,
.dashboard-mock::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
}

.dashboard-mock::before {
  inset: 12%;
}

.dashboard-mock::after {
  inset: 27%;
}

.dash-ring {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  align-content: center;
  z-index: 2;
  box-shadow: 0 0 0 22px rgba(216, 255, 99, .1);
}

.dash-ring span {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.dash-ring small {
  font-size: 8px;
  letter-spacing: .14em;
}

.dash-lines {
  position: absolute;
  inset: 12%;
  animation: orbitSpin 18s linear infinite;
}

.dash-lines i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.dash-lines i:nth-child(1) {
  top: 0;
  left: 50%
}

.dash-lines i:nth-child(2) {
  right: 8%;
  top: 44%
}

.dash-lines i:nth-child(3) {
  bottom: 8%;
  left: 22%
}

.dash-lines i:nth-child(4) {
  left: 0;
  top: 34%
}

.dash-label {
  position: absolute;
  bottom: 12%;
  font-size: 8px;
  letter-spacing: .15em;
  color: white;
}

.showcase-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #747773;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .12em;
}

.showcase-card h3 {
  font-size: clamp(30px, 3.5vw, 50px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 18px 0 14px;
}

.showcase-card>p {
  color: #5a5e59;
  line-height: 1.65;
  max-width: 700px;
  margin: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 30px;
}

.kpi-grid>div {
  padding: 18px 10px 18px 0;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 5px;
}

.kpi-grid>div:last-child {
  border-right: 0;
  padding-left: 15px;
}

.kpi-grid>div:nth-child(2) {
  padding-left: 15px;
}

.kpi-grid b {
  font-size: 20px;
  letter-spacing: -.04em;
}

.kpi-grid span {
  color: #777a76;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 8px;
}

.ads-proof {
  background: var(--lime);
  padding: 120px clamp(22px, 5vw, 80px);
}

.ads-proof-inner {
  max-width: var(--shell);
  margin: auto;
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 7vw;
  align-items: start;
}

.ads-copy {
  position: sticky;
  top: 120px;
}

.ads-copy p {
  line-height: 1.7;
  max-width: 460px;
  margin: 28px 0;
}

.ads-cards {
  display: grid;
  gap: 14px;
}

.ads-card {
  min-height: 380px;
  background: white;
  padding: 32px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.ads-card.inverse {
  background: var(--ink);
  color: white;
  margin-left: 7vw;
}

.ads-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
  color: #707571;
}

.ads-card.inverse .ads-card-top {
  color: #8b9292;
}

.ads-card-top b {
  font-size: 32px;
  color: var(--teal);
  letter-spacing: -.05em;
}

.ads-card.inverse .ads-card-top b {
  color: var(--lime);
}

.ads-card h3 {
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: .95;
  letter-spacing: -.06em;
  max-width: 720px;
  margin: 48px 0 20px;
}

.ads-card p {
  line-height: 1.65;
  color: #60635f;
  max-width: 720px;
}

.ads-card.inverse p {
  color: #9ca2a2;
}

.ads-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, .16);
  margin-top: 30px;
}

.ads-card.inverse .ads-kpis {
  border-color: rgba(255, 255, 255, .16);
}

.ads-kpis span {
  display: grid;
  padding-top: 16px;
  gap: 5px;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .1em;
  color: #747874;
}

.ads-kpis b {
  font-size: 20px;
  color: inherit;
  text-transform: none;
  letter-spacing: -.04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.price-card {
  min-height: 600px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  background: var(--teal);
  color: white;
  transform: translateY(-22px);
  border-color: var(--teal);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
}

.price-head>span {
  color: #777b77;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.price-card.popular .price-head>span {
  color: rgba(255, 255, 255, .7);
}

.price-head h3 {
  font-size: 32px;
  letter-spacing: -.045em;
  margin: 52px 0 24px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price b {
  font-size: 68px;
  line-height: .8;
  letter-spacing: -.08em;
}

.price small {
  font-size: 11px;
  margin-bottom: 5px;
}

.price-head p {
  color: #626661;
  line-height: 1.6;
  margin: 25px 0 0;
}

.price-card.popular .price-head p {
  color: rgba(255, 255, 255, .82);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 45px 0;
  border-top: 1px solid var(--line);
}

.price-card.popular ul {
  border-color: rgba(255, 255, 255, .25);
}

.price-card li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  display: flex;
  gap: 10px;
}

.price-card.popular li {
  border-color: rgba(255, 255, 255, .2);
}

.price-card li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.price-card.popular li::before {
  color: var(--lime);
}

.price-card>a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  text-decoration: none;
  border-top: 1px solid currentColor;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.testimonial-section {
  padding: 120px clamp(22px, 5vw, 80px);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 7vw;
  align-items: start;
}

.testimonial-heading {
  position: sticky;
  top: 120px;
}

.testimonial-slider {
  min-height: 560px;
  position: relative;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 55px 0 85px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeQuote .45s ease;
}

@keyframes fadeQuote {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.quote-mark {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: .6;
}

blockquote {
  margin: 45px 0 70px;
  font-size: clamp(30px, 4.5vw, 68px);
  letter-spacing: -.055em;
  line-height: 1.05;
  max-width: 1000px;
}

.quote-author {
  display: grid;
  gap: 4px;
}

.quote-author b {
  font-size: 14px;
}

.quote-author span {
  color: #828989;
  font-size: 11px;
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-controls>button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: none;
  color: white;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 22px;
  height: 3px;
  border: 0;
  padding: 0;
  background: #4d5454;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--lime);
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 7vw;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 17px;
  font-weight: 700;
}

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

.faq summary b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: .25s;
}

.faq details[open] summary b {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.faq details p {
  color: #5c605b;
  line-height: 1.7;
  max-width: 780px;
  margin: -5px 55px 28px 0;
}

.pre-contact {
  background: var(--coral);
  color: var(--ink);
  overflow: hidden;
  padding-bottom: 100px;
}

.pre-contact-track {
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.pre-contact-track span {
  display: inline-block;
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  padding: 24px 0;
  animation: marqueeSlow 24s linear infinite;
}

@keyframes marqueeSlow {
  to {
    transform: translateX(-45%);
  }
}

.pre-contact-inner {
  max-width: var(--shell);
  margin: auto;
  padding: 90px clamp(22px, 5vw, 80px) 0;
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 7vw;
  align-items: end;
}

.pre-contact-inner p {
  line-height: 1.7;
  margin: 0 0 25px;
}

.pre-contact-inner .button {
  grid-column: 2;
  width: 100%;
}

.contact {
  padding: 120px clamp(22px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: var(--teal);
  right: -420px;
  top: -380px;
  opacity: .2;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}

.contact-copy p {
  color: #9da3a3;
  line-height: 1.7;
  max-width: 600px;
  margin: 30px 0 45px;
}

.contact-details {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.contact-details>* {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 6px;
  text-decoration: none;
}

.contact-details small {
  color: #737b7b;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 8px;
}

.contact-details b {
  font-size: 13px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 26px;
  align-content: start;
  padding: 35px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .025);
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: #818888;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  color: white;
  border: 0;
  border-bottom: 1px solid #505656;
  padding: 12px 0;
  outline: 0;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1/-1;
}

.form-status {
  margin: 0;
  min-height: 18px;
  color: #b7bdba;
  font-size: 12px;
  line-height: 1.45;
}

.form-status.is-success {
  color: #79d6a4
}

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

.form-note {
  margin: 0;
  color: #7f8986;
  font-size: 10px;
  line-height: 1.55
}

.form-note a {
  color: #cfd5d2;
  text-underline-offset: 3px
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .68;
  transform: none
}

.contact-form button[aria-busy="true"] b {
  animation: formArrowPulse .8s ease-in-out infinite alternate
}

@keyframes formArrowPulse {
  to {
    transform: translateX(5px);
    opacity: .45
  }
}

.contact-form input,
.contact-form select {
  min-height: 46px
}

.contact-form textarea {
  min-height: 120px
}

.footer {
  background: #080a0b;
  color: white;
  padding: 80px clamp(22px, 5vw, 80px) 25px;
}

.footer-main {
  max-width: var(--shell);
  margin: auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .55fr);
  gap: 5vw;
}

.footer-brand>p {
  color: #858c8c;
  line-height: 1.7;
  max-width: 500px;
  margin: 28px 0;
  font-size: 13px;
}

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

.socials a {
  color: #bec3c3;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  text-decoration: none;
  border-bottom: 1px solid #4c5151;
  padding-bottom: 4px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col h3 {
  color: #666e6e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 4px 0 18px;
}

.footer-col a {
  text-decoration: none;
  color: #d9dddd;
  font-size: 12px;
}

.footer-col p {
  color: #858c8c;
  font-size: 11px;
  line-height: 1.6;
  margin: 8px 0;
}

.footer-bottom {
  max-width: var(--shell);
  margin: 65px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666e6e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  text-decoration: none;
}

.floating-contact {
  position: fixed;
  z-index: 600;
  right: 20px;
  bottom: 20px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  transition: .3s var(--ease);
}

.floating-contact b {
  position: absolute;
  right: 15px;
  top: 11px;
  font-size: 14px;
}

.floating-contact:hover {
  transform: rotate(-7deg) scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.hero-title .line-b.reveal {
  transition-delay: .08s;
}

.hero-title .line-c.reveal {
  transition-delay: .16s;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .hero-orbit {
    opacity: .7;
    right: -5%;
  }

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

  .service-row {
    grid-template-columns: 70px 1fr 90px 35px;
  }

  .service-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .standard-card:last-child {
    grid-column: 1/-1;
    min-height: 300px;
  }

  .ads-proof-inner,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .ads-copy,
  .testimonial-heading {
    position: relative;
    top: auto;
  }

  .ads-copy {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 30px;
    align-items: end;
  }

  .ads-copy .section-index {
    grid-column: 1/-1;
  }

  .ads-copy p {
    margin: 0;
  }

  .ads-copy .button {
    width: fit-content;
  }

  .contact-inner {
    grid-template-columns: .75fr 1.25fr;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, .65fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: clamp(58px, 14vw, 120px);
    line-height: .86;
  }

  .hero-title .line-b,
  .hero-title .line-c {
    margin-left: 0;
  }

  .hero-orbit {
    width: 230px;
    top: 30%;
    right: -70px;
    opacity: .5;
  }

  .hero-lower {
    padding-left: 0;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .metric-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .metric-intro {
    grid-column: 1/-1;
    min-height: 70px !important;
  }

  .metric-ribbon>div {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .partner-strip {
    grid-template-columns: 1fr;
  }

  .partner-strip>p {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-top,
  .standard-grid,
  .process-head,
  .pre-contact-inner,
  .contact-inner,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-top {
    gap: 30px;
    margin-bottom: 45px;
  }

  .section-top h2,
  .standard-title h2,
  .process-head h2,
  .ads-copy h2,
  .testimonial-heading h2,
  .faq-heading h2,
  .pre-contact-inner h2,
  .contact-copy h2 {
    font-size: clamp(50px, 12vw, 88px);
  }

  .service-row {
    min-height: 220px;
    grid-template-columns: 48px 1fr 54px;
  }

  .service-mark {
    display: none;
  }

  .service-row>i {
    justify-self: end;
  }

  .service-copy h3 {
    font-size: clamp(32px, 7vw, 52px);
  }

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

  .standard-card,
  .standard-card.feature,
  .standard-card:last-child {
    grid-column: auto;
    min-height: 330px;
    transform: none;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .ads-copy {
    grid-template-columns: 1fr;
  }

  .ads-copy .section-index {
    grid-column: auto;
  }

  .ads-card.inverse {
    margin-left: 0;
  }

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

  .price-card,
  .price-card.popular {
    min-height: auto;
    transform: none;
  }

  .price-card ul {
    margin: 30px 0;
  }

  .testimonial-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .testimonial-slider {
    min-height: 500px;
  }

  .faq-heading {
    position: relative;
    top: auto;
    margin-bottom: 35px;
  }

  .pre-contact-inner .button {
    grid-column: auto;
  }

  .contact-copy {
    margin-bottom: 25px;
  }

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

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 650px) {
  .page-noise {
    display: none;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .mobile-service-links {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-kicker i {
    display: none;
  }

  .hero-title {
    font-size: clamp(52px, 17vw, 94px);
  }

  .hero-title .line-c {
    gap: 12px;
  }

  .hero-arrow {
    width: 58px;
    flex: 0 0 58px;
  }

  .hero-orbit {
    display: none;
  }

  .hero-lower {
    margin-bottom: 38px;
  }

  .hero-lower p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .metric-ribbon {
    margin-left: -18px;
    margin-right: -18px;
  }

  .metric-ribbon>div {
    padding: 17px 18px;
    min-height: 92px;
  }

  .metric strong {
    font-size: 23px;
  }

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

  .industry-card {
    min-height: 280px;
  }

  .service-row {
    grid-template-columns: 34px 1fr 28px;
    gap: 13px;
    padding: 24px 0;
  }

  .service-copy p {
    font-size: 13px;
  }

  .tags {
    display: none;
  }

  .process-layout {
    grid-template-columns: 2px 1fr;
    gap: 20px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 220px;
  }

  .process-step::after {
    font-size: 60px;
  }

  .process-step h3 {
    font-size: 32px;
  }

  .showcase-visual {
    height: 350px;
    padding: 30px 20px;
  }

  .browser-mock {
    width: 92%;
    height: 72%;
    box-shadow: 12px 14px 0 rgba(0, 0, 0, .14);
  }

  .dashboard-mock {
    width: 92%;
  }

  .dash-ring {
    width: 110px;
    height: 110px;
  }

  .dash-ring span {
    font-size: 27px;
  }

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

  .kpi-grid>div,
  .kpi-grid>div:nth-child(2),
  .kpi-grid>div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .kpi-grid>div:last-child {
    border-bottom: 0;
  }

  .ads-proof {
    padding: 90px 18px;
  }

  .ads-card {
    padding: 24px;
  }

  .ads-card h3 {
    margin-top: 35px;
  }

  .ads-kpis {
    grid-template-columns: 1fr;
  }

  .ads-kpis span {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }

  .price {
    align-items: baseline;
  }

  .price b {
    font-size: 60px;
  }

  blockquote {
    font-size: 32px;
    margin-top: 35px;
  }

  .testimonial-slider {
    min-height: 530px;
    padding-top: 45px;
  }

  .faq summary {
    font-size: 15px;
    min-height: 76px;
  }

  .faq details p {
    margin-right: 0;
    font-size: 14px;
  }

  .pre-contact {
    padding-bottom: 70px;
  }

  .pre-contact-inner {
    padding: 70px 18px 0;
  }

  .pre-contact-track span {
    font-size: 42px;
  }

  .contact {
    padding: 85px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px
  }

  .contact-form textarea {
    min-height: 145px
  }

  .contact-form .button {
    min-height: 56px
  }

  .form-note {
    font-size: 11px
  }

  .footer {
    padding: 65px 18px 24px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    width: 70px;
    height: 70px;
    right: 12px;
    bottom: 12px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

/* =========================================================
   VISUAL / TYPOGRAPHY UPGRADE — balanced sizing + real media
   ========================================================= */

/* Use the real brand mark without making the header oversized. */
.brand-logo {
  display: flex;
  align-items: center;
  width: 112px;
  height: 38px;
  flex: 0 0 auto
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block
}

.brand .brand-copy {
  display: none
}

/* More balanced global heading scale. */
.section-top h2,
.standard-title h2,
.process-head h2,
.ads-copy h2,
.testimonial-heading h2,
.faq-heading h2,
.pre-contact-inner h2,
.contact-copy h2 {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-title {
  font-size: clamp(52px, 7.3vw, 112px);
  line-height: .88;
  letter-spacing: -.065em
}

.hero-lower p {
  font-size: clamp(15px, 1.25vw, 18px)
}

.service-copy h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1
}

.process-step h3 {
  font-size: clamp(27px, 3vw, 44px)
}

.showcase-card h3 {
  font-size: clamp(27px, 2.8vw, 42px)
}

.ads-card h3 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1
}

blockquote {
  font-size: clamp(28px, 3.6vw, 48px) !important
}

/* Shared photography treatment. */
.section-photo,
.home-hero-photo,
.inner-hero-media,
.delivery-photo,
.contact-page-photo,
.contact-side-photo,
.testimonial-photo,
.ads-card-media {
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(11, 13, 15, .12);
}

.section-photo img,
.home-hero-photo img,
.inner-hero-media img,
.delivery-photo img,
.contact-page-photo img,
.contact-side-photo img,
.testimonial-photo img,
.ads-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo {
  width: 100%;
  height: clamp(250px, 31vw, 430px);
  border-radius: 22px;
  margin: 42px 0 55px;
  box-shadow: 0 24px 70px rgba(11, 13, 15, .09)
}

.section-photo-compact {
  height: clamp(230px, 25vw, 350px)
}

.section-photo-dark {
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24)
}

/* Homepage imagery. */
.home-hero-photo {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  top: 145px;
  width: min(38vw, 560px);
  height: min(48vw, 610px);
  border-radius: 30px;
  z-index: 2;
  opacity: .82;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .36);
  transform: rotate(2deg);
}

.home-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 15, .05), rgba(11, 13, 15, .34));
  pointer-events: none
}

.home-hero-photo img {
  filter: saturate(.9) contrast(1.04)
}

.hero-heading-wrap,
.hero-lower,
.metric-ribbon {
  position: relative;
  z-index: 4
}

.hero-heading-wrap {
  max-width: 76%
}

.home-section-photo {
  max-width: var(--shell)
}

.services .home-section-photo,
.process .home-section-photo {
  margin-left: auto;
  margin-right: auto
}

.photo-visual {
  padding: 0 !important;
  background: #111 !important;
  border-radius: 22px
}

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

.ads-card-media {
  height: 240px;
  border-radius: 16px;
  margin: 20px 0 4px;
  border-color: rgba(0, 0, 0, .1)
}

.ads-card.inverse .ads-card-media {
  border-color: rgba(255, 255, 255, .12)
}

.testimonial-photo {
  height: 250px;
  border-radius: 18px;
  margin-top: 30px;
  border-color: rgba(255, 255, 255, .14)
}

.faq .home-section-photo {
  grid-column: 1/-1;
  height: 300px;
  margin: 0 0 45px
}

.pre-contact.has-photo {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden
}

.pre-contact.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 15, .94), rgba(11, 13, 15, .72)), var(--pre-image) center/cover no-repeat;
  opacity: .95
}

.pre-contact.has-photo>* {
  position: relative;
  z-index: 1
}

.contact-side-photo {
  height: 230px;
  border-radius: 18px;
  margin: 28px 0 0;
  border-color: rgba(255, 255, 255, .13)
}

/* =========================================================
   FULL INNER PAGE SYSTEM
   ========================================================= */
.inner-hero {
  min-height: 760px;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 140px clamp(22px, 5vw, 80px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .77fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.inner-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%)
}

.inner-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(120px);
  opacity: .14;
  right: -90px;
  top: 70px
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px
}

.inner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #c3c8c8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase
}

.inner-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(216, 255, 99, .09)
}

.inner-hero h1 {
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: .96;
  letter-spacing: -.052em;
  margin: 0;
  max-width: 840px;
  font-weight: 760
}

.inner-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--teal);
  font-style: italic
}

.inner-hero-content>p {
  max-width: 700px;
  color: #abb1b1;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
  margin: 28px 0 0
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px
}

.inner-actions .button {
  min-width: 180px
}

.inner-hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(390px, 43vw, 590px);
  border-radius: 28px;
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 38px 90px rgba(0, 0, 0, .34);
  transform: rotate(1.25deg)
}

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 15, .32));
  pointer-events: none
}

.inner-signal {
  position: absolute;
  right: clamp(32px, 6vw, 100px);
  bottom: 44px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(11, 13, 15, .76);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 16px;
  border-radius: 999px
}

.inner-signal>span {
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #a8aeae
}

.signal-orbit {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--lime);
  font-size: 8px
}

.signal-orbit i {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(216, 255, 99, .28);
  border-radius: 50%
}

.signal-orbit i:nth-child(2) {
  inset: 10px
}

.signal-orbit b {
  position: relative;
  z-index: 2;
  font-size: 7px
}

.inner-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px clamp(22px, 5vw, 80px)
}

.inner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: 6vw;
  align-items: end
}

.inner-heading .section-index {
  grid-column: 1/-1;
  margin-bottom: 6px
}

.inner-heading h2,
.deliver-copy h2,
.direct-channels h2,
.form-title h2 {
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0;
}

.inner-heading>p,
.deliver-copy>p,
.direct-channels>p {
  font-size: 16px;
  line-height: 1.7;
  color: #606460;
  margin: 0;
  max-width: 640px
}

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

.inner-dark .inner-heading>p {
  color: #9ca2a2
}

.inner-dark .section-index {
  color: #8c9393
}

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

.method-card {
  min-height: 300px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: .35s var(--ease)
}

.method-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(16, 152, 139, .09);
  transition: .35s
}

.method-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .08);
  border-color: rgba(16, 152, 139, .35)
}

.method-card:hover::before {
  transform: scale(1.18);
  background: rgba(16, 152, 139, .15)
}

.method-card>span {
  font-size: 9px;
  letter-spacing: .14em;
  color: #858986
}

.method-card h3 {
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: auto 0 14px;
  max-width: 320px
}

.method-card p {
  font-size: 14px;
  line-height: 1.62;
  color: #646864;
  margin: 0;
  max-width: 340px
}

.method-card>i {
  position: absolute;
  right: 24px;
  top: 22px;
  font-style: normal;
  font-size: 19px
}

.inner-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px
}

.metric-panel {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .025);
  position: relative;
  overflow: hidden
}

.metric-panel span {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #8f9696
}

.metric-panel strong {
  font-size: clamp(30px, 3.3vw, 48px);
  letter-spacing: -.055em;
  color: white
}

.metric-panel i {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(216, 255, 99, .23);
  border-radius: 50%
}

.split-delivery {
  display: grid;
  grid-template-columns: .75fr 1.05fr .8fr;
  gap: 34px;
  align-items: start
}

.split-delivery .deliver-copy {
  position: sticky;
  top: 110px
}

.delivery-photo {
  height: 360px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.deliver-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line)
}

.deliver-list li {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px
}

.deliver-list li span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: white;
  font-size: 11px;
  flex: 0 0 auto
}

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

.flow-step {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s var(--ease)
}

.flow-step:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-5px)
}

.flow-step span {
  font-size: 9px;
  letter-spacing: .13em;
  color: #7b807d
}

.flow-step:hover span {
  color: rgba(255, 255, 255, .7)
}

.flow-step h3 {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 0
}

.inner-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--teal);
  color: white;
  padding: 78px clamp(22px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 7vw;
  align-items: end
}

.inner-cta.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cta-image) center/cover no-repeat
}

.inner-cta.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 13, 15, .88), rgba(11, 13, 15, .72) 62%, rgba(16, 152, 139, .45))
}

.inner-cta h2 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0;
  max-width: 760px
}

.inner-cta p {
  color: #d3d8d8;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 520px
}

.inner-cta .section-index {
  color: #b7c0c0
}

/* About page */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px
}

.mission-card {
  min-height: 300px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column
}

.mission-card>span {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7d817d
}

.mission-card h3 {
  font-size: 30px;
  letter-spacing: -.045em;
  margin: auto 0 15px
}

.mission-card p {
  color: #60645f;
  line-height: 1.65;
  margin: 0
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px
}

.team-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 22px;
  padding: 18px;
  min-height: 255px
}

.team-avatar {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--teal)
}

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

.team-card>div:last-child>span {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #777d78
}

.team-card h3 {
  font-size: 30px;
  letter-spacing: -.04em;
  margin: 13px 0
}

.team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #646863;
  margin: 0
}

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

.creed-grid article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, .025)
}

.creed-grid article span {
  font-size: 9px;
  color: #8b9292;
  letter-spacing: .12em
}

.creed-grid article h3 {
  font-size: 23px;
  margin: 70px 0 12px
}

.creed-grid article p {
  color: #9ba1a1;
  line-height: 1.55;
  font-size: 13px;
  margin: 0
}

/* Portfolio */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 34px 0 45px
}

.portfolio-filters button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: .25s
}

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

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

.portfolio-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .35s var(--ease)
}

.portfolio-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .1)
}

.portfolio-visual {
  height: 290px;
  position: relative;
  overflow: hidden;
  background: #111
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease)
}

.portfolio-card:hover .portfolio-visual img {
  transform: scale(1.04)
}

.portfolio-visual>span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(11, 13, 15, .78);
  color: white;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 8px;
  letter-spacing: .1em
}

.portfolio-card-copy {
  padding: 22px
}

.portfolio-card-copy>span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7c817c
}

.portfolio-card-copy h3 {
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 10px 0
}

.portfolio-card-copy p {
  font-size: 13px;
  line-height: 1.58;
  color: #626662;
  margin: 0 0 20px
}

.portfolio-card-copy dl {
  margin: 0;
  border-top: 1px solid var(--line)
}

.portfolio-card-copy dl>div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px
}

.portfolio-card-copy dt {
  color: #858985
}

.portfolio-card-copy dd {
  margin: 0;
  text-align: right
}

.portfolio-card-copy>a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 20px
}

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

.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  transition: .3s var(--ease)
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08)
}

.blog-art {
  height: 250px;
  position: relative;
  border: 0;
  border-radius: 0;
  background: #111
}

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

.blog-art>span {
  position: absolute;
  left: 15px;
  top: 15px;
  background: rgba(11, 13, 15, .76);
  color: white;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 8px
}

.blog-copy {
  padding: 24px
}

.blog-copy>span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #777c78
}

.blog-copy h2 {
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 12px 0
}

.blog-copy p {
  color: #626662;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px
}

.blog-copy a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .09em;
  font-size: 9px;
  border-top: 1px solid var(--line);
  padding-top: 16px
}

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

.case-study-large {
  display: grid;
  grid-template-columns: 70px 1fr .9fr;
  gap: 26px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  align-items: stretch;
  overflow: hidden
}

.case-study-large.inverse {
  background: var(--ink);
  color: white;
  border-color: var(--ink)
}

.case-number {
  font-size: 10px;
  letter-spacing: .13em;
  color: #888e89;
  padding-top: 6px
}

.case-copy {
  padding: 26px 10px
}

.case-copy>span {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7d827e
}

.case-study-large.inverse .case-copy>span {
  color: #8c9393
}

.case-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 18px 0
}

.case-copy p {
  color: #60645f;
  line-height: 1.65;
  font-size: 14px;
  max-width: 720px
}

.case-study-large.inverse .case-copy p {
  color: #9ba1a1
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px
}

.case-stats>div {
  border-top: 1px solid var(--line);
  padding-top: 13px;
  display: grid;
  gap: 4px
}

.case-study-large.inverse .case-stats>div {
  border-color: rgba(255, 255, 255, .13)
}

.case-stats b {
  font-size: 24px;
  letter-spacing: -.04em
}

.case-stats span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #838884
}

.case-art {
  min-height: 370px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: var(--teal)
}

.case-art>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.case-ring {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.case-ring b {
  font-size: 30px
}

.case-ring span {
  font-size: 7px;
  letter-spacing: .12em
}

/* Contact */
.contact-page-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: start
}

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

.direct-channels>p {
  margin: 18px 0 25px
}

.contact-page-photo {
  height: 260px;
  border-radius: 20px;
  margin: 0 0 28px
}

.channel-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  text-decoration: none
}

.channel-card>span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7c817d
}

.channel-card>b {
  grid-row: 2;
  grid-column: 1/-1;
  font-size: 15px;
  line-height: 1.45
}

.channel-card>i {
  font-style: normal;
  grid-row: 1/3;
  grid-column: 2;
  font-size: 18px
}

.socials.large {
  margin-top: 24px
}

.contact-page-form {
  background: var(--ink);
  color: white;
  border-radius: 22px;
  border: 0;
  padding: 32px
}

.contact-page-form .form-title {
  grid-column: 1/-1;
  margin-bottom: 10px
}

.contact-page-form .form-title h2 {
  font-size: clamp(32px, 3.5vw, 50px)
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  border-color: rgba(255, 255, 255, .18)
}

#contactForm {
  scroll-margin-top: 100px
}

.contact-form,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-width: 0;
  max-width: 100%
}

.channel-card b,
.contact-details b,
.form-note,
.form-note a {
  overflow-wrap: anywhere;
  word-break: break-word
}

/* Responsive balance */
@media (max-width:1180px) {
  .inner-hero {
    grid-template-columns: 1fr .72fr;
    min-height: 680px
  }

  .inner-hero h1 {
    font-size: clamp(44px, 6.2vw, 72px)
  }

  .portfolio-grid-full,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .split-delivery {
    grid-template-columns: 1fr 1fr
  }

  .split-delivery .deliver-copy {
    grid-column: 1/-1;
    position: relative;
    top: auto
  }

  .delivery-photo {
    height: 320px
  }

  .home-hero-photo {
    width: 34vw;
    height: 46vw
  }
}

@media (max-width:900px) {
  .brand-logo {
    width: 102px;
    height: 34px
  }

  .hero-title {
    font-size: clamp(48px, 11vw, 82px);
    line-height: .9
  }

  .hero-heading-wrap {
    max-width: 100%
  }

  .home-hero-photo {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 360px;
    margin: 34px 0 0;
    transform: none;
    border-radius: 22px
  }

  .hero-lower {
    margin-top: 34px
  }

  .section-top h2,
  .standard-title h2,
  .process-head h2,
  .ads-copy h2,
  .testimonial-heading h2,
  .faq-heading h2,
  .pre-contact-inner h2,
  .contact-copy h2 {
    font-size: clamp(36px, 7vw, 58px)
  }

  .inner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 118px;
    gap: 35px
  }

  .inner-hero-media {
    height: 430px;
    transform: none
  }

  .inner-signal {
    right: 30px;
    bottom: 38px
  }

  .inner-heading {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .inner-heading .section-index {
    grid-column: auto
  }

  .inner-section {
    padding-top: 78px;
    padding-bottom: 78px
  }

  .method-grid,
  .inner-metrics {
    grid-template-columns: 1fr
  }

  .method-card {
    min-height: 240px
  }

  .method-card h3 {
    margin-top: 70px
  }

  .split-delivery {
    grid-template-columns: 1fr
  }

  .delivery-photo {
    height: 360px
  }

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

  .inner-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 65px;
    padding-bottom: 65px
  }

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

  .team-card {
    grid-template-columns: 180px 1fr
  }

  .portfolio-grid-full,
  .blog-grid {
    grid-template-columns: 1fr 1fr
  }

  .case-study-large {
    grid-template-columns: 45px 1fr
  }

  .case-art {
    grid-column: 1/-1;
    height: 360px;
    min-height: 0
  }

  .case-copy {
    padding: 10px 0 25px
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .faq .home-section-photo {
    grid-column: 1;
    height: 260px
  }
}

@media (max-width:650px) {
  .brand-logo {
    width: 94px;
    height: 31px
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 66px)
  }

  .home-hero-photo {
    height: 280px
  }

  .section-photo {
    height: 240px;
    margin: 30px 0 38px;
    border-radius: 17px
  }

  .inner-hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 54px
  }

  .inner-hero h1 {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1;
    overflow-wrap: anywhere
  }

  .inner-hero h1 em {
    font-size: .95em
  }

  .inner-hero-content>p {
    font-size: 15px
  }

  .inner-hero-media {
    height: 310px;
    border-radius: 20px
  }

  .inner-signal {
    display: none
  }

  .inner-section {
    padding: 65px 18px
  }

  .inner-heading h2,
  .deliver-copy h2,
  .direct-channels h2,
  .form-title h2 {
    font-size: clamp(31px, 9vw, 43px)
  }

  .inner-heading>p,
  .deliver-copy>p,
  .direct-channels>p {
    font-size: 14px
  }

  .method-card {
    min-height: 220px;
    padding: 22px
  }

  .method-card h3 {
    font-size: 25px;
    margin-top: 58px
  }

  .metric-panel {
    min-height: 145px
  }

  .metric-panel strong {
    font-size: 34px
  }

  .delivery-photo {
    height: 260px
  }

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

  .flow-step {
    min-height: 145px
  }

  .flow-step h3 {
    font-size: 19px
  }

  .inner-cta {
    padding: 58px 18px
  }

  .inner-cta h2 {
    font-size: 38px
  }

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

  .team-avatar {
    height: 300px
  }

  .team-card h3 {
    font-size: 27px
  }

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

  .creed-grid article {
    min-height: 190px
  }

  .creed-grid article h3 {
    margin-top: 55px
  }

  .portfolio-grid-full,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .portfolio-visual {
    height: 260px
  }

  .portfolio-card-copy h3 {
    font-size: 23px
  }

  .blog-art {
    height: 230px
  }

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

  .case-study-large {
    grid-template-columns: 1fr;
    padding: 16px
  }

  .case-number {
    padding: 0
  }

  .case-copy h2 {
    font-size: 31px
  }

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

  .case-art {
    height: 270px
  }

  .case-ring {
    width: 95px;
    height: 95px
  }

  .case-ring b {
    font-size: 25px
  }

  .contact-page-photo {
    height: 230px
  }

  .contact-page-form {
    width: 100%;
    padding: 22px 18px
  }

  .contact-page-grid {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px
  }

  .direct-channels {
    width: 100%
  }

  .ads-card-media {
    height: 190px
  }

  .testimonial-photo {
    height: 210px
  }

  .contact-side-photo {
    height: 200px
  }
}

.portfolio-card.filtered-out {
  display: none
}

/* V3 ART-DIRECTED MEDIA — crop-safe, section-specific compositions */
.art-directed {
  object-position: center !important
}

.portfolio-visual {
  height: 260px;
  background: linear-gradient(135deg, #eef0eb, #dfe7e2)
}

.portfolio-visual img.art-directed {
  object-fit: cover !important;
  transform: none !important
}

.portfolio-card:hover .portfolio-visual img.art-directed {
  transform: scale(1.015) !important
}

.section-photo {
  height: clamp(230px, 27vw, 390px)
}

.section-photo-compact {
  height: clamp(215px, 22vw, 320px)
}

.inner-hero-media {
  height: clamp(360px, 38vw, 520px)
}

.delivery-photo {
  height: 330px
}

.blog-art {
  height: 225px
}

.case-art {
  min-height: 330px
}

.home-hero-photo {
  height: min(43vw, 560px)
}

.section-photo img.art-directed,
.inner-hero-media img.art-directed,
.delivery-photo img.art-directed,
.home-hero-photo img.art-directed,
.ads-card-media img.art-directed,
.testimonial-photo img.art-directed,
.contact-side-photo img.art-directed,
.contact-page-photo img.art-directed,
.showcase-visual img.art-directed,
.blog-art img.art-directed,
.case-art img.art-directed {
  object-fit: cover !important;
  object-position: center !important
}

.section-photo img.art-directed,
.delivery-photo img.art-directed,
.blog-art img.art-directed,
.case-art img.art-directed {
  transition: transform .55s var(--ease), filter .55s var(--ease)
}

.section-photo:hover img.art-directed,
.delivery-photo:hover img.art-directed,
.blog-card:hover img.art-directed,
.case-study-large:hover .case-art img.art-directed {
  transform: scale(1.012);
  filter: saturate(1.03)
}

@media(max-width:900px) {
  .inner-hero-media {
    height: 390px
  }

  .home-hero-photo {
    height: 330px
  }

  .section-photo {
    height: 300px
  }

  .delivery-photo {
    height: 310px
  }

  .portfolio-visual {
    height: 250px
  }
}

@media(max-width:650px) {
  .inner-hero-media {
    height: 280px
  }

  .home-hero-photo {
    height: 250px
  }

  .section-photo {
    height: 220px
  }

  .section-photo-compact {
    height: 205px
  }

  .delivery-photo {
    height: 240px
  }

  .portfolio-visual {
    height: 225px
  }

  .blog-art {
    height: 205px
  }

  .case-art {
    height: 245px;
    min-height: 0
  }
}

/* V4 — animated capability hero and supplied brand artwork */
.page-index .hero {
  min-height: 930px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(16, 152, 139, .22), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(216, 255, 99, .07), transparent 26%), var(--ink)
}

.page-index .hero-heading-wrap {
  width: 100%;
  max-width: var(--shell)
}

.page-index .hero-title {
  width: 55%;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: .88
}

.page-index .hero-title .line-b,
.page-index .hero-title .line-c {
  margin-left: 0
}

.page-index .hero-lower {
  width: 100%;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 55%) 1fr;
  gap: 26px
}

.page-index .hero-lower .hero-actions {
  grid-column: 1
}

.page-index .hero-orbit {
  display: none
}

.hero-capability-reel {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 68px);
  top: 132px;
  width: min(37vw, 540px);
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px)
}

.hero-capability-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), transparent 30%, transparent 70%, rgba(216, 255, 99, .05))
}

.capability-stage {
  position: absolute;
  inset: 0 0 58px;
  overflow: hidden
}

.capability-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(9%) scale(.97);
  animation: capabilityCycle 12s cubic-bezier(.77, 0, .18, 1) infinite
}

.capability-slide:nth-child(2) {
  animation-delay: 4s
}

.capability-slide:nth-child(3) {
  animation-delay: 8s
}

.capability-slide>span {
  position: relative;
  z-index: 2;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58)
}

.capability-slide>strong {
  position: relative;
  z-index: 2;
  margin-top: 9px;
  font-size: clamp(23px, 2.3vw, 34px);
  letter-spacing: -.045em
}

.capability-slide img {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 0;
  width: 94%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, .24))
}

.capability-status {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  background: rgba(11, 13, 15, .7)
}

.capability-status span,
.capability-status b {
  font-size: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9da4a3
}

.capability-status i {
  height: 1px;
  background: rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden
}

.capability-status i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform-origin: left;
  animation: capabilityProgress 4s linear infinite
}

@keyframes capabilityCycle {
  0% {
    opacity: 0;
    transform: translateX(9%) scale(.97)
  }

  5%,
  29% {
    opacity: 1;
    transform: none
  }

  34%,
  100% {
    opacity: 0;
    transform: translateX(-9%) scale(.97)
  }
}

@keyframes capabilityProgress {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.partner-strip>p {
  display: flex;
  align-items: center;
  gap: 16px
}

.partner-strip>p img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 7px
}

.process-step {
  grid-template-columns: 125px 170px 1fr;
  align-items: center
}

.process-step .process-art {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  padding: 10px;
  transition: transform .4s var(--ease), background .4s var(--ease)
}

.process-step:hover .process-art {
  transform: translateY(-5px) rotate(-2deg);
  background: rgba(16, 152, 139, .12)
}

.process-step .process-art-icon {
  object-fit: cover;
  padding: 0
}

.inner-hero-media.illustrated-media {
  background: linear-gradient(145deg, #eff7ff, #dceeff);
  padding: 18px
}

.inner-hero-media.illustrated-media img.art-directed {
  object-fit: contain !important;
  filter: drop-shadow(0 22px 32px rgba(3, 34, 55, .14))
}

.blog-art img.supplied-art {
  object-fit: cover !important
}

.creed-grid article {
  position: relative
}

.creed-grid .creed-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 58px;
  height: 58px;
  object-fit: contain
}

.creed-grid article>b {
  color: var(--lime);
  font-size: 10px
}

.creed-grid article h3 {
  margin-top: 72px
}

@media(max-width:1180px) {
  .page-index .hero {
    min-height: auto
  }

  .page-index .hero-heading-wrap {
    max-width: 100%
  }

  .page-index .hero-title {
    width: 100%;
    font-size: clamp(58px, 9vw, 96px)
  }

  .page-index .hero-lower {
    width: 100%;
    grid-template-columns: 1fr
  }

  .hero-capability-reel {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 480px;
    margin: 38px 0 0
  }

  .process-step {
    grid-template-columns: 100px 145px 1fr
  }

  .process-step .process-art {
    width: 130px;
    height: 130px
  }
}

@media(max-width:900px) {
  .page-index .hero {
    min-height: auto
  }

  .page-index .hero-heading-wrap {
    max-width: 100%
  }

  .hero-capability-reel {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 430px;
    margin: 36px 0 0
  }

  .capability-slide img {
    height: 84%
  }

  .process-step {
    grid-template-columns: 90px 130px 1fr
  }

  .process-step .process-art {
    width: 115px;
    height: 115px
  }
}

@media(max-width:650px) {
  .page-index .hero-title {
    font-size: clamp(42px, 11vw, 56px)
  }

  .hero-capability-reel {
    height: 335px;
    border-radius: 22px
  }

  .capability-stage {
    bottom: 52px
  }

  .capability-slide {
    padding: 20px
  }

  .capability-slide>strong {
    font-size: 23px
  }

  .capability-status {
    height: 52px;
    padding: 0 14px
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .process-step .process-art {
    width: 130px;
    height: 130px;
    margin: 4px 0
  }

  .partner-strip>p img {
    width: 42px;
    height: 42px
  }
}

@media(prefers-reduced-motion:reduce) {
  .capability-slide {
    animation: none;
    opacity: 0;
    transform: none
  }

  .capability-slide:first-child {
    opacity: 1
  }

  .capability-status i::after {
    animation: none;
    transform: none
  }
}

/* V7 — STRYKON Dark Performance System
   Tenfolds-inspired editorial pacing, rebuilt for StryKon's own brand and content. */
:root {
  --ink: #090b0b;
  --ink-soft: #111515;
  --paper: #090b0b;
  --paper-2: #0e1212;
  --white: #f4f1e8;
  --teal: #19d3c5;
  --teal-dark: #0ba99e;
  --lime: #c8ff38;
  --coral: #c8ff38;
  --muted: #929997;
  --line: rgba(244, 241, 232, .13);
  --line-dark: rgba(244, 241, 232, .13);
  --radius: 26px;
  --shell: 1500px;
}

html,
body {
  background: var(--ink);
  color: var(--white);
}

body {
  background-image:
    radial-gradient(circle at 82% 7%, rgba(25, 211, 197, .07), transparent 22%),
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

::selection {
  background: var(--lime);
  color: #090b0b;
}

.page-noise {
  opacity: .045;
}

.scroll-progress span {
  background: linear-gradient(90deg, var(--lime), var(--teal));
  box-shadow: 0 0 16px rgba(200, 255, 56, .55);
}

.site-header,
.site-header.scrolled {
  background: rgba(9, 11, 11, .84);
  border-color: rgba(244, 241, 232, .12);
}

.site-header.scrolled {
  background: rgba(9, 11, 11, .96);
}

.site-header::before {
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

.header-cta,
.mobile-main-cta,
.button-primary,
.button-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: #090b0b !important;
  box-shadow: 0 14px 34px rgba(200, 255, 56, .13);
}

.header-cta:hover,
.button-primary:hover,
.button-lime:hover {
  background: #ddff7e;
  border-color: #ddff7e;
  color: #090b0b !important;
  box-shadow: 0 19px 44px rgba(200, 255, 56, .2);
}

.button-primary {
  border-left: 1px solid var(--lime);
}

.button-outline,
.button-dark {
  background: rgba(255, 255, 255, .025);
  border-color: rgba(244, 241, 232, .22);
  border-left: 1px solid rgba(244, 241, 232, .22);
  color: var(--white);
}

.button-outline:hover,
.button-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.section,
.industries,
.standard,
.work,
.pricing,
.faq,
.blog-section,
.portfolio-section,
.contact-page {
  background: transparent;
  color: var(--white);
}

.section-dark,
.services,
.process,
.inner-dark,
.testimonial-section,
.contact,
.footer {
  background:
    radial-gradient(circle at 94% 0%, rgba(25, 211, 197, .08), transparent 30%),
    #0d1010;
  color: var(--white);
}

.section-top>p,
.section-top .top-action>p,
.section-top.light>p,
.standard-title>p,
.process-head>p,
.inner-heading>p,
.deliver-copy>p,
.contact-copy>p,
.faq-heading>p,
.form-title>p {
  color: var(--muted);
}

.section-index,
.inner-kicker,
.section-dark .section-index,
.section-top.light .section-index {
  color: var(--lime);
}

.section-index::after {
  background: var(--teal);
}

.hero-title em,
.inner-hero h1 em,
.section-top h2 em,
.standard-title h2 em,
.process-head h2 em,
.ads-copy h2 em,
.testimonial-heading h2 em,
.faq-heading h2 em,
.pre-contact-inner h2 em,
.contact-copy h2 em {
  color: var(--lime);
}

.page-index .hero,
.inner-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(25, 211, 197, .17), transparent 29%),
    radial-gradient(circle at 14% 86%, rgba(200, 255, 56, .1), transparent 27%),
    #090b0b;
}

.page-index .hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, .025) 62% 62.15%, transparent 62.15%);
}

.page-index .hero-title .line-a {
  -webkit-text-stroke: 1.5px rgba(244, 241, 232, .9);
}

.hero-arrow,
.floating-contact,
.case-ring,
.inner-kicker::before,
.status-dot {
  background: var(--lime);
  color: #090b0b;
}

.status-dot,
.inner-kicker::before {
  box-shadow: 0 0 0 6px rgba(200, 255, 56, .1), 0 0 22px rgba(200, 255, 56, .4);
}

.hero-capability-reel {
  background: linear-gradient(145deg, rgba(25, 211, 197, .12), rgba(9, 11, 11, .96) 64%);
  border-color: rgba(200, 255, 56, .22);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .55), 0 0 0 1px rgba(25, 211, 197, .07) inset;
}

.capability-slide img {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 76%;
  object-fit: cover;
  object-position: center;
  opacity: .9;
  filter: saturate(.72) contrast(1.08);
}

.capability-slide.slide-web,
.capability-slide.slide-social,
.capability-slide.slide-seo {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 76%;
}

.capability-slide.slide-web {
  background-image: linear-gradient(180deg, transparent 22%, rgba(9, 11, 11, .08)), url("assets/visuals/index-01-hero.webp");
}

.capability-slide.slide-social {
  background-image: linear-gradient(180deg, transparent 22%, rgba(9, 11, 11, .08)), url("assets/visuals/index-06-dashboard.webp");
}

.capability-slide.slide-seo {
  background-image: linear-gradient(180deg, transparent 22%, rgba(9, 11, 11, .08)), url("assets/visuals/index-07-dashboard.webp");
}

.capability-slide img {
  visibility: hidden;
}

.capability-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 11, 11, .08) 20%, transparent 48%, rgba(9, 11, 11, .2));
}

.capability-status i::after {
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

.partner-strip {
  background: var(--lime);
  color: #090b0b;
  border-color: transparent;
}

.partner-strip p,
.partner-strip span,
.partner-strip i {
  color: #090b0b;
}

.industry-card,
.method-card,
.flow-step,
.portfolio-card,
.blog-card,
.mission-card,
.team-card,
.price-card,
.standard-card,
.case-study-large,
.contact-form,
.direct-channels a,
.faq details {
  background: rgba(255, 255, 255, .025);
  color: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.industry-card:hover,
.method-card:hover,
.flow-step:hover,
.portfolio-card:hover,
.blog-card:hover,
.mission-card:hover,
.team-card:hover,
.price-card:hover,
.direct-channels a:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  border-color: rgba(200, 255, 56, .45);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .26);
}

.industry-card::after,
.method-card::before {
  background: var(--lime);
}

.industry-card p,
.method-card p,
.flow-step p,
.portfolio-card p,
.blog-card p,
.mission-card p,
.team-card p,
.price-card p,
.price-card li,
.faq details p {
  color: var(--muted);
}

.industry-icon,
.creed-icon {
  color: var(--lime);
  border-color: rgba(200, 255, 56, .3);
}

.industry-card:hover .industry-icon {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.service-row {
  border-color: rgba(244, 241, 232, .13);
}

.service-row::before {
  background: linear-gradient(100deg, rgba(200, 255, 56, .96), rgba(25, 211, 197, .88));
}

.service-row:hover {
  color: #090b0b;
}

.service-row:hover p,
.service-row:hover .service-number {
  color: rgba(9, 11, 11, .7);
}

.service-row:hover .service-mark {
  background: #090b0b;
  border-color: #090b0b;
  color: var(--lime);
}

.standard-card.feature,
.price-card.popular,
.mission-card.teal {
  background: linear-gradient(145deg, #b9ef30, var(--lime));
  border-color: var(--lime);
  color: #090b0b;
}

.standard-card.feature p,
.price-card.popular p,
.price-card.popular li,
.mission-card.teal p {
  color: rgba(9, 11, 11, .72);
}

.deliverables b,
.popular-label,
.faq details[open] summary b,
.deliver-list li span {
  background: var(--lime);
  color: #090b0b;
}

.process-progress {
  background: linear-gradient(180deg, var(--lime), var(--teal));
  box-shadow: 0 0 18px rgba(200, 255, 56, .22);
}

.process-step .process-art,
.section-photo,
.delivery-photo,
.inner-hero-media,
.blog-art,
.case-art,
.showcase-visual,
.testimonial-photo,
.contact-side-photo {
  background: #111515;
  border-color: var(--line);
}

.section-photo img,
.delivery-photo img,
.inner-hero-media img,
.blog-art img,
.case-art img,
.showcase-visual img,
.testimonial-photo img,
.contact-side-photo img {
  filter: saturate(.8) contrast(1.06);
}

.section-photo:hover img.art-directed,
.delivery-photo:hover img.art-directed,
.inner-hero-media:hover img.art-directed,
.blog-card:hover img.art-directed,
.case-study-large:hover .case-art img.art-directed {
  filter: saturate(1) contrast(1.08);
}

.ads-proof {
  background: var(--lime);
  color: #090b0b;
}

.ads-proof .button-dark {
  background: #090b0b;
  border-color: #090b0b;
  color: var(--white);
}

.ads-proof .button-dark:hover {
  background: transparent;
  color: #090b0b;
}

.inner-glow,
.contact-shape {
  background: var(--teal);
}

.metric-panel:nth-child(2) strong {
  color: var(--teal);
}

.metric-panel:nth-child(3) strong,
.creed-grid article>b,
.price-card li::before,
.ads-card-top b {
  color: var(--lime);
}

.inner-hero-media.illustrated-media {
  background: linear-gradient(145deg, #111817, #0a0d0d);
}

.inner-cta,
.pre-contact {
  background: #0d1110;
}

.inner-cta.has-photo::after,
.pre-contact.has-photo::after {
  background: linear-gradient(90deg, rgba(9, 11, 11, .96), rgba(9, 11, 11, .8) 58%, rgba(9, 11, 11, .38));
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, .03);
  color: var(--white);
  border-color: rgba(244, 241, 232, .18);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 56, .08);
}

.contact-form select option {
  background: var(--ink-soft);
  color: var(--white);
}

.footer {
  border-top: 1px solid var(--line);
}

.footer a:hover,
.text-link:hover {
  color: var(--lime);
}

@media(max-width:900px) {
  body {
    background-size: auto, 42px 42px, 42px 42px;
  }
}

/* Archived V5/V6 light-theme experiment. Kept for provenance, excluded from rendering. */
@media (max-width: 0px) {
/* V5 — Tenfolds-inspired visual direction: deep teal, warm gold, clean ivory */
:root {
  --ink: #07191a;
  --ink-soft: #10282a;
  --paper: #fbfaf6;
  --paper-2: #f1f3ef;
  --teal: #018a7a;
  --teal-dark: #006f63;
  --lime: #ffa200;
  --coral: #ffa200;
  --muted: #66706d;
}

body {
  background: var(--paper)
}

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

.scroll-progress span {
  background: linear-gradient(90deg, var(--teal), #4db3a5, var(--lime))
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(18px, 3.2vw, 54px);
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  background: rgba(11, 13, 15, .72);
  color: #fff
}

.site-header.scrolled {
  background: rgba(11, 13, 15, .94)
}

.desktop-nav {
  justify-self: center
}

.header-cta,
.mobile-main-cta {
  background: #d8ff63;
  color: #0b0d0f !important
}

.mobile-menu {
  background: #0b0d0f
}

.button-primary {
  background: var(--teal);
  border-color: var(--teal)
}

.button-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark)
}

.button-lime,
.hero-arrow,
.floating-contact,
.case-ring {
  background: var(--lime);
  color: var(--ink)
}

.hero-title em,
.inner-hero h1 em {
  color: #42b5a7
}

.page-index .hero {
  background:
    radial-gradient(circle at 80% 22%, rgba(13, 143, 128, .27), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(242, 170, 43, .12), transparent 27%), var(--ink)
}

.hero-capability-reel {
  background: linear-gradient(145deg, rgba(13, 143, 128, .16), rgba(7, 25, 26, .9) 62%);
  border-color: rgba(77, 179, 165, .28)
}

.capability-status i::after {
  background: linear-gradient(90deg, var(--lime), #69c1b6)
}

.partner-strip {
  background: linear-gradient(100deg, var(--teal-dark), var(--teal) 68%, #16a492)
}

.industries {
  background: linear-gradient(180deg, #fff, var(--paper))
}

.industry-card,
.method-card,
.flow-step,
.portfolio-card,
.blog-card {
  background: #fff;
  border-color: rgba(7, 25, 26, .12);
  border-radius: 18px
}

.industry-card::after,
.method-card::before {
  background: var(--lime)
}

.industry-card:hover .industry-icon {
  background: var(--teal);
  border-color: var(--teal)
}

.section-index,
.inner-kicker {
  color: var(--teal)
}

.section-top h2 em,
.standard-title h2 em,
.process-head h2 em,
.ads-copy h2 em,
.testimonial-heading h2 em,
.faq-heading h2 em,
.pre-contact-inner h2 em,
.contact-copy h2 em {
  color: var(--teal)
}

.services,
.process,
.section-dark,
.inner-dark {
  background: linear-gradient(135deg, var(--ink), #0c292a);
  color: #fff
}

.service-row::before {
  background: linear-gradient(100deg, var(--teal-dark), var(--teal))
}

.service-row:hover .service-mark {
  background: var(--lime);
  border-color: var(--lime)
}

.standard-card.feature,
.price-card.popular,
.mission-card.teal {
  background: linear-gradient(145deg, var(--teal), #16a492);
  border-color: transparent;
  color: #fff
}

.process-progress {
  background: linear-gradient(180deg, var(--lime), var(--teal))
}

.process-step .process-art {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(77, 179, 165, .18)
}

.deliverables b,
.popular-label {
  background: var(--lime);
  color: var(--ink)
}

.ads-proof {
  background: linear-gradient(130deg, #ffd98e, #f2aa2b);
  color: var(--ink)
}

.price-card li::before,
.ads-card-top b {
  color: var(--teal)
}

.faq details[open] summary b,
.deliver-list li span,
.flow-step:hover {
  background: var(--teal);
  border-color: var(--teal)
}

.inner-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(13, 143, 128, .28), transparent 30%),
    radial-gradient(circle at 54% 92%, rgba(242, 170, 43, .1), transparent 24%), var(--ink)
}

.inner-glow {
  background: var(--teal)
}

.inner-kicker::before,
.status-dot {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(242, 170, 43, .11)
}

.inner-hero-media.illustrated-media {
  background: linear-gradient(145deg, #f7fbf7, #e7f2ed)
}

.metric-panel strong {
  color: #fff
}

.metric-panel:nth-child(2) strong {
  color: #66c7ba
}

.metric-panel:nth-child(3) strong {
  color: var(--lime)
}

.inner-cta {
  background: var(--teal)
}

.inner-cta.has-photo::after {
  background: linear-gradient(90deg, rgba(7, 25, 26, .92), rgba(7, 69, 65, .76) 64%, rgba(13, 143, 128, .5))
}

.creed-grid article>b {
  color: var(--lime)
}

.contact-shape {
  background: var(--teal)
}

.footer {
  background: linear-gradient(145deg, #061718, #0b2627);
  color: #fff
}

@media(max-width:1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto
  }

  .header-cta {
    justify-self: end
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end
  }
}

@media(max-width:900px) {
  .site-header {
    grid-template-columns: auto 1fr
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end
  }
}

/* V6 — Tenfolds motion and typography language, adapted to StryKon content */
body,
button,
input,
select,
textarea {
  font-family: "Jost", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  font-weight: 400;
  letter-spacing: .005em
}

.desktop-nav,
.services-trigger,
.header-cta,
.mobile-main-cta {
  font-family: "Jost", sans-serif
}

.hero-title,
.inner-hero h1,
.section-top h2,
.standard-title h2,
.process-head h2,
.ads-copy h2,
.testimonial-heading h2,
.faq-heading h2,
.pre-contact-inner h2,
.contact-copy h2,
.inner-heading h2,
.deliver-copy h2,
.direct-channels h2,
.form-title h2 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.hero-title em,
.inner-hero h1 em,
.section-top h2 em,
.standard-title h2 em,
.process-head h2 em,
.ads-copy h2 em,
.testimonial-heading h2 em,
.faq-heading h2 em,
.pre-contact-inner h2 em,
.contact-copy h2 em {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #42b5a7;
}

.page-index .hero-title .line-a {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .94);
  text-shadow: 0 0 28px rgba(255, 255, 255, .04);
}

.section-index,
.inner-kicker {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .2em;
}

.section-index::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--lime);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  border-color: var(--teal);
  border-left: 5px solid var(--lime);
  box-shadow: 0 12px 30px rgba(1, 138, 122, .16);
}

.button-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  border-left-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(1, 138, 122, .24);
}

.button-outline {
  border-left: 5px solid var(--lime)
}

.button-outline:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  border-left-color: var(--lime)
}

.text-link {
  border-bottom-color: var(--lime)
}

.text-link:hover {
  color: var(--teal)
}

.page-index .hero {
  background:
    linear-gradient(90deg, rgba(7, 25, 26, .2), rgba(7, 25, 26, .04)),
    radial-gradient(circle at 80% 22%, rgba(1, 138, 122, .3), transparent 31%),
    radial-gradient(circle at 10% 82%, rgba(255, 162, 0, .13), transparent 27%), var(--ink);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  pointer-events: none;
}

.hero-capability-reel {
  border-color: rgba(66, 181, 167, .34);
  background: linear-gradient(145deg, rgba(1, 138, 122, .2), rgba(7, 25, 26, .93) 64%);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .46), 0 0 0 1px rgba(255, 162, 0, .04) inset;
}

.hero-capability-reel::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -70% -35%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 43%, rgba(255, 255, 255, .11) 50%, transparent 57%);
  transform: translateX(-35%);
  animation: referenceSheen 7s ease-in-out infinite;
}

@keyframes referenceSheen {

  0%,
  55% {
    transform: translateX(-35%)
  }

  80%,
  100% {
    transform: translateX(35%)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px) scale(.985);
  transition: opacity 1s cubic-bezier(.2, .75, .2, 1), transform 1s cubic-bezier(.2, .75, .2, 1);
  will-change: opacity, transform;
}

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

.hero-title .line-a.reveal {
  transition-delay: .04s
}

.hero-title .line-b.reveal {
  transition-delay: .14s
}

.hero-title .line-c.reveal {
  transition-delay: .24s
}

.industry-grid .reveal:nth-child(2),
.method-grid .reveal:nth-child(2),
.portfolio-grid-full .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2) {
  transition-delay: .1s
}

.industry-grid .reveal:nth-child(3),
.method-grid .reveal:nth-child(3),
.portfolio-grid-full .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3) {
  transition-delay: .2s
}

.industry-grid .reveal:nth-child(4),
.portfolio-grid-full .reveal:nth-child(4) {
  transition-delay: .3s
}

.industry-card,
.method-card,
.flow-step,
.portfolio-card,
.blog-card,
.mission-card,
.team-card,
.price-card {
  box-shadow: 0 12px 32px rgba(7, 25, 26, .035);
  transition: transform .4s cubic-bezier(.2, .75, .2, 1), box-shadow .4s cubic-bezier(.2, .75, .2, 1), border-color .4s ease, background .4s ease;
}

.industry-card:hover,
.method-card:hover,
.portfolio-card:hover,
.blog-card:hover,
.mission-card:hover,
.team-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(1, 138, 122, .3);
  box-shadow: 0 24px 58px rgba(7, 25, 26, .1);
}

.industry-icon,
.creed-icon,
.process-art {
  transition: transform .5s cubic-bezier(.2, .75, .2, 1), background .4s ease !important
}

.industry-card:hover .industry-icon,
.creed-grid article:hover .creed-icon {
  transform: translateY(-5px) rotate(-3deg) scale(1.05)
}

.section-photo,
.delivery-photo,
.inner-hero-media,
.blog-art,
.case-art {
  overflow: hidden
}

.section-photo img.art-directed,
.delivery-photo img.art-directed,
.inner-hero-media img.art-directed,
.blog-art img.art-directed,
.case-art img.art-directed {
  transition: transform .8s cubic-bezier(.2, .75, .2, 1), filter .8s ease;
}

.section-photo:hover img.art-directed,
.delivery-photo:hover img.art-directed,
.inner-hero-media:hover img.art-directed,
.blog-card:hover img.art-directed,
.case-study-large:hover .case-art img.art-directed {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

@media(prefers-reduced-motion:reduce) {
  .hero-capability-reel::after {
    animation: none;
    display: none
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none
  }
}
}
