:root {
  --bg: #edf3fb;
  --bg-mid: #dbe7f7;
  --hero-bg: #0a2f57;
  --hero-bg-deep: #031a33;
  --bg-strong: #1c1713;
  --surface: rgba(255, 250, 244, 0.84);
  --surface-strong: #fffaf3;
  --surface-dark: #221c17;
  --text: #1f1914;
  --text-soft: #766759;
  --line: rgba(31, 25, 20, 0.12);
  --brand: #2f6fb1;
  --brand-deep: #1b4d83;
  --accent: #d6c1a7;
  --accent-soft: #efe0cf;
  --shadow: 0 24px 70px rgba(32, 25, 18, 0.11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  --header-nav-color: rgb(241, 248, 255);
  --header-nav-color-hover: rgb(255, 255, 255);
  --header-nav-outline-opacity: 0.95;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(123, 196, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(
      180deg,
      var(--hero-bg-deep) 0%,
      var(--hero-bg) 20%,
      #3e6f9f 38%,
      #a8c0df 56%,
      var(--bg-mid) 72%,
      var(--bg) 100%
    );
  color: var(--text);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(3, 26, 51, 0.22);
}

.brand {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-icon {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
  margin-left: auto;
  color: var(--header-nav-color);
  font-size: 1.04rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--header-nav-color-hover);
}

.site-nav-link-outlined {
  text-shadow:
    -0.8px 0 rgba(255, 255, 255, var(--header-nav-outline-opacity)),
    0.8px 0 rgba(255, 255, 255, var(--header-nav-outline-opacity)),
    0 -0.8px rgba(255, 255, 255, var(--header-nav-outline-opacity)),
    0 0.8px rgba(255, 255, 255, var(--header-nav-outline-opacity));
}

.site-nav-contact {
  padding: 10px 16px;
  border-radius: 999px;
  color: #05213f;
  background: #f3c96b;
  box-shadow: 0 10px 24px rgba(243, 201, 107, 0.28);
  font-weight: 700;
}

.site-nav-contact:hover,
.site-nav-contact:focus-visible {
  color: #05213f;
  background: #ffd983;
}

.hero {
  --hero-scroll: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  min-height: calc(100vh - 140px);
  padding: 68px 0 112px;
  margin-bottom: -28px;
  text-align: center;
  border-radius: 42px 42px 0 0;
  background: transparent;
}

.eyebrow,
.card-tag,
.hero-card-caption span,
.hero-metric span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--brand);
  margin: 0 0 18px;
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(4rem, 8.4vw, 7.4rem);
  max-width: min(12ch, 100%);
  margin-inline: auto;
  text-align: center;
  line-height: 0.84;
  color: #f5fbff;
}

.hero-line {
  display: block;
}

.hero-line-primary {
  font-size: 0.46em;
  letter-spacing: 0.02em;
  margin-bottom: 0.18em;
}

.hero-line-secondary {
  display: flex;
  justify-content: center;
  gap: 0.14em;
  color: #8fc6ff;
  font-size: 0.9em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  filter: blur(10px);
}

.hero.is-visible .hero-word {
  animation: heroReveal 1800ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero.is-visible .hero-word-1 {
  animation-delay: 180ms;
}

.hero.is-visible .hero-word-2 {
  animation-delay: 520ms;
}

.hero.is-visible .hero-word-3 {
  animation-delay: 760ms;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: min(100%, 980px);
  padding-inline: 24px;
}

.hero-subtitle {
  display: block;
  margin: 18px auto 0;
  max-width: min(40ch, 100%);
  font-size: clamp(1.08rem, 1.85vw, 1.36rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  color: rgba(245, 251, 255, 0.82);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(8px);
}

.hero.is-visible .hero-subtitle {
  animation: heroReveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 1180ms;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 28px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 198, 255, calc(0.12 + var(--hero-scroll) * 0.12)), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, calc(0.05 + var(--hero-scroll) * 0.14)), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, calc(var(--hero-scroll) * 0.08)) 0%, rgba(255, 255, 255, calc(var(--hero-scroll) * 0.22)) 100%);
  transition: background 120ms linear;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 760px);
  height: min(78vw, 760px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 198, 255, 0.28) 0%, rgba(143, 198, 255, 0) 68%);
  z-index: -1;
  animation: heroPulse 10s ease-in-out infinite;
}

.hero-aura,
.hero-rings {
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-aura {
  width: 34vw;
  height: 34vw;
  min-width: 240px;
  min-height: 240px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.9;
}

.hero-aura-left {
  left: 6%;
  top: 12%;
  background: radial-gradient(circle, rgba(143, 198, 255, 0.32) 0%, rgba(143, 198, 255, 0) 72%);
  animation: driftLeft 24s ease-in-out infinite;
}

.hero-aura-right {
  right: 4%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  animation: driftRight 28s ease-in-out infinite;
}

.hero-rings {
  left: 50%;
  top: 50%;
  width: min(84vw, 920px);
  height: min(84vw, 920px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 46px rgba(255, 255, 255, 0.045),
    0 0 0 118px rgba(255, 255, 255, 0.02);
  animation: slowRotate 36s linear infinite;
}

.section-heading p,
.service-card p,
.timeline p,
.feature-grid p,
.case-card p,
.callout p,
.site-footer p,
.intro-strip p {
  color: var(--text-soft);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 18px 38px rgba(11, 126, 161, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.service-card,
.feature-grid article,
.case-card,
.callout,
.intro-strip {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: 22px;
  margin: 96px 0 42px;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(234, 242, 251, 0.9), rgba(245, 249, 255, 0.84));
}

.intro-strip-copy,
.intro-strip-media {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  filter: blur(10px);
}

.intro-strip.is-visible .intro-strip-copy,
.intro-strip.is-visible .intro-strip-media {
  animation: heroReveal 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-strip.is-visible .intro-strip-media {
  animation-delay: 180ms;
}

.intro-strip-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
}

.intro-strip-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
}

.intro-strip-copy > p:last-child {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  max-width: 40ch;
  color: var(--text);
}

.intro-strip-media {
  min-height: 100%;
}

.intro-strip-media img {
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(12, 37, 64, 0.14);
}

.section {
  padding: 70px 0;
}

.section-dark {
  margin: 22px 0;
  padding: 70px 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(143, 198, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #17385f 0%, #0e2239 100%);
  color: white;
}

#metodo {
  padding-top: 30px;
}

.section-dark .section-heading p,
.section-dark .timeline p {
  color: rgba(233, 242, 245, 0.72);
}

.section-heading {
  --section-heading-offset-y: 44px;
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 72ch;
  opacity: 0;
  transform: translateY(var(--section-heading-offset-y)) scale(0.96);
  filter: blur(10px);
}

.section-heading.is-visible {
  animation: heroReveal 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.section-heading.reveal-from-top {
  --section-heading-offset-y: -44px;
}

.section-heading.narrow {
  max-width: 58ch;
}

#metodo .section-heading {
  max-width: 74ch;
}

.section h2,
.callout h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.section-services {
  padding-top: 58px;
}

.section-services .section-heading {
  max-width: none;
  margin-bottom: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(186, 221, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(10, 47, 87, 0.82), rgba(27, 77, 131, 0.72));
  box-shadow: 0 22px 56px rgba(4, 21, 39, 0.2);
}

.section-services .eyebrow {
  color: #9fd0ff;
}

.section-services h2 {
  color: #f3f9ff;
}

.section-services .section-heading > p:last-child {
  max-width: 64ch;
  color: rgba(232, 242, 252, 0.84);
  font-size: 1.06rem;
}

.service-grid {
  --service-grid-gap: clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-areas:
    "featured compact-1"
    "accent compact-2";
  gap: var(--service-grid-gap);
  align-items: start;
  grid-auto-flow: dense;
}

.section-services .service-card {
  --service-card-scale: 1;
  --service-card-offset-y: 32px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 18px;
  min-width: 0;
  opacity: 0;
  transform: translate3d(0, var(--service-card-offset-y), 0) scale(var(--service-card-scale));
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  will-change: opacity, transform;
}

.section-services .service-card > div {
  padding: 12px 13px 14px;
}

.section-services .service-card-featured {
  --service-card-scale: 1.01;
  grid-area: featured;
  transform-origin: center;
  z-index: 1;
}

.section-services .service-card > img {
  width: 100%;
  display: block;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.section-services .service-card-featured > img {
  object-position: center center;
  aspect-ratio: 16 / 9;
}

.section-services .service-card-featured > div {
  padding: 11px 14px 13px;
}

.section-services .service-card-compact {
  width: 100%;
}

.section-services .service-grid > .service-card-compact:nth-of-type(2) {
  grid-area: compact-1;
}

.section-services .service-grid > .service-card-compact:nth-of-type(3) {
  grid-area: compact-2;
}

.section-services .service-grid > .service-card-accent {
  grid-area: accent;
}

.section-services .service-card.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(var(--service-card-scale));
  animation: serviceCardReveal 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.section-services .service-card.reveal-from-top {
  --service-card-offset-y: -32px;
}

.section-services .service-card-compact > div {
  padding: 12px 14px 14px;
}

.section-services .service-card-compact > img {
  aspect-ratio: 16 / 9;
}

.card-tag {
  color: var(--brand);
  margin: 0 0 8px;
  font-size: 0.68rem;
}

.service-card h3,
.timeline h3,
.feature-grid h3,
.case-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.2;
}

.service-card p {
  line-height: 1.55;
}

.service-card-compact p {
  line-height: 1.4;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(239, 224, 207, 0.9));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#metodo .timeline article {
  --method-step-offset-y: 18px;
  opacity: 0;
  transform: translate3d(0, var(--method-step-offset-y), 0);
  will-change: opacity, transform;
}

#metodo .timeline article.is-revealed {
  animation: methodStepReveal 820ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

#metodo .timeline article.reveal-from-top {
  --method-step-offset-y: -18px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  --feature-item-offset-y: 18px;
  padding: 24px;
  border-radius: 24px;
  opacity: 0;
  transform: translate3d(0, var(--feature-item-offset-y), 0);
  will-change: opacity, transform;
}

.feature-grid article.is-revealed {
  animation: featureItemReveal 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.feature-grid article.reveal-from-top {
  --feature-item-offset-y: -18px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.case-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 24px;
}

#casi .case-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
}

#casi .case-card.is-revealed {
  visibility: visible;
  pointer-events: auto;
  animation: featureItemReveal 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.case-card[data-card-link] {
  cursor: pointer;
}

.case-card[data-card-link]:focus-visible {
  outline: 3px solid rgba(24, 47, 86, 0.28);
  outline-offset: 4px;
}

.case-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card > div {
  padding: 22px;
}

.case-card-pregaudio > img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.case-card-pregaudio {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.case-card-pregaudio:hover,
.case-card-pregaudio:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(101, 181, 255, 0.58);
  box-shadow:
    0 24px 48px rgba(10, 31, 56, 0.16),
    0 12px 28px rgba(101, 181, 255, 0.24);
}

.case-card-pregaudio:hover > img,
.case-card-pregaudio:focus-visible > img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(44px) scale(0.96);
  filter: blur(10px);
}

.callout.is-visible {
  visibility: visible;
  pointer-events: auto;
  animation: heroReveal 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 26px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-block {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
}

.footer-block.is-revealed {
  visibility: visible;
  pointer-events: auto;
  animation: featureItemReveal 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.footer-block {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-footer p {
  margin: 0;
}

.footer-block p + p {
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(var(--section-heading-offset-y)) scale(0.96);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes methodStepReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--method-step-offset-y), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes featureItemReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--feature-item-offset-y), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

@keyframes slowRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes serviceCardReveal {
  from {
    opacity: 0;
    transform: translate3d(0, var(--service-card-offset-y), 0) scale(var(--service-card-scale));
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(var(--service-card-scale));
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-services .service-card {
    transition: none;
    animation: none;
    will-change: auto;
  }

  .section-services .service-card.is-revealed {
    opacity: 1;
    transform: none;
  }

  #casi .case-card {
    animation: none;
    will-change: auto;
  }

  #casi .case-card.is-revealed {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .callout,
  .footer-block {
    animation: none;
    will-change: auto;
  }

  .callout.is-visible,
  .footer-block.is-revealed {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    filter: none;
  }
}

@keyframes driftLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(28px, -18px, 0);
  }
}

@keyframes driftRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-24px, 20px, 0);
  }
}

@media (max-width: 1100px) {
  .intro-strip {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .timeline,
  .feature-grid,
  .callout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "featured featured"
      "compact-1 compact-2"
      "accent accent";
  }

  .service-card-featured {
    transform: none;
  }

  .service-card-compact {
    grid-area: auto;
  }

  .timeline,
  .feature-grid {
    display: grid;
  }

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

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

  .callout,
  .site-footer {
    display: grid;
  }

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

  .section-services .section-heading {
    padding: 26px 28px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    margin-left: 0;
  }

  .hero {
    padding: 40px 0 84px;
    margin-bottom: -20px;
    min-height: calc(100vh - 80px);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero-line-primary {
    margin-bottom: 0.24em;
  }

  .hero-line-secondary {
    display: block;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-rings {
    width: min(100vw, 620px);
    height: min(100vw, 620px);
  }

  .section {
    padding: 46px 0;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 76px;
    padding: 22px;
  }

  .intro-strip-copy > p:last-child {
    max-width: none;
  }

  .intro-strip-media img {
    min-height: 220px;
  }

  .section-dark {
    padding: 46px 18px;
    border-radius: 28px;
  }

  #metodo {
    padding-top: 30px;
  }

  .service-grid,
  .case-grid,
  .timeline,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-areas: none;
  }

  .section-services {
    padding-top: 46px;
  }

  .callout {
    padding: 24px;
  }

  .section-services .section-heading {
    padding: 22px;
    border-radius: 24px;
  }

  .service-card > img {
    aspect-ratio: 16 / 10;
  }

  .service-card-featured {
    grid-area: auto;
  }

  .service-card-featured > img {
    aspect-ratio: 16 / 10;
  }

  .service-card-compact {
    grid-area: auto;
  }

  .service-card-compact > img {
    aspect-ratio: 16 / 10;
  }
}
