body[data-revamp="studio-subtle-2026"] {
  --home-measure: 1120px;
  --home-gap: clamp(88px, 10vw, 128px);
  --home-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --home-ease-move: cubic-bezier(0.77, 0, 0.175, 1);
}

body[data-revamp="studio-subtle-2026"] .container {
  max-width: var(--home-measure);
}

body[data-revamp="studio-subtle-2026"] .site-header {
  border-bottom-color: transparent;
  background: color-mix(in srgb, var(--bg) 64%, transparent);
  box-shadow: none;
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  transition:
    background-color 240ms var(--home-ease-out),
    border-color 240ms var(--home-ease-out),
    box-shadow 240ms var(--home-ease-out),
    backdrop-filter 240ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .site-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--border) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  box-shadow: 0 10px 34px color-mix(in srgb, var(--text) 7%, transparent);
  backdrop-filter: saturate(145%) blur(16px);
  -webkit-backdrop-filter: saturate(145%) blur(16px);
}

body[data-revamp="studio-subtle-2026"] .nav a {
  position: relative;
  transition:
    color 180ms var(--home-ease-out),
    background-color 180ms var(--home-ease-out),
    border-color 180ms var(--home-ease-out),
    transform 180ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 1px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .nav .nav-cta {
  box-shadow: none;
}

body[data-revamp="studio-subtle-2026"] .hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100dvh - var(--header-h)));
  align-items: center;
  padding: 84px 0 96px;
  overflow: clip;
  isolation: isolate;
}

body[data-revamp="studio-subtle-2026"] .hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -42%;
  right: -20%;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 44%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 42%),
    radial-gradient(circle at 62% 58%, color-mix(in srgb, var(--brand-cta) 12%, transparent), transparent 52%);
  opacity: 0.72;
  pointer-events: none;
}

body[data-revamp="studio-subtle-2026"] .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--brand-primary) 18%, transparent) 0.8px, transparent 0);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 74% 44%, #000 0, transparent 58%);
  opacity: 0.28;
  pointer-events: none;
}

body[data-revamp="studio-subtle-2026"] .nav-scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

body[data-revamp="studio-subtle-2026"] .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

body[data-revamp="studio-subtle-2026"] .hero-copy {
  max-width: 610px;
}

body[data-revamp="studio-subtle-2026"] .hero-title {
  max-width: 17ch;
  margin: 0 0 24px;
  font-size: clamp(46px, 6.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body[data-revamp="studio-subtle-2026"] .hero-sub {
  max-width: 61ch;
  margin: 0 0 36px;
  font-size: 19px;
  line-height: 1.6;
}

body[data-revamp="studio-subtle-2026"] .hero-ctas {
  margin: 0;
}

body[data-revamp="studio-subtle-2026"] .btn {
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
  touch-action: manipulation;
  transition:
    transform 160ms var(--home-ease-out),
    background-color 200ms var(--home-ease-out),
    border-color 200ms var(--home-ease-out),
    box-shadow 200ms var(--home-ease-out),
    color 200ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .btn-arrow {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .btn:active {
  transform: scale(0.98);
}

body[data-revamp="studio-subtle-2026"] .hero .btn-primary {
  background: var(--brand-cta);
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand-cta) 22%, transparent);
}

body[data-revamp="studio-subtle-2026"] .hero .btn-ghost {
  border-color: color-mix(in srgb, var(--brand-primary) 45%, var(--border));
  background: color-mix(in srgb, var(--surface) 66%, transparent);
}

body[data-revamp="studio-subtle-2026"] .hero-showcase {
  position: relative;
  min-height: 540px;
  width: min(100%, 620px);
  justify-self: end;
  perspective: 1100px;
  isolation: isolate;
}

body[data-revamp="studio-subtle-2026"] .hero-showcase::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: 4%;
  bottom: 8%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--brand-primary) 20%, transparent), transparent 62%),
    radial-gradient(circle at 64% 42%, color-mix(in srgb, var(--brand-cta) 15%, transparent), transparent 56%);
  filter: blur(18px);
  opacity: 0.78;
}

body[data-revamp="studio-subtle-2026"] .hero-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 2% 4% 10%;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 13%, transparent);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 22%, color-mix(in srgb, #fff 54%, transparent), transparent 31%),
    color-mix(in srgb, var(--surface) 46%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 58%, transparent);
}

body[data-revamp="studio-subtle-2026"] .hero-showcase figure {
  margin: 0;
}

body[data-revamp="studio-subtle-2026"] .showcase-web,
body[data-revamp="studio-subtle-2026"] .showcase-phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--text) 11%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, var(--bg));
  box-shadow:
    0 28px 70px color-mix(in srgb, var(--brand-primary) 18%, transparent),
    0 10px 24px color-mix(in srgb, var(--text) 10%, transparent);
  transform-style: preserve-3d;
}

body[data-revamp="studio-subtle-2026"] .showcase-web {
  top: 58px;
  right: 0;
  width: min(91%, 560px);
  padding: 8px;
  border-radius: 16px;
  transform: rotateX(3deg) rotateY(-7deg) rotateZ(-1.2deg);
}

body[data-revamp="studio-subtle-2026"] .showcase-web img,
body[data-revamp="studio-subtle-2026"] .showcase-phone img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

body[data-revamp="studio-subtle-2026"] .showcase-web img {
  border-radius: 10px;
}

body[data-revamp="studio-subtle-2026"] .showcase-phone {
  padding: 7px;
  border-radius: 28px;
}

body[data-revamp="studio-subtle-2026"] .showcase-phone img {
  border-radius: 21px;
}

body[data-revamp="studio-subtle-2026"] .showcase-phone-mmoney {
  left: 10px;
  bottom: 62px;
  width: min(31vw, 176px);
  transform: rotateX(2deg) rotateY(9deg) rotateZ(-5deg);
}

body[data-revamp="studio-subtle-2026"] .showcase-phone-minimal {
  right: 46px;
  bottom: 18px;
  width: min(28vw, 156px);
  transform: rotateX(1deg) rotateY(-8deg) rotateZ(5deg);
}

body[data-revamp="studio-subtle-2026"] .service-strip,
body[data-revamp="studio-subtle-2026"] .selected-work,
body[data-revamp="studio-subtle-2026"] .why-trei,
body[data-revamp="studio-subtle-2026"] .home-cta {
  padding: var(--home-gap) 0;
  border: 0;
  border-top: 1px solid var(--border);
  background: none;
}

body[data-revamp="studio-subtle-2026"] .section-head {
  max-width: 62ch;
  margin: 0 0 52px;
  text-align: left;
}

body[data-revamp="studio-subtle-2026"] .section-head h2,
body[data-revamp="studio-subtle-2026"] .home-cta-inner h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

body[data-revamp="studio-subtle-2026"] .eyebrow-inline {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-revamp="studio-subtle-2026"] .service-grid.workbench-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

body[data-revamp="studio-subtle-2026"] .service-grid.workbench-grid > .service-item:nth-child(n) {
  grid-column: auto;
}

body[data-revamp="studio-subtle-2026"] .service-item {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 264px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px;
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 260ms var(--home-ease-out),
    background-color 260ms var(--home-ease-out),
    box-shadow 260ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .service-item:nth-child(odd) {
  padding-left: 0;
  border-left: 0;
}

body[data-revamp="studio-subtle-2026"] .service-item:nth-child(n + 3) {
  border-top: 1px solid var(--border);
}

body[data-revamp="studio-subtle-2026"] .service-item::before,
body[data-revamp="studio-subtle-2026"] .service-item::after {
  display: none;
}

body[data-revamp="studio-subtle-2026"] .service-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0 0 26px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 28%, var(--border));
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand-primary) 9%, var(--surface));
  color: var(--brand-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 240ms var(--home-ease-out),
    background-color 240ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .service-item h3 {
  margin: 0 0 13px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body[data-revamp="studio-subtle-2026"] .service-item > p {
  max-width: 40ch;
  margin: 0 0 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

body[data-revamp="studio-subtle-2026"] .service-link,
body[data-revamp="studio-subtle-2026"] .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  touch-action: manipulation;
}

body[data-revamp="studio-subtle-2026"] .service-link {
  width: auto;
  margin-top: auto;
  padding: 0;
  border: 0;
}

body[data-revamp="studio-subtle-2026"] .service-link-arrow,
body[data-revamp="studio-subtle-2026"] .text-link span {
  color: var(--brand-cta);
  font-size: 18px;
  line-height: 1;
  transition: transform 200ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .selected-work .section-head {
  max-width: 64ch;
}

body[data-revamp="studio-subtle-2026"] .work-list {
  display: grid;
  gap: 104px;
}

body[data-revamp="studio-subtle-2026"] .work-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 72px;
}

body[data-revamp="studio-subtle-2026"] .work-row:nth-child(even) .work-visual {
  order: 2;
}

body[data-revamp="studio-subtle-2026"] .work-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  margin: 0;
  padding: 30px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 22%, var(--border));
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, #fff 66%, transparent), transparent 32%),
    color-mix(in srgb, var(--brand-primary) 11%, var(--surface));
  box-shadow: 0 28px 70px color-mix(in srgb, var(--brand-primary) 12%, transparent);
}

body[data-revamp="studio-subtle-2026"] .work-visual-alertbox {
  border-color: color-mix(in srgb, var(--brand-cta) 24%, var(--border));
  background:
    radial-gradient(circle at 80% 16%, color-mix(in srgb, #fff 60%, transparent), transparent 30%),
    color-mix(in srgb, var(--brand-cta) 10%, var(--surface));
  box-shadow: 0 28px 70px color-mix(in srgb, var(--brand-cta) 11%, transparent);
}

body[data-revamp="studio-subtle-2026"] .work-visual-minimal {
  border-color: color-mix(in srgb, #14b8a6 22%, var(--border));
  background:
    radial-gradient(circle at 24% 14%, color-mix(in srgb, #14b8a6 14%, transparent), transparent 34%),
    color-mix(in srgb, #071918 7%, var(--surface));
  box-shadow: 0 28px 70px color-mix(in srgb, #0f766e 11%, transparent);
}

body[data-revamp="studio-subtle-2026"] .work-visual img {
  display: block;
  width: auto;
  max-width: 82%;
  height: 456px;
  object-fit: contain;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 14px;
  box-shadow:
    0 26px 50px color-mix(in srgb, var(--text) 19%, transparent),
    0 6px 16px color-mix(in srgb, var(--text) 10%, transparent);
  transition: transform 380ms var(--home-ease-out);
}

body[data-revamp="studio-subtle-2026"] .work-copy {
  max-width: 42ch;
}

body[data-revamp="studio-subtle-2026"] .work-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body[data-revamp="studio-subtle-2026"] .work-copy > p:not(.work-meta) {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

body[data-revamp="studio-subtle-2026"] .work-meta {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-revamp="studio-subtle-2026"] .work-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

body[data-revamp="studio-subtle-2026"] .why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

body[data-revamp="studio-subtle-2026"] .why-item {
  padding: 32px 24px 0;
  border-left: 1px solid var(--border);
}

body[data-revamp="studio-subtle-2026"] .why-item:first-child {
  padding-left: 0;
  border-left: 0;
}

body[data-revamp="studio-subtle-2026"] .why-item h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
}

body[data-revamp="studio-subtle-2026"] .why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 72px 56px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 78%, var(--text));
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--brand-cta) 28%, transparent), transparent 31%),
    radial-gradient(circle at 88% 92%, color-mix(in srgb, #fff 13%, transparent), transparent 34%),
    var(--brand-primary);
  box-shadow: 0 30px 78px color-mix(in srgb, var(--brand-primary) 20%, transparent);
  color: #fff;
  text-align: center;
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner h2 {
  max-width: 24ch;
  margin-inline: auto;
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner p {
  max-width: 52ch;
  margin: 18px auto 30px;
  color: color-mix(in srgb, #fff 84%, transparent);
  font-size: 17px;
  line-height: 1.6;
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner .hero-ctas {
  justify-content: center;
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner .btn-primary {
  background: color-mix(in srgb, var(--brand-cta) 80%, var(--text));
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--text) 18%, transparent);
}

body[data-revamp="studio-subtle-2026"] .home-cta-inner .btn-ghost {
  border-color: color-mix(in srgb, #fff 60%, transparent);
  background: color-mix(in srgb, #fff 5%, transparent);
  color: #fff;
}

body[data-revamp="studio-subtle-2026"] .site-footer {
  padding: 40px 0 56px;
  background: none;
}

body[data-revamp="studio-subtle-2026"] .footer-nav {
  margin-left: -12px;
}

body[data-revamp="studio-subtle-2026"] .reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .section-head.reveal,
html.motion-ready body[data-revamp="studio-subtle-2026"] .service-item.reveal,
html.motion-ready body[data-revamp="studio-subtle-2026"] .why-item.reveal,
html.motion-ready body[data-revamp="studio-subtle-2026"] .work-footer.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms var(--home-ease-out),
    transform 520ms var(--home-ease-out);
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .service-item.reveal:nth-child(2),
html.motion-ready body[data-revamp="studio-subtle-2026"] .why-item.reveal:nth-child(2) {
  transition-delay: 45ms;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .service-item.reveal:nth-child(3),
html.motion-ready body[data-revamp="studio-subtle-2026"] .why-item.reveal:nth-child(3) {
  transition-delay: 90ms;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .service-item.reveal:nth-child(4),
html.motion-ready body[data-revamp="studio-subtle-2026"] .why-item.reveal:nth-child(4) {
  transition-delay: 135ms;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row.reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-visual {
  opacity: 0;
  clip-path: inset(5% 0 5% 0 round 16px);
  transform: translateY(24px);
  transition:
    opacity 620ms var(--home-ease-out),
    clip-path 720ms var(--home-ease-out),
    transform 720ms var(--home-ease-out);
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-visual img {
  transform: translateY(18px) scale(0.985);
  transition: transform 760ms var(--home-ease-out);
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-copy {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms var(--home-ease-out) 110ms,
    transform 540ms var(--home-ease-out) 110ms;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row.is-visible .work-visual {
  opacity: 1;
  clip-path: inset(0 round 16px);
  transform: none;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row.is-visible .work-visual img,
html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row.is-visible .work-copy {
  opacity: 1;
  transform: none;
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .home-cta-inner.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.988);
  transition:
    opacity 620ms var(--home-ease-out),
    transform 620ms var(--home-ease-out);
}

html.motion-ready body[data-revamp="studio-subtle-2026"] .home-cta-inner.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroAmbientIn {
  from { opacity: 0; transform: translate3d(28px, -16px, 0) scale(0.94); }
  to { opacity: 0.72; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroElementIn {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes showcaseIn {
  from { opacity: 0; transform: translate3d(28px, 24px, 0) scale(0.965); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  body[data-revamp="studio-subtle-2026"] .hero::before {
    animation: heroAmbientIn 900ms var(--home-ease-out) both;
  }

  body[data-revamp="studio-subtle-2026"] .hero-title {
    animation: heroElementIn 680ms var(--home-ease-out) 60ms both;
  }

  body[data-revamp="studio-subtle-2026"] .hero-sub {
    animation: heroElementIn 620ms var(--home-ease-out) 160ms both;
  }

  body[data-revamp="studio-subtle-2026"] .hero-ctas {
    animation: heroElementIn 560ms var(--home-ease-out) 260ms both;
  }

  body[data-revamp="studio-subtle-2026"] .hero-showcase {
    animation: showcaseIn 760ms var(--home-ease-out) 220ms both;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-web img {
    animation: heroFloat 9s var(--home-ease-out) 1.2s infinite;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-mmoney img {
    animation: heroFloat 7.8s var(--home-ease-out) 1.4s infinite;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-minimal img {
    animation: heroFloat 8.6s var(--home-ease-out) 1.1s infinite reverse;
  }
}

@media (hover: hover) and (pointer: fine) {
  body[data-revamp="studio-subtle-2026"] .nav a:not(.nav-cta):hover {
    background: transparent;
  }

  body[data-revamp="studio-subtle-2026"] .nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  body[data-revamp="studio-subtle-2026"] .nav .nav-cta:hover,
  body[data-revamp="studio-subtle-2026"] .btn:hover {
    transform: translateY(-2px);
  }

  body[data-revamp="studio-subtle-2026"] .btn:hover .btn-arrow,
  body[data-revamp="studio-subtle-2026"] .service-link:hover .service-link-arrow,
  body[data-revamp="studio-subtle-2026"] .text-link:hover span {
    transform: translateX(3px);
  }

  body[data-revamp="studio-subtle-2026"] .hero .btn-primary:hover {
    background: color-mix(in srgb, var(--brand-cta) 88%, var(--text));
    box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-cta) 27%, transparent);
  }

  body[data-revamp="studio-subtle-2026"] .hero .btn-ghost:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 68%, var(--border));
    background: color-mix(in srgb, var(--surface) 86%, transparent);
  }

  body[data-revamp="studio-subtle-2026"] .service-item:hover {
    z-index: 1;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-primary) 5%, var(--surface));
    box-shadow: 0 20px 50px color-mix(in srgb, var(--brand-primary) 11%, transparent);
    transform: translateY(-4px);
  }

  body[data-revamp="studio-subtle-2026"] .service-item:hover .service-symbol {
    background: color-mix(in srgb, var(--brand-primary) 14%, var(--surface));
    transform: translateY(-2px) rotate(3deg);
  }

  body[data-revamp="studio-subtle-2026"] .work-visual:hover img {
    transform: translateY(-5px) scale(1.008);
  }

  body[data-revamp="studio-subtle-2026"] .home-cta-inner .btn-primary:hover {
    background: color-mix(in srgb, var(--brand-cta) 70%, var(--text));
    box-shadow: 0 16px 34px color-mix(in srgb, var(--text) 22%, transparent);
  }

  body[data-revamp="studio-subtle-2026"] .home-cta-inner .btn-ghost:hover {
    border-color: #fff;
    background: color-mix(in srgb, #fff 12%, transparent);
  }
}

@media (max-width: 980px) {
  body[data-revamp="studio-subtle-2026"] .hero {
    min-height: auto;
    padding-bottom: 84px;
  }

  body[data-revamp="studio-subtle-2026"] .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  body[data-revamp="studio-subtle-2026"] .hero-copy {
    max-width: 720px;
  }

  body[data-revamp="studio-subtle-2026"] .hero-showcase {
    min-height: 430px;
    width: min(100%, 640px);
    justify-self: start;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-web {
    top: 16px;
    right: 0;
    width: 86%;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-mmoney {
    bottom: 42px;
    width: 158px;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-minimal {
    right: 34px;
    bottom: 8px;
    width: 138px;
  }
}

@media (max-width: 860px) {
  body[data-revamp="studio-subtle-2026"] {
    --home-gap: 88px;
  }

  body[data-revamp="studio-subtle-2026"] .work-row {
    gap: 44px;
  }

  body[data-revamp="studio-subtle-2026"] .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  body[data-revamp="studio-subtle-2026"] .why-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  body[data-revamp="studio-subtle-2026"] .work-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body[data-revamp="studio-subtle-2026"] .work-row:nth-child(even) .work-visual {
    order: 0;
  }

  body[data-revamp="studio-subtle-2026"] .work-visual {
    min-height: 420px;
  }

  body[data-revamp="studio-subtle-2026"] .work-visual img {
    height: 364px;
  }

  body[data-revamp="studio-subtle-2026"] .work-copy {
    max-width: 56ch;
  }
}

@media (max-width: 640px) {
  body[data-revamp="studio-subtle-2026"] {
    --home-gap: 72px;
  }

  body[data-revamp="studio-subtle-2026"] .hero {
    min-height: auto;
    padding: 56px 0 68px;
  }

  body[data-revamp="studio-subtle-2026"] .hero::before {
    top: -18%;
    right: -48%;
    width: 118vw;
    opacity: 0.48;
  }

  body[data-revamp="studio-subtle-2026"] .hero-copy,
  body[data-revamp="studio-subtle-2026"] .hero-sub,
  body[data-revamp="studio-subtle-2026"] .hero-ctas {
    width: 100%;
    max-width: min(calc(100vw - 48px), 327px);
    min-width: 0;
  }

  body[data-revamp="studio-subtle-2026"] .hero-title {
    max-width: 10.8ch;
    font-size: clamp(34px, 9.4vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  body[data-revamp="studio-subtle-2026"] .hero-sub {
    max-width: min(calc(100vw - 48px), 27ch);
    font-size: 17px;
  }

  body[data-revamp="studio-subtle-2026"] .hero-ctas {
    align-items: stretch;
  }

  body[data-revamp="studio-subtle-2026"] .hero-ctas .btn {
    width: 100%;
  }

  body[data-revamp="studio-subtle-2026"] .hero-grid {
    gap: 38px;
  }

  body[data-revamp="studio-subtle-2026"] .hero-showcase {
    min-height: 330px;
    width: 100%;
  }

  body[data-revamp="studio-subtle-2026"] .hero-showcase::before {
    right: 8%;
    bottom: 0;
    width: 84%;
    opacity: 0.58;
  }

  body[data-revamp="studio-subtle-2026"] .hero-showcase::after {
    inset: 12% 0 4% 6%;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-web {
    top: 10px;
    width: 86%;
    padding: 6px;
    border-radius: 12px;
    transform: rotateX(0deg) rotateY(-4deg) rotateZ(-1deg);
  }

  body[data-revamp="studio-subtle-2026"] .showcase-web img {
    border-radius: 7px;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone {
    padding: 5px;
    border-radius: 20px;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone img {
    border-radius: 15px;
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-mmoney {
    left: 0;
    bottom: 36px;
    width: clamp(108px, 32vw, 136px);
    transform: rotateX(0deg) rotateY(6deg) rotateZ(-4deg);
  }

  body[data-revamp="studio-subtle-2026"] .showcase-phone-minimal {
    right: 52px;
    bottom: 4px;
    width: clamp(76px, 22vw, 94px);
    transform: rotateX(0deg) rotateY(-5deg) rotateZ(4deg);
  }

  body[data-revamp="studio-subtle-2026"] .service-grid.workbench-grid {
    grid-template-columns: 1fr;
  }

  body[data-revamp="studio-subtle-2026"] .service-item,
  body[data-revamp="studio-subtle-2026"] .service-item:nth-child(odd) {
    min-height: 0;
    padding: 30px 0;
    border: 0;
    border-top: 1px solid var(--border);
  }

  body[data-revamp="studio-subtle-2026"] .service-item:first-child {
    border-top: 0;
  }

  body[data-revamp="studio-subtle-2026"] .service-symbol {
    margin-bottom: 20px;
  }

  body[data-revamp="studio-subtle-2026"] .work-list {
    gap: 72px;
  }

  body[data-revamp="studio-subtle-2026"] .work-visual {
    min-height: 368px;
    padding: 22px;
  }

  body[data-revamp="studio-subtle-2026"] .work-visual img {
    max-width: 90%;
    height: 322px;
  }

  body[data-revamp="studio-subtle-2026"] .work-footer {
    justify-content: flex-start;
    margin-top: 48px;
  }

  body[data-revamp="studio-subtle-2026"] .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body[data-revamp="studio-subtle-2026"] .why-item,
  body[data-revamp="studio-subtle-2026"] .why-item:first-child,
  body[data-revamp="studio-subtle-2026"] .why-item:nth-child(3) {
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
  }

  body[data-revamp="studio-subtle-2026"] .home-cta-inner {
    padding: 48px 22px;
  }

  body[data-revamp="studio-subtle-2026"] .home-cta-inner .hero-ctas {
    align-items: stretch;
  }

  html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-visual {
    clip-path: inset(2% 0 2% 0 round 16px);
    transform: translateY(12px);
  }

  html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-copy {
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-revamp="studio-subtle-2026"] .hero-title,
  body[data-revamp="studio-subtle-2026"] .hero-sub,
  body[data-revamp="studio-subtle-2026"] .hero-ctas,
  body[data-revamp="studio-subtle-2026"] .hero-showcase,
  body[data-revamp="studio-subtle-2026"] .showcase-web img,
  body[data-revamp="studio-subtle-2026"] .showcase-phone img,
  body[data-revamp="studio-subtle-2026"] .hero::before {
    animation: none !important;
    transform: none !important;
  }

  html.motion-ready body[data-revamp="studio-subtle-2026"] .reveal,
  html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-visual,
  html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-visual img,
  html.motion-ready body[data-revamp="studio-subtle-2026"] .work-row .work-copy {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  body[data-revamp="studio-subtle-2026"] .site-header,
  body[data-revamp="studio-subtle-2026"] .site-header.is-scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
