@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --carbon: #070a0f;
  --carbon-soft: #0d121b;
  --carbon-raised: #111824;
  --mineral: #f4f1ea;
  --mineral-muted: #c7cbd3;
  --step-blue: #1e4fff;
  --progress-cyan: #5fe7ff;
  --whatsapp: #25d366;
  --whatsapp-ink: #07120d;
  --steel: #8b96a8;
  --line: rgba(244, 241, 234, 0.14);
  --line-strong: rgba(244, 241, 234, 0.25);
  --shadow-blue: 0 28px 90px rgba(30, 79, 255, 0.18);
  --radius: 14px;
  --radius-small: 9px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --header-height: 72px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--mineral);
  background:
    radial-gradient(circle at 84% 6%, rgba(30, 79, 255, 0.16), transparent 26rem),
    var(--carbon);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--carbon);
  background: var(--progress-cyan);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--progress-cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--carbon);
  background: var(--progress-cyan);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  background: rgba(7, 10, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 48px;
  height: 32px;
}

.brand-mark__chevron {
  width: 24px;
  height: 28px;
  clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
  background: var(--mineral);
}

.brand-mark__chevron:last-child {
  margin-left: -6px;
  background: var(--step-blue);
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type small {
  margin-bottom: 4px;
  color: var(--mineral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-type strong {
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
}

.nav-links a {
  color: var(--mineral-muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--mineral);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--mineral);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 120ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button--primary {
  color: var(--mineral);
  background: var(--step-blue);
  box-shadow: var(--shadow-blue);
}

.button--primary:hover {
  background: #315fff;
}

.button--secondary {
  color: var(--mineral);
  background: transparent;
  border-color: var(--line-strong);
}

.button--secondary:hover {
  background: rgba(244, 241, 234, 0.07);
  border-color: rgba(244, 241, 234, 0.42);
}

.button--whatsapp {
  gap: 10px;
  color: var(--whatsapp-ink);
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.18);
}

.button--whatsapp:hover {
  background: #35df74;
  border-color: #35df74;
}

.button--whatsapp img {
  flex: 0 0 auto;
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--progress-cyan);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

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

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18vw -26vw auto;
  width: 58vw;
  aspect-ratio: 1;
  background: rgba(30, 79, 255, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: 70px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--progress-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.subhero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 strong,
.subhero h1 strong {
  color: var(--progress-cyan);
  font-weight: 800;
}

.hero-summary,
.subhero-summary {
  max-width: 60ch;
  margin: 25px 0 0;
  color: var(--mineral-muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.subhero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.photo-window {
  position: absolute;
  inset: 0 0 0 38px;
  overflow: hidden;
  background: var(--carbon-raised);
  clip-path: polygon(18% 0, 100% 0, 100% 84%, 84% 100%, 0 100%, 0 18%);
}

.photo-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.84) contrast(1.05);
}

.photo-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 48%, rgba(30, 79, 255, 0.2));
  pointer-events: none;
}

.visual-rail {
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 7px;
  height: 62%;
  background: linear-gradient(var(--progress-cyan), var(--step-blue));
}

.visual-signature {
  position: absolute;
  right: 20px;
  bottom: 18px;
  max-width: 270px;
  padding: 15px 18px;
  color: var(--mineral);
  background: rgba(7, 10, 15, 0.86);
  border-left: 3px solid var(--progress-cyan);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  align-items: center;
  min-height: 116px;
  gap: 30px;
}

.trust-strip p {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 22px;
}

.trust-list a {
  color: var(--mineral-muted);
  font-weight: 800;
  text-align: center;
  transition: color 180ms ease;
}

.trust-list a:hover {
  color: var(--mineral);
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
  border-bottom: 1px solid var(--line);
}

.section--tight {
  padding-block: clamp(70px, 8vw, 105px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-heading h2,
.section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--mineral-muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: clamp(27px, 4vw, 46px);
  overflow: hidden;
  background: var(--carbon-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.service-card:first-child {
  grid-row: 1 / 3;
  min-height: 540px;
  background:
    linear-gradient(150deg, rgba(30, 79, 255, 0.22), transparent 50%),
    var(--carbon-soft);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -70px;
  width: 160px;
  height: 160px;
  border: 26px solid rgba(95, 231, 255, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(95, 231, 255, 0.38);
  background-color: var(--carbon-raised);
}

.service-card:active {
  transform: scale(0.99);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--carbon);
  background: var(--progress-cyan);
  border-radius: var(--radius-small);
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.service-card h3 {
  max-width: 18ch;
  margin: 34px 0 12px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.service-card:not(:first-child) h3 {
  margin-top: 26px;
  font-size: 28px;
}

.service-card p {
  max-width: 50ch;
  margin: 0;
  color: var(--mineral-muted);
}

.service-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  color: var(--progress-cyan);
  font-weight: 800;
}

.method-intro {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: end;
  gap: clamp(45px, 8vw, 110px);
  margin-bottom: 60px;
}

.method-intro .signature {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1.15;
}

.method-intro .signature strong {
  color: var(--step-blue);
}

.method-intro p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--mineral-muted);
  font-size: 18px;
}

.step-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--step-blue);
}

.step {
  position: relative;
  padding: 28px 24px 8px 0;
}

.step::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--progress-cyan);
  transform: rotate(45deg);
}

.step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.step span {
  color: var(--steel);
  font-size: 14px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
}

.case-media {
  position: relative;
  min-height: 585px;
}

.case-desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  border: 8px solid var(--mineral);
  border-radius: var(--radius);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
}

.case-mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  border: 7px solid var(--mineral);
  border-radius: 22px;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.48);
}

.case-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.case-copy > p {
  margin: 22px 0;
  color: var(--mineral-muted);
  font-size: 18px;
}

.outcomes {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.outcomes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: var(--mineral-muted);
}

.outcomes li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--progress-cyan);
  transform: rotate(45deg);
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--carbon-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.project-identity {
  position: relative;
  isolation: isolate;
  display: grid;
  width: clamp(220px, 20vw, 280px);
  max-width: calc(100% - 48px);
  height: auto;
  aspect-ratio: 1 / 1;
  place-items: center;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  margin: clamp(24px, 3vw, 36px) auto;
  border: 0;
}

.project-identity::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.project-logo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms var(--ease-out), opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .project-identity:hover .project-logo {
    transform: scale(1.025);
  }
}

.project-identity--voz {
  background: #080808;
}

.project-identity--voz::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(242, 239, 232, 0.07), transparent 42%);
  pointer-events: none;
}

.project-identity--uvas {
  background: radial-gradient(circle at 50% 44%, rgba(134, 41, 98, 0.1), transparent 42%), #f5f0e8;
}

.project-identity--uvas::after {
  border-color: rgba(82, 30, 81, 0.12);
}

.project-identity--moratta {
  background: linear-gradient(160deg, #ffffff 0 70%, #f2f5ed 70% 100%);
}

.project-identity--moratta::after {
  border-color: rgba(92, 93, 81, 0.13);
}

.project-identity--vehemencia {
  background: linear-gradient(135deg, #f3e8dd, #ead9ca);
}

.project-identity--vehemencia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 72%, rgba(102, 55, 35, 0.045) 72% 100%);
  pointer-events: none;
}

.project-identity--vehemencia::after {
  border-color: rgba(94, 52, 34, 0.12);
}

.project-copy {
  padding: clamp(28px, 4vw, 48px);
}

.project-name {
  margin: 0 0 18px;
  color: var(--progress-cyan);
  font-weight: 800;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.project-facts {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.project-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mineral);
  font-size: 14px;
}

.project-facts p {
  margin: 0;
  color: var(--mineral-muted);
  font-size: 15px;
}

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

.project-card {
  overflow: hidden;
  background: var(--carbon-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card--uvas {
  grid-column: span 7;
}

.project-card--moratta {
  grid-column: span 5;
}

.project-card--vehemencia {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
}

.project-list {
  margin-top: 72px;
  border-top: 1px solid var(--line-strong);
}

.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 106px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms var(--ease-out);
}

.project-row:hover {
  padding-inline: 18px;
  background: rgba(244, 241, 234, 0.035);
}

.project-row strong {
  font-size: 22px;
}

.project-row span {
  color: var(--steel);
}

.project-row b {
  color: var(--progress-cyan);
  font-size: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(40px, 7vw, 95px);
}

.about-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: polygon(0 0, 86% 0, 100% 14%, 100% 100%, 14% 100%, 0 86%);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-copy p {
  max-width: 60ch;
  margin: 22px 0 0;
  color: var(--mineral-muted);
  font-size: 18px;
}

.faq-list {
  max-width: 900px;
}

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 23px;
  color: var(--progress-cyan);
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 70ch;
  margin: -6px 0 25px;
  color: var(--mineral-muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 130px);
  background:
    linear-gradient(125deg, rgba(30, 79, 255, 0.92), rgba(30, 79, 255, 0.58)),
    var(--step-blue);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 380px;
  height: 380px;
  border: 68px solid rgba(95, 231, 255, 0.22);
  transform: rotate(45deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 50px;
}

.final-cta h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.final-cta p {
  max-width: 50ch;
  margin: 0 0 22px;
  color: rgba(244, 241, 234, 0.84);
}

.final-cta .button--secondary {
  color: var(--carbon);
  background: var(--mineral);
  border-color: var(--mineral);
}

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

.final-cta .button--whatsapp {
  color: var(--whatsapp-ink);
}

.site-footer {
  padding-block: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: end;
  gap: 35px;
}

.footer-copy {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 30px;
}

.footer-links a {
  color: var(--mineral-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--progress-cyan);
}

.footer-meta {
  color: var(--steel);
  font-size: 13px;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--whatsapp-ink);
  background: var(--whatsapp);
  border: 1px solid rgba(7, 18, 13, 0.18);
  border-radius: var(--radius-small);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms var(--ease-out), background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  background: #35df74;
}

.whatsapp-float:active {
  transform: scale(0.97);
}

.subhero {
  position: relative;
  min-height: 76dvh;
  display: grid;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.subhero::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -22vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 8vw solid rgba(30, 79, 255, 0.11);
  transform: rotate(45deg);
}

.subhero-inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.subhero h1 {
  max-width: 15ch;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--progress-cyan);
}

.content-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(45px, 8vw, 115px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.sticky-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-block {
  padding: 30px;
  background: var(--carbon-soft);
  border-left: 3px solid var(--step-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.content-block h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.content-block p {
  margin: 0;
  color: var(--mineral-muted);
}

.benefit-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.benefit {
  padding: 35px;
  background: var(--carbon-soft);
}

.benefit strong {
  display: block;
  margin-bottom: 9px;
  color: var(--progress-cyan);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.benefit p {
  margin: 0;
  color: var(--mineral-muted);
}

.article-prose {
  max-width: 800px;
}

.article-prose h2 {
  margin: 72px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose h3 {
  margin: 35px 0 10px;
  font-size: 24px;
}

.article-prose p,
.article-prose li {
  color: var(--mineral-muted);
  font-size: 18px;
}

.article-prose ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    gap: 18px;
  }

  .nav > .button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.7vw, 68px);
  }

  .case-media {
    min-height: 490px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px 16px 26px;
    background: rgba(7, 10, 15, 0.98);
    border-bottom: 1px solid var(--line-strong);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms var(--ease-out), opacity 160ms ease, visibility 0s linear 220ms;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .hero,
  .subhero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .hero h1,
  .subhero h1 {
    max-width: 13ch;
    font-size: clamp(43px, 11.5vw, 66px);
  }

  .hero-visual {
    min-height: 570px;
  }

  .trust-strip__inner,
  .method-intro,
  .case-study,
  .project-featured,
  .project-card--vehemencia,
  .about-grid,
  .final-cta__inner,
  .content-split {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    padding-block: 28px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-card--uvas,
  .project-card--moratta,
  .project-card--vehemencia {
    grid-column: 1 / -1;
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .project-identity {
    width: min(66vw, 250px);
    max-width: calc(100% - 40px);
    height: auto;
    margin-block: 24px 8px;
  }

  .service-card:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .step-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .case-media {
    min-height: 580px;
  }

  .case-copy {
    order: -1;
  }

  .project-row {
    grid-template-columns: 1fr auto;
    padding-block: 22px;
  }

  .project-row span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-photo {
    min-height: 620px;
  }

  .final-cta__inner {
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .sticky-heading {
    position: static;
  }

  .benefit-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-type small {
    font-size: 9px;
  }

  .brand-type strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 42px;
  }

  .brand-mark__chevron {
    width: 21px;
    height: 25px;
  }

  .hero-inner,
  .subhero-inner {
    padding-block: 52px;
  }

  .hero h1,
  .subhero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.7vw, 58px);
    letter-spacing: -0.045em;
  }

  .hero-summary,
  .subhero-summary {
    font-size: 17px;
  }

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

  .hero-actions .button,
  .subhero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .photo-window {
    left: 16px;
  }

  .visual-signature {
    right: 10px;
    bottom: 12px;
    max-width: 235px;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }

  .section-heading h2,
  .section-title,
  .about-copy h2,
  .case-copy h2,
  .final-cta h2,
  .sticky-heading h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .service-card,
  .service-card:first-child {
    min-height: 340px;
  }

  .step-rail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .case-media {
    min-height: 430px;
  }

  .case-desktop {
    width: 94%;
    border-width: 5px;
  }

  .case-mobile {
    width: 33%;
    border-width: 4px;
    border-radius: 15px;
  }

  .about-photo {
    min-height: 500px;
  }

  .project-identity::after {
    inset: 12px;
  }

  .project-identity {
    width: min(64vw, 210px);
    max-width: calc(100% - 36px);
    height: auto;
    margin-block: 20px 4px;
  }

  .project-row strong {
    font-size: 19px;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .content-block,
  .benefit {
    padding: 24px;
  }
}

@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-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
