:root {
  --black: #0d0e10;
  --midnight: #0f1f3d;
  --brand-blue: #1c2864;
  --brand-blue-dark: #0e132d;
  --slate: #40454f;
  --muted: #6e7687;
  --smoke: #f1f3f6;
  --white: #ffffff;
  --coral: #ff7847;
  --coral-hot: #ff815b;
  --coral-deep: #d1143c;
  --orange: #f05023;
  --brand-secondary-text: #d1143c;
  --brand-navy-blob: #1c2864;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate);
  background: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Same animated login background as figho_V3 AnimatedBackground */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
}

.animated-bg__blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.animated-bg__blob--1 {
  width: 80vmax;
  height: 80vmax;
  top: -15%;
  left: -20%;
  opacity: 0.18;
  filter: blur(80px);
  background: radial-gradient(circle, var(--brand-secondary-text) 0%, transparent 70%);
  animation: orbit-1 8s ease-in-out infinite;
}

.animated-bg__blob--2 {
  width: 70vmax;
  height: 70vmax;
  bottom: -10%;
  right: -10%;
  opacity: 0.14;
  filter: blur(70px);
  background: radial-gradient(circle, #ff815b 0%, transparent 70%);
  animation: orbit-2 10s ease-in-out infinite;
}

.animated-bg__blob--3 {
  width: 65vmax;
  height: 65vmax;
  top: 5%;
  right: -15%;
  opacity: 0.12;
  filter: blur(75px);
  background: radial-gradient(circle, var(--brand-navy-blob) 0%, transparent 60%);
  animation: orbit-3 9s ease-in-out infinite;
}

.animated-bg__blob--4 {
  width: 60vmax;
  height: 60vmax;
  bottom: 0%;
  left: 5%;
  opacity: 0.1;
  filter: blur(60px);
  background: radial-gradient(circle, #ff815b 0%, var(--brand-secondary-text) 50%, transparent 70%);
  animation: orbit-4 11s ease-in-out infinite;
}

.animated-bg__blob--5 {
  width: 50vmax;
  height: 50vmax;
  top: 50%;
  left: 50%;
  opacity: 0.08;
  filter: blur(50px);
  background: radial-gradient(circle, var(--brand-navy-blob) 0%, transparent 70%);
  animation: orbit-5 7s ease-in-out infinite;
}

@keyframes orbit-1 {
  0% { transform: translate(0%, 0%) scale(1); }
  25% { transform: translate(15%, 20%) scale(1.08); }
  50% { transform: translate(8%, 30%) scale(0.92); }
  75% { transform: translate(-8%, 12%) scale(1.04); }
  100% { transform: translate(0%, 0%) scale(1); }
}

@keyframes orbit-2 {
  0% { transform: translate(0%, 0%) scale(1); }
  25% { transform: translate(-12%, -15%) scale(1.06); }
  50% { transform: translate(-20%, -8%) scale(0.94); }
  75% { transform: translate(-8%, -18%) scale(1.08); }
  100% { transform: translate(0%, 0%) scale(1); }
}

@keyframes orbit-3 {
  0% { transform: translate(0%, 0%) scale(1); }
  33% { transform: translate(-18%, 12%) scale(1.06); }
  66% { transform: translate(8%, 20%) scale(0.94); }
  100% { transform: translate(0%, 0%) scale(1); }
}

@keyframes orbit-4 {
  0% { transform: translate(0%, 0%) scale(1); }
  30% { transform: translate(20%, -12%) scale(1.08); }
  60% { transform: translate(12%, -20%) scale(0.92); }
  100% { transform: translate(0%, 0%) scale(1); }
}

@keyframes orbit-5 {
  0% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(-42%, -58%) scale(1.1); }
  50% { transform: translate(-58%, -44%) scale(0.9); }
  75% { transform: translate(-44%, -54%) scale(1.06); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@media (min-width: 768px) {
  .animated-bg__blob--1 {
    width: 60vmax;
    height: 60vmax;
    filter: blur(120px);
  }

  .animated-bg__blob--2 {
    width: 55vmax;
    height: 55vmax;
    filter: blur(100px);
  }

  .animated-bg__blob--3 {
    width: 50vmax;
    height: 50vmax;
    filter: blur(110px);
  }

  .animated-bg__blob--4 {
    width: 45vmax;
    height: 45vmax;
    filter: blur(90px);
  }

  .animated-bg__blob--5 {
    width: 35vmax;
    height: 35vmax;
    filter: blur(80px);
  }
}

.site-content {
  position: relative;
  z-index: 1;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
  border-bottom-color: rgba(64, 69, 79, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.wrap,
.nav__inner,
.footer__inner,
.hero__copy,
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand img {
  width: 132px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links > a,
.nav__dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.nav__links > a:hover,
.nav__dropdown > summary:hover,
.nav__links > a.is-active,
.nav__dropdown.is-active > summary {
  color: var(--black);
  background: rgba(13, 14, 16, 0.05);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav__dropdown > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(64, 69, 79, 0.1);
  box-shadow: 0 18px 50px rgba(13, 14, 16, 0.12);
  backdrop-filter: blur(12px);
}

.nav__menu a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background 0.18s ease;
}

.nav__menu-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 129, 91, 0.12), rgba(209, 20, 60, 0.08));
  border: 1px solid rgba(209, 20, 60, 0.1);
  color: var(--coral-deep);
  flex: 0 0 40px;
}

.nav__menu-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__menu-icon svg [fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.nav__menu a:hover .nav__menu-icon {
  background: linear-gradient(145deg, rgba(255, 129, 91, 0.22), rgba(209, 20, 60, 0.14));
  border-color: rgba(209, 20, 60, 0.18);
  color: var(--coral-deep);
}

.nav__menu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.nav__menu a:hover {
  background: rgba(255, 129, 91, 0.08);
}

.nav__menu strong,
.nav__menu-text strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.nav__menu-text > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(13, 14, 16, 0.05);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background-color: var(--coral-hot);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--coral-deep);
  transform: translateY(-1px);
}

.btn--nav {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(64, 69, 79, 0.18);
}

.btn--ghost:hover {
  background: rgba(13, 14, 16, 0.04);
}

.btn--light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.28);
}

.preheader {
  margin: 0 0 16px;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preheader--light {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 24px 0;
  text-align: center;
}

.hero__copy {
  position: relative;
  margin-bottom: 48px;
  animation: rise 0.9s var(--ease) both;
}

.hero__text {
  max-width: 54ch;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  height: clamp(280px, 42vw, 460px);
  animation: rise 1s var(--ease) 0.15s both;
}

.hero__shot {
  position: absolute;
  left: 50%;
  width: min(78%, 760px);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(13, 14, 16, 0.18);
  transform: translateX(-50%);
}

.hero__shot--back {
  top: 0;
  opacity: 0.45;
  transform: translateX(-50%) scale(0.9) translateY(8px);
}

.hero__shot--mid {
  top: 28px;
  opacity: 0.7;
  transform: translateX(-50%) scale(0.95) translateY(4px);
}

.hero__shot--front {
  top: 56px;
  animation: float 6s ease-in-out infinite;
}

.ecosystem {
  padding: 56px 0 48px;
  text-align: center;
  overflow: hidden;
}

.ecosystem h2 {
  margin: 0;
}

.ecosystem__lead {
  max-width: 48ch;
  margin: 12px auto 0;
}

.marquee {
  margin-top: 28px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee__track img {
  height: 36px;
  width: auto;
  opacity: 0.72;
  filter: grayscale(1);
}

.marquee__track img.marquee__logo--color {
  filter: none;
  opacity: 0.85;
}

.solutions {
  margin-top: 24px;
  padding: 88px 24px;
  background-image: linear-gradient(23deg, #ff815b 0%, #d1143c 72%);
  color: var(--white);
  text-align: center;
}

.solutions h2 {
  color: var(--white);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solutions__frame {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  background: rgba(0, 0, 0, 0.18);
}

.solutions__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1s var(--ease);
}

.solutions article:hover .solutions__frame img {
  transform: translateY(-7%);
}

.solutions h3 {
  margin-top: 16px;
  color: var(--white);
}

.trust {
  padding: 96px 24px;
  background: transparent;
}

.trust__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.trust__copy p:not(.preheader) {
  max-width: 42ch;
  margin: 18px 0 28px;
  color: var(--muted);
}

.trust__metrics li {
  display: grid;
  gap: 4px;
  padding: 22px 0;
  border-top: 1px solid rgba(64, 69, 79, 0.14);
}

.trust__metrics li:last-child {
  border-bottom: 1px solid rgba(64, 69, 79, 0.14);
}

.trust__metrics strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust__metrics span {
  color: var(--muted);
}

.cta {
  padding: 96px 24px;
  background:
    linear-gradient(115deg, rgba(14, 19, 45, 0.55), rgba(28, 40, 100, 0.25)),
    linear-gradient(23deg, #ff815b, #d1143c 70%);
  color: var(--white);
  text-align: center;
}

.cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.cta p {
  margin-left: auto;
  margin-right: auto;
}

.cta ul {
  margin: 24px auto 28px;
  display: inline-grid;
  gap: 12px;
  text-align: left;
}

.cta .btn {
  margin: 0 auto;
}

.cta li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.94);
}

.cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.footer {
  background: var(--brand-blue-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 24px 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer img,
.footer__logo {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.nav__brand img,
.nav__brand .nav__logo {
  height: 40px;
  width: auto;
}

.solutions__grid--industries {
  grid-template-columns: repeat(5, 1fr);
}

.solutions__card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}

.solutions__card:hover {
  transform: translateY(-4px);
}

.solutions__card h3 {
  margin-top: 16px;
}

.solutions__card p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.solutions__card .eco-card__link {
  color: rgba(255, 255, 255, 0.95);
}

.solutions__grid--page .solutions__card {
  background: var(--white);
  border: 1px solid rgba(28, 40, 100, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(14, 19, 45, 0.06);
}

.solutions__grid--page .solutions__card h3 {
  color: var(--black);
}

.solutions__grid--page .solutions__card p {
  color: var(--muted);
  opacity: 1;
}

.solutions__grid--page .solutions__card .eco-card__link {
  color: var(--coral-deep);
}

.blog-filters--industry {
  margin-top: 12px;
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
}

.footer__col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: #fff;
}

.footer__social {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp:hover {
  transform: scale(1.06);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
}

.page-hero {
  padding: 72px 24px 40px;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.page-hero__media {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(13, 14, 16, 0.14);
  background: #fff;
}

.page-hero__media img {
  width: 100%;
  height: auto;
}

.section {
  padding: 72px 24px;
}

.section--tight {
  padding-top: 24px;
}

.section--dark {
  background: linear-gradient(160deg, #12141a 0%, #1a2233 45%, #0f1f3d 100%);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--band {
  background-image: linear-gradient(23deg, #ff815b 0%, #d1143c 72%);
  color: #fff;
}

.section--band h2,
.section--band h3,
.section--band .lead {
  color: #fff;
}

.section--band .lead {
  opacity: 0.9;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

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

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

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

.feature {
  padding: 8px 0 0;
}

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(255, 129, 91, 0.12);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
}

.feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section--dark .feature p {
  color: rgba(255, 255, 255, 0.72);
}

.module-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.module-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(64, 69, 79, 0.12);
}

.module-row:last-child {
  border-bottom: 1px solid rgba(64, 69, 79, 0.12);
}

.module-row strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.module-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.module-row a {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img,
.split__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13, 14, 16, 0.12);
}

.split__media {
  align-self: center;
}

.split--problem .compare {
  margin-top: 28px;
}

.split--paradigm h2 {
  margin-bottom: 8px;
}

.split--paradigm .paradigm {
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-hot);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 78px;
  border-top: 1px solid rgba(64, 69, 79, 0.12);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-family: var(--font-display);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(64, 69, 79, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font: inherit;
}

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

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(255, 129, 91, 0.35);
  border-color: var(--coral-hot);
}

.channel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(64, 69, 79, 0.12);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
}

.channel-list a:last-child {
  border-bottom: 1px solid rgba(64, 69, 79, 0.12);
}

.channel-list span {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
}

.legal {
  max-width: 760px;
}

.legal h2 {
  margin-top: 36px;
  font-size: 1.4rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.legal li {
  padding-left: 18px;
  position: relative;
}

.legal li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 129, 91, 0.1);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .nav__links,
  .nav__actions .btn--ghost {
    display: none;
  }

  .nav.is-open .nav__links {
    display: grid;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    gap: 2px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(64, 69, 79, 0.1);
    box-shadow: 0 18px 40px rgba(13, 14, 16, 0.12);
    max-height: min(78vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown > summary {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
  }

  .nav.is-open .nav__menu {
    position: static;
    display: grid;
    gap: 2px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 6px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
    border: 0;
    background: rgba(13, 14, 16, 0.035);
  }

  .nav.is-open .nav__menu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .nav.is-open .nav__menu-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .nav.is-open .nav__menu-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav.is-open .nav__menu-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav.is-open .nav__menu-text strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
  }

  /* En móvil: solo título. Las descripciones aprietan y se leen como 2 columnas. */
  .nav.is-open .nav__menu-text > span {
    display: none;
  }

  .nav.is-open .nav__links > a {
    min-height: 44px;
    padding: 0 12px;
  }

  .nav__toggle {
    display: inline-block;
  }

  .solutions__grid,
  .solutions__grid--industries,
  .grid-4,
  .grid-3,
  .grid-2,
  .page-hero__inner,
  .trust__inner,
  .split,
  .contact-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .module-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .solutions,
  .trust,
  .cta,
  .footer,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__stage:not(.hero__stage--phones) {
    height: 260px;
  }

  .btn {
    width: 100%;
  }

  .btn--nav,
  .hero__actions .btn,
  .nav__actions .btn {
    width: auto;
  }
}

/* Presentation / deck-inspired layout */
.hero--deck {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 56px 24px 72px;
  text-align: left;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy visual"
    "actions visual";
  gap: 32px 40px;
  align-items: center;
  width: 100%;
}

.hero--deck .hero__copy {
  grid-area: copy;
  margin: 0;
  text-align: left;
  max-width: 640px;
}

.hero__visual {
  grid-area: visual;
  position: relative;
  min-height: 420px;
}

.hero__actions--deck {
  grid-area: actions;
  justify-content: flex-start;
  margin: 0;
}

.hero__mark {
  width: 132px;
  height: auto;
  margin-bottom: 28px;
}

.hero--deck h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero--deck .hero__text {
  margin: 22px 0 12px;
  max-width: 34ch;
  color: var(--black);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero--deck .hero__text strong {
  font-weight: 800;
}

.hero__sub {
  margin: 0 0 28px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero--deck .hero__actions {
  justify-content: flex-start;
}

.hero__stage--impact {
  height: clamp(360px, 44vw, 560px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 90px rgba(14, 19, 45, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: float 7s ease-in-out infinite;
}

.hero__impact {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__glow {
  position: absolute;
  inset: -12% -8% -18% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 68% 42%, rgba(209, 20, 60, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 30% 70%, rgba(255, 129, 91, 0.14), transparent 72%),
    radial-gradient(ellipse 40% 35% at 80% 80%, rgba(28, 40, 100, 0.08), transparent 70%);
}

.hero--deck .hero__stage {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  height: clamp(380px, 42vw, 520px);
}

.hero--deck .hero__stage--phones {
  height: clamp(420px, 52vw, 580px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-phone {
  margin: 0;
  position: absolute;
  width: min(46%, 250px);
}

.hero-phone__bezel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #111318;
  padding: 10px;
  box-shadow:
    0 28px 60px rgba(14, 19, 45, 0.28),
    0 8px 20px rgba(14, 19, 45, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-phone__bezel::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 28%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1a1d24;
  z-index: 2;
  pointer-events: none;
}

.hero-phone__bezel picture,
.hero-phone__bezel img {
  display: block;
  width: 100%;
}

.hero-phone__bezel img {
  height: auto;
  aspect-ratio: 9 / 13.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  background: #f5f6f8;
}

.hero-phone--back {
  left: 4%;
  top: 8%;
  z-index: 1;
  transform: rotate(-8deg) translateY(12px);
  animation: hero-phone-drift 7.5s ease-in-out infinite;
}

.hero-phone--front {
  right: 2%;
  top: 0;
  width: min(54%, 290px);
  z-index: 2;
  transform: rotate(4deg);
  animation: hero-phone-float 6.2s ease-in-out infinite;
}

@keyframes hero-phone-float {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

@keyframes hero-phone-drift {
  0%, 100% { transform: rotate(-8deg) translateY(12px); }
  50% { transform: rotate(-8deg) translateY(2px); }
}

.hero__stage--command {
  height: clamp(380px, 42vw, 520px);
}

.hero-command {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(64, 69, 79, 0.12);
  box-shadow:
    0 28px 80px rgba(13, 14, 16, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}

.hero-command__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8f9fc 0%, #f1f3f8 100%);
  border-bottom: 1px solid rgba(64, 69, 79, 0.08);
  font-family: var(--font-display);
  font-size: 12px;
}

.hero-command__dots {
  display: flex;
  gap: 6px;
}

.hero-command__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dde8;
}

.hero-command__dots span:nth-child(1) { background: #ff6b6b; }
.hero-command__dots span:nth-child(2) { background: #ffd166; }
.hero-command__dots span:nth-child(3) { background: #6ee7b7; }

.hero-command__title {
  flex: 1;
  color: var(--slate);
  font-weight: 600;
}

.hero-command__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(209, 20, 60, 0.08);
  color: var(--coral-deep);
  font-weight: 700;
}

.hero-command__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: hero-pulse 2s ease-out infinite;
}

@keyframes hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-command__body {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: 1fr auto;
  height: calc(100% - 45px);
}

.hero-command__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 10px;
  background: #f6f7fb;
  border-right: 1px solid rgba(64, 69, 79, 0.08);
}

.hero-command__rail-btn {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(64, 69, 79, 0.12);
}

.hero-command__rail-btn--active {
  background: linear-gradient(135deg, #ff815b 0%, #d1143c 100%);
  box-shadow: 0 4px 12px rgba(209, 20, 60, 0.35);
}

.hero-command__map {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.hero-command__streets,
.hero-command__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-command__routes {
  z-index: 2;
  pointer-events: none;
}

.hero-command__route {
  fill: none;
  stroke: rgba(37, 99, 235, 0.55);
  stroke-width: 3;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  animation: route-dash 12s linear infinite;
}

.hero-command__route--alt {
  stroke: rgba(209, 20, 60, 0.5);
  animation-duration: 9s;
  animation-direction: reverse;
}

@keyframes route-dash {
  to { stroke-dashoffset: -120; }
}

.hero-command__heat {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  mix-blend-mode: multiply;
  opacity: 0.72;
  z-index: 1;
  animation: heat-breathe 6s ease-in-out infinite;
}

.hero-command__heat--a {
  width: 42%;
  height: 48%;
  left: 18%;
  top: 22%;
  background: radial-gradient(circle, rgba(255, 129, 91, 0.95) 0%, rgba(209, 20, 60, 0.35) 55%, transparent 72%);
}

.hero-command__heat--b {
  width: 36%;
  height: 40%;
  left: 48%;
  top: 38%;
  background: radial-gradient(circle, rgba(255, 80, 60, 0.9) 0%, rgba(139, 15, 58, 0.3) 58%, transparent 74%);
  animation-delay: -2s;
}

.hero-command__heat--c {
  width: 28%;
  height: 34%;
  left: 68%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 180, 90, 0.85) 0%, rgba(255, 129, 91, 0.25) 60%, transparent 75%);
  animation-delay: -4s;
}

@keyframes heat-breathe {
  0%, 100% { transform: scale(1); opacity: 0.68; }
  50% { transform: scale(1.08); opacity: 0.82; }
}

.hero-command__marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.hero-command__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 6px 18px rgba(13, 14, 16, 0.22);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.hero-command__avatar--a { background: linear-gradient(135deg, #6366f1, #4338ca); }
.hero-command__avatar--b { background: linear-gradient(135deg, #f97316, #ea580c); }
.hero-command__avatar--c { background: linear-gradient(135deg, #ec4899, #be185d); }
.hero-command__avatar--d { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.hero-command__avatar--e { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.hero-command__vehicle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 2.5px solid #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  color: #fff;
}

.hero-command__vehicle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-command__vehicle--sm {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.hero-command__vehicle--sm svg {
  width: 16px;
  height: 16px;
}

.hero-command__tag {
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(64, 69, 79, 0.1);
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(13, 14, 16, 0.08);
}

.hero-command__chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 5;
  display: grid;
  gap: 1px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(64, 69, 79, 0.1);
  box-shadow: 0 10px 28px rgba(13, 14, 16, 0.12);
  backdrop-filter: blur(6px);
}

.hero-command__chip strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.hero-command__chip span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.hero-command__chip--orders strong { color: var(--coral-deep); }
.hero-command__chip--sla strong { color: #16a34a; }

.hero-command__footer {
  grid-column: 1 / -1;
  padding: 10px 14px 12px;
  background: #fff;
  border-top: 1px solid rgba(64, 69, 79, 0.08);
}

.hero-command__footer-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-command__footer-head strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.hero-command__footer-head span {
  font-size: 11px;
  color: var(--muted);
}

.hero-command__agents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-command__agent-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8f9fc;
  border: 1px solid rgba(64, 69, 79, 0.06);
}

.hero-command__agent-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.hero-command__agent-row span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
}

.hero-command__agent-row em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--coral-deep);
}

.hero--deck .hero__shot {
  width: 92%;
}

.hero--deck .hero__shot--back {
  top: 0;
}

.hero--deck .hero__shot--mid {
  top: 24px;
}

.hero--deck .hero__shot--front {
  top: 48px;
}

.band-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}

.band-layout__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.band-layout .motion-grid {
  margin-top: 0;
}

.hero__orbits {
  position: relative;
  min-height: 420px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff815b 0%, #d1143c 55%, #8b0f3a 100%);
  opacity: 0.55;
  filter: blur(2px);
  mix-blend-mode: multiply;
  animation: orbit-spin 18s linear infinite;
}

.orbit--lg {
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  right: -8%;
  top: 4%;
  opacity: 0.42;
}

.orbit--md {
  width: min(360px, 34vw);
  height: min(360px, 34vw);
  right: 18%;
  top: 22%;
  opacity: 0.5;
  animation-duration: 14s;
  animation-direction: reverse;
}

.orbit--sm {
  width: min(220px, 22vw);
  height: min(220px, 22vw);
  right: 8%;
  bottom: 8%;
  opacity: 0.58;
  animation-duration: 11s;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.04); }
  to { transform: rotate(360deg) scale(1); }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.accent-bar {
  display: inline-block;
  width: 28px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff815b, #d1143c);
}

.accent-bar--light {
  background: rgba(255, 255, 255, 0.85);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.compare__col {
  border-radius: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 69, 79, 0.1);
}

.compare__col--brand {
  background: linear-gradient(160deg, #ff815b 0%, #d1143c 80%);
  border: 0;
  color: #fff;
}

.compare__col--brand h3,
.compare__col--brand .check-list li {
  color: #fff;
}

.compare__col h3 {
  margin-bottom: 16px;
}

.check-list--muted li::before {
  background: #c7cad1;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.94);
}

.check-list--light li::before {
  background: #fff;
}

.eco-card__link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--coral-deep);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-filter {
  border: 1px solid rgba(64, 69, 79, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--slate);
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.blog-filter.is-active,
.blog-filter:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ff815b, #d1143c);
  color: #fff;
}

.split--post {
  align-items: start;
}

.post-body {
  max-width: 72ch;
}

.post-body p {
  margin: 0 0 1.1em;
}

.post-use-case {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(64, 69, 79, 0.12);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.eco-card {
  grid-column: span 2;
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(64, 69, 79, 0.1);
  box-shadow: 0 10px 30px rgba(13, 14, 16, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(13, 14, 16, 0.08);
}

.eco-card--wide {
  grid-column: span 2;
}

.eco-card h3 {
  font-size: 1.1rem;
}

.eco-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.eco-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(209, 20, 60, 0.08);
  color: var(--coral-deep);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.motion {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.motion h3 {
  color: #fff;
  margin-bottom: 10px;
}

.motion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.paradigm {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.paradigm__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 69, 79, 0.1);
}

.paradigm__row strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.paradigm__row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.paradigm__row > div:last-child {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 129, 91, 0.14), rgba(209, 20, 60, 0.12));
}

.paradigm__arrow {
  color: var(--coral-deep);
  font-size: 1.4rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__layout,
  .compare,
  .motion-grid,
  .paradigm__row,
  .band-layout,
  .split--problem .compare {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "actions"
      "visual";
  }

  .hero--deck {
    min-height: auto;
    overflow: visible;
    padding: 28px 20px 48px;
  }

  .hero__sub {
    display: none;
  }

  .hero__visual {
    min-height: 0;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero__glow {
    inset: -6% 8% -8% 8%;
  }

  .hero__stage--impact,
  .hero__stage--command,
  .hero--deck .hero__stage:not(.hero__stage--phones) {
    height: clamp(240px, 56vw, 420px);
  }

  .hero--deck .hero__stage--phones {
    height: auto;
    min-height: 0;
    display: block;
    padding: 8px 0 4px;
  }

  .hero-phone--back {
    display: none;
  }

  .hero-phone--front {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    width: min(72%, 300px);
    margin: 0 auto;
    transform: none;
    animation: hero-phone-rise 6.2s ease-in-out infinite;
  }

  .hero-phone__bezel {
    border-radius: 26px;
    padding: 9px;
  }

  .hero-phone__bezel::before {
    top: 12px;
    height: 7px;
  }

  .hero-phone__bezel img {
    border-radius: 18px;
  }

  .hero__actions--deck {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .hero__actions--deck .btn {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

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

  .hero-command__chip--sla {
    display: none;
  }

  .hero__orbits {
    min-height: 260px;
  }

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

  .eco-card,
  .eco-card--wide {
    grid-column: span 1;
  }

  .paradigm__arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }

  .hero--deck {
    padding: 16px 16px 36px;
  }

  .hero--deck h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
  }

  .hero--deck .hero__text {
    max-width: none;
    margin: 12px 0 0;
    font-size: 1.02rem;
  }

  .hero__layout {
    gap: 16px;
  }

  .hero-phone--front {
    width: min(78%, 310px);
  }

  .hero-phone__bezel {
    border-radius: 24px;
    padding: 8px;
  }

  .hero-phone__bezel::before {
    top: 11px;
    height: 6px;
  }

  .hero-phone__bezel img {
    border-radius: 17px;
  }

  .hero-command__marker:nth-child(n+8) {
    display: none;
  }

  .hero-command__tag {
    display: none;
  }

  .hero-command__footer-head span {
    display: none;
  }
}

@keyframes hero-phone-rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal,
  .hero__copy,
  .hero__stage {
    opacity: 1;
    transform: none;
  }

  .animated-bg__blob--5 {
    transform: translate(-50%, -50%);
  }
}
