:root {
  --bg: #fffaf3;
  --ink: #17141f;
  --ink-soft: #51485e;
  --muted: #7b7188;
  --brand: #8b62df;
  --brand-dark: #6642b8;
  --brand-soft: #efe6ff;
  --gold: #d99545;
  --mint: #1bbf9f;
  --line: rgba(31, 20, 48, .13);
  --shadow: 0 18px 55px rgba(23, 20, 31, .14);
  --shadow-strong: 0 28px 90px rgba(23, 20, 31, .24);
  --pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fffaf3 54%, #f7f0ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.12), transparent 60%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip { position: absolute; left: 12px; top: 12px; z-index: 100; transform: translateY(-150%); }
.skip:focus { transform: none; }
.wrap { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.wide-wrap { width: min(1540px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  border-bottom: 1px solid rgba(31, 20, 48, .1);
  background: rgba(255,250,243,.86);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 10px 0;
}
.brand img { width: 168px; }
.nav-links { display: flex; gap: 2px; }
.nav-links a { border-radius: var(--pill); padding: 8px 13px; font-size: .92rem; font-weight: 700; }
.nav-links a:hover { color: var(--brand-dark); background: var(--brand-soft); }
.nav-actions { display: flex; gap: 8px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 0 22px;
  font: inherit;
  font-size: .96rem;
  font-weight: 760;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding-inline: 16px; font-size: .86rem; }
.btn-lg { min-height: 54px; padding-inline: 28px; }
.btn-brand { color: #fff; background: var(--brand); box-shadow: 0 18px 40px rgba(139,98,223,.28); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-ink { color: #fff; background: var(--ink); }
.btn-ghost { color: var(--ink); background: #fff; border-color: var(--line); }
.btn-white { color: var(--ink); background: rgba(255,255,255,.92); }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 42px 0;
  color: var(--ink);
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.18) 35%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.3) 0%, rgba(255,255,255,0) 54%, rgba(23,20,31,.18) 100%);
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}
.hero-copy {
  align-self: center;
  max-width: 520px;
  padding-top: 34px;
}
.hero-kicker {
  width: fit-content;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(103, 67, 186, .18);
  border-radius: var(--pill);
  color: var(--brand-dark);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 740;
}
.hero h1 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.7vw, 4.15rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 40ch;
  margin: 18px 0 0;
  color: #49375e;
  font-size: clamp(1rem, .95rem + .25vw, 1.16rem);
}
.hero-actions { display: flex; justify-content: flex-start; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-metrics {
  align-self: end;
  justify-self: start;
  width: min(100%, 520px);
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 26px;
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(70, 36, 112, .14);
}
.hero-metrics article {
  min-height: 74px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.48);
}
.hero-metrics span { display: block; color: var(--muted); font-size: .78rem; font-weight: 720; }
.hero-metrics strong { display: block; margin-top: 3px; color: var(--ink); font-size: 1.03rem; line-height: 1.1; }

.ecosystem { padding: 38px 0 0; background: #fff; }
.ecosystem .wide-wrap { width: 100%; }
.ecosystem .section-head { max-width: 1100px; }
.ecosystem .section-head h2 { font-size: clamp(1.65rem, 1.1rem + 1.7vw, 2.35rem); }
.section { padding: clamp(4rem, 2.5rem + 6vw, 7.5rem) 0; }
.surface { background: #f7f0ff; }
.section-head { max-width: 740px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink-soft);
  background: #fff;
  font-size: .8rem;
  font-weight: 760;
}
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 1.25rem + 2.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.section-head p,
.text {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.panel-rail {
  --panel-height: clamp(540px, 70vh, 820px);
  --closed-panel-width: 92px;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: var(--panel-height);
}
.panel-card {
  --panel-ratio: 1.5;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: var(--panel-height);
  aspect-ratio: var(--panel-ratio);
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-right: 2px solid #fff;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: flex .58s cubic-bezier(.22,1,.36,1), transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}
.panel-card:last-child { border-right: 0; }
.panel-card.is-active {
  flex: 0 0 min(
    calc(var(--panel-height) * var(--panel-ratio)),
    calc(100% - (var(--closed-panel-width) * 4))
  );
  min-width: 0;
  box-shadow: none;
}
.panel-card:hover,
.panel-card:focus-visible { transform: none; outline: none; box-shadow: none; }
.panel-card img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%) !important;
  transition: filter .25s ease;
}
.panel-card[data-panel="particular"] img { object-position: 42% center; }
.panel-card[data-panel="perdida"] img { object-position: 43% center; }
.panel-card[data-panel="medallas"] img { object-position: 48% center; }
.panel-card[data-panel="comercios"] img { object-position: 48% center; }
.panel-card[data-panel="vetnova"] img { object-position: 48% center; }
.panel-card[data-panel="particular"] { --panel-ratio: 1.6; }
.panel-card.is-active img { transform: translateX(-50%) !important; }
.panel-card:not(.is-active) img { filter: saturate(.85) contrast(.92); }
.panel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23,20,31,.08), rgba(23,20,31,.78));
}
.panel-top,
.panel-copy { position: absolute; z-index: 2; left: 18px; right: 18px; color: #fff; }
.panel-top { top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.panel-top span {
  color: rgba(255,255,255,.76);
  font-size: .78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.panel-expand {
  width: 40px;
  height: 40px;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.panel-expand svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.panel-expand:hover,
.panel-expand:focus-visible {
  background: rgba(255,255,255,.34);
  outline: none;
}
.panel-copy { bottom: 18px; }
.panel-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.panel-copy p {
  max-width: 42rem;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  opacity: 0;
  transition: max-height .32s ease, opacity .25s ease, margin .25s ease;
}
.panel-copy a {
  display: inline-flex;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border-radius: var(--pill);
  color: var(--ink);
  background: #fff;
  font-weight: 780;
  opacity: 0;
  transition: max-height .32s ease, opacity .25s ease, margin .25s ease, padding .25s ease;
}
.panel-card.is-active .panel-copy p { max-height: 130px; margin-top: 12px; opacity: 1; }
.panel-card.is-active .panel-copy a { max-height: 46px; margin-top: 16px; padding: 10px 16px; opacity: 1; }
.panel-card:not(.is-active) .panel-copy {
  left: 12px;
  right: 12px;
  bottom: 14px;
  width: auto;
  max-width: none;
  transform: none;
}
.panel-card:not(.is-active) .panel-top span,
.panel-card:not(.is-active) .panel-expand { display: none; }
.panel-card:not(.is-active) .panel-copy h3 {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  backdrop-filter: blur(12px);
  font-size: clamp(.82rem, .74rem + .35vw, 1rem);
  line-height: 1.08;
  text-align: center;
  letter-spacing: -.02em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.audience-strip {
  min-height: 210px;
  padding: 26px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247,240,255,.92), rgba(255,255,255,.98) 32%, rgba(232,251,247,.92));
}
.audience-lanes {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 12px;
  mask-image: linear-gradient(90deg, transparent, #000 4% 96%, transparent);
}
.audience-lane { overflow: hidden; }
.audience-track {
  width: max-content;
  display: flex;
  gap: 10px;
  animation: marquee var(--marquee-speed, 42s) linear infinite;
}
.lane-1 { --marquee-speed: 44s; }
.lane-2 { --marquee-speed: 58s; }
.lane-2 .audience-track { animation-direction: reverse; }
.lane-3 { --marquee-speed: 50s; }
.audience-chip {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(18,52,59,.09);
  border-radius: var(--pill);
  color: var(--ink);
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 28px rgba(18,52,59,.07);
  font-weight: 780;
  white-space: nowrap;
}
.audience-chip i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: #eafbf7;
}
.audience-chip.is-accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), #6d44d8);
}
.audience-chip.is-accent i {
  color: var(--brand);
  background: #fff;
}

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step {
  min-height: 238px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.step span { color: var(--brand); font-weight: 840; }
.step h3 { margin: 18px 0 0; font-size: 1.16rem; }
.step p { margin: 10px 0 0; color: var(--ink-soft); }

.vetnova-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(72% 58% at 88% 18%, rgba(27,191,159,.34), transparent 62%),
    radial-gradient(52% 46% at 14% 88%, rgba(139,98,223,.4), transparent 68%),
    linear-gradient(145deg, #101b1f 0%, #17141f 48%, #251936 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}
.vetnova-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16,27,31,.92), rgba(16,27,31,.38) 52%, rgba(16,27,31,.7));
}
.vetnova-glow {
  position: absolute;
  right: -12%;
  top: 12%;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,178,107,.24), rgba(139,98,223,.18) 38%, transparent 68%);
  filter: blur(8px);
}
.vetnova-band h2 { color: #fff; }
.vetnova-band .eyebrow {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}
.vetnova-band .text { max-width: 58ch; color: rgba(255,255,255,.74); }
.vetnova-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1760px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(520px, .84fr) minmax(620px, 1.16fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}
.vetnova-copy h2 {
  max-width: 24ch;
  font-size: clamp(2.35rem, 3.1vw, 3.1rem);
}
.vetnova-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.vetnova-tools article {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 46px rgba(0,0,0,.14);
  backdrop-filter: blur(16px);
}
.vetnova-tools i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #17141f;
  background: linear-gradient(135deg, #f3b26b, #e8fbf7);
  font-size: 1.05rem;
}
.vetnova-tools span {
  color: rgba(255,255,255,.88);
  font-size: clamp(.95rem, .84rem + .25vw, 1.08rem);
  font-weight: 780;
  line-height: 1.18;
}
.actions-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.cta-section { background: #fff; }
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 2rem + 4vw, 5rem);
  border-radius: 32px;
  color: #fff;
  text-align: center;
  background: linear-gradient(165deg, #322143 0%, #17141f 100%);
}
.cta::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  height: 72%;
  background: radial-gradient(55% 100% at 50% 0%, rgba(243,178,107,.42), transparent 70%);
}
.cta > * { position: relative; }
.cta h2 { max-width: 17ch; margin: 0 auto; color: #fff; }
.cta p { max-width: 48ch; margin: 18px auto 0; color: rgba(255,255,255,.74); }
.cta .hero-actions { justify-content: center; }

.footer { padding: 52px 0; border-top: 1px solid var(--line); background: var(--ink); color: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer img { width: 174px; filter: brightness(0) invert(1); }
.footer p { max-width: 460px; margin: 0; color: rgba(255,255,255,.62); text-align: right; }

.code-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(20,17,28,.56);
  backdrop-filter: blur(10px);
}
.code-modal.is-open { display: grid; }
.code-dialog {
  width: min(100%, 440px);
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-strong);
}
.code-dialog h3 { margin: 0; font-size: 1.5rem; letter-spacing: -.03em; }
.code-dialog p { margin: 10px 0 18px; color: var(--ink-soft); }
#codeForm { display: grid; gap: 12px; }
#codeInput { min-height: 50px; border: 1px solid var(--line); border-radius: 18px; padding: 0 16px; font: inherit; font-weight: 760; text-transform: lowercase; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(20,17,28,.72);
  backdrop-filter: blur(12px);
}
.image-modal.is-open { display: grid; }
.image-dialog {
  position: relative;
  width: fit-content;
  max-width: calc(100vw - 36px);
  max-height: 92vh;
  display: grid;
  gap: 10px;
}
.image-dialog img {
  display: block;
  width: auto;
  max-width: calc(100vw - 36px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-strong);
}
.image-dialog p {
  margin: 0;
  color: rgba(255,255,255,.82);
  text-align: center;
  font-weight: 780;
}
.image-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-size: 1.55rem;
  cursor: pointer;
}

.reveal { opacity: 1; transform: translateY(0); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(18px); }

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

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero {
    min-height: 720px;
    align-items: end;
  }
  .hero-media img { object-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.08) 36%, rgba(23,20,31,.72) 100%),
      linear-gradient(90deg, rgba(23,20,31,.25), rgba(23,20,31,0) 65%);
  }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-copy {
    max-width: 620px;
    padding-top: 0;
    color: #fff;
  }
  .hero-kicker {
    color: #fff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.14);
  }
  .hero h1 { color: #fff; }
  .hero-copy > p:not(.hero-kicker) {
    max-width: 46ch;
    color: rgba(255,255,255,.78);
  }
  .hero-metrics {
    grid-column: auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.2);
  }
  .hero-metrics article { background: rgba(255,255,255,.16); }
  .hero-metrics span { color: rgba(255,255,255,.68); }
  .hero-metrics strong { color: #fff; }
  .panel-rail {
    gap: 12px;
    min-height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .panel-card,
  .panel-card.is-active {
    flex: 0 0 min(78vw, 520px);
    min-width: 0;
    height: 460px;
    border: 1px solid rgba(255,255,255,.7);
    border-right: 1px solid rgba(255,255,255,.7);
    border-radius: 30px;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
  }
  .panel-card.is-active { box-shadow: var(--shadow-strong); }
  .panel-card img,
  .panel-card.is-active img {
    left: 0;
    width: 100%;
    transform: none !important;
  }
  .panel-card:hover,
  .panel-card:focus-visible { transform: translateY(-4px); outline: none; box-shadow: var(--shadow-strong); }
  .panel-card:not(.is-active) .panel-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    max-width: none;
    transform: none;
  }
  .panel-card:not(.is-active) .panel-top span,
  .panel-card:not(.is-active) .panel-expand { display: grid; }
  .panel-card:not(.is-active) .panel-copy h3 { white-space: normal; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vetnova-grid {
    width: min(100% - 40px, 980px);
    grid-template-columns: 1fr;
  }
  .vetnova-copy h2 { max-width: 22ch; }
  .vetnova-tools { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { padding-top: 59px; }
  .wrap { width: min(100% - 28px, 1240px); }
  .wide-wrap { width: min(100% - 28px, 1540px); }
  .site-header { position: fixed; left: 0; right: 0; }
  .nav { width: min(100% - 28px, 1240px); min-height: 58px; padding: 8px 0; }
  .brand img { width: 134px; }
  .nav-actions .btn-ghost { display: none; }
  .hero {
    min-height: calc(100svh - 59px);
    padding: 42px 0 22px;
  }
  .hero-media img { object-position: 69% center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(23,20,31,.02) 0%, rgba(23,20,31,.1) 32%, rgba(23,20,31,.88) 100%);
  }
  .hero-copy { padding-bottom: 8px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.55rem); }
  .hero-copy > p:not(.hero-kicker) { font-size: .98rem; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics article { min-height: auto; padding: 12px 14px; }
  .ecosystem { padding-top: 30px; }
  .audience-strip { min-height: 238px; padding: 24px 0; }
  .audience-lanes { gap: 10px; }
  .audience-chip { min-height: 42px; padding: 0 13px; font-size: .88rem; }
  .audience-chip i { width: 28px; height: 28px; }
  .panel-rail { margin-inline: 0; padding-inline: 14px; scroll-padding-inline: 14px; }
  .panel-card,
  .panel-card.is-active { flex-basis: 86vw; height: 420px; }
  .steps { grid-template-columns: 1fr; }
  .vetnova-grid { width: min(100% - 28px, 1240px); }
  .vetnova-copy h2 { max-width: 100%; }
  .vetnova-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vetnova-tools article { min-height: 118px; padding: 16px; }
  .vetnova-tools i { width: 40px; height: 40px; border-radius: 14px; }
  .footer-inner { display: block; }
  .footer p { margin-top: 18px; text-align: left; }
  .modal-actions { flex-direction: column; }
}
