:root {
  --bg: #eef3f8;
  --bg-soft: #dce6f0;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #08111f;
  --ink-soft: #475569;
  --ink-muted: #728095;
  --line: rgba(8, 17, 31, 0.1);
  --line-strong: rgba(8, 17, 31, 0.16);
  --accent: #e6007e;
  --accent-soft: rgba(230, 0, 126, 0.1);
  --accent-warm: #be8a2f;
  --shadow-sm: 0 18px 40px rgba(8, 17, 31, 0.06);
  --shadow-md: 0 34px 90px rgba(8, 17, 31, 0.12);
  --shadow-xl: 0 44px 110px rgba(8, 17, 31, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --max-width: 1320px;
  --content-width: 760px;
  --header-height: 84px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(230, 0, 126, 0.11), transparent 24%),
    radial-gradient(circle at 88% 6%, rgba(8, 17, 31, 0.1), transparent 18%),
    radial-gradient(circle at 50% 110%, rgba(230, 0, 126, 0.06), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fa 52%, #e3ebf5 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 17, 31, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 31, 0.016) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 82%);
  opacity: 0.12;
}

body::after {
  content: "";
  position: fixed;
  inset: -20vh -12vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 0, 126, 0.12), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(190, 138, 47, 0.08), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(8, 17, 31, 0.06), transparent 24%);
  filter: blur(26px);
  animation: background-float 18s ease-in-out infinite alternate;
}

::selection {
  background: rgba(230, 0, 126, 0.16);
  color: var(--ink);
}

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

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

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

button {
  cursor: pointer;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  padding: 16px clamp(20px, 3vw, 40px);
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(238, 243, 248, 0.14);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  box-shadow: 0 8px 26px rgba(17, 21, 27, 0.04);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  transition: padding 360ms var(--ease-smooth), transform 360ms var(--ease-smooth), box-shadow 360ms var(--ease-smooth), background 360ms var(--ease-smooth), border-color 360ms var(--ease-smooth), top 360ms var(--ease-smooth);
}

.site-header.is-condensed {
  top: 0;
  transform: translateX(-50%);
  padding-top: 14px;
  padding-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14)),
    rgba(238, 243, 248, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 42px rgba(17, 21, 27, 0.08);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-wordmark {
  width: min(220px, 38vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 360ms var(--ease-smooth), transform 360ms var(--ease-smooth);
}

.site-nav a::before {
  content: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 360ms var(--ease-smooth);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  transform: none;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  padding: 11px 16px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: #0a0a0a;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.22), 0 10px 24px rgba(8, 17, 31, 0.12);
  transition:
    transform 240ms var(--ease-smooth),
    background-color 240ms var(--ease-smooth),
    box-shadow 240ms var(--ease-smooth);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1da851;
  box-shadow: 0 22px 38px rgba(29, 168, 81, 0.26), 0 12px 28px rgba(8, 17, 31, 0.16);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(230, 0, 126, 0.28);
  outline-offset: 4px;
}

.main {
  padding-top: 8px;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  max-width: var(--content-width);
  margin-bottom: 52px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.section-heading-services-why {
  position: relative;
  width: min(100%, var(--max-width));
  max-width: none;
  margin: 0 auto 52px;
  padding: clamp(30px, 4vw, 46px);
  min-height: 360px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(255, 253, 254, 0.98) 0%, rgba(255, 252, 253, 0.96) 30%, rgba(255, 250, 252, 0.78) 48%, rgba(255, 247, 250, 0.32) 64%, rgba(255, 245, 249, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/headers/services-why-abstract.jpg");
  background-position: left center, center center, right center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  border-top: 1px solid rgba(8, 17, 31, 0.08);
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  overflow: hidden;
}

.section-heading-services-why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(17, 21, 27, 0.025) 0px,
      rgba(17, 21, 27, 0.025) 1px,
      transparent 1px,
      transparent 140px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 54%, rgba(255, 255, 255, 0) 100%);
}

.section-heading-services-why::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 52%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.08) 100%);
}

.section-heading-services-why > * {
  position: relative;
  z-index: 1;
}

.services-why-title {
  max-width: none;
}

.services-why-title > span {
  display: block;
  white-space: nowrap;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading-why {
  position: relative;
  width: min(100%, var(--max-width));
  max-width: none;
  margin: 0 auto 52px;
  padding: clamp(26px, 4vw, 42px);
  min-height: 320px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0.18) 76%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.06) 100%),
    url("assets/why-kolumno-structure-temp.jpg");
  background-position: left center, center center, right center;
  background-repeat: no-repeat;
  background-size: auto, auto, 66% auto;
  border-top: 1px solid rgba(8, 17, 31, 0.08);
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  overflow: hidden;
}

.section-heading-why::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 54%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.16), transparent 28%);
}

.section-heading-why > * {
  position: relative;
  z-index: 1;
}

.section-heading h2,
.hero-copy h1,
.page-hero-copy h1,
.deliverable-card h3,
.service-panel h3,
.story-card h3,
.person-card h3,
.step-card h3,
.case-panel h3,
.contact-copy h2,
.cta-banner h2,
.content-card h3,
.detail-card h3,
.mini-case h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.01;
  letter-spacing: -0.056em;
  text-wrap: balance;
}

.section-heading h2,
.contact-copy h2,
.cta-banner h2,
.page-hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  max-width: 13ch;
}

.hero-copy h1 {
  letter-spacing: -0.064em;
  line-height: 0.96;
}

.section-heading p:not(.eyebrow),
.hero-support,
.page-hero-copy p,
.proof-header p,
.case-study-copy > p,
.contact-copy p {
  max-width: 62ch;
  line-height: 1.66;
}

.eyebrow,
.card-kicker,
.panel-kicker,
.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow::before,
.card-kicker::before,
.panel-kicker::before,
.footer-title::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.9), rgba(17, 21, 27, 0.16));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 420ms var(--ease-smooth), box-shadow 420ms var(--ease-smooth), background 420ms var(--ease-smooth), border-color 420ms var(--ease-smooth), color 420ms var(--ease-smooth);
  transform: translate3d(var(--btn-offset-x, 0px), var(--btn-offset-y, 0px), 0);
}

.button::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 46%;
  height: 300%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-220%);
  transition: transform 720ms var(--ease-smooth);
  pointer-events: none;
}

.button:hover {
  transform: translate3d(var(--btn-offset-x, 0px), calc(var(--btn-offset-y, 0px) - 3px), 0);
}

.button:hover::after {
  transform: rotate(18deg) translateX(380%);
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 0, 126, 0.12);
}

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 32px rgba(17, 21, 27, 0.16);
}

.button-primary:hover {
  background: linear-gradient(135deg, #111827 0%, #e6007e 140%);
  box-shadow: 0 24px 52px rgba(230, 0, 126, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border-color: rgba(17, 21, 27, 0.12);
}

.button-secondary:hover {
  border-color: rgba(230, 0, 126, 0.22);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.94);
}

.hero,
.page-hero {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero {
  padding: 76px 0 88px;
}

.hero-home::before,
.page-hero::before,
.proof-section::before,
#caso::before {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-home::before {
  top: -10%;
  height: 118%;
  background:
    radial-gradient(circle at 12% 10%, rgba(230, 0, 126, 0.12), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(8, 17, 31, 0.09), transparent 18%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.74), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(243, 248, 254, 0.94) 64%, rgba(238, 243, 248, 0.42) 82%, rgba(238, 243, 248, 0) 100%);
}

.page-hero::before {
  top: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(230, 0, 126, 0.05), transparent 18%, transparent 78%, rgba(8, 17, 31, 0.04) 100%);
}

.proof-section::before,
#caso::before {
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.03), transparent 18%, transparent 82%, rgba(190, 138, 47, 0.04));
}

.page-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: auto;
  padding: 94px 0 72px;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  background:
    radial-gradient(circle at 12% 16%, rgba(230, 0, 126, 0.12), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(8, 17, 31, 0.08), transparent 22%),
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(244, 248, 253, 0.88) 56%, rgba(241, 246, 252, 0.42) 82%, rgba(241, 246, 252, 0) 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  width: 100vw;
  height: 34%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(241, 246, 252, 0), rgba(241, 246, 252, 0.58) 56%, rgba(241, 246, 252, 0.9) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-spotlight,
.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(229, 0, 126, 0.12), transparent 72%);
}

.hero-spotlight {
  top: 6%;
  right: 4%;
  width: 400px;
  height: 400px;
  filter: blur(8px);
  transform: translate3d(var(--spot-x, 0px), var(--spot-y, 0px), 0);
  transition: transform 320ms var(--ease-smooth);
  animation: drift 12s ease-in-out infinite;
}

.page-hero-glow {
  top: 0;
  right: 8%;
  width: 320px;
  height: 320px;
  z-index: 0;
}

.hero-shell,
.page-hero-shell,
.split-grid,
.case-study,
.contact-grid,
.story-layout,
.detail-layout {
  display: grid;
  gap: 24px;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: end;
  width: 100%;
}

.page-hero-shell {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.page-hero-copy {
  max-width: 860px;
}

.page-hero-copy p {
  color: var(--ink-soft);
}

.page-hero-copy-centered {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.legal-subtitle {
  font-size: 0.98rem;
  color: var(--ink-muted);
}

.legal-shell {
  gap: 0;
}

.legal-copy {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.legal-copy section {
  display: grid;
  gap: 14px;
}

.legal-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.legal-copy p,
.legal-copy li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-copy ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.legal-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.page-hero-404 {
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
}

.page-404-code {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(4.8rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, #08111f 0%, #e6007e 160%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 22px 0;
  border-top: 1px solid rgba(8, 17, 31, 0.1);
  border-bottom: 1px solid rgba(8, 17, 31, 0.1);
}

.page-hero-tag,
.stat-chip,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--ink-soft);
}

.page-hero-tag {
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid rgba(8, 17, 31, 0.1);
  transition: color 320ms var(--ease-smooth), transform 320ms var(--ease-smooth);
}

.page-hero-tag:last-child {
  border-right: 0;
}

.page-hero-tag:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.page-hero-meta-editorial {
  gap: 0;
  align-items: stretch;
}

.page-hero-editorial {
  --page-hero-art: none;
  --page-hero-position: center center;
  --page-hero-overlay:
    linear-gradient(90deg, rgba(255, 252, 253, 0.97) 0%, rgba(255, 250, 252, 0.94) 30%, rgba(255, 247, 250, 0.7) 46%, rgba(255, 245, 249, 0.24) 62%, rgba(8, 17, 31, 0.06) 100%);
  --page-hero-band:
    linear-gradient(180deg, rgba(255, 252, 253, 0.9), rgba(249, 244, 247, 0.82)),
    rgba(255, 252, 253, 0.82);
  --page-hero-band-stripe:
    linear-gradient(90deg, rgba(230, 0, 126, 0.08), transparent 12%, transparent 88%, rgba(8, 17, 31, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 32%);
  --page-hero-tag-color: rgba(8, 17, 31, 0.8);
  --page-hero-divider: rgba(8, 17, 31, 0.08);
  --page-hero-glow-top: 5%;
  --page-hero-glow-right: 9%;
  --page-hero-glow-size: 360px;
  --page-hero-glow-blur: 3px;
  --page-hero-glow: radial-gradient(circle, rgba(230, 0, 126, 0.09), transparent 72%);
}

.page-hero-editorial::before {
  background: var(--page-hero-overlay), var(--page-hero-art);
  background-position: var(--page-hero-position);
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-editorial::after {
  height: 42%;
  background:
    linear-gradient(180deg, rgba(241, 246, 252, 0) 0%, rgba(242, 246, 251, 0.22) 26%, rgba(243, 247, 252, 0.7) 64%, rgba(244, 248, 252, 0.95) 100%);
}

.page-hero-editorial .page-hero-glow {
  top: var(--page-hero-glow-top);
  right: var(--page-hero-glow-right);
  width: var(--page-hero-glow-size);
  height: var(--page-hero-glow-size);
  background: var(--page-hero-glow);
  filter: blur(var(--page-hero-glow-blur));
}

.page-hero-nosotros {
  --page-hero-art: url("assets/headers/nosotros-hero-abstract.jpg");
  --page-hero-overlay:
    linear-gradient(90deg, rgba(255, 252, 253, 0.97) 0%, rgba(255, 252, 253, 0.94) 28%, rgba(255, 248, 251, 0.72) 44%, rgba(255, 245, 249, 0.22) 60%, rgba(8, 17, 31, 0.05) 100%);
}

.page-hero-servicios {
  --page-hero-art: url("assets/headers/servicios-hero-abstract-temp.jpg");
  --page-hero-position: center center;
  --page-hero-overlay:
    linear-gradient(90deg, rgba(253, 251, 252, 0.985) 0%, rgba(252, 249, 251, 0.955) 28%, rgba(250, 245, 248, 0.82) 45%, rgba(248, 241, 246, 0.38) 63%, rgba(8, 17, 31, 0.08) 100%);
  --page-hero-band:
    linear-gradient(180deg, rgba(255, 252, 253, 0.9), rgba(248, 242, 246, 0.84)),
    rgba(255, 252, 253, 0.84);
  --page-hero-band-stripe:
    linear-gradient(90deg, rgba(230, 0, 126, 0.1), transparent 14%, transparent 86%, rgba(8, 17, 31, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
  --page-hero-glow-top: 2%;
  --page-hero-glow-right: 7%;
  --page-hero-glow-size: 400px;
  --page-hero-glow-blur: 6px;
  --page-hero-glow: radial-gradient(circle, rgba(230, 0, 126, 0.12), rgba(230, 0, 126, 0.04) 38%, transparent 74%);
}

.page-hero-portafolio {
  --page-hero-art: url("assets/headers/portafolio-hero-abstract-temp.jpg");
  --page-hero-position: center center;
  --page-hero-overlay:
    linear-gradient(90deg, rgba(253, 251, 252, 0.985) 0%, rgba(252, 250, 251, 0.955) 31%, rgba(249, 245, 247, 0.8) 49%, rgba(247, 242, 245, 0.38) 66%, rgba(8, 17, 31, 0.08) 100%);
  --page-hero-band:
    linear-gradient(180deg, rgba(255, 252, 253, 0.9), rgba(247, 243, 246, 0.86)),
    rgba(255, 252, 253, 0.86);
  --page-hero-band-stripe:
    linear-gradient(90deg, rgba(190, 138, 47, 0.09), transparent 10%, transparent 88%, rgba(8, 17, 31, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 34%);
  --page-hero-glow-top: 8%;
  --page-hero-glow-right: 8%;
  --page-hero-glow-size: 340px;
  --page-hero-glow-blur: 4px;
  --page-hero-glow: radial-gradient(circle, rgba(190, 138, 47, 0.12), rgba(230, 0, 126, 0.05) 40%, transparent 74%);
}

.page-hero-contacto {
  --page-hero-art: url("assets/headers/contacto-hero-abstract-temp.jpg");
  --page-hero-position: center center;
  --page-hero-overlay:
    linear-gradient(90deg, rgba(253, 251, 252, 0.988) 0%, rgba(252, 250, 251, 0.96) 30%, rgba(249, 245, 248, 0.82) 46%, rgba(247, 241, 246, 0.4) 62%, rgba(8, 17, 31, 0.08) 100%);
  --page-hero-band:
    linear-gradient(180deg, rgba(255, 252, 253, 0.9), rgba(246, 242, 246, 0.86)),
    rgba(255, 252, 253, 0.86);
  --page-hero-band-stripe:
    linear-gradient(90deg, rgba(230, 0, 126, 0.08), transparent 12%, transparent 80%, rgba(33, 46, 67, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%);
  --page-hero-glow-top: 6%;
  --page-hero-glow-right: 10%;
  --page-hero-glow-size: 320px;
  --page-hero-glow-blur: 5px;
  --page-hero-glow: radial-gradient(circle, rgba(230, 0, 126, 0.08), rgba(80, 100, 128, 0.06) 42%, transparent 74%);
}

.page-hero-editorial .page-hero-meta-editorial {
  position: relative;
  padding: 18px 22px;
  border-top: 0;
  border-bottom: 0;
  background: var(--page-hero-band);
  box-shadow:
    0 14px 28px rgba(126, 18, 73, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page-hero-editorial .page-hero-meta-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--page-hero-band-stripe);
}

.page-hero-editorial .page-hero-tag {
  position: relative;
  z-index: 1;
  color: var(--page-hero-tag-color);
  border-right-color: var(--page-hero-divider);
}

.page-hero-editorial .page-hero-tag:hover {
  color: var(--ink);
}

.page-hero-tag-structured {
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  min-height: 84px;
  line-height: 1.4;
  text-wrap: balance;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(230, 0, 126, 0.08);
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7.4vw, 5.9rem);
  max-width: 9ch;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
}

.hero-title-primary {
  max-width: none;
  margin-bottom: 0;
}

.hero-question {
  max-width: none;
  margin: 0;
  font-family: var(--font-heading);
  display: inline-grid;
  gap: 0.04em;
  width: max-content;
  max-width: 100%;
  font-size: clamp(2.8rem, 3.9vw, 4.5rem) !important;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.052em;
  color: var(--ink);
}

.hero-question-line {
  display: block;
  width: max-content;
  max-width: none;
  white-space: nowrap !important;
}

.hero-line-nowrap {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.7rem, 6.4vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-line-thought {
  margin: 24px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.hero-dot {
  color: var(--accent);
}

.title-accent {
  color: var(--accent);
}

.hero-text {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: var(--ink-soft);
}

.hero-support {
  max-width: 680px;
  margin-top: 6px;
  color: var(--ink-soft);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.hero-actions {
  position: relative;
  z-index: 6;
}

.hero-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: auto;
  display: block;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  padding-top: 0 !important;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-home > * {
  position: relative;
  z-index: 1;
}

.hero-home::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  height: 360px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(238, 243, 248, 0.26) 34%, rgba(238, 243, 248, 0.76) 70%, rgba(238, 243, 248, 1) 100%);
  z-index: 0;
}

.home-hero-shell {
  grid-template-columns: minmax(0, 840px) minmax(360px, 430px);
  justify-content: space-between;
  gap: clamp(20px, 2.2vw, 32px);
  align-items: start;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  margin-top: -146px;
}

.home-hero-shell .hero-copy {
  max-width: 840px;
  padding-top: 0;
  margin-top: -4px;
  position: relative;
  z-index: 6;
}

.hero-art {
  position: relative;
  min-height: auto;
  padding-top: 0;
  margin-top: 12px;
  align-self: start;
  z-index: 2;
}

.hero-art-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  grid-template-areas:
    "info web"
    "stack tablet";
  gap: 16px;
  width: min(100%, 450px);
  min-height: auto;
  margin-left: auto;
  padding: 0;
}

.hero-art-shell::before,
.hero-art-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-art-shell::before {
  display: none;
}

.hero-art-shell::after {
  inset: auto auto -2% -6%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.14), transparent 70%);
  filter: blur(8px);
}

.hero-art-card {
  position: relative;
  margin: 0;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 420ms var(--ease-smooth), box-shadow 380ms var(--ease-smooth), filter 380ms var(--ease-smooth);
  will-change: transform;
}

.hero-art-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 30px 70px rgba(8, 17, 31, 0.14),
    0 12px 30px rgba(230, 0, 126, 0.08);
  transition: transform 420ms var(--ease-smooth), box-shadow 420ms var(--ease-smooth), filter 420ms var(--ease-smooth);
}

.hero-art-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(230, 0, 126, 0.08), transparent 34%);
}

.hero-art-card-inner::after {
  content: "";
  position: absolute;
  inset: auto -6% -8% auto;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.34), transparent 72%);
  filter: blur(12px);
  opacity: 0.7;
  animation: hero-card-glow 5.4s ease-in-out infinite alternate;
}

.hero-art-card:hover .hero-art-card-inner {
  box-shadow:
    0 42px 92px rgba(8, 17, 31, 0.18),
    0 18px 44px rgba(230, 0, 126, 0.14);
  filter: saturate(1.03);
}

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

.hero-art-card-infographic {
  grid-area: info;
  z-index: 3;
  margin-top: 18px;
}

.hero-art-card-infographic .hero-art-card-inner {
  animation: hero-card-drift-a 6.6s ease-in-out infinite alternate, hero-card-shadow 5.2s ease-in-out infinite alternate;
}

.hero-art-card-web {
  grid-area: web;
  z-index: 4;
  margin-top: 0;
}

.hero-art-card-web .hero-art-card-inner {
  animation: hero-card-drift-b 5.8s ease-in-out infinite alternate, hero-card-shadow 4.6s ease-in-out infinite alternate;
}

.hero-art-card-report-stack {
  grid-area: stack;
  z-index: 2;
  margin-top: -8px;
}

.hero-art-card-report-stack .hero-art-card-inner {
  animation: hero-card-drift-c 7.2s ease-in-out infinite alternate, hero-card-shadow 5.8s ease-in-out infinite alternate;
}

.hero-art-card-report-tablet {
  grid-area: tablet;
  z-index: 1;
  margin-top: 14px;
}

.hero-art-card-infographic .hero-art-card-inner,
.hero-art-card-report-stack .hero-art-card-inner,
.hero-art-card-report-tablet .hero-art-card-inner {
  aspect-ratio: 3 / 4;
}

.hero-art-card-web .hero-art-card-inner {
  aspect-ratio: 3 / 4;
}

.hero-art-card-report-tablet .hero-art-card-inner {
  animation: hero-card-drift-d 6.9s ease-in-out infinite alternate, hero-card-shadow 5s ease-in-out infinite alternate;
}

.hero-video-stage {
  margin-top: 24px;
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.hero-video-stage-inline {
  margin-top: 22px;
  margin-bottom: 0;
  width: min(100%, 1080px);
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 44px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(210, 57, 120, 0.24), transparent 26%),
    radial-gradient(circle at bottom left, rgba(190, 138, 47, 0.16), transparent 24%),
    linear-gradient(145deg, #07101d 0%, #101a2d 55%, #16233b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 44px 90px rgba(8, 17, 31, 0.2);
  background-size: 120% 120%;
  animation: gradient-pan 14s ease-in-out infinite alternate;
}

.hero-support-primary {
  max-width: 700px;
  margin-top: 12px;
  font-size: clamp(1rem, 0.98vw, 1.08rem);
  line-height: 1.56;
}

.hero-quote {
  position: relative;
  overflow: hidden;
  margin: 14px 0 0;
  max-width: 640px;
  padding: 18px 20px 18px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 21, 27, 0.08);
  box-shadow:
    0 18px 44px rgba(8, 17, 31, 0.08),
    0 10px 24px rgba(230, 0, 126, 0.06);
  animation: hero-quote-breathe 6.5s ease-in-out infinite alternate;
}

.hero-quote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(230, 0, 126, 1), rgba(230, 0, 126, 0.24));
}

.hero-quote::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -24%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.16), transparent 68%);
  filter: blur(10px);
  opacity: 0.8;
}

.hero-quote blockquote,
.hero-quote figcaption {
  position: relative;
  z-index: 1;
}

.hero-quote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.06vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-quote figcaption {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.hero-quote figcaption strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.hero-quote figcaption span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-remate {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.34rem, 1.56vw, 1.74rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-video-glow {
  position: absolute;
  inset: auto 8% 12% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 57, 120, 0.34), transparent 68%);
  filter: blur(6px);
  animation: drift 10s ease-in-out infinite alternate;
}

.video-play {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin-bottom: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.04);
  transition: transform 520ms var(--ease-smooth), box-shadow 520ms var(--ease-smooth), background 520ms var(--ease-smooth);
  animation: soft-breathe 4.8s ease-in-out infinite;
}

.hero-video-frame:hover .video-play {
  transform: scale(1.05);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.05);
}

.video-play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid white;
}

.hero-video-copy,
.hero-video-notes {
  position: relative;
  z-index: 1;
}

.hero-video-copy {
  max-width: 820px;
}

.video-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-video-copy strong {
  display: block;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-video-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-video-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 420ms var(--ease-smooth), background 420ms var(--ease-smooth), border-color 420ms var(--ease-smooth);
}

.hero-video-notes span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-support-grid,
.stats-grid,
.hero-metrics,
.card-grid,
.deliverables-grid,
.info-grid,
.steps-grid,
.steps-flow,
.service-list,
.case-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.hero-support-grid {
  gap: 18px;
}

.hero-panel,
.deliverable-card,
.service-panel,
.story-card,
.person-card,
.step-card,
.case-panel,
.content-card,
.detail-card,
.contact-form,
.mini-case,
.cta-banner,
.footer-shell {
  background: var(--surface);
  border: 1px solid rgba(17, 21, 27, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

.hero-panel,
.deliverable-card,
.service-panel,
.story-card,
.person-card,
.step-card,
.case-panel,
.content-card,
.detail-card,
.mini-case,
.cta-banner {
  padding: 30px;
}

.hero-panel,
.deliverable-card,
.service-panel,
.story-card,
.person-card,
.step-card,
.case-panel,
.content-card,
.detail-card,
.mini-case,
.mockup,
.cta-banner,
.proof-metric,
.service-summary-card,
.case-float-card,
.hero-video-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 420ms var(--ease-smooth), box-shadow 420ms var(--ease-smooth), border-color 420ms var(--ease-smooth), background 420ms var(--ease-smooth);
}

.hero-panel:hover,
.deliverable-card:hover,
.service-panel:hover,
.story-card:hover,
.person-card:hover,
.step-card:hover,
.case-panel:hover,
.content-card:hover,
.detail-card:hover,
.mini-case:hover,
.mockup:hover,
.service-summary-card:hover,
.proof-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 17, 31, 0.14);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.09);
}

.deliverable-card::after,
.service-panel::after,
.story-card::after,
.person-card::after,
.content-card::after,
.detail-card::after,
.mini-case::after,
.service-summary-card::after,
.proof-metric::after,
.mockup::after,
.case-float-card::after,
.hero-video-frame::after,
.cta-banner::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.02), transparent 42%, rgba(8, 17, 31, 0.035) 100%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.12), rgba(8, 17, 31, 0.03) 36%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 1px;
  background-position: 0 0, 0 0;
  transform: translateY(8px);
  transition: opacity 360ms var(--ease-smooth), transform 420ms var(--ease-smooth);
}

.deliverable-card:hover::after,
.service-panel:hover::after,
.story-card:hover::after,
.person-card:hover::after,
.content-card:hover::after,
.detail-card:hover::after,
.mini-case:hover::after,
.service-summary-card:hover::after,
.proof-metric:hover::after,
.mockup:hover::after,
.case-float-card:hover::after,
.hero-video-frame:hover::after,
.cta-banner:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.deliverable-card > *,
.service-panel > *,
.story-card > *,
.person-card > *,
.content-card > *,
.detail-card > *,
.mini-case > *,
.service-summary-card > *,
.proof-metric > *,
.mockup > *,
.case-float-card > *,
.cta-banner > *,
.orbit-node > * {
  position: relative;
  z-index: 1;
}

.hero-brand-panel img {
  width: min(100%, 280px);
  margin-bottom: 18px;
}

.hero-points,
.bullet-list,
.check-list,
.results-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li,
.bullet-list li,
.check-list li,
.results-list li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before,
.bullet-list li::before,
.check-list li::before,
.results-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.stats-grid,
.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid article,
.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 21, 27, 0.92);
  color: white;
  box-shadow: var(--shadow-sm);
}

.stats-grid strong,
.hero-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
}

.stats-grid span,
.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(8, 17, 31, 0.1);
  border-bottom: 1px solid rgba(8, 17, 31, 0.1);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(8, 17, 31, 0.72);
  font-weight: 700;
  transition: color 320ms var(--ease-smooth), transform 320ms var(--ease-smooth);
}

.trust-strip span::after {
  content: " /";
  margin-left: 10px;
  color: rgba(8, 17, 31, 0.24);
}

.trust-strip span:last-child::after {
  content: "";
  margin-left: 0;
}

.trust-strip span:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.proof-shell {
  display: grid;
  gap: 28px;
  padding: 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 252, 253, 0.98), rgba(249, 245, 248, 0.98));
  border: 1px solid rgba(128, 11, 72, 0.1);
  box-shadow: 0 18px 38px rgba(8, 17, 31, 0.08), 0 8px 18px rgba(8, 17, 31, 0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -18px;
}

.proof-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 20%, transparent 100%),
    radial-gradient(110% 80% at 12% 8%, rgba(230, 0, 126, 0.06) 0%, transparent 48%),
    radial-gradient(120% 88% at 92% 100%, rgba(190, 138, 47, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.proof-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      92deg,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      178deg,
      rgba(124, 0, 63, 0.012) 0px,
      rgba(124, 0, 63, 0.012) 2px,
      transparent 2px,
      transparent 12px
    );
  opacity: 0.18;
  pointer-events: none;
}

.proof-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.proof-header .eyebrow,
.proof-header h2,
.proof-header p,
.proof-header a {
  color: #08111f;
}

.proof-header > div {
  max-width: 760px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.proof-partners {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.proof-partner-group {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 12px 28px rgba(8, 17, 31, 0.04);
}

.proof-group-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 17, 31, 0.56);
}

.proof-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
  font-weight: 700;
}

.proof-logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.proof-logo-card {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 17, 31, 0.08);
}

.proof-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.services-proof-grid {
  margin-top: 8px;
}

.proof-metric {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 249, 252, 0.92);
  border: 1px solid rgba(128, 11, 72, 0.14);
  box-shadow: 0 10px 24px rgba(120, 12, 71, 0.08);
}

.proof-metric strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #08111f 0%, #e6007e 180%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-metric > span:not(.icon-badge) {
  color: var(--ink-soft);
  font-weight: 700;
}

.services-proof-grid .proof-metric {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 252, 253, 0.96), rgba(247, 243, 247, 0.92)),
    rgba(255, 252, 253, 0.92);
  border-color: rgba(156, 52, 99, 0.14);
  box-shadow:
    0 14px 30px rgba(120, 12, 71, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.services-proof-grid .proof-metric strong {
  max-width: 7ch;
}

.services-proof-grid .proof-metric p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.services-process-block {
  display: grid;
  gap: 26px;
}

.services-process-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(17, 21, 27, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94)),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 42px rgba(8, 17, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  overflow: hidden;
  isolation: isolate;
}

.services-process-diagram::before {
  content: "";
  position: absolute;
  left: clamp(46px, 4.4vw, 70px);
  right: clamp(46px, 4.4vw, 70px);
  top: 62px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.08), rgba(230, 0, 126, 0.26), rgba(8, 17, 31, 0.08));
  pointer-events: none;
}

.services-process-diagram::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(62px + 1px);
  width: 1px;
  height: 104px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(230, 0, 126, 0.24), rgba(8, 17, 31, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.services-process-stage,
.process-result-card,
.services-process-results-head {
  position: relative;
  z-index: 1;
}

.services-process-stage {
  min-height: 250px;
  padding: 34px 28px 28px;
  border-radius: 28px;
  border: 1px solid rgba(17, 21, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 28px rgba(8, 17, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-process-stage::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(230, 0, 126, 0.7);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.94);
}

.services-process-stage-01 {
  grid-column: 1 / span 4;
}

.services-process-stage-02 {
  grid-column: 5 / span 4;
}

.services-process-stage-03 {
  grid-column: 9 / span 4;
}

.services-process-link {
  position: absolute;
  right: -23px;
  top: -17px;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.12), rgba(230, 0, 126, 0.22));
}

.services-process-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(230, 0, 126, 0.62);
  border-right: 1.5px solid rgba(230, 0, 126, 0.62);
  transform: rotate(45deg);
}

.services-process-stage-index {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-process-stage-kicker {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-process-stage h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.46rem, 1.85vw, 1.88rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.services-process-stage p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.services-process-results-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px 0 2px;
  text-align: center;
}

.services-process-results-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 1px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.06), rgba(230, 0, 126, 0.34));
}

.services-process-results-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(230, 0, 126, 0.62);
  border-bottom: 1.5px solid rgba(230, 0, 126, 0.62);
  transform: translateX(-50%) rotate(45deg);
}

.services-process-results-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(230, 0, 126, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-results-intro {
  margin: 0;
  max-width: 38ch;
  font-family: var(--font-heading);
  font-size: clamp(1.06rem, 1.16vw, 1.28rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.process-result-card {
  min-height: 232px;
}

.process-result-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -20px;
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0), rgba(230, 0, 126, 0.24));
}

.process-result-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: -20px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(230, 0, 126, 0.62);
  border-bottom: 1.5px solid rgba(230, 0, 126, 0.62);
  transform: rotate(45deg);
  opacity: 0.7;
}

.process-result-card:hover::after {
  opacity: 0.7;
  transform: rotate(45deg);
}

.process-result-card-01 {
  grid-column: 1 / span 4;
}

.process-result-card-02 {
  grid-column: 5 / span 4;
}

.process-result-card-03 {
  grid-column: 9 / span 4;
}

.services-results-grid {
  margin-top: 0;
}

.services-proof-grid.process-result-card {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 253, 0.96), rgba(247, 243, 247, 0.92)),
    rgba(255, 252, 253, 0.92);
  border-color: rgba(156, 52, 99, 0.14);
  box-shadow:
    0 14px 30px rgba(120, 12, 71, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

@media (max-width: 1080px) {
  .services-process-diagram {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-process-diagram::before {
    left: 34px;
    right: auto;
    top: 54px;
    width: 1px;
    height: calc(100% - 108px);
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(230, 0, 126, 0.24), rgba(8, 17, 31, 0.04));
  }

  .services-process-diagram::after {
    display: none;
  }

  .services-process-stage,
  .services-process-results-head,
  .process-result-card {
    grid-column: 1 / -1;
  }

  .services-process-stage {
    min-height: auto;
    padding: 28px 24px 24px 56px;
  }

  .services-process-stage::before {
    left: 26px;
    top: 30px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.94);
  }

  .services-process-link {
    left: 33px;
    right: auto;
    top: auto;
    bottom: -19px;
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(230, 0, 126, 0.22));
  }

  .services-process-link::after {
    right: -4px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .services-process-results-head {
    justify-items: start;
    padding: 22px 0 4px 56px;
    text-align: left;
  }

  .services-process-results-head::before {
    left: 33px;
    top: -18px;
    height: 18px;
    transform: none;
  }

  .services-process-results-head::after {
    left: 27px;
    top: -18px;
    transform: rotate(45deg);
  }

  .process-result-card::before {
    left: 33px;
    top: -18px;
    height: 18px;
  }

  .process-result-card::after {
    left: 27px;
    top: -18px;
  }
}

.marquee {
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
  padding: 8px 0;
  border-top: 1px solid rgba(8, 17, 31, 0.08);
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  cursor: default;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee-slide 34s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 17, 31, 0.08);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 320ms var(--ease-smooth), border-color 320ms var(--ease-smooth), background 320ms var(--ease-smooth), color 320ms var(--ease-smooth);
}

.marquee-track span:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 126, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-summary-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.74)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-summary-card.accent {
  background:
    linear-gradient(180deg, rgba(210, 57, 120, 0.08), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.page-home .hero-quote,
.page-home .proof-shell,
.page-home .proof-metric,
.page-home .service-summary-card,
.page-home .case-study-showcase,
.page-home .case-float-card {
  border-radius: 0;
}

.page-home .hero-quote::after,
.page-home .proof-shell::before {
  border-radius: 0;
}

.page-home .case-study-showcase::before {
  inset: 20px;
  border-radius: 0;
}

.page-home .service-summary-card,
.page-home .proof-shell,
.page-home .case-study-showcase {
  box-shadow:
    0 20px 46px rgba(8, 17, 31, 0.08),
    0 8px 20px rgba(8, 17, 31, 0.04);
}

.page-home .proof-metric,
.page-home .case-float-card,
.page-home .hero-quote {
  box-shadow:
    0 14px 34px rgba(8, 17, 31, 0.07),
    0 6px 16px rgba(8, 17, 31, 0.04);
}

.service-summary-card.compact {
  align-content: start;
}

.service-summary-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.service-summary-card .service-panel-head {
  margin-bottom: 6px;
}

.service-summary-card .service-panel-title {
  max-width: none;
}

.service-summary-card .service-panel-title-xpress {
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 10px;
}

.page-home .service-summary-card .xpress-wordmark {
  width: 172px;
  max-width: 100%;
  transform: translateY(1px);
}

.service-summary-card .service-panel-subtitle {
  margin-top: 6px;
}

.service-summary-lead {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.32rem, 2vw, 1.74rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.service-summary-cta {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.icon-card .icon-badge {
  --icon-rotate: -4deg;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-bottom: 2px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.12), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(230, 0, 126, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 34px rgba(8, 17, 31, 0.08);
  color: var(--accent);
  will-change: transform;
  transition: transform 560ms var(--ease-smooth), box-shadow 420ms var(--ease-smooth), background 420ms var(--ease-smooth), border-color 420ms var(--ease-smooth);
}

.icon-card .icon-badge svg {
  width: 0;
  height: 0;
  opacity: 0;
}

.icon-card:hover .icon-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 24px 38px rgba(230, 0, 126, 0.14);
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.18), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
}

.icon-card:hover .icon-badge-compass {
  transform: translateY(-6px) rotate(14deg) scale(1.04);
}

.icon-card:hover .icon-badge-streak {
  transform: translate3d(5px, -6px, 0) skewX(-8deg) scale(1.05);
}

.icon-card:hover .icon-badge-grid,
.icon-card:hover .icon-badge-structure {
  transform: translateY(-5px) rotate(-4deg) scale(1.03);
}

.icon-card:hover .icon-badge-rise,
.icon-card:hover .icon-badge-chart {
  transform: translateY(-8px) scale(1.05);
}

.icon-card:hover .icon-badge-stack,
.icon-card:hover .icon-badge-network {
  transform: translateY(-5px) rotate(6deg) scale(1.03);
}

.icon-card:hover .icon-badge-core {
  transform: translateY(-4px) rotate(-8deg) scale(1.05);
}

.icon-card:hover .icon-badge-shield {
  transform: translateY(-5px) scale(1.04);
}

.icon-card:hover .icon-badge-eye {
  transform: translateY(-4px) scale(1.06);
}

.icon-card:hover .icon-badge-deck {
  transform: translateY(-6px) rotate(-10deg) scale(1.04);
}

.icon-card:hover .icon-badge-report {
  transform: translateY(-5px) rotate(3deg) scale(1.03);
}

.icon-card:hover .icon-badge-browser {
  transform: translateY(-5px) scale(1.04);
}

.icon-card:hover .icon-badge-refresh {
  transform: translateY(-4px) rotate(18deg) scale(1.03);
}

.icon-card:hover .icon-badge-idea {
  transform: translateY(-6px) scale(1.08);
}

.icon-card:hover .icon-badge-pen {
  transform: translate3d(3px, -5px, 0) rotate(8deg) scale(1.03);
}

.icon-badge-compass,
.icon-badge-core {
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(230, 0, 126, 0.2), rgba(255, 255, 255, 0.96) 72%);
}

.icon-badge-compass {
  --icon-rotate: 10deg;
}

.icon-badge-streak {
  --icon-rotate: -8deg;
  border-radius: 18px 28px 18px 28px;
  background:
    linear-gradient(135deg, rgba(230, 0, 126, 0.18), rgba(255, 255, 255, 0.96) 58%),
    rgba(255, 255, 255, 0.92);
}

.icon-badge-grid,
.icon-badge-structure {
  --icon-rotate: 4deg;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.9);
  color: #101b2f;
}

.icon-badge-rise,
.icon-badge-chart {
  --icon-rotate: -6deg;
  border-radius: 18px 18px 26px 26px;
  background:
    linear-gradient(180deg, rgba(190, 138, 47, 0.16), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
  color: #9a6b1f;
}

.icon-badge-stack,
.icon-badge-network {
  --icon-rotate: 7deg;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
  color: #101b2f;
}

.icon-badge-deck,
.icon-badge-report,
.icon-badge-browser {
  --icon-rotate: -5deg;
  width: 68px;
  border-radius: 18px;
}

.icon-badge-report {
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.14), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.icon-badge-browser {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.icon-badge-refresh {
  --icon-rotate: 12deg;
  border-radius: 50% 50% 20px 20px;
  background:
    linear-gradient(180deg, rgba(190, 138, 47, 0.14), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
  color: #9a6b1f;
}

.icon-badge-shield {
  --icon-rotate: -2deg;
  border-radius: 22px 22px 28px 28px;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
  color: #0f172a;
}

.icon-badge-eye {
  --icon-rotate: 5deg;
  border-radius: 28px 18px 28px 18px;
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.14), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.icon-badge-compass::before,
.icon-badge-compass::after,
.icon-badge-streak::before,
.icon-badge-streak::after,
.icon-badge-grid::before,
.icon-badge-grid::after,
.icon-badge-rise::before,
.icon-badge-rise::after,
.icon-badge-stack::before,
.icon-badge-stack::after,
.icon-badge-core::before,
.icon-badge-core::after,
.icon-badge-shield::before,
.icon-badge-shield::after,
.icon-badge-eye::before,
.icon-badge-eye::after,
.icon-badge-deck::before,
.icon-badge-deck::after,
.icon-badge-report::before,
.icon-badge-report::after,
.icon-badge-chart::before,
.icon-badge-chart::after,
.icon-badge-browser::before,
.icon-badge-browser::after,
.icon-badge-network::before,
.icon-badge-network::after,
.icon-badge-refresh::before,
.icon-badge-refresh::after,
.icon-badge-idea::before,
.icon-badge-idea::after,
.icon-badge-structure::before,
.icon-badge-structure::after,
.icon-badge-pen::before,
.icon-badge-pen::after {
  content: "";
  position: absolute;
}

.icon-badge-compass::before {
  inset: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.55;
}

.icon-badge-compass::after {
  left: 28px;
  top: 16px;
  width: 2px;
  height: 24px;
  background: currentColor;
  transform: rotate(32deg);
  transform-origin: center;
  box-shadow: 0 -7px 0 0 currentColor;
}

.icon-badge-streak::before {
  left: 16px;
  top: 18px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-18deg);
  box-shadow: 0 9px 0 0 rgba(230, 0, 126, 0.62);
}

.icon-badge-streak::after {
  right: 12px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(28deg);
}

.icon-badge-grid::before {
  inset: 14px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 12px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 0 / 12px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 12px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 100% / 12px 12px no-repeat;
  opacity: 0.8;
}

.icon-badge-rise::before {
  left: 15px;
  bottom: 14px;
  width: 6px;
  height: 16px;
  background: currentColor;
  border-radius: 6px 6px 0 0;
  box-shadow: 10px -6px 0 0 currentColor, 20px -12px 0 0 currentColor;
}

.icon-badge-rise::after {
  left: 16px;
  top: 18px;
  width: 24px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewY(-24deg) rotate(8deg);
}

.icon-badge-stack::before {
  left: 15px;
  top: 17px;
  width: 28px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 8px;
  opacity: 0.45;
  box-shadow: 0 8px 0 -2px rgba(16, 27, 47, 0.45), 0 16px 0 -4px rgba(16, 27, 47, 0.35);
}

.icon-badge-core::before {
  inset: 13px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
}

.icon-badge-core::after {
  inset: 22px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
}

.icon-badge-shield::before {
  left: 18px;
  top: 12px;
  width: 24px;
  height: 28px;
  background: currentColor;
  opacity: 0.78;
  clip-path: polygon(50% 0, 100% 12%, 100% 52%, 50% 100%, 0 52%, 0 12%);
}

.icon-badge-shield::after {
  left: 23px;
  top: 24px;
  width: 12px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.icon-badge-eye::before {
  left: 12px;
  top: 21px;
  width: 36px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-badge-eye::after {
  left: 26px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.icon-badge-deck::before {
  left: 16px;
  top: 16px;
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  opacity: 0.45;
  box-shadow: 8px 6px 0 -2px rgba(230, 0, 126, 0.82);
}

.icon-badge-report::before {
  left: 20px;
  top: 14px;
  width: 20px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 6px;
  opacity: 0.55;
}

.icon-badge-report::after {
  left: 24px;
  top: 22px;
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 0 currentColor, 0 12px 0 0 currentColor;
}

.icon-badge-chart::before {
  left: 17px;
  bottom: 15px;
  width: 6px;
  height: 12px;
  background: currentColor;
  border-radius: 6px 6px 0 0;
  box-shadow: 10px -6px 0 0 currentColor, 20px -2px 0 0 currentColor;
}

.icon-badge-browser::before {
  left: 14px;
  top: 16px;
  width: 32px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 8px;
  opacity: 0.55;
}

.icon-badge-browser::after {
  left: 14px;
  top: 22px;
  width: 32px;
  height: 2px;
  background: currentColor;
  opacity: 0.75;
}

.icon-badge-network::before {
  left: 15px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 18px -6px 0 0 currentColor, 18px 12px 0 0 currentColor;
}

.icon-badge-network::after {
  left: 19px;
  top: 23px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: rotate(-18deg);
  box-shadow: 0 10px 0 0 currentColor;
}

.icon-badge-refresh::before {
  inset: 15px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  opacity: 0.55;
}

.icon-badge-refresh::after {
  right: 14px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(18deg);
}

.icon-badge-idea::before {
  left: 20px;
  top: 14px;
  width: 20px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 10px 10px;
}

.icon-badge-idea::after {
  left: 24px;
  bottom: 14px;
  width: 12px;
  height: 6px;
  border-top: 2px solid currentColor;
}

.icon-badge-structure::before {
  left: 18px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 3px;
  box-shadow: 16px 0 0 0 currentColor, 8px 18px 0 0 currentColor;
}

.icon-badge-structure::after {
  left: 22px;
  top: 22px;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: -4px 8px 0 0 currentColor;
}

.icon-badge-pen::before {
  left: 18px;
  top: 18px;
  width: 24px;
  height: 4px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.icon-badge-pen::after {
  left: 35px;
  top: 17px;
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: rotate(-38deg);
}

.icon-badge-idea {
  --icon-rotate: -9deg;
  border-radius: 50% 50% 16px 16px;
}

.icon-badge-pen {
  --icon-rotate: 9deg;
  border-radius: 14px 24px 14px 24px;
}

.service-icon-card {
  position: relative;
}

.service-icon-card .icon-badge {
  margin-bottom: 10px;
  width: 92px;
  height: 92px;
}

.service-icon-card .icon-badge svg {
  width: 0;
  height: 0;
}

.service-icon-card-consultoria::before,
.service-icon-card-xpress::before,
.service-icon-card-system::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.7;
  transition: transform 420ms var(--ease-smooth), opacity 420ms var(--ease-smooth);
}

.service-icon-card-consultoria::before {
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(8, 17, 31, 0.08), transparent 70%);
}

.service-icon-card-xpress::before {
  width: 220px;
  background: linear-gradient(135deg, rgba(230, 0, 126, 0.16), transparent 62%);
  clip-path: polygon(0 0, 100% 0, 45% 100%, 0 100%);
}

.service-icon-card-system::before {
  width: 200px;
  height: 160px;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(8, 17, 31, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.service-icon-card:hover::before {
  transform: translate3d(8px, 4px, 0) scale(1.04);
  opacity: 1;
}

.deliverables-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-card {
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 254, 0.9)),
    var(--surface);
  padding-top: 34px;
}

.deliverable-card .icon-badge {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
}

.service-panel-consultoria .icon-badge {
  background: linear-gradient(180deg, rgba(18, 28, 44, 1), rgba(35, 46, 66, 1));
  color: white;
  border-color: rgba(18, 28, 44, 0.9);
}

.service-panel-xpress .icon-badge {
  background: linear-gradient(135deg, rgba(230, 0, 126, 1), rgba(255, 180, 223, 0.96));
  color: white;
  border-color: rgba(230, 0, 126, 0.7);
}

.deliverable-card-deck .icon-badge {
  background: linear-gradient(180deg, rgba(255, 237, 248, 1), rgba(255, 255, 255, 1));
  color: var(--accent);
}

.deliverable-card-report .icon-badge {
  background: linear-gradient(180deg, rgba(241, 245, 252, 1), rgba(255, 255, 255, 1));
  color: #101b2f;
}

.deliverable-card-chart .icon-badge {
  background: linear-gradient(180deg, rgba(255, 244, 230, 1), rgba(255, 255, 255, 1));
  color: #9a6b1f;
}

.deliverable-card-browser .icon-badge {
  background: linear-gradient(180deg, rgba(18, 28, 44, 1), rgba(35, 46, 66, 1));
  color: white;
}

.deliverable-card-network .icon-badge {
  background: linear-gradient(180deg, rgba(232, 239, 248, 1), rgba(255, 255, 255, 1));
  color: #0f172a;
}

.deliverable-card-refresh .icon-badge {
  background: linear-gradient(180deg, rgba(255, 236, 240, 1), rgba(255, 255, 255, 1));
  color: var(--accent);
}

.deliverable-card > span:not(.icon-badge) {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(230, 0, 126, 0.76);
}

.deliverable-card h3,
.content-card h3,
.detail-card h3,
.mini-case h3,
.service-panel h3 {
  font-size: 1.48rem;
  margin-bottom: 14px;
}

.deliverable-card::before,
.service-panel::before,
.orbit-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.deliverable-card-deck::before {
  background:
    linear-gradient(140deg, rgba(230, 0, 126, 0.06), transparent 44%),
    linear-gradient(180deg, transparent 76%, rgba(8, 17, 31, 0.03) 100%);
}

.deliverable-card-report::before {
  background:
    repeating-linear-gradient(180deg, rgba(8, 17, 31, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(140deg, rgba(230, 0, 126, 0.04), transparent 44%);
}

.deliverable-card-chart::before {
  background:
    linear-gradient(180deg, transparent 64%, rgba(8, 17, 31, 0.03) 100%),
    linear-gradient(90deg, rgba(230, 0, 126, 0.08) 0 18%, transparent 18% 34%, rgba(190, 138, 47, 0.08) 34% 52%, transparent 52% 100%);
  opacity: 0.45;
}

.deliverable-card-browser::before {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.06) 0 18%, transparent 18% 100%),
    linear-gradient(140deg, rgba(230, 0, 126, 0.04), transparent 52%);
}

.deliverable-card-network::before {
  background:
    radial-gradient(circle at 24% 64%, rgba(8, 17, 31, 0.06) 0 7px, transparent 8px),
    radial-gradient(circle at 54% 22%, rgba(230, 0, 126, 0.08) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 62%, rgba(8, 17, 31, 0.06) 0 7px, transparent 8px),
    linear-gradient(22deg, transparent 46%, rgba(8, 17, 31, 0.04) 47% 49%, transparent 50%),
    linear-gradient(-18deg, transparent 48%, rgba(8, 17, 31, 0.04) 49% 51%, transparent 52%);
}

.deliverable-card-refresh::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(230, 0, 126, 0.06) 35% 42%, transparent 43%),
    linear-gradient(140deg, rgba(190, 138, 47, 0.06), transparent 52%);
}

.deliverable-visual {
  min-height: 78px;
  margin-bottom: 18px;
  position: relative;
}

.visual-sheet {
  position: absolute;
  width: 62px;
  height: 74px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.08), rgba(17, 21, 27, 0.02));
  border: 1px solid rgba(17, 21, 27, 0.08);
}

.visual-sheet-a { left: 0; top: 2px; transform: rotate(-8deg); }
.visual-sheet-b { left: 40px; top: 10px; transform: rotate(6deg); }
.visual-sheet-c { left: 8px; top: 2px; transform: rotate(-4deg); }
.visual-sheet-d { left: 52px; top: 12px; transform: rotate(8deg); }

.visual-chart {
  position: absolute;
  bottom: 0;
  border-radius: 999px 999px 10px 10px;
}

.visual-chart-a {
  left: 0;
  width: 26px;
  height: 62px;
  background: rgba(17, 21, 27, 0.12);
}

.visual-chart-b {
  left: 36px;
  width: 26px;
  height: 46px;
  background: rgba(229, 0, 126, 0.24);
}

.visual-browser {
  width: 110px;
  height: 76px;
  border-radius: 18px;
  border: 1px solid rgba(17, 21, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 21, 27, 0.08) 0 18px, transparent 18px 100%),
    white;
}

.visual-network {
  position: relative;
  width: 110px;
  height: 76px;
}

.visual-network span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(17, 21, 27, 0.18);
}

.visual-network span:nth-child(1) { left: 0; top: 50%; }
.visual-network span:nth-child(2) { left: 46px; top: 10%; }
.visual-network span:nth-child(3) { left: 92px; top: 58%; }

.services-tabs-shell {
  display: grid;
  gap: 22px;
  scroll-margin-top: 124px;
}

.services-tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-tab {
  appearance: none;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 170px;
  padding: 26px 26px 24px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.94)),
    var(--surface);
  font: inherit;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 240ms var(--ease-smooth),
    border-color 240ms var(--ease-smooth),
    background 240ms var(--ease-smooth),
    box-shadow 240ms var(--ease-smooth),
    color 240ms var(--ease-smooth);
  box-shadow: 0 20px 36px rgba(8, 17, 31, 0.06);
}

.services-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, rgba(230, 0, 126, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(8, 17, 31, 0.06), transparent 32%);
  opacity: 0;
  transition: opacity 240ms var(--ease-smooth);
  pointer-events: none;
}

.services-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.9), rgba(230, 0, 126, 0.22));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-smooth);
}

.services-tab:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 126, 0.18);
  box-shadow: 0 24px 44px rgba(8, 17, 31, 0.08);
}

.services-tab:hover::before,
.services-tab:focus-visible::before,
.services-tab.is-active::before {
  opacity: 1;
}

.services-tab:focus-visible {
  outline: 0;
  border-color: rgba(230, 0, 126, 0.44);
  box-shadow:
    0 0 0 3px rgba(230, 0, 126, 0.12),
    0 24px 44px rgba(8, 17, 31, 0.08);
}

.services-tab.is-active {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 126, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 249, 0.96)),
    var(--surface);
  box-shadow: 0 28px 52px rgba(8, 17, 31, 0.1);
}

.services-tab.is-active::after {
  transform: scaleX(1);
}

.services-tab > * {
  position: relative;
  z-index: 1;
}

.services-tab-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.services-tab-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.1vw, 2.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.services-tab-title-xpress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.services-tab-title-xpress > span {
  white-space: nowrap;
}

.services-tab-title-xpress .xpress-wordmark {
  width: clamp(134px, 11vw, 176px);
  transform: translateY(1px);
}

.services-tab-copy {
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.services-tabs-panels {
  position: relative;
}

.services-tab-panel {
  width: 100%;
}

.split-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.92fr);
}

.service-panel {
  padding-top: 42px;
}

.service-panel-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.service-panel-head .icon-badge {
  margin-bottom: 0;
}

.service-panel-head-copy {
  position: relative;
  padding-left: 22px;
}

.service-panel-head-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.72), rgba(8, 17, 31, 0.12));
}

.service-panel-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--ink);
  max-width: 11ch;
}

.service-panel-title-xpress {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px 10px;
  max-width: none;
}

.service-panel-title-xpress > span {
  white-space: nowrap;
}

.xpress-wordmark {
  display: block;
  width: clamp(152px, 15vw, 230px);
  height: auto;
  flex-shrink: 0;
  transform: translateY(2px);
}

.service-panel-subtitle {
  margin: 8px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.service-panel-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-panel-gallery {
  --gallery-accent: rgba(8, 17, 31, 0.18);
  --gallery-glow: rgba(8, 17, 31, 0.12);
  position: relative;
  min-height: 440px;
  margin: 30px 0 32px;
  isolation: isolate;
}

.service-panel-gallery::before {
  content: "";
  position: absolute;
  inset: 18px 28px 16px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 18% 18%, var(--gallery-glow), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.service-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 30px 50px rgba(8, 17, 31, 0.12),
    0 12px 24px rgba(8, 17, 31, 0.08);
  transition:
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 860ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms var(--ease-smooth),
    filter 520ms var(--ease-smooth);
  will-change: transform;
}

.service-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.service-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms var(--ease-smooth);
}

.service-shot-primary {
  top: 18px;
  left: 1%;
  width: min(57%, 332px);
  aspect-ratio: 1.22;
  transform: rotate(-3.2deg) translate3d(0, 0, 0);
  z-index: 1;
}

.service-shot-secondary {
  top: 16px;
  right: 1%;
  width: min(56%, 324px);
  aspect-ratio: 1.22;
  transform: rotate(3deg) translate3d(0, 0, 0);
  z-index: 2;
}

.service-shot-tertiary {
  top: 72px;
  left: 50%;
  width: min(61%, 372px);
  aspect-ratio: 1.34;
  transform: translateX(-50%) rotate(-1deg) translate3d(0, 0, 0);
  z-index: 3;
}

.service-panel-gallery-consultoria {
  --gallery-accent: rgba(8, 17, 31, 0.2);
  --gallery-glow: rgba(8, 17, 31, 0.08);
}

.service-panel-gallery-xpress {
  --gallery-accent: rgba(230, 0, 126, 0.28);
  --gallery-glow: rgba(230, 0, 126, 0.14);
}

.service-panel-gallery-xpress::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 84% 24%, rgba(230, 0, 126, 0.14), transparent 42%);
}

.service-panel-gallery-xpress .service-shot-primary {
  top: 20px;
  transform: rotate(-3.1deg) translate3d(0, 4px, 0);
}

.service-panel-gallery-xpress .service-shot-secondary {
  top: 14px;
  transform: rotate(3.2deg) translate3d(0, 0, 0);
}

.service-panel-gallery-xpress .service-shot-tertiary {
  top: 74px;
  width: min(62%, 382px);
  transform: translateX(-50%) rotate(1deg) translate3d(0, 2px, 0);
}

.service-panel-gallery:hover .service-shot {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 32px 52px rgba(8, 17, 31, 0.12),
    0 14px 24px rgba(8, 17, 31, 0.08);
}

.service-panel-gallery:hover .service-shot-primary {
  transform: rotate(-3.35deg) translate3d(-2px, -4px, 0);
}

.service-panel-gallery:hover .service-shot-secondary {
  transform: rotate(3.15deg) translate3d(3px, -3px, 0);
}

.service-panel-gallery:hover .service-shot-tertiary {
  transform: translateX(-50%) rotate(-1.05deg) translate3d(0, -3px, 0);
}

.service-panel-gallery-xpress:hover .service-shot-primary {
  transform: rotate(-3.2deg) translate3d(-1px, 1px, 0);
}

.service-panel-gallery-xpress:hover .service-shot-secondary {
  transform: rotate(3.35deg) translate3d(2px, -2px, 0);
}

.service-panel-gallery-xpress:hover .service-shot-tertiary {
  transform: translateX(-50%) rotate(1.08deg) translate3d(0, -1px, 0);
}

.service-shot:hover {
  z-index: 4;
}

.service-shot:hover img,
.service-panel-gallery:hover .service-shot img {
  transform: scale(1.012);
}

.service-shot:hover {
  filter: saturate(1.015);
}

.service-panel-meta span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(8, 17, 31, 0.07);
  color: var(--ink-soft);
  line-height: 1.5;
}

.service-panel-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}

.service-panel-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 252, 0.96)),
    var(--surface);
}

.service-panel-secondary {
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.08), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.service-panel-consultoria::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 17, 31, 0.11), transparent 20%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.05), transparent 32%);
}

.service-panel-xpress::before {
  background:
    linear-gradient(132deg, rgba(230, 0, 126, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 66%, rgba(230, 0, 126, 0.04) 100%);
}

.service-panel-consultoria::after,
.service-panel-xpress::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 112px;
  height: 112px;
  pointer-events: none;
  z-index: 0;
}

.service-panel-consultoria::after {
  border-radius: 50%;
  border: 2px solid rgba(8, 17, 31, 0.18);
  box-shadow:
    inset 0 0 0 18px rgba(8, 17, 31, 0.06),
    inset 0 0 0 36px rgba(8, 17, 31, 0.04);
}

.service-panel-xpress::after {
  width: 128px;
  height: 88px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(230, 0, 126, 0.34), transparent 42%),
    repeating-linear-gradient(-24deg, rgba(230, 0, 126, 0.34) 0 10px, transparent 10px 22px);
  opacity: 1;
}

.service-panel:hover .service-panel-meta span {
  border-color: rgba(230, 0, 126, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline-service {
  align-items: flex-start;
  margin-bottom: 0;
}

.panel-topline-service .service-panel-title {
  max-width: none;
}

.panel-topline-service .service-panel-title-xpress {
  align-items: center;
}

.panel-topline-service .pill {
  margin-top: 6px;
  flex-shrink: 0;
}

.case-study-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  padding: 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(210, 57, 120, 0.22), transparent 22%),
    radial-gradient(circle at bottom left, rgba(190, 138, 47, 0.14), transparent 18%),
    linear-gradient(145deg, #08111f 0%, #101b2f 58%, #15243f 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 42px 80px rgba(8, 17, 31, 0.18);
  background-size: 120% 120%;
  animation: gradient-pan 14s ease-in-out infinite alternate;
}

.case-study-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.case-study-header,
.case-study-body {
  position: relative;
  z-index: 1;
}

.case-study-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.case-study-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.case-study-link:hover {
  color: white;
}

.case-study-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.88fr);
  gap: 26px;
}

.case-study-copy h2 {
  margin: 0 0 14px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.case-subtitle {
  max-width: 48ch;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

.case-study-copy > p:last-of-type {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.84);
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.case-study-meta article {
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.case-study-meta article:last-child {
  padding-right: 0;
  border-right: 0;
}

.case-study-meta span,
.case-float-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study-stack {
  display: grid;
  gap: 16px;
  align-content: center;
}

.case-float-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateX(0);
  transition: transform 420ms var(--ease-smooth), background 420ms var(--ease-smooth), border-color 420ms var(--ease-smooth);
}

.case-float-card:hover {
  transform: translateX(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.case-float-card strong {
  display: block;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.case-float-card-main {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(210, 57, 120, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.principles-layout {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 34px clamp(24px, 6vw, 108px) 68px;
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 0, 126, 0.1), transparent 24%),
    radial-gradient(circle at 14% 36%, rgba(230, 0, 126, 0.08), transparent 20%),
    radial-gradient(circle at 86% 54%, rgba(8, 17, 31, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.principles-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 18%, rgba(255, 255, 255, 0.38) 82%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.principles-visual {
  --orbit-shift-x: 0px;
  --orbit-shift-y: 0px;
  --center-shift-x: 0px;
  --center-shift-y: 0px;
  position: relative;
  width: min(100%, 1180px);
  min-height: 790px;
  margin: 0 auto;
  overflow: visible;
  perspective: 1600px;
}

.principles-visual::before {
  content: "";
  position: absolute;
  inset: 8% 7%;
  border-radius: 999px;
  border: 1px solid rgba(8, 17, 31, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.principles-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.84), transparent 38%),
    radial-gradient(circle at center, rgba(230, 0, 126, 0.08), transparent 58%);
  pointer-events: none;
}

.principles-visual > * {
  position: relative;
  z-index: 1;
}

.principles-orbit {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  translate: var(--orbit-shift-x) var(--orbit-shift-y);
  border-radius: 50%;
  border: 1px solid rgba(8, 17, 31, 0.08);
  transition: translate 780ms var(--ease-smooth);
}

.orbit-large {
  width: 640px;
  height: 640px;
  animation: slow-spin 34s linear infinite;
}

.orbit-small {
  width: 440px;
  height: 440px;
  border-style: dashed;
  border-color: rgba(210, 57, 120, 0.18);
  animation: reverse-spin 28s linear infinite;
}

.principles-center {
  position: absolute;
  inset: 50%;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
  translate: var(--center-shift-x) var(--center-shift-y);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 17, 31, 0.06);
  box-shadow: 0 30px 72px rgba(8, 17, 31, 0.12);
  text-align: center;
  animation: soft-pulse 4.8s ease-in-out infinite;
  transition: translate 780ms var(--ease-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.principles-center img {
  width: 84px;
  height: auto;
}

.orbit-node {
  --drift-x: 0px;
  --drift-y: 0px;
  --bob-x: 0px;
  --bob-y: -12px;
  position: absolute;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
  width: 302px;
  min-height: 154px;
  padding: 20px 22px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 24px 54px rgba(8, 17, 31, 0.08);
  color: var(--ink);
  text-align: left;
  translate: 0 0;
  transition: transform 560ms var(--ease-smooth), box-shadow 560ms var(--ease-smooth), border-color 560ms var(--ease-smooth), background 560ms var(--ease-smooth);
  cursor: default;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  animation: orbit-node-float 8.2s ease-in-out infinite;
}

.orbit-badge {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  margin-bottom: 0;
  align-self: start;
}

.orbit-badge svg {
  width: 0;
  height: 0;
}

.orbit-node strong {
  display: block;
  font-family: var(--font-heading);
  align-self: center;
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.orbit-node p {
  grid-column: 2;
  max-height: none;
  margin: 0;
  overflow: visible;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.52;
  opacity: 1;
  transform: none;
  transition: color 280ms var(--ease-smooth);
}

.orbit-node:hover,
.orbit-node:focus-visible {
  translate: 0 0;
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(230, 0, 126, 0.24);
  box-shadow: 0 34px 74px rgba(8, 17, 31, 0.12), 0 0 0 1px rgba(230, 0, 126, 0.08);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
}

.orbit-node-method .orbit-badge {
  background: linear-gradient(180deg, rgba(18, 28, 44, 1), rgba(35, 46, 66, 1));
  color: white;
}

.orbit-node-experience .orbit-badge {
  background: linear-gradient(180deg, rgba(255, 244, 230, 1), rgba(255, 255, 255, 1));
  color: #9a6b1f;
}

.orbit-node-decisions .orbit-badge {
  background: linear-gradient(135deg, rgba(230, 0, 126, 1), rgba(255, 199, 231, 1));
  color: white;
}

.orbit-node-confidential .orbit-badge {
  background: linear-gradient(180deg, rgba(18, 28, 44, 1), rgba(35, 46, 66, 1));
  color: white;
}

.orbit-node-clarity .orbit-badge {
  background: linear-gradient(180deg, rgba(255, 237, 248, 1), rgba(255, 255, 255, 1));
  color: var(--accent);
}

.orbit-node-scale .orbit-badge {
  background: linear-gradient(180deg, rgba(232, 239, 248, 1), rgba(255, 255, 255, 1));
  color: #0f172a;
}

.orbit-node-method::before {
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.08), transparent 54%);
}

.orbit-node-experience::before {
  background: linear-gradient(180deg, rgba(190, 138, 47, 0.1), transparent 54%);
}

.orbit-node-decisions::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.12), transparent 54%);
}

.orbit-node-confidential::before {
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.1), transparent 54%);
}

.orbit-node-clarity::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.1), transparent 54%);
}

.orbit-node-scale::before {
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.08), transparent 54%);
}

.orbit-node-a {
  --bob-x: 4px;
  --bob-y: -10px;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -0.4s;
}

.orbit-node-b {
  --bob-x: 8px;
  --bob-y: -14px;
  top: 16%;
  right: 2%;
  animation-delay: -1.1s;
}

.orbit-node-c {
  --bob-x: 6px;
  --bob-y: -12px;
  bottom: 13%;
  right: 6%;
  animation-delay: -1.9s;
}

.orbit-node-d {
  --bob-x: -4px;
  --bob-y: -10px;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -0.8s;
}

.orbit-node-e {
  --bob-x: -8px;
  --bob-y: -14px;
  bottom: 14%;
  left: 4%;
  animation-delay: -2.3s;
}

.orbit-node-f {
  --bob-x: -6px;
  --bob-y: -12px;
  top: 16%;
  left: 2%;
  animation-delay: -1.5s;
}

.orbit-node-a:hover,
.orbit-node-a:focus-visible,
.orbit-node-d:hover,
.orbit-node-d:focus-visible {
  transform: translateX(-50%) translateY(-10px) scale(1.025);
}

.home-cta-banner {
  text-align: center;
  justify-items: center;
  padding: 40px;
}

.home-cta-banner p:not(.eyebrow) {
  max-width: 62ch;
}

.case-study,
.contact-grid,
.story-layout,
.detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.case-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.principles-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.principles-pillars-editorial {
  position: relative;
  gap: 24px;
  padding-top: 24px;
}

.principles-pillars-editorial::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.08), rgba(230, 0, 126, 0.26), rgba(8, 17, 31, 0.08));
}

.section-heading-principles {
  position: relative;
  padding: 28px 28px 30px;
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.92), rgba(255, 255, 255, 0.98)),
    var(--surface);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.section-heading-principles::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.82), rgba(190, 138, 47, 0.38));
}

.section-heading-principles::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px auto;
  width: 180px;
  height: 62px;
  border: 1px solid rgba(8, 17, 31, 0.07);
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.03) 0, rgba(8, 17, 31, 0.03) 1px, transparent 1px, transparent 32px),
    linear-gradient(180deg, rgba(8, 17, 31, 0.03) 0, rgba(8, 17, 31, 0.03) 1px, transparent 1px, transparent 24px);
  opacity: 0.85;
  pointer-events: none;
}

.section-heading-principles > * {
  position: relative;
  z-index: 1;
}

.section-heading-principles p:last-child {
  max-width: 66ch;
}

.principles-people-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
  padding-top: 22px;
  align-items: start;
}

.principles-people-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.08), rgba(230, 0, 126, 0.22), rgba(8, 17, 31, 0.08));
}

.people-principle-card {
  --people-step: 0px;
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 360px;
  padding: 30px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.95)),
    var(--surface-strong);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transform: translateY(var(--people-step));
  transition:
    transform 520ms var(--ease-smooth),
    box-shadow 520ms var(--ease-smooth),
    border-color 520ms var(--ease-smooth),
    background 520ms var(--ease-smooth);
}

.people-principle-card:nth-child(2) {
  --people-step: 34px;
}

.people-principle-card:nth-child(3) {
  --people-step: 68px;
}

.people-principle-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(8, 17, 31, 0.02));
}

.people-principle-card:hover {
  transform: translateY(calc(var(--people-step) - 8px));
  border-color: rgba(8, 17, 31, 0.14);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.11);
}

.people-principle-card .pillar-card-number {
  top: 18px;
  right: 22px;
  color: rgba(8, 17, 31, 0.07);
}

.people-principle-card .pillar-card-top,
.people-principle-card .people-principle-copy,
.people-principle-card .people-principle-tags {
  position: relative;
  z-index: 1;
}

.people-principle-card .pillar-card-top {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  padding-right: 54px;
}

.people-principle-card .icon-badge {
  width: 80px;
  height: 80px;
  margin: 0;
  flex: 0 0 80px;
}

.people-principle-card .pillar-card-label {
  max-width: 17ch;
  margin: 0;
}

.people-principle-copy {
  max-width: 33ch;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.people-principle-copy strong {
  color: var(--ink);
}

.people-principle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.people-principle-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(247, 242, 238, 0.92);
  border: 1px solid rgba(8, 17, 31, 0.08);
}

.people-principle-card-accent {
  background:
    linear-gradient(180deg, rgba(251, 247, 248, 0.98), rgba(250, 251, 253, 0.96)),
    var(--surface-strong);
}

.people-principle-card-accent::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.72), rgba(190, 138, 47, 0.18));
}

.people-principle-card .icon-badge-structure,
.people-principle-card .icon-badge-network,
.people-principle-card .icon-badge-pen {
  border-radius: 16px;
}

.people-principle-card .icon-badge-structure {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.94);
  color: #101b2f;
}

.people-principle-card .icon-badge-network {
  background:
    linear-gradient(180deg, rgba(230, 0, 126, 0.12), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.94);
  color: #8b315d;
}

.people-principle-card .icon-badge-pen {
  background:
    linear-gradient(180deg, rgba(190, 138, 47, 0.14), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.94);
  color: #7a5821;
}

.people-principle-card .icon-badge-structure::before {
  inset: 16px;
}

.people-principle-card .icon-badge-structure::after {
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
}

.people-principle-card .icon-badge-network::before {
  left: 18px;
  top: 20px;
}

.people-principle-card .icon-badge-network::after {
  left: 23px;
  top: 27px;
  width: 26px;
}

.people-principle-card .icon-badge-pen::before {
  left: 22px;
  top: 20px;
  width: 34px;
  height: 34px;
}

.people-principle-card .icon-badge-pen::after {
  left: 24px;
  top: 22px;
  width: 30px;
  height: 30px;
}

@media (max-width: 1100px) {
  .principles-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-principle-card:nth-child(2) {
    --people-step: 22px;
  }

  .people-principle-card:nth-child(3) {
    --people-step: 0px;
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .section-heading-principles {
    padding: 22px 20px 24px;
  }

  .section-heading-principles::before {
    width: 7px;
  }

  .section-heading-principles::after {
    right: 16px;
    bottom: 16px;
    width: 108px;
    height: 52px;
  }

  .principles-people-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .people-principle-card,
  .people-principle-card:nth-child(2),
  .people-principle-card:nth-child(3) {
    --people-step: 0px;
    grid-column: auto;
    min-height: auto;
  }

  .people-principle-card {
    padding: 24px 20px 22px;
  }

  .people-principle-card .pillar-card-top {
    gap: 14px;
    margin-bottom: 22px;
    padding-right: 40px;
  }

  .people-principle-card .icon-badge {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .people-principle-copy {
    max-width: none;
    font-size: 1rem;
    line-height: 1.72;
  }

  .people-principle-tags {
    padding-top: 20px;
  }

  .people-principle-tags span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.76rem;
  }
}

.case-gallery {
  display: grid;
  gap: 18px;
}

.case-study-compact-header {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 42px;
}

.case-study-compact-header .case-copy {
  max-width: 38ch;
}

.case-study-compact-header.case-study-secondary .case-copy {
  order: 1;
}

.case-study-compact-header .case-gallery {
  margin-top: 22px;
}

.case-study-compact-header.case-study-secondary .case-gallery {
  order: 2;
}

.case-brief-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(156, 52, 99, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 254, 0.98), rgba(247, 244, 248, 0.92)),
    var(--surface-strong);
  box-shadow:
    0 14px 34px rgba(8, 17, 31, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.case-brief-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.92), rgba(194, 40, 116, 0.38), rgba(8, 17, 31, 0));
}

.case-brief-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -32px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 49, 122, 0.14), transparent 70%);
  pointer-events: none;
}

.case-brief-meta {
  display: grid;
  gap: 14px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.case-brief-row {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 17, 31, 0.08);
}

.case-brief-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-brief-row dt {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c22874;
}

.case-brief-row dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.case-study-compact-header .case-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: auto;
  align-self: start;
}

.case-study-compact-header .mockup-case-step {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 250px;
  padding: 18px 18px 18px;
}

.mockup-case-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-case-step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-case-step-index {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
  font-weight: 800;
  letter-spacing: 0;
}

.mockup-case-step-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0 !important;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(226, 0, 123, 0.16), rgba(226, 0, 123, 0.04));
  border: 1px solid rgba(226, 0, 123, 0.18);
  color: #ff6ab3 !important;
}

.mockup-case-step-icon svg {
  width: 18px;
  height: 18px;
}

.case-study-compact-header .mockup-case-step > strong {
  align-self: start;
}

.case-study-compact-header .mockup-case-step span {
  margin-bottom: 0;
  font-size: 0.72rem;
}

.case-study-compact-header .mockup-case-step strong {
  max-width: none;
  font-size: clamp(1.16rem, 1.58vw, 1.5rem);
  line-height: 1.14;
}

.portfolio-case-hero,
.portfolio-artifact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 17, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.9)),
    var(--surface-strong);
  box-shadow: var(--shadow-sm);
  transition:
    transform 420ms var(--ease-smooth),
    box-shadow 420ms var(--ease-smooth),
    border-color 420ms var(--ease-smooth);
}

.portfolio-case-hero {
  padding: 20px;
}

.portfolio-case-hero-wide {
  padding: 12px;
}

.portfolio-case-hero-wide figcaption {
  margin-top: 12px;
}

.portfolio-case-hero:hover,
.portfolio-artifact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 17, 31, 0.14);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.09);
}

.portfolio-case-hero img,
.portfolio-artifact-card img {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-case-hero img {
  border-radius: calc(var(--radius-lg) - 14px);
  background: white;
}

.portfolio-case-hero figcaption {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.portfolio-zoomable-image {
  cursor: zoom-in;
}

.portfolio-zoom-hint {
  display: inline-flex;
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(8, 17, 31, 0.36);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 17, 31, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease-smooth), visibility 260ms var(--ease-smooth);
}

.portfolio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.portfolio-lightbox-dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100vh - 56px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(14, 19, 27, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.portfolio-lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  border-radius: 18px;
  background: white;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms var(--ease-smooth), transform 220ms var(--ease-smooth);
}

.portfolio-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.is-lightbox-open {
  overflow: hidden;
}

.portfolio-case-media {
  padding-top: 28px;
  padding-bottom: 56px;
}

.portfolio-case-metrics {
  padding-top: 0;
  padding-bottom: 28px;
}

.portfolio-case-metrics .proof-metric strong {
  font-size: clamp(4rem, 6vw, 4.8rem);
  font-weight: 800;
}

.portfolio-case-stack {
  display: grid;
  gap: 32px;
}

.portfolio-case-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.portfolio-case-spotlight-narrow {
  grid-template-columns: minmax(0, 0.92fr);
  justify-content: start;
}

.portfolio-case-spotlight-single {
  grid-template-columns: minmax(0, 1fr);
}

.portfolio-case-group {
  display: grid;
  gap: 18px;
}

.portfolio-case-intro,
.portfolio-brochure-head {
  display: grid;
  gap: 10px;
}

.portfolio-case-intro {
  max-width: 72ch;
}

.portfolio-context-card {
  display: grid;
  gap: 14px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 17, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.92)),
    var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.portfolio-context-card > span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(213, 54, 121, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.portfolio-context-card p {
  margin: 0;
  color: var(--ink-soft);
}

.portfolio-project-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted) !important;
}

.portfolio-project-title {
  font-size: 0.98rem;
  line-height: 1.56;
}

.portfolio-context-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-context-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.portfolio-context-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6007e, #8d215f);
  transform: translateY(-50%);
}

.portfolio-context-actions {
  margin-top: 22px;
}

.portfolio-case-hero span,
.portfolio-artifact-card span,
.portfolio-case-label,
.portfolio-brochure-head span {
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.portfolio-case-label,
.portfolio-brochure-head span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(213, 54, 121, 0.08);
  color: var(--ink);
}

.portfolio-case-intro p,
.portfolio-brochure-head p {
  margin: 0;
  color: var(--ink-soft);
}

.portfolio-case-hero strong {
  display: block;
  max-width: none;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

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

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

.portfolio-artifact-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.portfolio-artifact-card img {
  border-radius: calc(var(--radius-lg) - 16px);
  border: 1px solid rgba(8, 17, 31, 0.07);
  background: white;
}

.portfolio-artifact-card figcaption {
  display: grid;
  gap: 6px;
}

.portfolio-artifact-card strong {
  font-size: 1rem;
  line-height: 1.46;
  color: var(--ink-soft);
}

.portfolio-paper-card {
  gap: 10px;
  padding: 12px;
}

.portfolio-paper-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 0.7;
  padding: 10px;
  border-radius: calc(var(--radius-lg) - 16px);
  border: 1px solid rgba(8, 17, 31, 0.07);
  background: white;
}

.portfolio-paper-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-paper-card img {
  border: 0;
  background: transparent;
}

.portfolio-paper-card figcaption {
  gap: 0;
}

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

.portfolio-brochure-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 17, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.9)),
    var(--surface-strong);
  box-shadow: var(--shadow-sm);
  transition:
    transform 420ms var(--ease-smooth),
    box-shadow 420ms var(--ease-smooth),
    border-color 420ms var(--ease-smooth);
}

.portfolio-brochure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 17, 31, 0.14);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.09);
}

.portfolio-case-hero-compact {
  padding: 12px;
}

.portfolio-case-hero-compact figcaption {
  display: none;
}

.portfolio-brochure-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-brochure-pages .portfolio-artifact-card {
  padding: 12px;
  gap: 10px;
}

.portfolio-brochure-pages .portfolio-artifact-card strong {
  font-size: 0.95rem;
  line-height: 1.38;
}

.case-study-secondary .case-copy {
  order: 2;
}

.case-study-secondary .case-gallery {
  order: 1;
}

.case-study-secondary .mockup {
  background:
    linear-gradient(145deg, rgba(24, 20, 24, 0.98), rgba(70, 54, 44, 0.94));
}

.case-study-secondary .mockup::before {
  background: radial-gradient(circle, rgba(190, 138, 47, 0.26), transparent 72%);
}

.card-grid.two,
.info-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card.accent,
.detail-card.accent,
.mini-case.accent {
  background:
    linear-gradient(180deg, rgba(210, 57, 120, 0.06), rgba(255, 255, 255, 0.94)),
    var(--surface-strong);
}

.story-card,
.person-card,
.content-card,
.detail-card,
.mini-case {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.88)),
    var(--surface-strong);
}

.pillar-card {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 254, 0.9)),
    var(--surface-strong);
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.28), rgba(8, 17, 31, 0.08));
  pointer-events: none;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 560ms var(--ease-smooth), transform 560ms var(--ease-smooth);
  transform: translate3d(14px, 14px, 0) scale(0.9);
  pointer-events: none;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-card .icon-badge {
  width: 76px;
  height: 76px;
  margin: 0 0 22px 18px;
}

.pillar-card .card-kicker {
  margin-left: 18px;
}

.pillar-card h3,
.pillar-card p:not(.card-kicker) {
  margin-left: 18px;
}

.pillar-card h3 {
  margin-bottom: 14px;
}

.pillar-card-highlight {
  background:
    linear-gradient(180deg, rgba(255, 240, 247, 0.98), rgba(244, 248, 254, 0.92)),
    var(--surface-strong);
}

.pillar-card-highlight::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.4), rgba(8, 17, 31, 0.08));
}

.pillar-card-editorial {
  --pillar-offset: 0px;
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 32px 30px 30px;
  transition:
    transform 560ms var(--ease-smooth),
    box-shadow 560ms var(--ease-smooth),
    border-color 560ms var(--ease-smooth),
    background 560ms var(--ease-smooth);
  transform: translateY(var(--pillar-offset));
}

.pillar-card-editorial:nth-child(2) {
  --pillar-offset: 26px;
}

.pillar-card-editorial:nth-child(3) {
  --pillar-offset: 10px;
}

.pillar-card-editorial::before {
  left: 30px;
  right: 30px;
  top: 116px;
  bottom: auto;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.32), rgba(8, 17, 31, 0.08));
}

.pillar-card-editorial:hover {
  transform: translateY(calc(var(--pillar-offset) - 10px));
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(230, 0, 126, 0.16);
}

.pillar-card-editorial:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pillar-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.pillar-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: clamp(2.7rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: rgba(8, 17, 31, 0.08);
  pointer-events: none;
}

.pillar-card-editorial .icon-badge {
  width: 82px;
  height: 82px;
  margin: 0;
  flex: 0 0 82px;
}

.pillar-card-editorial .pillar-card-label,
.pillar-card-editorial p:not(.pillar-card-label) {
  margin-left: 0;
}

.pillar-card-label {
  margin: 0;
  max-width: 15ch;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.pillar-card-copy {
  max-width: 31ch;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.pillar-card-copy strong {
  color: var(--ink);
}

.pillar-card-editorial .icon-badge-core::before {
  inset: 16px;
}

.pillar-card-editorial .icon-badge-core::after {
  inset: 28px;
}

.pillar-card-editorial .icon-badge-eye::before {
  left: 16px;
  top: 29px;
  width: 48px;
  height: 24px;
}

.pillar-card-editorial .icon-badge-eye::after {
  left: 35px;
  top: 36px;
  width: 10px;
  height: 10px;
}

.pillar-card-editorial .icon-badge-shield::before {
  left: 24px;
  top: 16px;
  width: 30px;
  height: 36px;
}

.pillar-card-editorial .icon-badge-shield::after {
  left: 31px;
  top: 31px;
  width: 14px;
  height: 8px;
}

.story-card-history .icon-badge {
  background: linear-gradient(180deg, rgba(18, 28, 44, 1), rgba(35, 46, 66, 1));
  color: white;
}

.story-card-team .icon-badge {
  background: linear-gradient(180deg, rgba(255, 237, 248, 1), rgba(255, 255, 255, 1));
  color: var(--accent);
}

.story-card .icon-badge {
  margin-bottom: 10px;
}

.story-card .card-kicker {
  margin-bottom: 22px;
}

.person-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.person-card-head {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.person-card-media {
  display: grid;
  gap: 10px;
  align-content: start;
}

.person-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  border-radius: 28px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(145deg, rgba(232, 238, 246, 0.96), rgba(247, 249, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  object-fit: cover;
  object-position: center top;
}

.person-card-photo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.person-card-photo-note::before {
  content: "";
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 0, 126, 0.9), rgba(8, 17, 31, 0.12));
}

.person-card-identity {
  display: grid;
  gap: 10px;
  align-content: start;
}

.person-card-identity p:last-child {
  margin-bottom: 0;
}

.person-card .card-kicker {
  margin-bottom: 0;
}

.person-card h3 {
  margin-bottom: 0;
}

.person-photo-claudia {
  background:
    radial-gradient(circle at 76% 20%, rgba(230, 0, 126, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(255, 241, 247, 0.98), rgba(248, 250, 253, 0.94));
}

.person-photo-sebastian {
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 17, 31, 0.14), transparent 22%),
    linear-gradient(145deg, rgba(236, 242, 248, 0.98), rgba(248, 250, 253, 0.94));
}

.person-photo-soheil {
  background:
    radial-gradient(circle at 78% 24%, rgba(190, 138, 47, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(255, 247, 236, 0.98), rgba(248, 250, 253, 0.94));
}

.person-photo-juan {
  background:
    radial-gradient(circle at 22% 20%, rgba(230, 0, 126, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(245, 244, 255, 0.98), rgba(248, 250, 253, 0.94));
}

.person-photo-eduardo {
  background:
    radial-gradient(circle at 80% 18%, rgba(8, 17, 31, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(237, 245, 250, 0.98), rgba(248, 250, 253, 0.94));
}

.person-card-media .person-card-photo-note {
  display: none;
}

.person-card-creative::before,
.person-card-strategy::before,
.person-card-corporate::before,
.person-card-commercial::before,
.person-card-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.person-card-creative::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.06), transparent 42%);
}

.person-card-strategy::before {
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.05), transparent 42%);
}

.person-card-corporate::before {
  background: linear-gradient(180deg, rgba(190, 138, 47, 0.08), transparent 42%);
}

.person-card-commercial::before {
  background: linear-gradient(180deg, rgba(230, 0, 126, 0.05), transparent 42%);
}

.person-card-tech::before {
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.06), transparent 42%);
}

.person-card-founder {
  grid-column: 1 / -1;
}

.person-card-founder .person-card-head {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
}

.person-card-founder .person-card-photo {
  aspect-ratio: 4 / 5;
}

.person-card-founder .card-kicker {
  font-size: 0.78rem;
}

.case-panel h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.case-mockups {
  display: grid;
  gap: 18px;
}

.mockup {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 21, 27, 0.96), rgba(40, 47, 57, 0.96));
  color: white;
  border: 1px solid rgba(17, 21, 27, 0.12);
  box-shadow: var(--shadow-sm);
  animation: gradient-pan 12s ease-in-out infinite alternate;
}

.mockup::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -36%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 0, 126, 0.32), transparent 70%);
}

.mockup span,
.mockup strong,
.mockup p {
  position: relative;
  z-index: 1;
}

.mockup span {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.mockup strong {
  display: block;
  max-width: 12ch;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mockup-large {
  min-height: 340px;
}

.difference-orbit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  grid-template-areas:
    "center center center"
    "a b c"
    "d e e";
}

.difference-card-a { grid-area: a; }
.difference-card-b { grid-area: b; }
.difference-card-c { grid-area: c; }
.difference-card-d { grid-area: d; }
.difference-card-e { grid-area: e; }

.difference-card {
  min-height: 0;
  padding: 26px;
}

.difference-center {
  grid-area: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: 100%;
  padding: 30px 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(229, 0, 126, 0.06), rgba(255, 255, 255, 0.96)),
    var(--surface-strong);
  border: 1px solid rgba(17, 21, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.difference-logo {
  width: 88px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.difference-center p {
  max-width: 42ch;
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  text-align: left;
}

.story-layout {
  align-items: stretch;
}

.steps-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.step {
  min-height: 240px;
}

.step-card span,
.step span {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  letter-spacing: -0.05em;
  color: var(--accent);
}

.step {
  padding: 30px;
}

.flow-arrow {
  display: none;
}

.contact-grid {
  gap: 22px;
}

.inline-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.inline-form {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 28px;
}

.inline-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.inline-form input:focus {
  outline: none;
  border-color: rgba(229, 0, 126, 0.6);
  box-shadow: 0 0 0 4px rgba(229, 0, 126, 0.12);
}

.inline-form .button,
.inline-form .form-status {
  width: 100%;
}

.contact-form {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.92)),
    var(--surface-strong);
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(229, 0, 126, 0.6);
  box-shadow: 0 0 0 4px rgba(229, 0, 126, 0.12);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact a {
  font-weight: 800;
  color: var(--ink);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.cta-banner {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 34px clamp(28px, 4vw, 46px);
  background:
    linear-gradient(90deg, rgba(230, 0, 126, 0.07), rgba(255, 255, 255, 0.02) 34%, rgba(190, 138, 47, 0.08) 100%);
  border: 0;
  border-top: 1px solid rgba(8, 17, 31, 0.1);
  border-bottom: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(230, 0, 126, 0.08) 24%, transparent 44%),
    radial-gradient(circle at 86% 50%, rgba(230, 0, 126, 0.08), transparent 24%);
  opacity: 0.9;
  animation: banner-wave 12s ease-in-out infinite alternate;
}

.cta-banner h2 {
  max-width: 20ch;
}

.cta-banner p:not(.eyebrow) {
  max-width: 60ch;
}

.footer-shell {
  margin: 18px 0 40px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 253, 0.92)),
    var(--surface);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-meta {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.footer-grid > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-mark {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.footer-legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 21, 27, 0.08);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

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

@keyframes background-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, -1%, 0) scale(1.06);
  }
}

@keyframes gradient-pan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes hero-quote-breathe {
  0% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      0 18px 44px rgba(8, 17, 31, 0.08),
      0 10px 24px rgba(230, 0, 126, 0.06);
  }

  100% {
    transform: translate3d(0, -4px, 0);
    box-shadow:
      0 24px 54px rgba(8, 17, 31, 0.1),
      0 14px 32px rgba(230, 0, 126, 0.1);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(var(--spot-x, 0px), var(--spot-y, 0px), 0);
  }

  50% {
    transform: translate3d(calc(var(--spot-x, 0px) + 10px), calc(var(--spot-y, 0px) - 6px), 0);
  }

  100% {
    transform: translate3d(calc(var(--spot-x, 0px) - 8px), calc(var(--spot-y, 0px) + 8px), 0);
  }
}

@keyframes hero-card-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.7deg);
  }
  100% {
    transform: translate3d(0, 8px, 0) rotate(-0.7deg);
  }
}

@keyframes hero-card-orbit {
  0% {
    --float-x: 0px;
    --float-y: 0px;
    --float-r: 0deg;
  }
  50% {
    --float-x: 8px;
    --float-y: -16px;
    --float-r: 0.85deg;
  }
  100% {
    --float-x: -10px;
    --float-y: 14px;
    --float-r: -0.8deg;
  }
}

@keyframes hero-card-drift-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2.8deg);
  }
  50% {
    transform: translate3d(18px, -42px, 0) rotate(-0.4deg);
  }
  100% {
    transform: translate3d(-26px, 30px, 0) rotate(-3.8deg);
  }
}

@keyframes hero-card-drift-b {
  0% {
    transform: translate3d(0, 0, 0) rotate(1.5deg);
  }
  50% {
    transform: translate3d(-24px, -46px, 0) rotate(3.2deg);
  }
  100% {
    transform: translate3d(22px, 30px, 0) rotate(0.2deg);
  }
}

@keyframes hero-card-drift-c {
  0% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(18px, -36px, 0) rotate(-0.6deg);
  }
  100% {
    transform: translate3d(-26px, 36px, 0) rotate(-4deg);
  }
}

@keyframes hero-card-drift-d {
  0% {
    transform: translate3d(0, 0, 0) rotate(2.5deg);
  }
  50% {
    transform: translate3d(-18px, -40px, 0) rotate(0.8deg);
  }
  100% {
    transform: translate3d(24px, 30px, 0) rotate(3.8deg);
  }
}

@keyframes hero-card-glow {
  0% {
    opacity: 0.38;
    transform: scale(0.82);
  }
  100% {
    opacity: 0.92;
    transform: scale(1.16);
  }
}

@keyframes hero-card-shadow {
  0% {
    box-shadow:
      0 24px 54px rgba(8, 17, 31, 0.12),
      0 10px 24px rgba(230, 0, 126, 0.06);
  }
  100% {
    box-shadow:
      0 42px 92px rgba(8, 17, 31, 0.18),
      0 18px 42px rgba(230, 0, 126, 0.14);
  }
}

@keyframes soft-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes banner-wave {
  0% {
    transform: translateX(-6%);
  }

  100% {
    transform: translateX(6%);
  }
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes reverse-spin {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 26px 60px rgba(8, 17, 31, 0.1);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 30px 74px rgba(210, 57, 120, 0.16);
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes orbit-node-float {
  0%,
  100% {
    translate: var(--drift-x) var(--drift-y);
  }

  50% {
    translate: calc(var(--drift-x) + var(--bob-x)) calc(var(--drift-y) + var(--bob-y));
  }
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 32px, 0) scale(0.985);
  transform-origin: 50% 70%;
  will-change: transform, opacity, filter;
  transition: opacity 1040ms var(--ease-smooth), transform 1040ms var(--ease-smooth), filter 1040ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

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

@media (max-width: 1280px) {
  .home-hero-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-hero-shell .hero-copy {
    max-width: min(100%, 760px);
    margin-top: 0;
  }

  .hero-art {
    order: 2;
    min-height: auto;
    margin-top: 6px;
  }

  .hero-art-shell {
    width: min(100%, 760px);
    min-height: auto;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-art-shell::before {
    inset: 10px;
  }
}

@media (max-width: 1180px) {
  .section-heading-why {
    min-height: 290px;
    background-size: auto, auto, 78% auto;
    background-position: left center, center center, 114% center;
  }

  .hero-shell,
  .page-hero-shell,
  .split-grid,
  .case-study,
  .case-study-body,
  .contact-grid,
  .story-layout,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-meta {
    grid-template-columns: 1fr;
  }

  .case-study-secondary .case-copy,
  .case-study-secondary .case-gallery {
    order: initial;
  }

  .portfolio-artifact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-paper-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-case-spotlight {
    grid-template-columns: 1fr;
  }

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

  .home-service-grid,
  .proof-grid,
  .deliverables-grid,
  .hero-metrics,
  .card-grid,
  .team-grid,
  .principles-pillars,
  .steps-grid,
  .steps-flow,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "a b"
      "c d"
      "e e";
  }

  .page-hero-tag-structured {
    min-height: auto;
  }

  .pillar-card-editorial:nth-child(2),
  .pillar-card-editorial:nth-child(3) {
    --pillar-offset: 0px;
  }
}

@media (max-width: 880px) {
  .section-heading-why {
    min-height: 250px;
    padding: 24px;
    background-size: auto, auto, 92% auto;
    background-position: left center, center center, 156% center;
  }

  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .main {
    padding-top: 4px;
  }

  .site-header {
    top: 0;
    width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 21, 27, 0.08);
    box-shadow: 0 18px 40px rgba(17, 21, 27, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.985);
    transition: opacity 320ms var(--ease-smooth), transform 320ms var(--ease-smooth), visibility 320ms var(--ease-smooth);
  }

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

  .site-nav a::after {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-video-frame {
    min-height: 480px;
    padding: 32px;
    border-radius: 32px;
  }

  .video-play {
    margin-bottom: 86px;
  }

  .proof-header,
  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-tag {
    justify-content: flex-start;
    text-align: left;
    padding: 0 0 14px;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 17, 31, 0.1);
  }

  .page-hero-tag:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .page-hero-editorial .page-hero-tag {
    border-bottom-color: var(--page-hero-divider);
  }

  .page-hero-tag-structured {
    min-height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-line-nowrap {
    white-space: nowrap;
    font-size: clamp(1.56rem, 5.8vw, 3.8rem);
  }

  .hero-question {
    display: block;
    width: auto;
    max-width: 100%;
    font-size: clamp(1.9rem, 5.4vw, 2.6rem);
  }

  .hero-question-line {
    white-space: normal;
    width: auto;
  }

  .home-hero-shell {
    gap: 18px;
  }

  .hero-home {
    padding-top: 0 !important;
    padding-bottom: 54px;
  }

  .hero-art {
    min-height: auto;
    margin-top: 8px;
  }

  .hero-art-shell {
    width: min(100%, 560px);
    min-height: auto;
  }

  .hero-quote {
    max-width: 100%;
    padding: 18px;
  }

  .page-home .hero-quote,
  .page-home .proof-shell,
  .page-home .proof-metric,
  .page-home .service-summary-card,
  .page-home .case-study-showcase,
  .page-home .case-float-card,
  .page-home .case-study-showcase::before,
  .page-home .proof-shell::before {
    border-radius: 0;
  }

  .hero-quote blockquote {
    font-size: 0.98rem;
  }

  .hero-art-shell::before {
    inset: 10px;
    border-radius: 34px;
  }

  .home-service-grid,
  .proof-grid,
  .deliverables-grid,
  .hero-metrics,
  .card-grid,
  .team-grid,
  .principles-pillars,
  .steps-grid,
  .steps-flow,
  .stats-grid,
  .stats-grid.compact {
    grid-template-columns: 1fr;
  }

  .person-card-head,
  .person-card-founder .person-card-head {
    grid-template-columns: 1fr;
  }

  .person-card-media {
    max-width: 240px;
  }

  .principles-pillars-editorial {
    padding-top: 0;
  }

  .principles-pillars-editorial::before {
    display: none;
  }

  .pillar-card-editorial {
    min-height: auto;
  }

  .pillar-card-editorial::before {
    top: 112px;
  }

  .difference-orbit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "a"
      "b"
      "c"
      "d"
      "e";
  }

  .difference-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .principles-layout {
    padding-inline: 20px;
  }

  .principles-visual {
    width: 100%;
    min-height: 780px;
  }

  .orbit-node {
    width: 248px;
    min-height: 148px;
    font-size: 0.88rem;
    padding: 18px 18px 16px;
  }

  .orbit-large {
    width: 540px;
    height: 540px;
  }

  .orbit-small {
    width: 388px;
    height: 388px;
  }

  .orbit-node-b {
    right: 0;
  }

  .orbit-node-c {
    right: 2%;
    bottom: 18%;
  }

  .orbit-node-e {
    left: 0;
  }

  .orbit-node-f {
    left: 0;
  }

  .case-study-meta {
    grid-template-columns: 1fr;
  }

  .case-study-meta article {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .case-study-meta article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section {
    padding: 84px 0;
  }

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

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

  .services-tab {
    min-height: auto;
  }

  .service-panel-gallery {
    max-width: 540px;
  }

  .service-panel-head {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
  }

  .service-panel-head-copy {
    padding-left: 18px;
  }
}

@media (max-width: 560px) {
  .section-heading-why {
    min-height: auto;
    padding: 0;
    background: none;
    border-top: 0;
    border-bottom: 0;
  }

  .section-heading-why::after {
    display: none;
  }

  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(2.2rem, 11vw, 3.1rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .hero-title-primary {
    max-width: none;
  }

  .hero-question {
    display: block;
    max-width: 100%;
    font-size: clamp(1.7rem, 8.6vw, 2.2rem);
    line-height: 0.95;
  }

  .hero-question-line {
    white-space: normal;
    width: auto;
  }

  .hero-line-nowrap {
    font-size: clamp(1.08rem, 5.2vw, 1.6rem);
    white-space: nowrap;
    letter-spacing: -0.05em;
  }

  .hero-line-thought {
    margin-top: 18px;
    font-size: clamp(2.1rem, 10.4vw, 3rem);
  }

  .hero-remate {
    font-size: clamp(1.14rem, 6vw, 1.5rem);
  }

  .main {
    padding-top: 0;
  }

  .home-hero-shell .hero-copy {
    margin-top: 0;
  }

  .hero-home {
    padding-top: 0 !important;
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-quote {
    margin-top: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .page-home .hero-quote,
  .page-home .proof-shell,
  .page-home .proof-metric,
  .page-home .service-summary-card,
  .page-home .case-study-showcase,
  .page-home .case-float-card,
  .page-home .case-study-showcase::before,
  .page-home .proof-shell::before {
    border-radius: 0;
  }

  .hero-quote blockquote {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-quote figcaption span {
    letter-spacing: 0.06em;
    font-size: 0.78rem;
  }

  .home-hero-shell {
    gap: 14px;
  }

  .page-home .service-summary-card .xpress-wordmark {
    width: 160px;
  }

  .portfolio-case-hero,
  .portfolio-artifact-card {
    padding: 14px;
  }

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

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

  .portfolio-lightbox {
    padding: 14px;
  }

  .portfolio-lightbox-dialog {
    padding: 12px;
    border-radius: 20px;
  }

  .portfolio-brochure-card {
    padding: 14px;
  }

  .portfolio-brochure-pages {
    grid-template-columns: 1fr;
  }

  .services-tab {
    padding: 22px 22px 20px;
  }

  .services-tab-title {
    font-size: clamp(1.54rem, 8vw, 2.06rem);
  }

  .services-tab-title-xpress {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .services-tab-title-xpress .xpress-wordmark {
    width: 150px;
  }

  .services-tab-copy {
    max-width: none;
    font-size: 0.94rem;
  }

  .service-panel-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 26px;
  }

  .service-panel-gallery::before {
    inset: 8px;
    border-radius: 24px;
  }

  .service-shot,
  .service-shot-primary,
  .service-shot-secondary,
  .service-shot-tertiary,
  .service-panel-gallery-xpress:hover .service-shot-primary,
  .service-panel-gallery-xpress:hover .service-shot-secondary,
  .service-panel-gallery-xpress:hover .service-shot-tertiary,
  .service-panel-gallery:hover .service-shot-primary,
  .service-panel-gallery:hover .service-shot-secondary,
  .service-panel-gallery:hover .service-shot-tertiary {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .service-shot-primary {
    transform: rotate(-2.4deg);
  }

  .service-shot-secondary {
    margin-top: 18px;
    transform: rotate(2.4deg);
  }

  .service-shot-tertiary {
    grid-column: 1 / -1;
    width: min(72%, 320px);
    justify-self: center;
    margin-top: 6px;
    transform: rotate(-1.2deg);
  }

  .hero-art {
    min-height: auto;
    margin-top: 2px;
  }

  .hero-art-shell {
    min-height: auto;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "web"
      "stack"
      "tablet";
  }

  .hero-art-shell::before {
    inset: 10px;
    border-radius: 28px;
  }

  .hero-art-shell::after {
    width: 144px;
    height: 144px;
    inset: auto auto 5% 0;
  }

  .hero-panel,
  .hero-proof-card,
  .deliverable-card,
  .service-summary-card,
  .service-panel,
  .story-card,
  .person-card,
  .step-card,
  .case-panel,
  .content-card,
  .detail-card,
  .mini-case,
  .cta-banner,
  .contact-form,
  .footer-shell,
  .mockup {
    padding: 24px;
    border-radius: 24px;
  }

  .icon-card .icon-badge {
    width: 54px;
    height: 54px;
  }

  .person-card-photo {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .icon-card .icon-badge svg {
    width: 23px;
    height: 23px;
  }

  .hero-video-frame,
  .case-study-showcase,
  .proof-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-video-frame {
    min-height: 420px;
  }

  .hero-video-copy strong,
  .case-study-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .principles-layout {
    padding-inline: 12px;
  }

  .principles-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    background: none;
  }

  .principles-visual::before,
  .principles-visual::after,
  .principles-orbit {
    display: none;
  }

  .principles-center {
    position: relative;
    inset: auto;
    transform: none;
    translate: 0 0;
    margin: 0 auto 10px;
    width: 116px;
    height: 116px;
    animation: none;
  }

  .orbit-node,
  .orbit-node-a,
  .orbit-node-b,
  .orbit-node-c,
  .orbit-node-d,
  .orbit-node-e,
  .orbit-node-f {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 6px;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    translate: 0 0;
    animation: none;
  }

  .orbit-badge {
    width: 48px;
    height: 48px;
  }

  .orbit-node p {
    grid-column: 2;
    font-size: 0.9rem;
  }

  .orbit-node:hover,
  .orbit-node:focus-visible,
  .orbit-node-a:hover,
  .orbit-node-a:focus-visible,
  .orbit-node-d:hover,
  .orbit-node-d:focus-visible {
    transform: translateY(-4px);
  }

  .cta-banner {
    padding-inline: 24px;
  }

  .brand-wordmark {
    width: 170px;
  }

  .footer-shell {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .hero-art-shell {
    padding: 14px;
    gap: 14px;
  }

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

  .service-shot-secondary {
    margin-top: 0;
  }
}

body :is(
  .hero-quote,
  .hero-panel,
  .deliverable-card,
  .service-summary-card,
  .service-panel,
  .story-card,
  .person-card,
  .step-card,
  .case-panel,
  .content-card,
  .detail-card,
  .mini-case,
  .cta-banner,
  .contact-form,
  .footer-shell,
  .mockup,
  .proof-shell,
  .proof-metric,
  .case-study-showcase,
  .case-float-card,
  .hero-video-frame
) {
  border-radius: 0;
}

body :is(
  .case-study-showcase::before,
  .service-panel-gallery::before
) {
  border-radius: 0;
}

body :is(
  .service-summary-card,
  .service-panel,
  .story-card,
  .person-card,
  .content-card,
  .detail-card,
  .mini-case,
  .proof-shell,
  .case-study-showcase,
  .contact-form,
  .footer-shell,
  .cta-banner
) {
  box-shadow:
    0 16px 38px rgba(8, 17, 31, 0.06),
    0 6px 16px rgba(8, 17, 31, 0.035);
}

body :is(
  .proof-metric,
  .case-float-card,
  .hero-quote,
  .deliverable-card,
  .step-card,
  .case-panel
) {
  box-shadow:
    0 12px 28px rgba(8, 17, 31, 0.055),
    0 4px 12px rgba(8, 17, 31, 0.03);
}

@media (min-width: 1181px) {
  .deliverables-grid > :nth-child(3n + 2),
  .card-grid > :nth-child(even),
  .team-grid > :nth-child(even),
  .steps-grid > :nth-child(even),
  .case-grid > :nth-child(even),
  .info-grid > :nth-child(even) {
    margin-top: 22px;
  }

  .home-service-grid > :nth-child(2),
  .proof-grid > :nth-child(2),
  .proof-grid > :nth-child(3) {
    margin-top: 18px;
  }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .deliverables-grid > :nth-child(even),
  .team-grid > :nth-child(even),
  .steps-grid > :nth-child(even),
  .card-grid > :nth-child(even),
  .case-grid > :nth-child(even),
  .home-service-grid > :nth-child(even) {
    margin-top: 16px;
  }

  .proof-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .proof-logo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body {
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-shell,
  .hero-copy,
  .page-hero-copy,
  .case-copy,
  .contact-copy,
  .story-card,
  .person-card,
  .portfolio-context-card,
  .portfolio-artifact-card,
  .portfolio-brochure-card,
  .proof-metric,
  .footer-brand,
  .footer-grid > div {
    min-width: 0;
  }

  .page-shell {
    width: min(100%, var(--max-width));
  }

  h1,
  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 2.2rem;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .page-home .hero-question {
    display: block;
    width: 100%;
    max-width: 100% !important;
    font-size: clamp(1.28rem, 5.8vw, 1.52rem);
    line-height: 0.96;
  }

  .page-home .hero-copy h1 {
    width: 100%;
    max-width: 100% !important;
  }

  .page-home .hero-question-line {
    display: block;
    width: 100%;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .page-home .hero-question-line:last-child {
    max-width: 100% !important;
  }

  .hero-line-nowrap {
    white-space: normal;
  }

  .hero-art {
    display: none;
  }

  .page-hero-meta,
  .page-hero-shell,
  .split-grid,
  .case-study,
  .contact-grid,
  .story-layout,
  .detail-layout,
  .footer-grid,
  .case-gallery,
  .portfolio-case-spotlight,
  .portfolio-case-spotlight-narrow,
  .portfolio-case-spotlight-single,
  .home-service-grid,
  .proof-grid,
  .deliverables-grid,
  .hero-metrics,
  .card-grid,
  .team-grid,
  .principles-pillars,
  .steps-grid,
  .steps-flow,
  .stats-grid,
  .stats-grid.compact,
  .portfolio-artifact-grid,
  .portfolio-paper-grid,
  .portfolio-brochure-grid,
  .portfolio-brochure-pages,
  .case-study-meta,
  .service-panel-meta,
  .services-tabs-nav {
    grid-template-columns: 1fr;
  }

  .case-study-compact-header .case-gallery {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .case-study-compact-header .mockup-case-step {
    min-height: auto;
  }

  .service-panel-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .service-panel-head-copy {
    padding-left: 0;
  }

  .service-panel-head-copy::before {
    display: none;
  }

  .service-panel-gallery {
    max-width: none;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 20px 0 24px;
  }

  .service-shot,
  .service-shot-primary,
  .service-shot-secondary,
  .service-shot-tertiary,
  .service-panel-gallery-xpress:hover .service-shot-primary,
  .service-panel-gallery-xpress:hover .service-shot-secondary,
  .service-panel-gallery-xpress:hover .service-shot-tertiary,
  .service-panel-gallery:hover .service-shot-primary,
  .service-panel-gallery:hover .service-shot-secondary,
  .service-panel-gallery:hover .service-shot-tertiary {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    transform: none !important;
  }

  .service-shot-tertiary {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .service-panel-meta span {
    min-height: auto;
  }

  .service-panel-actions,
  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-panel-actions .button,
  .hero-actions .button,
  .page-hero-actions .button {
    width: 100%;
  }

  .bullet-list li,
  .check-list li,
  .results-list li {
    padding-left: 20px;
    line-height: 1.58;
  }

  .footer-grid p,
  .footer-grid a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .marquee-track {
    animation: none;
  }
}
