@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://www.runia.ar/_next/static/media/26d0ba92e140f0dc-s.p.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("https://www.runia.ar/_next/static/media/bb3ef058b751a6ad-s.p.woff2") format("woff2");
}

:root {
  --bg: #f7f4ef;
  --paper: #fffdf9;
  --ink: #1b1916;
  --muted: #6f6960;
  --line: #ded8ce;
  --soft: #eee8de;
  --dark: #101311;
  --dark-soft: #1a1e1b;
  --orange: #ed9a26;
  --orange-soft: rgba(237, 154, 38, 0.18);
  --container: 1180px;
  --easing-premium: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  background: var(--bg);
  scroll-padding-top: 6rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-ticker-track,
  .hero::before,
  .title-accent-main::after,
  .title-mark::after,
  .runia-card-line,
  .landing-ui form span,
  .website-ui nav span,
  .website-ui div span,
  .pipeline span,
  .bars span,
  .speed-section::before,
  .delivery-section::before,
  .delivery-section::after,
  .runia-portfolio::before,
  .runia-step::before {
    animation: none;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 12%, rgba(237, 154, 38, 0.045), transparent 28rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 38rem);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  --spot-x: 50%;
  --spot-y: 24%;
  --spot-opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(34rem 34rem at var(--spot-x) var(--spot-y), rgba(237, 154, 38, calc(var(--spot-opacity) * 0.16)), transparent 74%),
    radial-gradient(26rem 26rem at calc(var(--spot-x) - 18%) calc(var(--spot-y) + 16%), rgba(27, 25, 22, calc(var(--spot-opacity) * 0.045)), transparent 76%);
  transition: opacity 420ms var(--easing-premium);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.footer {
  position: relative;
  z-index: 1;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  pointer-events: none;
  transition: top 420ms ease, left 420ms ease, right 420ms ease, padding 420ms ease;
}

.header.is-scrolled {
  top: 1rem;
  left: 1rem;
  right: 1rem;
}

.nav {
  max-width: 1400px;
  height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: height 420ms ease, max-width 420ms ease, border-color 420ms ease, border-radius 420ms ease, background-color 420ms ease, box-shadow 420ms ease, backdrop-filter 420ms ease;
}

.header.is-scrolled .nav {
  max-width: 1200px;
  height: 3.5rem;
  border-color: rgba(27, 25, 22, 0.1);
  border-radius: 1rem;
  background: rgba(247, 244, 239, 0.8);
  box-shadow: 0 18px 50px rgba(27, 25, 22, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 7rem;
  filter: brightness(0);
  transition: width 420ms ease;
}

.header.is-scrolled .brand img {
  width: 5.9rem;
}

.brand span {
  color: rgba(27, 25, 22, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  transition: font-size 420ms ease;
}

.header.is-scrolled .brand span {
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  position: relative;
  padding: 0.62rem 0.78rem;
  color: rgba(27, 25, 22, 0.64);
  font-size: 0.94rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.36rem;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(27, 25, 22, 0.035);
  transform: translateY(-1px);
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.button {
  min-height: 3.35rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after {
  content: "→";
  margin-left: 0.62rem;
  font-weight: 500;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.button:hover {
  box-shadow: 0 10px 28px rgba(27, 25, 22, 0.08);
  transform: translateY(-1px);
}

.button:hover::after {
  transform: translateX(0.18rem);
}

.nav-button {
  min-height: 2.35rem;
  padding-inline: 1.15rem;
  font-size: 0.86rem;
  transition: min-height 420ms ease, padding 420ms ease, font-size 420ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header.is-scrolled .nav-button {
  min-height: 2rem;
  padding-inline: 1rem;
  font-size: 0.78rem;
}

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

.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-soft {
  background: rgba(255, 253, 249, 0.74);
  color: var(--ink);
  border-color: rgba(27, 25, 22, 0.14);
}

.button-whatsapp {
  background: #0c7b4c;
  color: #f7f4ef;
  border-color: rgba(12, 123, 76, 0.88);
  box-shadow: 0 12px 28px rgba(12, 123, 76, 0.16);
}

.button-whatsapp:hover {
  background: #096a41;
  border-color: rgba(9, 106, 65, 0.95);
}

.hero {
  min-height: min(860px, calc(100svh - 4.75rem));
  padding: 6.85rem 0 5.5rem;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27, 25, 22, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 25, 22, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
  animation: heroGridDrift 28s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.eyebrow {
  margin-bottom: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 1px;
  background: rgba(27, 25, 22, 0.3);
}

.speed-badge {
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(237, 154, 38, 0.34);
  border-radius: 999px;
  background: rgba(237, 154, 38, 0.1);
  box-shadow: 0 0 36px rgba(237, 154, 38, 0.14);
  color: #8d5d19;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  font-size: clamp(3.35rem, 7vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 560;
  text-wrap: balance;
}

.hero-title {
  max-width: 840px;
  font-size: clamp(3.05rem, 5.55vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 420;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.mobile-break {
  display: none;
}

.title-product {
  width: fit-content;
  color: var(--ink);
  font-size: 1.03em;
  font-weight: 470;
  position: relative;
}

.title-light,
.title-soft {
  color: rgba(27, 25, 22, 0.92);
  font-weight: 360;
}

.title-soft {
  color: rgba(27, 25, 22, 0.7);
  font-weight: 330;
}

.title-strong {
  color: var(--ink);
  font-size: 1.04em;
  font-weight: 680;
}

.title-inline {
  margin-top: 0.02em;
}

.title-accent {
  width: fit-content;
  margin-top: -0.02em;
  color: #df7f24;
  font-size: 1.48em;
  font-weight: 430;
  line-height: 0.86;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.hero-title .title-accent-main,
.hero-title .title-accent-comma,
.hero-title .title-accent-note {
  display: inline-block;
}

.title-accent-main {
  position: relative;
}

.title-accent-comma {
  margin-left: 0.015em;
  color: #df7f24;
  font-size: 0.92em;
  line-height: 0.82;
}

.title-accent-note {
  max-width: 18rem;
  margin-left: 0.24em;
  padding-top: 0.36em;
  color: var(--muted);
  font-size: 0.38em;
  line-height: 0.96;
  font-weight: 360;
  letter-spacing: 0;
  text-wrap: balance;
}

.title-accent-main::after,
.title-mark::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.06em;
  bottom: -0.16em;
  height: 0.05em;
  min-height: 2px;
  background: linear-gradient(90deg, transparent, rgba(237, 154, 38, 0.72), transparent);
  opacity: 0.42;
  transform: scaleX(0.42);
  transform-origin: left;
  animation: accentLineSweep 4.8s var(--easing-premium) infinite;
}

.title-mark {
  display: inline-block;
  color: #df7f24;
  font-size: 1.04em;
  font-weight: 380;
  line-height: 0.86;
  position: relative;
}

.title-mark::after {
  bottom: -0.24em;
  opacity: 0.28;
  animation-duration: 5.6s;
}

.section-heading h2 .title-mark,
.final-panel h2 .title-mark,
.runia-panel h2 .title-mark {
  font-size: 1.12em;
  font-weight: 370;
}

.lead {
  max-width: 650px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.promise-card {
  max-width: 650px;
  margin-top: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 55px rgba(27, 25, 22, 0.07);
}

.promise-card strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.promise-card p {
  margin-top: 0.48rem;
  color: var(--muted);
}

.promise-card small,
.final-panel small {
  display: block;
  margin-top: 0.75rem;
  color: rgba(27, 25, 22, 0.52);
  font-size: 0.78rem;
}

.hero-note {
  max-width: 620px;
  margin-top: 1.25rem;
  color: rgba(27, 25, 22, 0.58);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.typewriter {
  color: #b8731b;
  font-size: 1.18em;
  font-weight: 430;
}

.typewriter::after {
  content: "";
  width: 1px;
  height: 1em;
  margin-left: 0.12rem;
  display: inline-block;
  vertical-align: -0.12em;
  background: rgba(184, 115, 27, 0.55);
}

.proof-strip {
  padding: 0 0 6.5rem;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.proof-grid article {
  position: relative;
  min-height: 185px;
  padding: 1.35rem;
  background: rgba(255, 253, 249, 0.72);
  display: grid;
  align-content: space-between;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.proof-grid article::after {
  content: attr(data-proof-icon);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  color: rgba(184, 115, 27, 0.72);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 220ms ease, border-color 220ms ease;
}

.proof-grid article:hover {
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 14px 36px rgba(27, 25, 22, 0.055);
}

.proof-grid article:hover::after {
  border-color: rgba(237, 154, 38, 0.34);
  transform: translateY(-2px);
}

.proof-grid strong {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 420;
}

.proof-grid small {
  color: var(--orange);
  font-size: 0.48em;
  font-weight: 430;
}

.proof-grid .proof-word {
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.proof-grid p {
  max-width: 14rem;
  color: var(--muted);
  line-height: 1.5;
}

.runia-card-swap {
  width: min(100%, 560px);
  height: 500px;
  position: relative;
  perspective: 900px;
  overflow: visible;
  transform-style: preserve-3d;
  transform-origin: bottom right;
  justify-self: end;
  align-self: start;
  margin-top: 3rem;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  color: rgba(27, 25, 22, 0.26);
  mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.hero-ticker-track {
  width: max-content;
  display: flex;
  animation: runiaTicker 34s linear infinite;
}

.hero-ticker-group {
  display: flex;
  align-items: baseline;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding-right: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.82rem;
  white-space: nowrap;
}

.hero-ticker-item strong {
  color: rgba(27, 25, 22, 0.34);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 420;
}

.hero-ticker-item span {
  color: rgba(27, 25, 22, 0.32);
  font-size: 0.86rem;
}

@keyframes runiaTicker {
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes heroGridDrift {
  to {
    background-position: 86px 86px, 86px 86px;
  }
}

@keyframes accentLineSweep {
  0%,
  18% {
    transform: scaleX(0.28);
    opacity: 0.24;
  }

  48% {
    transform: scaleX(1);
    opacity: 0.56;
  }

  100% {
    transform: scaleX(0.28);
    opacity: 0.24;
  }
}

@keyframes runiaBars {
  to {
    background-position: 360px 0, 0 53px;
  }
}

@keyframes runiaSoftPulse {
  0%,
  100% {
    opacity: var(--pulse-min, 0.18);
  }

  50% {
    opacity: var(--pulse-max, 0.34);
  }
}

.runia-swap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 390px;
  padding: 0;
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(16, 19, 17, 0.98), rgba(21, 24, 22, 0.96));
  box-shadow: 0 36px 90px rgba(27, 25, 22, 0.22);
  color: var(--bg);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1600ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease, filter 900ms ease, border-color 240ms ease;
  will-change: transform, opacity;
}

.runia-swap-card::after {
  content: "";
  position: absolute;
  inset: 2.7rem 1px 1px;
  border-radius: 0 0 10px 10px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 239, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.runia-swap-card.is-exiting {
  opacity: 0;
}

.runia-card-swap:hover .runia-swap-card {
  border-color: rgba(247, 244, 239, 0.22);
}

.runia-card-top,
.runia-card-ui {
  position: relative;
  z-index: 1;
}

.runia-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.7rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(247, 244, 239, 0.12);
  background: rgba(247, 244, 239, 0.035);
}

.runia-card-top small {
  margin-left: auto;
  color: rgba(247, 244, 239, 0.5);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.runia-card-tabs {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.runia-card-tabs span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.42);
}

.runia-card-badge {
  width: fit-content;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(247, 244, 239, 0.16);
  border-radius: 5px;
  background: rgba(247, 244, 239, 0.07);
  color: rgba(247, 244, 239, 0.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
}

.runia-card-ui {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: rgba(247, 244, 239, 0.055);
  padding: 1.1rem;
}

.runia-card-line {
  display: block;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.78);
  --pulse-min: 0.48;
  --pulse-max: 0.86;
  animation: runiaSoftPulse 3.8s ease-in-out infinite;
}

.runia-card-line.wide {
  width: 76%;
}

.runia-card-line.medium {
  width: 52%;
  margin-top: 0.7rem;
  opacity: 0.5;
}

.runia-card-line.short {
  width: 38%;
  margin-top: 0.7rem;
  opacity: 0.5;
}

.landing-ui {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9.5rem;
  gap: 1rem;
  align-items: end;
}

.landing-ui button,
.funnel-ui button {
  margin-top: 1.3rem;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.landing-ui form {
  padding: 0.8rem;
  border-radius: 6px;
  background: rgba(247, 244, 239, 0.08);
  display: grid;
  gap: 0.6rem;
}

.landing-ui form span,
.website-ui nav span,
.website-ui div span,
.pipeline span,
.bars span {
  display: block;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.18);
  animation: runiaSoftPulse 4.6s ease-in-out infinite;
}

.landing-ui form span:nth-child(2),
.website-ui nav span:nth-child(2),
.website-ui div span:nth-child(2),
.pipeline span:nth-child(2),
.bars span:nth-child(2) {
  animation-delay: 620ms;
}

.website-ui nav span:nth-child(3),
.website-ui div span:nth-child(3),
.pipeline span:nth-child(3),
.bars span:nth-child(3) {
  animation-delay: 1180ms;
}

.landing-ui form span {
  height: 0.7rem;
}

.landing-ui form strong {
  padding: 0.55rem;
  border-radius: 4px;
  background: rgba(247, 244, 239, 0.12);
  color: rgba(247, 244, 239, 0.82);
  font-size: 0.75rem;
  text-align: center;
}

.website-ui {
  display: grid;
  gap: 1rem;
}

.website-ui nav,
.website-ui div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.website-ui nav span {
  height: 0.45rem;
}

.website-ui section {
  min-height: 8.5rem;
  padding: 1rem;
  border-radius: 6px;
  background: rgba(247, 244, 239, 0.075);
  display: grid;
  align-content: center;
}

.website-ui div span {
  height: 4rem;
  border-radius: 6px;
}

.funnel-ui {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
}

.runia-card-metric {
  padding: 1rem;
  border-radius: 6px;
  background: rgba(247, 244, 239, 0.075);
}

.runia-card-metric strong {
  display: block;
  font-size: 3.6rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.runia-card-metric span {
  color: rgba(247, 244, 239, 0.52);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.funnel-ui ol {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.funnel-ui li {
  height: 3rem;
  border-radius: 6px;
  background: rgba(247, 244, 239, 0.09);
}

.dashboard-ui {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
}

.pipeline,
.bars {
  display: grid;
  gap: 0.7rem;
}

.pipeline span {
  height: 3.3rem;
  border-radius: 6px;
}

.bars {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.bars span {
  height: 4.5rem;
  border-radius: 6px 6px 2px 2px;
}

.bars span:nth-child(2) {
  height: 6.2rem;
  background: rgba(247, 244, 239, 0.24);
}

.automation-ui {
  display: grid;
  grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
  gap: 0.65rem;
  align-items: center;
}

.automation-ui div {
  min-height: 7.5rem;
  border: 1px solid rgba(247, 244, 239, 0.1);
  border-radius: 6px;
  background: rgba(247, 244, 239, 0.07);
  display: grid;
  place-items: center;
  color: rgba(247, 244, 239, 0.78);
  font-weight: 650;
}

.automation-ui span {
  height: 1px;
  background: rgba(247, 244, 239, 0.28);
}

.web-preview {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.preview-window {
  width: min(100%, 520px);
  border: 1px solid rgba(27, 25, 22, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 34px 90px rgba(27, 25, 22, 0.14);
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.web-preview:hover .preview-window {
  border-color: rgba(237, 154, 38, 0.26);
  box-shadow: 0 38px 90px rgba(27, 25, 22, 0.16);
}

.window-bar {
  height: 3.25rem;
  padding: 0 1.1rem;
  border-bottom: 1px solid rgba(27, 25, 22, 0.1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.window-bar span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(27, 25, 22, 0.18);
}

.window-bar strong {
  margin-left: auto;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.preview-hero {
  margin: 1.25rem;
  min-height: 190px;
  padding: 1.35rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(16, 19, 17, 0.96), rgba(16, 19, 17, 0.82)),
    radial-gradient(circle at 85% 20%, rgba(237, 154, 38, 0.35), transparent 16rem);
  color: var(--bg);
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.preview-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 35%;
  height: 10rem;
  border-radius: 999px;
  background: rgba(237, 154, 38, 0.2);
  filter: blur(28px);
}

.preview-hero div,
.preview-hero a {
  position: relative;
  z-index: 1;
}

.preview-hero small {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(247, 244, 239, 0.56);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.preview-hero b {
  display: block;
  max-width: 16rem;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 560;
}

.preview-hero a {
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-blocks {
  margin: 0 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.preview-blocks span {
  height: 7rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--paper), rgba(247, 244, 239, 0.7));
}

.preview-lead {
  margin: 0 1.25rem 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(237, 154, 38, 0.32);
  border-radius: 18px;
  background: var(--orange-soft);
}

.preview-lead p {
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-lead strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.preview-lead em {
  display: block;
  margin-top: 0.55rem;
  color: #92601a;
  font-size: 0.82rem;
  font-style: normal;
}

.preview-flow {
  margin: 0 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.preview-flow div {
  padding: 0.8rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 14px;
  background: rgba(247, 244, 239, 0.72);
  position: relative;
}

.preview-flow div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.52rem;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid rgba(27, 25, 22, 0.38);
  border-right: 1px solid rgba(27, 25, 22, 0.38);
  transform: translateY(-50%) rotate(45deg);
}

.preview-flow span {
  display: block;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
}

.preview-flow strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.84rem;
  font-weight: 650;
}

.floating-card {
  position: absolute;
  width: 210px;
  padding: 1rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 45px rgba(27, 25, 22, 0.12);
}

.floating-card span {
  color: var(--orange);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
}

.floating-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 600;
}

.card-one {
  top: 1.25rem;
  left: -1.5rem;
}

.card-two {
  right: -1rem;
  bottom: 2rem;
}

.section {
  padding: 6rem 0;
  scroll-margin-top: 6rem;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(42rem 24rem at 12% 22%, rgba(237, 154, 38, 0.035), transparent 72%),
    radial-gradient(36rem 22rem at 84% 76%, rgba(27, 25, 22, 0.025), transparent 70%);
  transform: translate3d(0, var(--section-shift, 0px), 0);
  transition: transform 220ms linear;
}

.speed-section {
  padding: 6.5rem 0;
  background: var(--dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.speed-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(247, 244, 239, 0.06) 18% 18.08%, transparent 18.08% 100%),
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(247, 244, 239, 0.035) 52px 53px);
  background-size: 360px 100%, 100% 53px;
  animation: runiaBars 18s linear infinite;
}

.speed-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}

.speed-panel::before {
  display: none;
}

.speed-copy,
.speed-cards {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.speed-copy .eyebrow {
  color: rgba(247, 244, 239, 0.58);
}

.speed-copy .eyebrow span {
  background: rgba(247, 244, 239, 0.32);
}

.speed-copy h2 {
  font-size: clamp(5rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.speed-copy p {
  max-width: 620px;
  margin-top: 2rem;
  color: rgba(247, 244, 239, 0.68);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.speed-cards {
  display: grid;
  gap: 0.7rem;
}

.speed-cards article {
  padding: 1rem;
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 0;
  background: rgba(247, 244, 239, 0.055);
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.speed-cards article:hover {
  border-color: rgba(237, 154, 38, 0.32);
  background: rgba(247, 244, 239, 0.085);
}

.speed-cards span {
  color: var(--orange);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.speed-cards strong {
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 560;
}

.section-heading {
  max-width: 880px;
}

.section-heading.center {
  margin-inline: 0;
  text-align: left;
}

.section-heading.center .eyebrow {
  justify-content: flex-start;
}

h2 {
  font-size: clamp(2.5rem, 5.2vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 390;
  text-wrap: balance;
}

.split-title {
  max-width: 980px;
}

.split-title > span {
  display: block;
}

.split-title .title-main {
  color: var(--ink);
  font-size: 1.04em;
  font-weight: 390;
}

.split-title .title-muted {
  color: rgba(27, 25, 22, 0.54);
  font-size: 0.88em;
  font-weight: 310;
}

.speed-copy .split-title .title-main,
.runia-panel .split-title .title-main,
.final-panel .split-title .title-main {
  color: var(--bg);
}

.speed-copy .split-title .title-muted,
.runia-panel .split-title .title-muted,
.final-panel .split-title .title-muted {
  color: rgba(247, 244, 239, 0.52);
}

.speed-copy .split-title .title-mark,
.runia-panel .split-title .title-mark,
.final-panel .split-title .title-mark {
  color: var(--orange);
}

.section-heading p:not(.eyebrow),
.runia-panel p,
.final-panel p {
  max-width: 650px;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 8rem;
}

.problem-list {
  display: grid;
  gap: 1rem;
}

.problem-list article {
  min-height: 13rem;
  padding: 1.45rem;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.72);
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  display: grid;
  grid-template-rows: 1.5rem minmax(4.4rem, auto) 1fr;
}

.problem-list article:hover,
.system-board article:hover,
.timeline li:hover,
.plans article:hover {
  border-color: rgba(237, 154, 38, 0.34);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 14px 36px rgba(27, 25, 22, 0.06);
}

.motion-surface {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color;
}

.motion-surface:hover {
  border-color: rgba(237, 154, 38, 0.34);
  box-shadow: 0 18px 42px rgba(27, 25, 22, 0.07);
}

.problem-list span,
.timeline span,
.plans span,
.system-board small {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.system-board small {
  color: #b8731b;
}

.problem-list h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 560;
  align-self: end;
  text-wrap: balance;
}

.problem-list p {
  margin-top: 1rem;
  color: var(--muted);
  align-self: start;
}

.delivery-section {
  padding: 7rem 0;
  background: var(--dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.delivery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 239, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: runiaGridDrift 24s linear infinite;
}

.delivery-section::after {
  display: none;
}

.delivery-section:has(+ .runia-portfolio)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  display: block;
  height: 34rem;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(circle at 58% 100%, rgba(237, 154, 38, 0.11), transparent 34rem);
}

.delivery-wrap {
  position: relative;
}

.delivery-heading {
  max-width: 860px;
}

.delivery-heading .eyebrow,
.delivery-heading p,
.delivery-statement p {
  color: rgba(247, 244, 239, 0.64);
}

.delivery-heading .eyebrow span {
  background: rgba(247, 244, 239, 0.32);
}

.delivery-heading .split-title .title-main {
  color: var(--bg);
}

.delivery-heading .split-title .title-muted {
  margin-top: 0.18rem;
  color: var(--bg);
  font-size: 1em;
}

.delivery-heading .split-title .title-mark {
  color: var(--orange);
  font-size: 1.2em;
  line-height: 0.92;
}

.delivery-heading p {
  max-width: 650px;
  margin-top: 1.75rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.delivery-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(247, 244, 239, 0.14);
  background: rgba(247, 244, 239, 0.14);
}

.delivery-card {
  --step-progress: 0%;
  position: relative;
  min-height: 312px;
  padding: 1.45rem;
  background: rgba(16, 19, 17, 0.9);
  display: grid;
  grid-template-rows: 3.45rem 5.85rem 1fr;
  overflow: hidden;
  transition: background-color 280ms ease, box-shadow 280ms ease;
}

.delivery-card::before,
.delivery-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.delivery-card::before {
  left: 1.35rem;
  right: 1.35rem;
  top: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(237, 154, 38, 0.58), rgba(237, 154, 38, 0.08));
  transform: scaleX(var(--step-progress));
  transform-origin: left;
  transition: transform 420ms var(--easing-premium);
}

.delivery-card::after {
  left: 1.35rem;
  bottom: 0.9rem;
  width: 0.38rem;
  height: 0.38rem;
  background: rgba(247, 244, 239, 0.24);
  transition: background-color 220ms ease, transform 220ms ease;
}

.delivery-card:hover {
  background-color: rgba(20, 24, 21, 0.96);
  box-shadow: none;
}

.delivery-card.is-active {
  background: rgba(23, 27, 24, 0.98);
}

.delivery-card.is-active::after {
  background: var(--orange);
  transform: scale(1.28);
}

.delivery-card span {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.delivery-card h3 {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 4.05rem;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 430;
  text-wrap: balance;
}

.delivery-card p {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 18rem;
  margin-top: 0.95rem;
  padding-bottom: 1.45rem;
  color: rgba(247, 244, 239, 0.62);
  line-height: 1.62;
}

.delivery-card + .delivery-card {
  box-shadow: -1px 0 0 rgba(237, 154, 38, 0.08);
}

.delivery-statement {
  margin-top: 1px;
  padding: clamp(1.45rem, 4vw, 2.6rem);
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-top: 0;
  background: rgba(12, 15, 13, 0.96);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.delivery-statement-copy {
  min-width: 0;
}

.delivery-statement .delivery-kicker {
  margin: 0 0 1.1rem;
  color: var(--orange);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.delivery-statement h3 {
  max-width: 720px;
  color: var(--bg);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 390;
  text-wrap: balance;
}

.delivery-statement p {
  grid-column: 1;
  max-width: 620px;
  margin-top: 1.15rem;
  font-size: 1.06rem;
  line-height: 1.7;
}

.delivery-statement-copy > p:not(.delivery-kicker) {
  transition: opacity 260ms ease;
}

.delivery-progress {
  width: min(100%, 520px);
  height: 1px;
  margin-top: 1.8rem;
  background: rgba(247, 244, 239, 0.14);
  overflow: hidden;
}

.delivery-progress span {
  display: block;
  width: var(--delivery-progress, 25%);
  height: 100%;
  background: var(--orange);
  transition: width 480ms var(--easing-premium);
}

.delivery-status {
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid rgba(247, 244, 239, 0.13);
  background: rgba(247, 244, 239, 0.035);
  display: grid;
  align-content: space-between;
  gap: 1.4rem;
}

.delivery-status-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 244, 239, 0.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.delivery-status-head strong {
  color: var(--orange);
  font-weight: 500;
}

.delivery-status ul {
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
}

.delivery-status li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 2.25rem;
  color: rgba(247, 244, 239, 0.48);
  font-size: 0.92rem;
  line-height: 1.35;
}

.delivery-status li::before {
  content: "·";
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(247, 244, 239, 0.28);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0.88rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

.delivery-status li::after {
  content: "";
  position: absolute;
  left: 0.48rem;
  top: 1.6rem;
  bottom: -0.62rem;
  width: 1px;
  background: rgba(247, 244, 239, 0.12);
}

.delivery-status li:last-child::after {
  display: none;
}

.delivery-status li.is-complete {
  color: rgba(247, 244, 239, 0.82);
}

.delivery-status li.is-complete::before {
  content: "✓";
  border-color: var(--orange);
  background: var(--orange);
  color: var(--dark);
  font-weight: 700;
}

.delivery-status li.is-complete::after {
  background: rgba(237, 154, 38, 0.44);
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-top: 1.35rem;
}

.delivery-actions .button-soft {
  background: rgba(247, 244, 239, 0.055);
  color: var(--bg);
  border-color: rgba(247, 244, 239, 0.18);
}

.system-board {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.system-board article {
  position: relative;
  min-height: 300px;
  padding: 1.45rem;
  background: rgba(255, 253, 249, 0.82);
  display: grid;
  grid-template-rows: 1.6rem minmax(6.4rem, auto) 1fr;
  align-content: stretch;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.system-board article::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 1.35rem;
  height: 1px;
  background: rgba(237, 154, 38, 0.24);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.system-board article:hover::before {
  transform: scaleX(1);
}

.system-board h3 {
  align-self: end;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 560;
  text-wrap: balance;
}

.system-board p {
  align-self: start;
  max-width: 17rem;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.results {
  padding-top: 0;
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--line);
}

.result-strip article {
  position: relative;
  min-height: 210px;
  padding: 1.45rem;
  background: rgba(255, 253, 249, 0.78);
  display: grid;
  align-content: start;
}

.result-strip article::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.45rem;
  width: 2.25rem;
  height: 1px;
  background: rgba(237, 154, 38, 0.34);
}

.metric-number {
  min-height: 6.2rem;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.result-strip span,
.result-strip small {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 560;
}

.result-strip .metric-word span {
  font-size: clamp(2.15rem, 4.8vw, 3.85rem);
  letter-spacing: 0;
  font-weight: 430;
}

.result-strip small {
  margin-bottom: 0.08em;
  margin-left: 0.2rem;
  color: var(--orange);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.result-strip p {
  max-width: 15rem;
  margin-top: 1.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.runia-step {
  padding: 6.5rem 0;
  background: var(--dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.runia-step::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 239, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: runiaGridDrift 24s linear infinite;
}

.runia-panel {
  padding: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  position: relative;
  overflow: hidden;
}

.runia-panel::before {
  content: "";
  position: absolute;
  top: clamp(0.25rem, 2vw, 1.75rem);
  right: clamp(0.75rem, 7vw, 6rem);
  width: clamp(22rem, 34vw, 34rem);
  aspect-ratio: 3 / 1;
  pointer-events: none;
  opacity: 0.06;
  background: url("https://www.runia.ar/images/runialogo.png") center / contain no-repeat;
  filter: invert(1);
}

.runia-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 239, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black 28%, transparent 92%);
}

@keyframes runiaGridDrift {
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

.runia-panel > * {
  position: relative;
  z-index: 1;
}

.runia-panel .eyebrow,
.runia-panel p {
  color: rgba(247, 244, 239, 0.62);
}

.runia-panel .eyebrow span {
  background: rgba(247, 244, 239, 0.32);
}

.runia-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  border: 0;
  background: transparent;
}

.runia-tools span {
  min-height: 0;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(247, 244, 239, 0.16);
  border-radius: 0;
  background: rgba(247, 244, 239, 0.025);
  color: rgba(247, 244, 239, 0.78);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.runia-tools span::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  background: var(--orange);
  flex: 0 0 auto;
}

.runia-tools span:hover {
  background: rgba(247, 244, 239, 0.1);
  color: var(--bg);
}

.process {
  background: #f2ede5;
  border-top: 1px solid rgba(27, 25, 22, 0.07);
  border-bottom: 1px solid rgba(27, 25, 22, 0.07);
}

.timeline {
  margin-top: 4.4rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(27, 25, 22, 0.1);
  background: rgba(27, 25, 22, 0.1);
}

.timeline li {
  min-height: 238px;
  padding: 1.45rem;
  border-radius: 0;
  border: 0;
  background: rgba(247, 244, 239, 0.78);
  display: grid;
  grid-template-rows: 1.6rem minmax(6.6rem, auto);
  align-content: stretch;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.timeline h3 {
  align-self: end;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 430;
  text-wrap: balance;
}

.timeline p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.comparison {
  padding-top: 6.2rem;
}

.compare-grid {
  margin-top: 4.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(27, 25, 22, 0.1);
  background: rgba(27, 25, 22, 0.1);
}

.compare-grid article {
  min-height: 390px;
  padding: clamp(1.45rem, 3vw, 2.25rem);
  border: 0;
  border-radius: 0;
  display: grid;
  align-content: space-between;
}

.compare-grid p {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.compare-runia p img {
  width: 6.8rem;
  filter: brightness(0);
  opacity: 0.78;
}

.compare-grid ul {
  list-style: none;
  display: grid;
  gap: 0;
}

.compare-grid li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(27, 25, 22, 0.09);
  border-radius: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.25rem);
  line-height: 1.25;
}

.compare-muted {
  background: rgba(255, 253, 249, 0.54);
}

.compare-muted li {
  background: transparent;
  color: rgba(27, 25, 22, 0.54);
}

.compare-runia {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}


.compare-runia li {
  background: transparent;
  color: var(--ink);
}

.compare-runia li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.72rem;
  display: inline-block;
  background: var(--orange);
  vertical-align: 0.05rem;
}

.plans {
  margin-top: 4.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(27, 25, 22, 0.1);
  background: rgba(27, 25, 22, 0.1);
}

.plans article {
  min-height: 460px;
  padding: 1.45rem 1.55rem 1.55rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 249, 0.76);
  display: grid;
  grid-template-rows: 1.5rem minmax(6.3rem, auto) minmax(5.6rem, auto) 1fr auto;
  align-content: start;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.plans .featured {
  background: rgba(255, 253, 249, 0.92);
  box-shadow: inset 0 3px 0 var(--orange);
}

.plans h3 {
  margin-top: 0;
  align-self: end;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 430;
  text-wrap: balance;
}

.plans p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.plans .plan-price {
  margin-top: 0.55rem;
  color: var(--orange);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1;
  font-weight: 430;
}

.plans ul {
  margin-top: 1.6rem;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.plans li {
  color: rgba(27, 25, 22, 0.74);
  font-size: 0.95rem;
  line-height: 1.38;
}

.plans li::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.55rem;
  border-radius: 0;
  display: inline-block;
  vertical-align: 0.08rem;
  background: var(--orange);
}

.plans .button {
  width: fit-content;
  min-height: 3.15rem;
  margin-top: 2.1rem;
  border-radius: 999px;
  justify-content: center;
  padding-inline: 1.35rem;
}

.runia-portfolio {
  position: relative;
  padding: clamp(5.6rem, 10vw, 8rem) 0;
  background: var(--dark);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.delivery-section + .runia-portfolio {
  margin-top: -1px;
  padding-top: clamp(4.8rem, 8vw, 6.8rem);
}

.runia-portfolio::before,
.runia-portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.runia-portfolio::before {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 239, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: runiaGridDrift 24s linear infinite;
}

.runia-portfolio::after {
  z-index: -1;
  top: -32rem;
  bottom: auto;
  height: 66rem;
  opacity: 0.46;
  background: radial-gradient(circle at 58% 58%, rgba(237, 154, 38, 0.12), transparent 38rem);
}

.runia-portfolio-compact {
  padding: clamp(4.8rem, 8vw, 6.5rem) 0;
}

.runia-portfolio-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.runia-portfolio-copy {
  max-width: 680px;
}

.runia-portfolio .eyebrow,
.runia-portfolio .eyebrow span {
  color: rgba(247, 244, 239, 0.62);
}

.runia-portfolio .eyebrow span {
  background: rgba(247, 244, 239, 0.35);
}

.runia-portfolio .split-title .title-main {
  color: var(--bg);
}

.runia-portfolio .split-title .title-muted {
  color: rgba(247, 244, 239, 0.52);
}

.runia-portfolio .split-title .title-mark {
  color: var(--orange);
}

.runia-portfolio-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 1.3rem;
  color: rgba(247, 244, 239, 0.66);
  font-size: 1.08rem;
  line-height: 1.72;
}

.runia-portfolio-copy .button {
  margin-top: 2rem;
}

.runia-portfolio-carousel-wrap {
  width: 100%;
  min-width: 0;
  height: 430px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.runia-portfolio-compact .runia-portfolio-carousel-wrap {
  height: 370px;
}

.runia-portfolio-carousel {
  --runia-portfolio-depth: 340px;
  width: 384px;
  aspect-ratio: 16 / 9;
  position: relative;
  transform-style: preserve-3d;
  animation: runia-portfolio-spin 26s linear infinite;
}

.runia-portfolio-carousel:hover {
  animation-play-state: paused;
}

.runia-portfolio-face {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.08), rgba(255, 253, 249, 0.02)),
    #211f1b;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(237, 154, 38, 0.08);
  overflow: hidden;
  backface-visibility: visible;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.runia-portfolio-face:hover,
.runia-portfolio-face:focus-visible {
  border-color: rgba(247, 244, 239, 0.32);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(237, 154, 38, 0.14);
  filter: saturate(1.04);
}

.runia-portfolio-face::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.74;
  background:
    linear-gradient(to top, rgba(27, 25, 22, 0.86), rgba(27, 25, 22, 0.14) 58%, rgba(27, 25, 22, 0.04)),
    radial-gradient(circle at 24% 18%, rgba(237, 154, 38, 0.18), transparent 12rem);
  z-index: 1;
  pointer-events: none;
}

.runia-portfolio-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.95) contrast(1.04);
}

.runia-portfolio-face p {
  position: absolute;
  left: 1rem;
  bottom: 0.95rem;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 4px;
  background: rgba(10, 12, 10, 0.66);
  color: rgba(247, 244, 239, 0.92);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.runia-portfolio-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: rgba(247, 244, 239, 0.42);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  visibility: hidden;
}

.runia-portfolio-face.is-image-missing img {
  display: none;
}

.runia-portfolio-face.is-image-missing .runia-portfolio-fallback {
  visibility: visible;
}

.runia-portfolio-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(var(--runia-portfolio-depth));
}

.runia-portfolio-face:nth-child(2) {
  transform: rotateY(72deg) translateZ(var(--runia-portfolio-depth));
}

.runia-portfolio-face:nth-child(3) {
  transform: rotateY(144deg) translateZ(var(--runia-portfolio-depth));
}

.runia-portfolio-face:nth-child(4) {
  transform: rotateY(216deg) translateZ(var(--runia-portfolio-depth));
}

.runia-portfolio-face:nth-child(5) {
  transform: rotateY(288deg) translateZ(var(--runia-portfolio-depth));
}

@keyframes runia-portfolio-spin {
  from {
    transform: rotateY(0deg);
  }

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

.final-cta {
  padding: 7rem 0;
  background: var(--dark);
  scroll-margin-top: 6rem;
}

.final-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.final-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(237, 154, 38, 0.42), transparent 72%);
  opacity: 0.75;
}

.final-panel > * {
  position: relative;
  z-index: 1;
}

.final-panel h2 {
  max-width: 980px;
  line-height: 0.98;
}

.final-panel h2 .title-muted {
  font-size: 0.62em;
  margin-top: 0.18rem;
}

.final-panel h2 .final-time {
  font-size: clamp(5.2rem, 9vw, 8rem);
  line-height: 0.82;
  vertical-align: -0.08em;
}

.final-panel h2 .final-time::after {
  display: none;
}

.final-panel h2 + p {
  margin-top: 1.55rem;
}

.final-panel .eyebrow,
.final-panel p {
  color: rgba(247, 244, 239, 0.65);
}

.final-panel .eyebrow span {
  background: rgba(247, 244, 239, 0.35);
}

.final-panel .button {
  margin-top: 2rem;
}

.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.final-actions .button {
  margin-top: 0;
}

.final-panel small {
  max-width: 46rem;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.48);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 14px)) scale(var(--reveal-scale, 0.992));
  filter: blur(var(--reveal-blur, 1.5px));
  transition:
    opacity var(--reveal-duration, 620ms) var(--easing-premium),
    transform var(--reveal-duration, 620ms) var(--easing-premium),
    filter var(--reveal-duration, 620ms) var(--easing-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal.is-visible.motion-surface {
  transform: translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.hero-copy > .reveal {
  --reveal-y: 10px;
  --reveal-duration: 700ms;
}

.runia-card-swap.reveal {
  --reveal-y: 18px;
  --reveal-scale: 0.984;
  --reveal-duration: 820ms;
}


.footer {
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 25, 22, 0.1);
  display: grid;
  grid-template-columns: 1fr auto minmax(260px, auto);
  gap: 1.5rem;
  align-items: center;
}

.footer a,
.footer p,
.footer .brand span,
.footer .brand small {
  color: rgba(27, 25, 22, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .speed-panel,
  .runia-panel {
    grid-template-columns: 1fr;
  }

  .web-preview,
  .runia-card-swap {
    min-height: 460px;
  }

  .runia-card-swap {
    justify-self: center;
    width: min(100%, 520px);
    height: 470px;
    margin-top: 0.5rem;
  }

  .runia-swap-card {
    width: 410px;
    height: 335px;
  }

  .sticky-heading {
    position: static;
  }

  .system-board,
  .delivery-grid,
  .result-strip,
  .compare-grid,
  .timeline,
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    gap: 2.35rem;
  }

  .nav-actions {
    margin-left: auto;
  }

  .runia-panel::after,
  .final-panel::after {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 5.25rem;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .header.is-scrolled {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .nav {
    height: 4.35rem;
    padding-inline: 0.75rem;
    gap: 0.75rem;
    position: relative;
  }

  .header.is-scrolled .nav {
    height: 3.25rem;
    border-radius: 0.9rem;
  }

  .brand img {
    width: 5.35rem;
  }

  .header.is-scrolled .brand img {
    width: 5.2rem;
  }

  .brand small {
    display: none;
  }

  .nav-actions .button-dark,
  .nav-button {
    display: none;
  }

  .nav-actions .button-whatsapp {
    display: inline-flex;
    min-height: 2.4rem;
    padding-inline: 0.9rem;
    font-size: 0.78rem;
  }

  .header.is-scrolled .nav-button {
    min-height: 2.05rem;
    padding-inline: 0.75rem;
  }

  .hero {
    min-height: auto;
    padding: 7.75rem 0 3.5rem;
  }

  h1,
  .hero-title {
    font-size: clamp(2.85rem, 11vw, 4rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2rem, 9.2vw, 2.6rem);
    line-height: 0.98;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .lead {
    font-size: 1.08rem;
    max-width: 22rem;
  }

  .hero-note {
    max-width: 20.5rem;
    font-size: 1.15rem;
  }

  .typewriter {
    display: inline-block;
  }

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

  .mobile-break {
    display: block;
  }

  .title-accent-note {
    max-width: 12rem;
    margin-left: 0.22em;
    padding-top: 0.32em;
    font-size: 0.32em;
  }

  .promise-card {
    padding: 0.95rem;
  }

  .proof-strip {
    padding-bottom: 4.8rem;
  }

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

  .proof-grid article {
    min-height: auto;
    gap: 1.5rem;
  }

  .speed-section {
    padding: 4.8rem 0;
  }

  .speed-panel {
    min-height: auto;
    overflow: hidden;
  }

  .speed-copy h2 {
    max-width: 100%;
    font-size: clamp(3.25rem, 16vw, 4.45rem);
    line-height: 0.92;
    letter-spacing: 0;
  }

  .speed-copy p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  .speed-copy .split-title {
    max-width: 100%;
  }

  .web-preview {
    min-height: auto;
    margin-top: 1rem;
  }

  .runia-card-swap {
    min-height: 0;
    height: 360px;
    margin-top: 0.75rem;
  }

  .hero-ticker {
    display: none;
  }

  .preview-window {
    border-radius: 22px;
  }

  .preview-hero b {
    font-size: 1.55rem;
  }

  .preview-hero::after {
    display: none;
  }

  .preview-flow div {
    min-width: 0;
  }

  .preview-flow strong {
    font-size: 0.76rem;
  }

  .preview-flow div:not(:last-child)::after {
    display: none;
  }

  .preview-blocks span {
    height: 4.5rem;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 4.8rem 0;
    scroll-margin-top: 5.25rem;
  }

  .system-board,
  .delivery-grid,
  .result-strip,
  .compare-grid,
  .runia-portfolio-inner,
  .timeline,
  .plans {
    grid-template-columns: 1fr;
  }

  .system-board article,
  .delivery-card,
  .result-strip article,
  .timeline li,
  .plans article {
    min-height: auto;
  }

  .delivery-section {
    padding: 4.8rem 0;
  }

  .delivery-grid {
    margin-top: 3rem;
  }

  .delivery-card {
    min-height: 308px;
    grid-template-rows: 3rem minmax(4.2rem, auto) 1fr;
    gap: 1.2rem;
  }

  .delivery-statement {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(247, 244, 239, 0.12);
  }

  .delivery-statement p,
  .delivery-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .delivery-actions,
  .delivery-actions .button {
    width: 100%;
    justify-content: center;
  }

  .runia-step,
  .final-cta {
    padding-bottom: 4.8rem;
  }

  .runia-portfolio {
    padding: 4.8rem 0;
  }

  .runia-portfolio-inner {
    gap: 3rem;
  }

  .runia-portfolio-carousel-wrap {
    height: 330px;
    perspective: 900px;
  }

  .runia-portfolio-carousel {
    --runia-portfolio-depth: 250px;
    width: min(72vw, 288px);
  }

  .runia-portfolio-face p {
    left: 0.8rem;
    bottom: 0.75rem;
    max-width: calc(100% - 1.6rem);
    font-size: 0.6rem;
  }

  .compare-grid article {
    min-height: auto;
    gap: 2rem;
  }

  .runia-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plans .button {
    width: 100%;
    margin-top: 2rem;
  }

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

  .footer p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .preview-flow {
    grid-template-columns: 1fr;
  }

  .preview-blocks {
    grid-template-columns: 1fr;
  }

  .runia-card-swap {
    height: 315px;
    margin-top: 0.75rem;
  }

  .runia-swap-card {
    width: min(82vw, 300px);
    height: 245px;
    padding: 0.9rem;
    border-radius: 8px;
  }

  .runia-card-ui {
    padding: 0.75rem;
    border-radius: 16px;
  }

  .landing-ui,
  .funnel-ui,
  .dashboard-ui,
  .automation-ui {
    grid-template-columns: 1fr;
  }

  .automation-ui span {
    display: none;
  }

  .website-ui div span,
  .automation-ui div {
    min-height: 0;
    height: 3.2rem;
  }

  .preview-flow div:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 390px) {
  .runia-portfolio-carousel-wrap {
    height: 290px;
  }

  .runia-portfolio-carousel {
    --runia-portfolio-depth: 210px;
    width: min(72vw, 240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .runia-portfolio-carousel {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 1px;
    animation: none;
    transform: none;
  }

  .runia-portfolio-carousel-wrap {
    height: auto;
    margin-top: 2rem;
    perspective: none;
    overflow-x: auto;
  }

  .runia-portfolio-face,
  .runia-portfolio-face:nth-child(n) {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 0;
    transform: none;
  }
}
